Download Monitor - Version 4.2.0

Version Description

Download this release

Release Info

Developer barrykooij
Plugin Icon 128x128 Download Monitor
Version 4.2.0
Comparing to
See all releases

Code changes from version 4.1.1 to 4.2.0

Files changed (72) hide show
  1. .babelrc +23 -0
  2. assets/blocks/dist/blocks.build.js +30 -0
  3. assets/blocks/src/blocks.js +97 -0
  4. assets/blocks/src/components/DownloadButton/index.js +66 -0
  5. assets/blocks/src/components/DownloadInput/index.js +35 -0
  6. assets/blocks/src/components/TemplateInput/index.js +32 -0
  7. assets/blocks/src/components/VersionInput/index.js +50 -0
  8. assets/css/admin.css +1 -1
  9. assets/css/frontend.css +1 -1
  10. assets/css/gb-editor.css +1 -0
  11. assets/css/gb-editor.less +11 -0
  12. assets/css/preview.css +1 -0
  13. assets/css/preview.less +19 -0
  14. assets/js/blockui.min.js +1 -14
  15. assets/js/edit-download.min.js +1 -1
  16. assets/js/extensions.min.js +1 -1
  17. assets/js/insert-download.min.js +1 -1
  18. assets/js/notices.min.js +1 -1
  19. assets/js/overview-download.min.js +1 -1
  20. assets/js/reports/charts-date-range-selector.min.js +1 -1
  21. assets/js/reports/reports.min.js +1 -1
  22. assets/js/settings.min.js +1 -1
  23. composer.lock +119 -56
  24. download-monitor.php +3 -3
  25. languages/download-monitor-ar-dlm_gutenberg_blocks.json +1 -0
  26. languages/download-monitor-be_BY-dlm_gutenberg_blocks.json +1 -0
  27. languages/download-monitor-ca_ES-dlm_gutenberg_blocks.json +1 -0
  28. languages/download-monitor-cs_CZ-dlm_gutenberg_blocks.json +1 -0
  29. languages/download-monitor-cs_CZ.mo +0 -0
  30. languages/download-monitor-cs_CZ.po +4 -1
  31. languages/download-monitor-da_DK-dlm_gutenberg_blocks.json +1 -0
  32. languages/download-monitor-de_DE-dlm_gutenberg_blocks.json +1 -0
  33. languages/download-monitor-de_DE.po +1 -1
  34. languages/download-monitor-es_419-dlm_gutenberg_blocks.json +1 -0
  35. languages/download-monitor-es_419.mo +0 -0
  36. languages/download-monitor-es_419.po +1219 -0
  37. languages/download-monitor-es_ES-dlm_gutenberg_blocks.json +1 -0
  38. languages/download-monitor-fa_IR-dlm_gutenberg_blocks.json +1 -0
  39. languages/download-monitor-fa_IR.mo +0 -0
  40. languages/download-monitor-fa_IR.po +4 -1
  41. languages/download-monitor-fr_FR-dlm_gutenberg_blocks.json +1 -0
  42. languages/download-monitor-hr_HR-dlm_gutenberg_blocks.json +1 -0
  43. languages/download-monitor-hu_HU-dlm_gutenberg_blocks.json +1 -0
  44. languages/download-monitor-it_IT-dlm_gutenberg_blocks.json +1 -0
  45. languages/download-monitor-ja-dlm_gutenberg_blocks.json +1 -0
  46. languages/download-monitor-ku-dlm_gutenberg_blocks.json +1 -0
  47. languages/download-monitor-nl_NL-dlm_gutenberg_blocks.json +1 -0
  48. languages/download-monitor-nl_NL.mo +0 -0
  49. languages/download-monitor-nl_NL.po +14 -13
  50. languages/download-monitor-pl_PL-dlm_gutenberg_blocks.json +1 -0
  51. languages/download-monitor-pt_BR-dlm_gutenberg_blocks.json +1 -0
  52. languages/download-monitor-pt_BR.po +1 -1
  53. languages/download-monitor-pt_PT-dlm_gutenberg_blocks.json +1 -0
  54. languages/download-monitor-ru_RU-dlm_gutenberg_blocks.json +1 -0
  55. languages/download-monitor-sk_SK-dlm_gutenberg_blocks.json +1 -0
  56. languages/download-monitor-sk_SK.mo +0 -0
  57. languages/download-monitor-sk_SK.po +4 -1
  58. languages/download-monitor-sl_SI-dlm_gutenberg_blocks.json +1 -0
  59. languages/download-monitor-sr_RS-dlm_gutenberg_blocks.json +1 -0
  60. languages/download-monitor-sv_SE-dlm_gutenberg_blocks.json +1 -0
  61. languages/download-monitor-tr_TR-dlm_gutenberg_blocks.json +1 -0
  62. languages/download-monitor-tr_TR.mo +0 -0
  63. languages/download-monitor-tr_TR.po +4 -1
  64. languages/download-monitor-uk_UA-dlm_gutenberg_blocks.json +1 -0
  65. languages/download-monitor-uk_UA.mo +0 -0
  66. languages/download-monitor-uk_UA.po +4 -1
  67. languages/download-monitor-zh_CN-dlm_gutenberg_blocks.json +1 -0
  68. languages/download-monitor-zh_TW-dlm_gutenberg_blocks.json +1 -0
  69. languages/download-monitor-zh_TW.Big5-dlm_gutenberg_blocks.json +1 -0
  70. languages/download-monitor-zh_TW.Big5.mo +0 -0
  71. languages/download-monitor-zh_TW.Big5.po +1216 -0
  72. package-lock.json +3529 -0
.babelrc ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "presets": [
3
+ [ "env", {
4
+ "modules": false,
5
+ "targets": {
6
+ "browsers": [
7
+ "last 2 Chrome versions",
8
+ "last 2 Firefox versions",
9
+ "last 2 Safari versions",
10
+ "last 2 iOS versions",
11
+ "last 1 Android version",
12
+ "last 1 ChromeAndroid version",
13
+ "ie 11"
14
+ ]
15
+ }
16
+ } ]
17
+ ],
18
+ "plugins": [
19
+ [ "transform-react-jsx", {
20
+ "pragma": "wp.element.createElement"
21
+ } ]
22
+ ]
23
+ }
assets/blocks/dist/blocks.build.js ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ !function(e){function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var n={};t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=20)}([function(e,t,n){"use strict";e.exports=n(51)},function(e,t,n){"use strict";function r(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){Object(o.a)(e,t,n[t])})}return e}t.a=r;var o=n(23)},function(e,t,n){e.exports=n(65)()},function(e,t,n){"use strict";function r(e,t){return t?"-"===t[0]?e+t:e+"__"+t:e}function o(e,t,n,o){var i=[t,o];if(n&&e)for(var a in n)n.hasOwnProperty(a)&&n[a]&&i.push(""+r(e,a));return i.filter(function(e){return e}).map(function(e){return String(e).trim()}).join(" ")}function i(e,t,n){if(n){var r=n(e,t);if("string"==typeof r)return r}return e}function a(e){return[document.documentElement,document.body,window].indexOf(e)>-1}function u(e){return a(e)?window.pageYOffset:e.scrollTop}function l(e,t){if(a(e))return void window.scrollTo(0,t);e.scrollTop=t}function s(e){var t=getComputedStyle(e),n="absolute"===t.position,r=/(auto|scroll)/,o=document.documentElement;if("fixed"===t.position)return o;for(var i=e;i=i.parentElement;)if(t=getComputedStyle(i),(!n||"static"!==t.position)&&r.test(t.overflow+t.overflowY+t.overflowX))return i;return o}function c(e,t,n,r){return n*((e=e/r-1)*e*e+1)+t}function f(e,t){function n(){f+=s;var t=c(f,i,a,r);l(e,t),f<r?C()(n):o(e)}var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:200,o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:H,i=u(e),a=t-i,s=10,f=0;n()}function p(e,t){var n=e.getBoundingClientRect(),r=t.getBoundingClientRect(),o=t.offsetHeight/3;r.bottom+o>n.bottom?l(e,Math.min(t.offsetTop+t.clientHeight-e.offsetHeight+o,e.scrollHeight)):r.top-o<n.top&&l(e,Math.max(t.offsetTop-o,0))}function d(e){var t=e.getBoundingClientRect();return{bottom:t.bottom,height:t.height,left:t.left,right:t.right,top:t.top,width:t.width}}function h(){try{return document.createEvent("TouchEvent"),!0}catch(e){return!1}}function m(e){var t=e.maxHeight,n=e.menuEl,r=e.minHeight,o=e.placement,i=e.shouldScroll,a=e.isFixedPosition,c=e.theme,p=c.spacing,d=s(n),h={placement:"bottom",maxHeight:t};if(!n||!n.offsetParent)return h;var m=d.getBoundingClientRect(),v=m.height,g=n.getBoundingClientRect(),y=g.bottom,b=g.height,E=g.top,w=n.offsetParent.getBoundingClientRect(),x=w.top,k=window.innerHeight,C=u(d),O=parseInt(getComputedStyle(n).marginBottom,10),S=parseInt(getComputedStyle(n).marginTop,10),_=x-S,T=k-E,P=_+C,A=v-C-E,F=y-k+C+O,D=C+E-S;switch(o){case"auto":case"bottom":if(T>=b)return{placement:"bottom",maxHeight:t};if(A>=b&&!a)return i&&f(d,F,160),{placement:"bottom",maxHeight:t};if(!a&&A>=r||a&&T>=r){i&&f(d,F,160);return{placement:"bottom",maxHeight:a?T-O:A-O}}if("auto"===o||a){var N=t,j=a?_:P;return j>=r&&(N=Math.min(j-O-p.controlHeight,t)),{placement:"top",maxHeight:N}}if("bottom"===o)return l(d,F),{placement:"bottom",maxHeight:t};break;case"top":if(_>=b)return{placement:"top",maxHeight:t};if(P>=b&&!a)return i&&f(d,D,160),{placement:"top",maxHeight:t};if(!a&&P>=r||a&&_>=r){var I=t;return(!a&&P>=r||a&&_>=r)&&(I=a?_-S:P-S),i&&f(d,D,160),{placement:"top",maxHeight:I}}return{placement:"bottom",maxHeight:t};default:throw new Error('Invalid placement provided "'+o+'".')}return h}function v(e){var t={bottom:"top",top:"bottom"};return e?t[e]:"bottom"}function g(e,t){if(e===t)return!0;if(e&&t&&"object"==(void 0===e?"undefined":I(e))&&"object"==(void 0===t?"undefined":I(t))){var n,r,o,i=ie(e),a=ie(t);if(i&&a){if((r=e.length)!=t.length)return!1;for(n=r;0!=n--;)if(!g(e[n],t[n]))return!1;return!0}if(i!=a)return!1;var u=e instanceof Date,l=t instanceof Date;if(u!=l)return!1;if(u&&l)return e.getTime()==t.getTime();var s=e instanceof RegExp,c=t instanceof RegExp;if(s!=c)return!1;if(s&&c)return e.toString()==t.toString();var f=ae(e);if((r=f.length)!==ae(t).length)return!1;for(n=r;0!=n--;)if(!ue.call(t,f[n]))return!1;for(n=r;0!=n--;)if(!("_owner"===(o=f[n])&&e.$$typeof||g(e[o],t[o])))return!1;return!0}return e!==e&&t!==t}function y(e,t){try{return g(e,t)}catch(e){if(e.message&&e.message.match(/stack|recursion/i))return console.warn("Warning: react-fast-compare does not handle circular references.",e.name,e.message),!1;throw e}}function b(e){e.preventDefault()}function E(e){e.stopPropagation()}function w(){var e=this.scrollTop,t=this.scrollHeight,n=e+this.offsetHeight;0===e?this.scrollTop=1:n===t&&(this.scrollTop=e-1)}function x(){return"ontouchstart"in window||navigator.maxTouchPoints}var k=n(52),C=n.n(k),O=n(0),S=n.n(O),_=n(55),T=n(7),P=(n.n(T),n(2)),A=n.n(P),F=n(67),D=n.n(F),N=n(68),j=n(69),I=(n.n(j),"function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e}),M=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")},L=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),R=function(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e},V=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},U=function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)},B=function(e,t){var n={};for(var r in e)t.indexOf(r)>=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n},z=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t},W=function(e){if(Array.isArray(e)){for(var t=0,n=Array(e.length);t<e.length;t++)n[t]=e[t];return n}return Array.from(e)},H=function(){},$=function(e){return Array.isArray(e)?e.filter(Boolean):"object"===(void 0===e?"undefined":I(e))&&null!==e?[e]:[]},G=function(e){return"auto"===e?"bottom":e},K=function(e){var t,n=e.placement,r=e.theme,o=r.borderRadius,i=r.spacing,a=r.colors;return t={},R(t,v(n),"100%"),R(t,"backgroundColor",a.neutral0),R(t,"borderRadius",o),R(t,"boxShadow","0 0 0 1px hsla(0, 0%, 0%, 0.1), 0 4px 11px hsla(0, 0%, 0%, 0.1)"),R(t,"marginBottom",i.menuGutter),R(t,"marginTop",i.menuGutter),R(t,"position","absolute"),R(t,"width","100%"),R(t,"zIndex",1),t},Q=function(e){function t(){var e,n,r,o;M(this,t);for(var i=arguments.length,a=Array(i),u=0;u<i;u++)a[u]=arguments[u];return n=r=z(this,(e=t.__proto__||Object.getPrototypeOf(t)).call.apply(e,[this].concat(a))),r.state={maxHeight:r.props.maxMenuHeight,placement:null},r.getPlacement=function(e){var t=r.props,n=t.minMenuHeight,o=t.maxMenuHeight,i=t.menuPlacement,a=t.menuPosition,u=t.menuShouldScrollIntoView,l=t.theme,s=r.context.getPortalPlacement;if(e){var c="fixed"===a,f=u&&!c,p=m({maxHeight:o,menuEl:e,minHeight:n,placement:i,shouldScroll:f,isFixedPosition:c,theme:l});s&&s(p),r.setState(p)}},r.getUpdatedProps=function(){var e=r.props.menuPlacement,t=r.state.placement||G(e);return V({},r.props,{placement:t,maxHeight:r.state.maxHeight})},o=n,z(r,o)}return U(t,e),L(t,[{key:"render",value:function(){return(0,this.props.children)({ref:this.getPlacement,placerProps:this.getUpdatedProps()})}}]),t}(O.Component);Q.contextTypes={getPortalPlacement:A.a.func};var Y=function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles,i=e.innerRef,a=e.innerProps,u=r(Object(_.a)(o("menu",e)),{menu:!0},n);return S.a.createElement("div",V({className:u},a,{ref:i}),t)},q=function(e){var t=e.maxHeight,n=e.theme.spacing.baseUnit;return{maxHeight:t,overflowY:"auto",paddingBottom:n,paddingTop:n,position:"relative",WebkitOverflowScrolling:"touch"}},X=function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles,i=e.isMulti,a=e.innerRef;return S.a.createElement("div",{className:r(Object(_.a)(o("menuList",e)),{"menu-list":!0,"menu-list--is-multi":i},n),ref:a},t)},Z=function(e){var t=e.theme,n=t.spacing.baseUnit;return{color:t.colors.neutral40,padding:2*n+"px "+3*n+"px",textAlign:"center"}},J=Z,ee=Z,te=function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles,i=e.innerProps;return S.a.createElement("div",V({className:r(Object(_.a)(o("noOptionsMessage",e)),{"menu-notice":!0,"menu-notice--no-options":!0},n)},i),t)};te.defaultProps={children:"No options"};var ne=function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles,i=e.innerProps;return S.a.createElement("div",V({className:r(Object(_.a)(o("loadingMessage",e)),{"menu-notice":!0,"menu-notice--loading":!0},n)},i),t)};ne.defaultProps={children:"Loading..."};var re=function(e){var t=e.rect,n=e.offset,r=e.position;return{left:t.left,position:r,top:n,width:t.width,zIndex:1}},oe=function(e){function t(){var e,n,r,o;M(this,t);for(var i=arguments.length,a=Array(i),u=0;u<i;u++)a[u]=arguments[u];return n=r=z(this,(e=t.__proto__||Object.getPrototypeOf(t)).call.apply(e,[this].concat(a))),r.state={placement:null},r.getPortalPlacement=function(e){var t=e.placement;t!==G(r.props.menuPlacement)&&r.setState({placement:t})},o=n,z(r,o)}return U(t,e),L(t,[{key:"getChildContext",value:function(){return{getPortalPlacement:this.getPortalPlacement}}},{key:"render",value:function(){var e=this.props,t=e.appendTo,n=e.children,r=e.controlElement,o=e.menuPlacement,i=e.menuPosition,a=e.getStyles,u="fixed"===i;if(!t&&!u||!r)return null;var l=this.state.placement||G(o),s=d(r),c=u?0:window.pageYOffset,f=s[l]+c,p={offset:f,position:i,rect:s},h=S.a.createElement("div",{className:Object(_.a)(a("menuPortal",p))},n);return t?Object(T.createPortal)(h,t):h}}]),t}(O.Component);oe.childContextTypes={getPortalPlacement:A.a.func};var ie=Array.isArray,ae=Object.keys,ue=Object.prototype.hasOwnProperty,le=[{base:"A",letters:/[\u0041\u24B6\uFF21\u00C0\u00C1\u00C2\u1EA6\u1EA4\u1EAA\u1EA8\u00C3\u0100\u0102\u1EB0\u1EAE\u1EB4\u1EB2\u0226\u01E0\u00C4\u01DE\u1EA2\u00C5\u01FA\u01CD\u0200\u0202\u1EA0\u1EAC\u1EB6\u1E00\u0104\u023A\u2C6F]/g},{base:"AA",letters:/[\uA732]/g},{base:"AE",letters:/[\u00C6\u01FC\u01E2]/g},{base:"AO",letters:/[\uA734]/g},{base:"AU",letters:/[\uA736]/g},{base:"AV",letters:/[\uA738\uA73A]/g},{base:"AY",letters:/[\uA73C]/g},{base:"B",letters:/[\u0042\u24B7\uFF22\u1E02\u1E04\u1E06\u0243\u0182\u0181]/g},{base:"C",letters:/[\u0043\u24B8\uFF23\u0106\u0108\u010A\u010C\u00C7\u1E08\u0187\u023B\uA73E]/g},{base:"D",letters:/[\u0044\u24B9\uFF24\u1E0A\u010E\u1E0C\u1E10\u1E12\u1E0E\u0110\u018B\u018A\u0189\uA779]/g},{base:"DZ",letters:/[\u01F1\u01C4]/g},{base:"Dz",letters:/[\u01F2\u01C5]/g},{base:"E",letters:/[\u0045\u24BA\uFF25\u00C8\u00C9\u00CA\u1EC0\u1EBE\u1EC4\u1EC2\u1EBC\u0112\u1E14\u1E16\u0114\u0116\u00CB\u1EBA\u011A\u0204\u0206\u1EB8\u1EC6\u0228\u1E1C\u0118\u1E18\u1E1A\u0190\u018E]/g},{base:"F",letters:/[\u0046\u24BB\uFF26\u1E1E\u0191\uA77B]/g},{base:"G",letters:/[\u0047\u24BC\uFF27\u01F4\u011C\u1E20\u011E\u0120\u01E6\u0122\u01E4\u0193\uA7A0\uA77D\uA77E]/g},{base:"H",letters:/[\u0048\u24BD\uFF28\u0124\u1E22\u1E26\u021E\u1E24\u1E28\u1E2A\u0126\u2C67\u2C75\uA78D]/g},{base:"I",letters:/[\u0049\u24BE\uFF29\u00CC\u00CD\u00CE\u0128\u012A\u012C\u0130\u00CF\u1E2E\u1EC8\u01CF\u0208\u020A\u1ECA\u012E\u1E2C\u0197]/g},{base:"J",letters:/[\u004A\u24BF\uFF2A\u0134\u0248]/g},{base:"K",letters:/[\u004B\u24C0\uFF2B\u1E30\u01E8\u1E32\u0136\u1E34\u0198\u2C69\uA740\uA742\uA744\uA7A2]/g},{base:"L",letters:/[\u004C\u24C1\uFF2C\u013F\u0139\u013D\u1E36\u1E38\u013B\u1E3C\u1E3A\u0141\u023D\u2C62\u2C60\uA748\uA746\uA780]/g},{base:"LJ",letters:/[\u01C7]/g},{base:"Lj",letters:/[\u01C8]/g},{base:"M",letters:/[\u004D\u24C2\uFF2D\u1E3E\u1E40\u1E42\u2C6E\u019C]/g},{base:"N",letters:/[\u004E\u24C3\uFF2E\u01F8\u0143\u00D1\u1E44\u0147\u1E46\u0145\u1E4A\u1E48\u0220\u019D\uA790\uA7A4]/g},{base:"NJ",letters:/[\u01CA]/g},{base:"Nj",letters:/[\u01CB]/g},{base:"O",letters:/[\u004F\u24C4\uFF2F\u00D2\u00D3\u00D4\u1ED2\u1ED0\u1ED6\u1ED4\u00D5\u1E4C\u022C\u1E4E\u014C\u1E50\u1E52\u014E\u022E\u0230\u00D6\u022A\u1ECE\u0150\u01D1\u020C\u020E\u01A0\u1EDC\u1EDA\u1EE0\u1EDE\u1EE2\u1ECC\u1ED8\u01EA\u01EC\u00D8\u01FE\u0186\u019F\uA74A\uA74C]/g},{base:"OI",letters:/[\u01A2]/g},{base:"OO",letters:/[\uA74E]/g},{base:"OU",letters:/[\u0222]/g},{base:"P",letters:/[\u0050\u24C5\uFF30\u1E54\u1E56\u01A4\u2C63\uA750\uA752\uA754]/g},{base:"Q",letters:/[\u0051\u24C6\uFF31\uA756\uA758\u024A]/g},{base:"R",letters:/[\u0052\u24C7\uFF32\u0154\u1E58\u0158\u0210\u0212\u1E5A\u1E5C\u0156\u1E5E\u024C\u2C64\uA75A\uA7A6\uA782]/g},{base:"S",letters:/[\u0053\u24C8\uFF33\u1E9E\u015A\u1E64\u015C\u1E60\u0160\u1E66\u1E62\u1E68\u0218\u015E\u2C7E\uA7A8\uA784]/g},{base:"T",letters:/[\u0054\u24C9\uFF34\u1E6A\u0164\u1E6C\u021A\u0162\u1E70\u1E6E\u0166\u01AC\u01AE\u023E\uA786]/g},{base:"TZ",letters:/[\uA728]/g},{base:"U",letters:/[\u0055\u24CA\uFF35\u00D9\u00DA\u00DB\u0168\u1E78\u016A\u1E7A\u016C\u00DC\u01DB\u01D7\u01D5\u01D9\u1EE6\u016E\u0170\u01D3\u0214\u0216\u01AF\u1EEA\u1EE8\u1EEE\u1EEC\u1EF0\u1EE4\u1E72\u0172\u1E76\u1E74\u0244]/g},{base:"V",letters:/[\u0056\u24CB\uFF36\u1E7C\u1E7E\u01B2\uA75E\u0245]/g},{base:"VY",letters:/[\uA760]/g},{base:"W",letters:/[\u0057\u24CC\uFF37\u1E80\u1E82\u0174\u1E86\u1E84\u1E88\u2C72]/g},{base:"X",letters:/[\u0058\u24CD\uFF38\u1E8A\u1E8C]/g},{base:"Y",letters:/[\u0059\u24CE\uFF39\u1EF2\u00DD\u0176\u1EF8\u0232\u1E8E\u0178\u1EF6\u1EF4\u01B3\u024E\u1EFE]/g},{base:"Z",letters:/[\u005A\u24CF\uFF3A\u0179\u1E90\u017B\u017D\u1E92\u1E94\u01B5\u0224\u2C7F\u2C6B\uA762]/g},{base:"a",letters:/[\u0061\u24D0\uFF41\u1E9A\u00E0\u00E1\u00E2\u1EA7\u1EA5\u1EAB\u1EA9\u00E3\u0101\u0103\u1EB1\u1EAF\u1EB5\u1EB3\u0227\u01E1\u00E4\u01DF\u1EA3\u00E5\u01FB\u01CE\u0201\u0203\u1EA1\u1EAD\u1EB7\u1E01\u0105\u2C65\u0250]/g},{base:"aa",letters:/[\uA733]/g},{base:"ae",letters:/[\u00E6\u01FD\u01E3]/g},{base:"ao",letters:/[\uA735]/g},{base:"au",letters:/[\uA737]/g},{base:"av",letters:/[\uA739\uA73B]/g},{base:"ay",letters:/[\uA73D]/g},{base:"b",letters:/[\u0062\u24D1\uFF42\u1E03\u1E05\u1E07\u0180\u0183\u0253]/g},{base:"c",letters:/[\u0063\u24D2\uFF43\u0107\u0109\u010B\u010D\u00E7\u1E09\u0188\u023C\uA73F\u2184]/g},{base:"d",letters:/[\u0064\u24D3\uFF44\u1E0B\u010F\u1E0D\u1E11\u1E13\u1E0F\u0111\u018C\u0256\u0257\uA77A]/g},{base:"dz",letters:/[\u01F3\u01C6]/g},{base:"e",letters:/[\u0065\u24D4\uFF45\u00E8\u00E9\u00EA\u1EC1\u1EBF\u1EC5\u1EC3\u1EBD\u0113\u1E15\u1E17\u0115\u0117\u00EB\u1EBB\u011B\u0205\u0207\u1EB9\u1EC7\u0229\u1E1D\u0119\u1E19\u1E1B\u0247\u025B\u01DD]/g},{base:"f",letters:/[\u0066\u24D5\uFF46\u1E1F\u0192\uA77C]/g},{base:"g",letters:/[\u0067\u24D6\uFF47\u01F5\u011D\u1E21\u011F\u0121\u01E7\u0123\u01E5\u0260\uA7A1\u1D79\uA77F]/g},{base:"h",letters:/[\u0068\u24D7\uFF48\u0125\u1E23\u1E27\u021F\u1E25\u1E29\u1E2B\u1E96\u0127\u2C68\u2C76\u0265]/g},{base:"hv",letters:/[\u0195]/g},{base:"i",letters:/[\u0069\u24D8\uFF49\u00EC\u00ED\u00EE\u0129\u012B\u012D\u00EF\u1E2F\u1EC9\u01D0\u0209\u020B\u1ECB\u012F\u1E2D\u0268\u0131]/g},{base:"j",letters:/[\u006A\u24D9\uFF4A\u0135\u01F0\u0249]/g},{base:"k",letters:/[\u006B\u24DA\uFF4B\u1E31\u01E9\u1E33\u0137\u1E35\u0199\u2C6A\uA741\uA743\uA745\uA7A3]/g},{base:"l",letters:/[\u006C\u24DB\uFF4C\u0140\u013A\u013E\u1E37\u1E39\u013C\u1E3D\u1E3B\u017F\u0142\u019A\u026B\u2C61\uA749\uA781\uA747]/g},{base:"lj",letters:/[\u01C9]/g},{base:"m",letters:/[\u006D\u24DC\uFF4D\u1E3F\u1E41\u1E43\u0271\u026F]/g},{base:"n",letters:/[\u006E\u24DD\uFF4E\u01F9\u0144\u00F1\u1E45\u0148\u1E47\u0146\u1E4B\u1E49\u019E\u0272\u0149\uA791\uA7A5]/g},{base:"nj",letters:/[\u01CC]/g},{base:"o",letters:/[\u006F\u24DE\uFF4F\u00F2\u00F3\u00F4\u1ED3\u1ED1\u1ED7\u1ED5\u00F5\u1E4D\u022D\u1E4F\u014D\u1E51\u1E53\u014F\u022F\u0231\u00F6\u022B\u1ECF\u0151\u01D2\u020D\u020F\u01A1\u1EDD\u1EDB\u1EE1\u1EDF\u1EE3\u1ECD\u1ED9\u01EB\u01ED\u00F8\u01FF\u0254\uA74B\uA74D\u0275]/g},{base:"oi",letters:/[\u01A3]/g},{base:"ou",letters:/[\u0223]/g},{base:"oo",letters:/[\uA74F]/g},{base:"p",letters:/[\u0070\u24DF\uFF50\u1E55\u1E57\u01A5\u1D7D\uA751\uA753\uA755]/g},{base:"q",letters:/[\u0071\u24E0\uFF51\u024B\uA757\uA759]/g},{base:"r",letters:/[\u0072\u24E1\uFF52\u0155\u1E59\u0159\u0211\u0213\u1E5B\u1E5D\u0157\u1E5F\u024D\u027D\uA75B\uA7A7\uA783]/g},{base:"s",letters:/[\u0073\u24E2\uFF53\u00DF\u015B\u1E65\u015D\u1E61\u0161\u1E67\u1E63\u1E69\u0219\u015F\u023F\uA7A9\uA785\u1E9B]/g},{base:"t",letters:/[\u0074\u24E3\uFF54\u1E6B\u1E97\u0165\u1E6D\u021B\u0163\u1E71\u1E6F\u0167\u01AD\u0288\u2C66\uA787]/g},{base:"tz",letters:/[\uA729]/g},{base:"u",letters:/[\u0075\u24E4\uFF55\u00F9\u00FA\u00FB\u0169\u1E79\u016B\u1E7B\u016D\u00FC\u01DC\u01D8\u01D6\u01DA\u1EE7\u016F\u0171\u01D4\u0215\u0217\u01B0\u1EEB\u1EE9\u1EEF\u1EED\u1EF1\u1EE5\u1E73\u0173\u1E77\u1E75\u0289]/g},{base:"v",letters:/[\u0076\u24E5\uFF56\u1E7D\u1E7F\u028B\uA75F\u028C]/g},{base:"vy",letters:/[\uA761]/g},{base:"w",letters:/[\u0077\u24E6\uFF57\u1E81\u1E83\u0175\u1E87\u1E85\u1E98\u1E89\u2C73]/g},{base:"x",letters:/[\u0078\u24E7\uFF58\u1E8B\u1E8D]/g},{base:"y",letters:/[\u0079\u24E8\uFF59\u1EF3\u00FD\u0177\u1EF9\u0233\u1E8F\u00FF\u1EF7\u1E99\u1EF5\u01B4\u024F\u1EFF]/g},{base:"z",letters:/[\u007A\u24E9\uFF5A\u017A\u1E91\u017C\u017E\u1E93\u1E95\u01B6\u0225\u0240\u2C6C\uA763]/g}],se=function(e){for(var t=0;t<le.length;t++)e=e.replace(le[t].letters,le[t].base);return e},ce=function(e){return e.replace(/^\s+|\s+$/g,"")},fe=function(e){return e.label+" "+e.value},pe=function(e){return S.a.createElement("span",V({className:Object(_.a)({zIndex:9999,border:0,clip:"rect(1px, 1px, 1px, 1px)",height:1,width:1,position:"absolute",overflow:"hidden",padding:0,whiteSpace:"nowrap",backgroundColor:"red",color:"blue"})},e))},de=function(e){function t(){return M(this,t),z(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return U(t,e),L(t,[{key:"render",value:function(){var e=this.props,t=(e.in,e.out,e.onExited,e.appear,e.enter,e.exit,e.innerRef),n=(e.emotion,B(e,["in","out","onExited","appear","enter","exit","innerRef","emotion"]));return S.a.createElement("input",V({ref:t},n,{className:Object(_.a)({background:0,border:0,fontSize:"inherit",outline:0,padding:0,width:1,color:"transparent",left:-100,opacity:0,position:"relative",transform:"scale(0)"})}))}}]),t}(O.Component),he=function(e){function t(){return M(this,t),z(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return U(t,e),L(t,[{key:"componentDidMount",value:function(){this.props.innerRef(Object(T.findDOMNode)(this))}},{key:"componentWillUnmount",value:function(){this.props.innerRef(null)}},{key:"render",value:function(){return this.props.children}}]),t}(O.Component),me=["boxSizing","height","overflow","paddingRight","position"],ve={boxSizing:"border-box",overflow:"hidden",position:"relative",height:"100%"},ge=!("undefined"==typeof window||!window.document||!window.document.createElement),ye=0,be=function(e){function t(){var e,n,r,o;M(this,t);for(var i=arguments.length,a=Array(i),u=0;u<i;u++)a[u]=arguments[u];return n=r=z(this,(e=t.__proto__||Object.getPrototypeOf(t)).call.apply(e,[this].concat(a))),r.originalStyles={},r.listenerOptions={capture:!1,passive:!1},o=n,z(r,o)}return U(t,e),L(t,[{key:"componentDidMount",value:function(){var e=this;if(ge){var t=this.props,n=t.accountForScrollbars,r=t.touchScrollTarget,o=document.body,i=o&&o.style;if(n&&me.forEach(function(t){var n=i&&i[t];e.originalStyles[t]=n}),n&&ye<1){var a=parseInt(this.originalStyles.paddingRight,10)||0,u=document.body?document.body.clientWidth:0,l=window.innerWidth-u+a||0;Object.keys(ve).forEach(function(e){var t=ve[e];i&&(i[e]=t)}),i&&(i.paddingRight=l+"px")}o&&x()&&(o.addEventListener("touchmove",b,this.listenerOptions),r&&(r.addEventListener("touchstart",w,this.listenerOptions),r.addEventListener("touchmove",E,this.listenerOptions))),ye+=1}}},{key:"componentWillUnmount",value:function(){var e=this;if(ge){var t=this.props,n=t.accountForScrollbars,r=t.touchScrollTarget,o=document.body,i=o&&o.style;ye=Math.max(ye-1,0),n&&ye<1&&me.forEach(function(t){var n=e.originalStyles[t];i&&(i[t]=n)}),o&&x()&&(o.removeEventListener("touchmove",b,this.listenerOptions),r&&(r.removeEventListener("touchstart",w,this.listenerOptions),r.removeEventListener("touchmove",E,this.listenerOptions)))}}},{key:"render",value:function(){return null}}]),t}(O.Component);be.defaultProps={accountForScrollbars:!0};var Ee=function(e){function t(){var e,n,r,o;M(this,t);for(var i=arguments.length,a=Array(i),u=0;u<i;u++)a[u]=arguments[u];return n=r=z(this,(e=t.__proto__||Object.getPrototypeOf(t)).call.apply(e,[this].concat(a))),r.state={touchScrollTarget:null},r.getScrollTarget=function(e){e!==r.state.touchScrollTarget&&r.setState({touchScrollTarget:e})},r.blurSelectInput=function(){document.activeElement&&document.activeElement.blur()},o=n,z(r,o)}return U(t,e),L(t,[{key:"render",value:function(){var e=this.props,t=e.children,n=e.isEnabled,r=this.state.touchScrollTarget;return n?S.a.createElement("div",null,S.a.createElement("div",{onClick:this.blurSelectInput,className:Object(_.a)({position:"fixed",left:0,bottom:0,right:0,top:0})}),S.a.createElement(he,{innerRef:this.getScrollTarget},t),r?S.a.createElement(be,{touchScrollTarget:r}):null):t}}]),t}(O.PureComponent),we=function(e){function t(){var e,n,r,o;M(this,t);for(var i=arguments.length,a=Array(i),u=0;u<i;u++)a[u]=arguments[u];return n=r=z(this,(e=t.__proto__||Object.getPrototypeOf(t)).call.apply(e,[this].concat(a))),r.isBottom=!1,r.isTop=!1,r.cancelScroll=function(e){e.preventDefault(),e.stopPropagation()},r.handleEventDelta=function(e,t){var n=r.props,o=n.onBottomArrive,i=n.onBottomLeave,a=n.onTopArrive,u=n.onTopLeave,l=r.scrollTarget,s=l.scrollTop,c=l.scrollHeight,f=l.clientHeight,p=r.scrollTarget,d=t>0,h=c-f-s,m=!1;h>t&&r.isBottom&&(i&&i(e),r.isBottom=!1),d&&r.isTop&&(u&&u(e),r.isTop=!1),d&&t>h?(o&&!r.isBottom&&o(e),p.scrollTop=c,m=!0,r.isBottom=!0):!d&&-t>s&&(a&&!r.isTop&&a(e),p.scrollTop=0,m=!0,r.isTop=!0),m&&r.cancelScroll(e)},r.onWheel=function(e){r.handleEventDelta(e,e.deltaY)},r.onTouchStart=function(e){r.touchStart=e.changedTouches[0].clientY},r.onTouchMove=function(e){var t=r.touchStart-e.changedTouches[0].clientY;r.handleEventDelta(e,t)},r.getScrollTarget=function(e){r.scrollTarget=e},o=n,z(r,o)}return U(t,e),L(t,[{key:"componentDidMount",value:function(){this.startListening(this.scrollTarget)}},{key:"componentWillUnmount",value:function(){this.stopListening(this.scrollTarget)}},{key:"startListening",value:function(e){e.scrollHeight<=e.clientHeight||("function"==typeof e.addEventListener&&e.addEventListener("wheel",this.onWheel,!1),"function"==typeof e.addEventListener&&e.addEventListener("touchstart",this.onTouchStart,!1),"function"==typeof e.addEventListener&&e.addEventListener("touchmove",this.onTouchMove,!1))}},{key:"stopListening",value:function(e){e.scrollHeight<=e.clientHeight||("function"==typeof e.removeEventListener&&e.removeEventListener("wheel",this.onWheel,!1),"function"==typeof e.removeEventListener&&e.removeEventListener("touchstart",this.onTouchStart,!1),"function"==typeof e.removeEventListener&&e.removeEventListener("touchmove",this.onTouchMove,!1))}},{key:"render",value:function(){return S.a.createElement(he,{innerRef:this.getScrollTarget},this.props.children)}}]),t}(O.Component),xe=function(e){function t(){return M(this,t),z(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return U(t,e),L(t,[{key:"render",value:function(){var e=this.props,t=e.isEnabled,n=B(e,["isEnabled"]);return t?S.a.createElement(we,n):this.props.children}}]),t}(O.Component);xe.defaultProps={isEnabled:!0};var ke=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=t.isSearchable,r=t.isMulti,o=t.label;switch(e){case"menu":return"Use Up and Down to choose options, press Enter to select the currently focused option, press Escape to exit the menu, press Tab to select the option and exit the menu.";case"input":return(o||"Select")+" is focused "+(n?",type to refine list":"")+", press Down to open the menu, "+(r?" press left to focus selected values":"");case"value":return"Use left and right to toggle between focused values, press Enter to remove the currently focused value"}},Ce=function(e,t){var n=t.value;if(n)switch(e){case"deselect-option":case"pop-value":case"remove-value":return"option "+n+", deselected.";case"select-option":return"option "+n+", selected."}},Oe=function(e){var t=e.focusedValue,n=e.getOptionLabel,r=e.selectValue;return"value "+n(t)+" focused, "+(r.indexOf(t)+1)+" of "+r.length+"."},Se=function(e){var t=e.focusedOption,n=e.getOptionLabel,r=e.options;return"option "+n(t)+" focused, "+(r.indexOf(t)+1)+" of "+r.length+"."},_e=function(e){var t=e.inputValue;return e.screenReaderMessage+(t?" for search term "+t:"")+"."},Te=function(e){return e.label},Pe=function(e){return e.label},Ae=function(e){return e.value},Fe=function(e){return!!e.isDisabled},De=function(e){var t=e.isDisabled;return{direction:e.isRtl?"rtl":null,pointerEvents:t?"none":null,position:"relative"}},Ne=function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles,i=e.innerProps,a=e.isDisabled,u=e.isRtl;return S.a.createElement("div",V({className:r(Object(_.a)(o("container",e)),{"--is-disabled":a,"--is-rtl":u},n)},i),t)},je=function(e){var t=e.theme.spacing;return{alignItems:"center",display:"flex",flex:1,flexWrap:"wrap",padding:t.baseUnit/2+"px "+2*t.baseUnit+"px",WebkitOverflowScrolling:"touch",position:"relative",overflow:"hidden"}},Ie=function(e){function t(){return M(this,t),z(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return U(t,e),L(t,[{key:"render",value:function(){var e=this.props,t=e.children,n=e.className,r=e.cx,o=e.isMulti,i=e.getStyles,a=e.hasValue;return S.a.createElement("div",{className:r(Object(_.a)(i("valueContainer",this.props)),{"value-container":!0,"value-container--is-multi":o,"value-container--has-value":a},n)},t)}}]),t}(O.Component),Me=function(){return{alignItems:"center",alignSelf:"stretch",display:"flex",flexShrink:0}},Le=function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles;return S.a.createElement("div",{className:r(Object(_.a)(o("indicatorsContainer",e)),{indicators:!0},n)},t)},Re=function(e){var t=e.size,n=B(e,["size"]);return S.a.createElement("svg",V({height:t,width:t,viewBox:"0 0 20 20","aria-hidden":"true",focusable:"false",className:Object(_.a)({display:"inline-block",fill:"currentColor",lineHeight:1,stroke:"currentColor",strokeWidth:0})},n))},Ve=function(e){return S.a.createElement(Re,V({size:20},e),S.a.createElement("path",{d:"M14.348 14.849c-0.469 0.469-1.229 0.469-1.697 0l-2.651-3.030-2.651 3.029c-0.469 0.469-1.229 0.469-1.697 0-0.469-0.469-0.469-1.229 0-1.697l2.758-3.15-2.759-3.152c-0.469-0.469-0.469-1.228 0-1.697s1.228-0.469 1.697 0l2.652 3.031 2.651-3.031c0.469-0.469 1.228-0.469 1.697 0s0.469 1.229 0 1.697l-2.758 3.152 2.758 3.15c0.469 0.469 0.469 1.229 0 1.698z"}))},Ue=function(e){return S.a.createElement(Re,V({size:20},e),S.a.createElement("path",{d:"M4.516 7.548c0.436-0.446 1.043-0.481 1.576 0l3.908 3.747 3.908-3.747c0.533-0.481 1.141-0.446 1.574 0 0.436 0.445 0.408 1.197 0 1.615-0.406 0.418-4.695 4.502-4.695 4.502-0.217 0.223-0.502 0.335-0.787 0.335s-0.57-0.112-0.789-0.335c0 0-4.287-4.084-4.695-4.502s-0.436-1.17 0-1.615z"}))},Be=function(e){var t=e.isFocused,n=e.theme,r=n.spacing.baseUnit,o=n.colors;return{color:t?o.neutral60:o.neutral20,display:"flex",padding:2*r,transition:"color 150ms",":hover":{color:t?o.neutral80:o.neutral40}}},ze=Be,We=function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles,i=e.innerProps;return S.a.createElement("div",V({},i,{className:r(Object(_.a)(o("dropdownIndicator",e)),{indicator:!0,"dropdown-indicator":!0},n)}),t||S.a.createElement(Ue,null))},He=Be,$e=function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles,i=e.innerProps;return S.a.createElement("div",V({},i,{className:r(Object(_.a)(o("clearIndicator",e)),{indicator:!0,"clear-indicator":!0},n)}),t||S.a.createElement(Ve,null))},Ge=function(e){var t=e.isDisabled,n=e.theme,r=n.spacing.baseUnit,o=n.colors;return{alignSelf:"stretch",backgroundColor:t?o.neutral10:o.neutral20,marginBottom:2*r,marginTop:2*r,width:1}},Ke=function(e){var t=e.className,n=e.cx,r=e.getStyles,o=e.innerProps;return S.a.createElement("span",V({},o,{className:n(Object(_.a)(r("indicatorSeparator",e)),{"indicator-separator":!0},t)}))},Qe=!1,Ye=function(e){var t=e.isFocused,n=e.size,r=e.theme,o=r.colors,i=r.spacing.baseUnit;return{color:t?o.neutral60:o.neutral20,display:"flex",padding:2*i,transition:"color 150ms",alignSelf:"center",fontSize:n,lineHeight:1,marginRight:n,textAlign:"center",verticalAlign:"middle"}},qe=function(e){var t=e.color,n=e.delay,r=e.offset;return S.a.createElement("span",{className:Object(_.a)({animationDuration:"1s",animationDelay:n+"ms",animationIterationCount:"infinite",animationName:"react-select-loading-indicator",animationTimingFunction:"ease-in-out",backgroundColor:t,borderRadius:"1em",display:"inline-block",marginLeft:r?"1em":null,height:"1em",verticalAlign:"top",width:"1em"})})},Xe=function(e){var t=e.className,n=e.cx,r=e.getStyles,o=e.innerProps,i=e.isFocused,a=e.isRtl,u=e.theme.colors,l=i?u.neutral80:u.neutral20;return Qe||(Object(_.b)("@keyframes ","react-select-loading-indicator","{0%,80%,100%{opacity:0;}40%{opacity:1;}};"),Qe=!0),S.a.createElement("div",V({},o,{className:n(Object(_.a)(r("loadingIndicator",e)),{indicator:!0,"loading-indicator":!0},t)}),S.a.createElement(qe,{color:l,delay:0,offset:a}),S.a.createElement(qe,{color:l,delay:160,offset:!0}),S.a.createElement(qe,{color:l,delay:320,offset:!a}))};Xe.defaultProps={size:4};var Ze=function(e){var t=e.isDisabled,n=e.isFocused,r=e.theme,o=r.colors,i=r.borderRadius,a=r.spacing;return{alignItems:"center",backgroundColor:t?o.neutral5:o.neutral0,borderColor:t?o.neutral10:n?o.primary:o.neutral20,borderRadius:i,borderStyle:"solid",borderWidth:1,boxShadow:n?"0 0 0 1px "+o.primary:null,cursor:"default",display:"flex",flexWrap:"wrap",justifyContent:"space-between",minHeight:a.controlHeight,outline:"0 !important",position:"relative",transition:"all 100ms","&:hover":{borderColor:n?o.primary:o.neutral30}}},Je=function(e){var t=e.children,n=e.cx,r=e.getStyles,o=e.className,i=e.isDisabled,a=e.isFocused,u=e.innerRef,l=e.innerProps,s=e.menuIsOpen;return S.a.createElement("div",V({ref:u,className:n(Object(_.a)(r("control",e)),{control:!0,"control--is-disabled":i,"control--is-focused":a,"control--menu-is-open":s},o)},l),t)},et=function(e){var t=e.theme.spacing;return{paddingBottom:2*t.baseUnit,paddingTop:2*t.baseUnit}},tt=function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles,i=e.Heading,a=e.headingProps,u=e.label,l=e.theme,s=e.selectProps;return S.a.createElement("div",{className:r(Object(_.a)(o("group",e)),{group:!0},n)},S.a.createElement(i,V({},a,{selectProps:s,theme:l,getStyles:o,cx:r}),u),S.a.createElement("div",null,t))},nt=function(e){var t=e.theme.spacing;return{color:"#999",cursor:"default",display:"block",fontSize:"75%",fontWeight:"500",marginBottom:"0.25em",paddingLeft:3*t.baseUnit,paddingRight:3*t.baseUnit,textTransform:"uppercase"}},rt=function(e){var t=e.className,n=e.cx,r=e.getStyles,o=e.theme,i=(e.selectProps,B(e,["className","cx","getStyles","theme","selectProps"]));return S.a.createElement("div",V({className:n(Object(_.a)(r("groupHeading",V({theme:o},i))),{"group-heading":!0},t)},i))},ot=function(e){var t=e.isDisabled,n=e.theme,r=n.spacing,o=n.colors;return{margin:r.baseUnit/2,paddingBottom:r.baseUnit/2,paddingTop:r.baseUnit/2,visibility:t?"hidden":"visible",color:o.neutral80}},it=function(e){return{background:0,border:0,fontSize:"inherit",opacity:e?0:1,outline:0,padding:0,color:"inherit"}},at=function(e){var t=e.className,n=e.cx,r=e.getStyles,o=e.innerRef,i=e.isHidden,a=e.isDisabled,u=e.theme,l=(e.selectProps,B(e,["className","cx","getStyles","innerRef","isHidden","isDisabled","theme","selectProps"]));return S.a.createElement("div",{className:Object(_.a)(r("input",V({theme:u},l)))},S.a.createElement(D.a,V({className:n(null,{input:!0},t),inputRef:o,inputStyle:it(i),disabled:a},l)))},ut=function(e){var t=e.theme,n=t.spacing,r=t.borderRadius;return{backgroundColor:t.colors.neutral10,borderRadius:r/2,display:"flex",margin:n.baseUnit/2,minWidth:0}},lt=function(e){var t=e.theme,n=t.borderRadius,r=t.colors,o=e.cropWithEllipsis;return{borderRadius:n/2,color:r.neutral80,fontSize:"85%",overflow:"hidden",padding:3,paddingLeft:6,textOverflow:o?"ellipsis":null,whiteSpace:"nowrap"}},st=function(e){var t=e.theme,n=t.spacing,r=t.borderRadius,o=t.colors;return{alignItems:"center",borderRadius:r/2,backgroundColor:e.isFocused&&o.dangerLight,display:"flex",paddingLeft:n.baseUnit,paddingRight:n.baseUnit,":hover":{backgroundColor:o.dangerLight,color:o.danger}}},ct=function(e){var t=e.children,n=e.innerProps;return S.a.createElement("div",n,t)},ft=ct,pt=ct,dt=function(e){function t(){return M(this,t),z(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return U(t,e),L(t,[{key:"render",value:function(){var e=this.props,t=e.children,n=e.innerProps;return S.a.createElement("div",n,t||S.a.createElement(Ve,{size:14}))}}]),t}(O.Component),ht=function(e){function t(){return M(this,t),z(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return U(t,e),L(t,[{key:"render",value:function(){var e=this.props,t=e.children,n=e.className,r=e.components,o=e.cx,i=e.data,a=e.getStyles,u=e.innerProps,l=e.isDisabled,s=e.removeProps,c=e.selectProps,f=r.Container,p=r.Label,d=r.Remove,h=V({className:o(Object(_.a)(a("multiValue",this.props)),{"multi-value":!0,"multi-value--is-disabled":l},n)},u),m={className:o(Object(_.a)(a("multiValueLabel",this.props)),{"multi-value__label":!0},n)},v=V({className:o(Object(_.a)(a("multiValueRemove",this.props)),{"multi-value__remove":!0},n)},s);return S.a.createElement(f,{data:i,innerProps:h,selectProps:c},S.a.createElement(p,{data:i,innerProps:m,selectProps:c},t),S.a.createElement(d,{data:i,innerProps:v,selectProps:c}))}}]),t}(O.Component);ht.defaultProps={cropWithEllipsis:!0};var mt=function(e){var t=e.isDisabled,n=e.isFocused,r=e.isSelected,o=e.theme,i=o.spacing,a=o.colors;return{backgroundColor:r?a.primary:n?a.primary25:"transparent",color:t?a.neutral20:r?a.neutral0:"inherit",cursor:"default",display:"block",fontSize:"inherit",padding:2*i.baseUnit+"px "+3*i.baseUnit+"px",width:"100%",userSelect:"none",WebkitTapHighlightColor:"rgba(0, 0, 0, 0)",":active":{backgroundColor:r?a.primary:a.primary50}}},vt=function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles,i=e.isDisabled,a=e.isFocused,u=e.isSelected,l=e.innerRef,s=e.innerProps;return S.a.createElement("div",V({ref:l,className:r(Object(_.a)(o("option",e)),{option:!0,"option--is-disabled":i,"option--is-focused":a,"option--is-selected":u},n)},s),t)},gt=function(e){var t=e.theme,n=t.spacing;return{color:t.colors.neutral50,marginLeft:n.baseUnit/2,marginRight:n.baseUnit/2,position:"absolute",top:"50%",transform:"translateY(-50%)"}},yt=function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles,i=e.innerProps;return S.a.createElement("div",V({className:r(Object(_.a)(o("placeholder",e)),{placeholder:!0},n)},i),t)},bt=function(e){var t=e.isDisabled,n=e.theme,r=n.spacing,o=n.colors;return{color:t?o.neutral40:o.neutral80,marginLeft:r.baseUnit/2,marginRight:r.baseUnit/2,maxWidth:"calc(100% - "+2*r.baseUnit+"px)",overflow:"hidden",position:"absolute",textOverflow:"ellipsis",whiteSpace:"nowrap",top:"50%",transform:"translateY(-50%)"}},Et=function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles,i=e.isDisabled,a=e.innerProps;return S.a.createElement("div",V({className:r(Object(_.a)(o("singleValue",e)),{"single-value":!0,"single-value--is-disabled":i},n)},a),t)},wt={ClearIndicator:$e,Control:Je,DropdownIndicator:We,DownChevron:Ue,CrossIcon:Ve,Group:tt,GroupHeading:rt,IndicatorsContainer:Le,IndicatorSeparator:Ke,Input:at,LoadingIndicator:Xe,Menu:Y,MenuList:X,MenuPortal:oe,LoadingMessage:ne,NoOptionsMessage:te,MultiValue:ht,MultiValueContainer:ft,MultiValueLabel:pt,MultiValueRemove:dt,Option:vt,Placeholder:yt,SelectContainer:Ne,SingleValue:Et,ValueContainer:Ie},xt=function(e){return V({},wt,e.components)},kt={clearIndicator:He,container:De,control:Ze,dropdownIndicator:ze,group:et,groupHeading:nt,indicatorsContainer:Me,indicatorSeparator:Ge,input:ot,loadingIndicator:Ye,loadingMessage:ee,menu:K,menuList:q,menuPortal:re,multiValue:ut,multiValueLabel:lt,multiValueRemove:st,noOptionsMessage:J,option:mt,placeholder:gt,singleValue:bt,valueContainer:je},Ct={primary:"#2684FF",primary75:"#4C9AFF",primary50:"#B2D4FF",primary25:"#DEEBFF",danger:"#DE350B",dangerLight:"#FFBDAD",neutral0:"hsl(0, 0%, 100%)",neutral5:"hsl(0, 0%, 95%)",neutral10:"hsl(0, 0%, 90%)",neutral20:"hsl(0, 0%, 80%)",neutral30:"hsl(0, 0%, 70%)",neutral40:"hsl(0, 0%, 60%)",neutral50:"hsl(0, 0%, 50%)",neutral60:"hsl(0, 0%, 40%)",neutral70:"hsl(0, 0%, 30%)",neutral80:"hsl(0, 0%, 20%)",neutral90:"hsl(0, 0%, 10%)"},Ot={baseUnit:4,controlHeight:38,menuGutter:8},St={borderRadius:4,colors:Ct,spacing:Ot},_t={backspaceRemovesValue:!0,blurInputOnSelect:h(),captureMenuScroll:!h(),closeMenuOnSelect:!0,closeMenuOnScroll:!1,components:{},controlShouldRenderValue:!0,escapeClearsValue:!1,filterOption:function(e){return function(t,n){var r=V({ignoreCase:!0,ignoreAccents:!0,stringify:fe,trim:!0,matchFrom:"any"},e),o=r.ignoreCase,i=r.ignoreAccents,a=r.stringify,u=r.trim,l=r.matchFrom,s=u?ce(n):n,c=u?ce(a(t)):a(t);return o&&(s=s.toLowerCase(),c=c.toLowerCase()),i&&(s=se(s),c=se(c)),"start"===l?c.substr(0,s.length)===s:c.indexOf(s)>-1}}(),formatGroupLabel:Te,getOptionLabel:Pe,getOptionValue:Ae,isDisabled:!1,isLoading:!1,isMulti:!1,isRtl:!1,isSearchable:!0,isOptionDisabled:Fe,loadingMessage:function(){return"Loading..."},maxMenuHeight:300,minMenuHeight:140,menuIsOpen:!1,menuPlacement:"bottom",menuPosition:"absolute",menuShouldBlockScroll:!1,menuShouldScrollIntoView:!function(){try{return/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)}catch(e){return!1}}(),noOptionsMessage:function(){return"No options"},openMenuOnFocus:!1,openMenuOnClick:!0,options:[],pageSize:5,placeholder:"Select...",screenReaderStatus:function(e){var t=e.count;return t+" result"+(1!==t?"s":"")+" available"},styles:{},tabIndex:"0",tabSelectsValue:!0},Tt=1,Pt=function(e){function t(e){M(this,t);var n=z(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));At.call(n);var r=e.value;n.cacheComponents=Object(N.a)(n.cacheComponents,y).bind(n),n.cacheComponents(e.components),n.instancePrefix="react-select-"+(n.props.instanceId||++Tt);var o=$(r),i=n.buildMenuOptions(e,o);return n.state.menuOptions=i,n.state.selectValue=o,n}return U(t,e),L(t,[{key:"componentDidMount",value:function(){this.startListeningComposition(),this.startListeningToTouch(),this.props.closeMenuOnScroll&&document&&document.addEventListener&&document.addEventListener("scroll",this.onScroll,!0),this.props.autoFocus&&this.focusInput()}},{key:"componentWillReceiveProps",value:function(e){var t=this.props,n=t.options,r=t.value,o=t.inputValue;if(this.cacheComponents(e.components),e.value!==r||e.options!==n||e.inputValue!==o){var i=$(e.value),a=this.buildMenuOptions(e,i),u=this.getNextFocusedValue(i),l=this.getNextFocusedOption(a.focusable);this.setState({menuOptions:a,selectValue:i,focusedOption:l,focusedValue:u})}null!=this.inputIsHiddenAfterUpdate&&(this.setState({inputIsHidden:this.inputIsHiddenAfterUpdate}),delete this.inputIsHiddenAfterUpdate)}},{key:"componentDidUpdate",value:function(e){var t=this.props,n=t.isDisabled,r=t.menuIsOpen,o=this.state.isFocused;(o&&!n&&e.isDisabled||o&&r&&!e.menuIsOpen)&&this.focusInput(),this.menuListRef&&this.focusedOptionRef&&this.scrollToFocusedOptionOnUpdate&&p(this.menuListRef,this.focusedOptionRef),this.scrollToFocusedOptionOnUpdate=!1}},{key:"componentWillUnmount",value:function(){this.stopListeningComposition(),this.stopListeningToTouch(),document.removeEventListener("scroll",this.onScroll,!0)}},{key:"onMenuOpen",value:function(){this.props.onMenuOpen()}},{key:"onMenuClose",value:function(){var e=this.props,t=e.isSearchable,n=e.isMulti;this.announceAriaLiveContext({event:"input",context:{isSearchable:t,isMulti:n}}),this.onInputChange("",{action:"menu-close"}),this.props.onMenuClose()}},{key:"onInputChange",value:function(e,t){this.props.onInputChange(e,t)}},{key:"focusInput",value:function(){this.inputRef&&this.inputRef.focus()}},{key:"blurInput",value:function(){this.inputRef&&this.inputRef.blur()}},{key:"openMenu",value:function(e){var t=this.state,n=t.menuOptions,r=t.selectValue,o=this.props.isMulti,i="first"===e?0:n.focusable.length-1;if(!o){var a=n.focusable.indexOf(r[0]);a>-1&&(i=a)}this.scrollToFocusedOptionOnUpdate=!0,this.inputIsHiddenAfterUpdate=!1,this.onMenuOpen(),this.setState({focusedValue:null,focusedOption:n.focusable[i]}),this.announceAriaLiveContext({event:"menu"})}},{key:"focusValue",value:function(e){var t=this.props,n=t.isMulti,r=t.isSearchable,o=this.state,i=o.selectValue,a=o.focusedValue;if(n){this.setState({focusedOption:null});var u=i.indexOf(a);a||(u=-1,this.announceAriaLiveContext({event:"value"}));var l=i.length-1,s=-1;if(i.length){switch(e){case"previous":s=0===u?0:-1===u?l:u-1;break;case"next":u>-1&&u<l&&(s=u+1)}-1===s&&this.announceAriaLiveContext({event:"input",context:{isSearchable:r,isMulti:n}}),this.setState({inputIsHidden:-1!==s,focusedValue:i[s]})}}}},{key:"focusOption",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"first",t=this.props.pageSize,n=this.state,r=n.focusedOption,o=n.menuOptions,i=o.focusable;if(i.length){var a=0,u=i.indexOf(r);r||(u=-1,this.announceAriaLiveContext({event:"menu"})),"up"===e?a=u>0?u-1:i.length-1:"down"===e?a=(u+1)%i.length:"pageup"===e?(a=u-t)<0&&(a=0):"pagedown"===e?(a=u+t)>i.length-1&&(a=i.length-1):"last"===e&&(a=i.length-1),this.scrollToFocusedOptionOnUpdate=!0,this.setState({focusedOption:i[a],focusedValue:null})}}},{key:"getTheme",value:function(){return this.props.theme?"function"==typeof this.props.theme?this.props.theme(St):V({},St,this.props.theme):St}},{key:"getCommonProps",value:function(){var e=this.clearValue,t=this.getStyles,n=this.setValue,r=this.selectOption,i=this.props,a=i.classNamePrefix,u=i.isMulti,l=i.isRtl,s=i.options,c=this.state.selectValue,f=this.hasValue(),p=function(){return c},d=a;return{cx:o.bind(null,d),clearValue:e,getStyles:t,getValue:p,hasValue:f,isMulti:u,isRtl:l,options:s,selectOption:r,setValue:n,selectProps:i,theme:this.getTheme()}}},{key:"getNextFocusedValue",value:function(e){if(this.clearFocusValueOnUpdate)return this.clearFocusValueOnUpdate=!1,null;var t=this.state,n=t.focusedValue,r=t.selectValue,o=r.indexOf(n);if(o>-1){if(e.indexOf(n)>-1)return n;if(o<e.length)return e[o]}return null}},{key:"getNextFocusedOption",value:function(e){var t=this.state.focusedOption;return t&&e.indexOf(t)>-1?t:e[0]}},{key:"hasValue",value:function(){return this.state.selectValue.length>0}},{key:"hasOptions",value:function(){return!!this.state.menuOptions.render.length}},{key:"countOptions",value:function(){return this.state.menuOptions.focusable.length}},{key:"isClearable",value:function(){var e=this.props,t=e.isClearable,n=e.isMulti;return void 0===t?n:t}},{key:"isOptionDisabled",value:function(e,t){return"function"==typeof this.props.isOptionDisabled&&this.props.isOptionDisabled(e,t)}},{key:"isOptionSelected",value:function(e,t){var n=this;if(t.indexOf(e)>-1)return!0;if("function"==typeof this.props.isOptionSelected)return this.props.isOptionSelected(e,t);var r=this.getOptionValue(e);return t.some(function(e){return n.getOptionValue(e)===r})}},{key:"filterOption",value:function(e,t){return!this.props.filterOption||this.props.filterOption(e,t)}},{key:"formatOptionLabel",value:function(e,t){if("function"==typeof this.props.formatOptionLabel){var n=this.props.inputValue,r=this.state.selectValue;return this.props.formatOptionLabel(e,{context:t,inputValue:n,selectValue:r})}return this.getOptionLabel(e)}},{key:"formatGroupLabel",value:function(e){return this.props.formatGroupLabel(e)}},{key:"startListeningComposition",value:function(){document&&document.addEventListener&&(document.addEventListener("compositionstart",this.onCompositionStart,!1),document.addEventListener("compositionend",this.onCompositionEnd,!1))}},{key:"stopListeningComposition",value:function(){document&&document.removeEventListener&&(document.removeEventListener("compositionstart",this.onCompositionStart),document.removeEventListener("compositionend",this.onCompositionEnd))}},{key:"startListeningToTouch",value:function(){document&&document.addEventListener&&(document.addEventListener("touchstart",this.onTouchStart,!1),document.addEventListener("touchmove",this.onTouchMove,!1),document.addEventListener("touchend",this.onTouchEnd,!1))}},{key:"stopListeningToTouch",value:function(){document&&document.removeEventListener&&(document.removeEventListener("touchstart",this.onTouchStart),document.removeEventListener("touchmove",this.onTouchMove),document.removeEventListener("touchend",this.onTouchEnd))}},{key:"buildMenuOptions",value:function(e,t){var n=this,r=e.inputValue,o=void 0===r?"":r,i=e.options,a=function(e,r){var i=n.isOptionDisabled(e,t),a=n.isOptionSelected(e,t),u=n.getOptionLabel(e),l=n.getOptionValue(e);if(!(n.shouldHideSelectedOptions()&&a||!n.filterOption({label:u,value:l,data:e},o))){var s=i?void 0:function(){return n.onOptionHover(e)},c=i?void 0:function(){return n.selectOption(e)},f=n.getElementId("option")+"-"+r;return{innerProps:{id:f,onClick:c,onMouseMove:s,onMouseOver:s,role:"option",tabIndex:-1},data:e,isDisabled:i,isSelected:a,key:f,label:u,type:"option",value:l}}};return i.reduce(function(e,t,r){if(t.options){n.hasGroups||(n.hasGroups=!0);var o=t.options,i=o.map(function(t,n){var o=a(t,r+"-"+n);return o&&!o.isDisabled&&e.focusable.push(t),o}).filter(Boolean);if(i.length){var u=n.getElementId("group")+"-"+r;e.render.push({type:"group",key:u,data:t,options:i})}}else{var l=a(t,""+r);l&&(e.render.push(l),l.isDisabled||e.focusable.push(t))}return e},{render:[],focusable:[]})}},{key:"constructAriaLiveMessage",value:function(){var e=this.state,t=e.ariaLiveContext,n=e.selectValue,r=e.focusedValue,o=e.focusedOption,i=this.props,a=i.options,u=i.menuIsOpen,l=i.inputValue,s=i.screenReaderStatus;return(r?Oe({focusedValue:r,getOptionLabel:this.getOptionLabel,selectValue:n}):"")+" "+(o&&u?Se({focusedOption:o,getOptionLabel:this.getOptionLabel,options:a}):"")+" "+_e({inputValue:l,screenReaderMessage:s({count:this.countOptions()})})+" "+t}},{key:"renderInput",value:function(){var e=this.props,t=e.isDisabled,n=e.isSearchable,r=e.inputId,o=e.inputValue,i=e.tabIndex,a=this.components.Input,u=this.state.inputIsHidden,l=r||this.getElementId("input");if(!n)return S.a.createElement(de,{id:l,innerRef:this.getInputRef,onBlur:this.onInputBlur,onChange:H,onFocus:this.onInputFocus,readOnly:!0,disabled:t,tabIndex:i,value:""});var s={"aria-autocomplete":"list","aria-label":this.props["aria-label"],"aria-labelledby":this.props["aria-labelledby"]},c=this.commonProps,f=c.cx,p=c.theme,d=c.selectProps;return S.a.createElement(a,V({autoCapitalize:"none",autoComplete:"off",autoCorrect:"off",cx:f,getStyles:this.getStyles,id:l,innerRef:this.getInputRef,isDisabled:t,isHidden:u,onBlur:this.onInputBlur,onChange:this.handleInputChange,onFocus:this.onInputFocus,selectProps:d,spellCheck:"false",tabIndex:i,theme:p,type:"text",value:o},s))}},{key:"renderPlaceholderOrValue",value:function(){var e=this,t=this.components,n=t.MultiValue,r=t.MultiValueContainer,o=t.MultiValueLabel,i=t.MultiValueRemove,a=t.SingleValue,u=t.Placeholder,l=this.commonProps,s=this.props,c=s.controlShouldRenderValue,f=s.isDisabled,p=s.isMulti,d=s.inputValue,h=s.placeholder,m=this.state,v=m.selectValue,g=m.focusedValue,y=m.isFocused;if(!this.hasValue()||!c)return d?null:S.a.createElement(u,V({},l,{key:"placeholder",isDisabled:f,isFocused:y}),h);if(p){return v.map(function(t){var a=t===g;return S.a.createElement(n,V({},l,{components:{Container:r,Label:o,Remove:i},isFocused:a,isDisabled:f,key:e.getOptionValue(t),removeProps:{onClick:function(){return e.removeValue(t)},onTouchEnd:function(){return e.removeValue(t)},onMouseDown:function(e){e.preventDefault(),e.stopPropagation()}},data:t}),e.formatOptionLabel(t,"value"))})}if(d)return null;var b=v[0];return S.a.createElement(a,V({},l,{data:b,isDisabled:f}),this.formatOptionLabel(b,"value"))}},{key:"renderClearIndicator",value:function(){var e=this.components.ClearIndicator,t=this.commonProps,n=this.props,r=n.isDisabled,o=n.isLoading,i=this.state.isFocused;if(!this.isClearable()||!e||r||!this.hasValue()||o)return null;var a={onMouseDown:this.onClearIndicatorMouseDown,onTouchEnd:this.onClearIndicatorTouchEnd,"aria-hidden":"true"};return S.a.createElement(e,V({},t,{innerProps:a,isFocused:i}))}},{key:"renderLoadingIndicator",value:function(){var e=this.components.LoadingIndicator,t=this.commonProps,n=this.props,r=n.isDisabled,o=n.isLoading,i=this.state.isFocused;if(!e||!o)return null;var a={"aria-hidden":"true"};return S.a.createElement(e,V({},t,{innerProps:a,isDisabled:r,isFocused:i}))}},{key:"renderIndicatorSeparator",value:function(){var e=this.components,t=e.DropdownIndicator,n=e.IndicatorSeparator;if(!t||!n)return null;var r=this.commonProps,o=this.props.isDisabled,i=this.state.isFocused;return S.a.createElement(n,V({},r,{isDisabled:o,isFocused:i}))}},{key:"renderDropdownIndicator",value:function(){var e=this.components.DropdownIndicator;if(!e)return null;var t=this.commonProps,n=this.props.isDisabled,r=this.state.isFocused,o={onMouseDown:this.onDropdownIndicatorMouseDown,onTouchEnd:this.onDropdownIndicatorTouchEnd,"aria-hidden":"true"};return S.a.createElement(e,V({},t,{innerProps:o,isDisabled:n,isFocused:r}))}},{key:"renderMenu",value:function(){var e=this,t=this.components,n=t.Group,r=t.GroupHeading,o=t.Menu,i=t.MenuList,a=t.MenuPortal,u=t.LoadingMessage,l=t.NoOptionsMessage,s=t.Option,c=this.commonProps,f=this.state,p=f.focusedOption,d=f.menuOptions,h=this.props,m=h.captureMenuScroll,v=h.inputValue,g=h.isLoading,y=h.loadingMessage,b=h.minMenuHeight,E=h.maxMenuHeight,w=h.menuIsOpen,x=h.menuPlacement,k=h.menuPosition,C=h.menuPortalTarget,O=h.menuShouldBlockScroll,_=h.menuShouldScrollIntoView,T=h.noOptionsMessage,P=h.onMenuScrollToTop,A=h.onMenuScrollToBottom;if(!w)return null;var F=function(t){var n=p===t.data;return t.innerRef=n?e.getFocusedOptionRef:void 0,S.a.createElement(s,V({},c,t,{isFocused:n}),e.formatOptionLabel(t.data,"menu"))},D=void 0;if(this.hasOptions())D=d.render.map(function(t){if("group"===t.type){var o=(t.type,B(t,["type"])),i=t.key+"-heading";return S.a.createElement(n,V({},c,o,{Heading:r,headingProps:{id:i},label:e.formatGroupLabel(t.data)}),t.options.map(function(e){return F(e)}))}if("option"===t.type)return F(t)});else if(g){var N=y({inputValue:v});if(null===N)return null;D=S.a.createElement(u,c,N)}else{var j=T({inputValue:v});if(null===j)return null;D=S.a.createElement(l,c,j)}var I={minMenuHeight:b,maxMenuHeight:E,menuPlacement:x,menuPosition:k,menuShouldScrollIntoView:_},M=S.a.createElement(Q,V({},c,I),function(t){var n=t.ref,r=t.placerProps,a=r.placement,u=r.maxHeight;return S.a.createElement(o,V({},c,I,{innerRef:n,innerProps:{onMouseDown:e.onMenuMouseDown,onMouseMove:e.onMenuMouseMove},isLoading:g,placement:a}),S.a.createElement(xe,{isEnabled:m,onTopArrive:P,onBottomArrive:A},S.a.createElement(Ee,{isEnabled:O},S.a.createElement(i,V({},c,{innerRef:e.getMenuListRef,isLoading:g,maxHeight:u}),D))))});return C||"fixed"===k?S.a.createElement(a,V({},c,{appendTo:C,controlElement:this.controlRef,menuPlacement:x,menuPosition:k}),M):M}},{key:"renderFormField",value:function(){var e=this,t=this.props,n=t.delimiter,r=t.isDisabled,o=t.isMulti,i=t.name,a=this.state.selectValue;if(i&&!r){if(o){if(n){var u=a.map(function(t){return e.getOptionValue(t)}).join(n);return S.a.createElement("input",{name:i,type:"hidden",value:u})}var l=a.length>0?a.map(function(t,n){return S.a.createElement("input",{key:"i-"+n,name:i,type:"hidden",value:e.getOptionValue(t)})}):S.a.createElement("input",{name:i,type:"hidden"});return S.a.createElement("div",null,l)}var s=a[0]?this.getOptionValue(a[0]):"";return S.a.createElement("input",{name:i,type:"hidden",value:s})}}},{key:"renderLiveRegion",value:function(){return this.state.isFocused?S.a.createElement(pe,{"aria-live":"assertive"},S.a.createElement("p",{id:"aria-selection-event"}," ",this.state.ariaLiveSelection),S.a.createElement("p",{id:"aria-context"}," ",this.constructAriaLiveMessage())):null}},{key:"render",value:function(){var e=this.components,t=e.Control,n=e.IndicatorsContainer,r=e.SelectContainer,o=e.ValueContainer,i=this.props,a=i.className,u=i.id,l=i.isDisabled,s=i.menuIsOpen,c=this.state.isFocused,f=this.commonProps=this.getCommonProps();return S.a.createElement(r,V({},f,{className:a,innerProps:{id:u,onKeyDown:this.onKeyDown},isDisabled:l,isFocused:c}),this.renderLiveRegion(),S.a.createElement(t,V({},f,{innerRef:this.getControlRef,innerProps:{onMouseDown:this.onControlMouseDown,onTouchEnd:this.onControlTouchEnd},isDisabled:l,isFocused:c,menuIsOpen:s}),S.a.createElement(o,V({},f,{isDisabled:l}),this.renderPlaceholderOrValue(),this.renderInput()),S.a.createElement(n,V({},f,{isDisabled:l}),this.renderClearIndicator(),this.renderLoadingIndicator(),this.renderIndicatorSeparator(),this.renderDropdownIndicator())),this.renderMenu(),this.renderFormField())}}]),t}(O.Component);Pt.defaultProps=_t;var At=function(){var e=this;this.state={ariaLiveSelection:"",ariaLiveContext:"",focusedOption:null,focusedValue:null,inputIsHidden:!1,isFocused:!1,isComposing:!1,menuOptions:{render:[],focusable:[]},selectValue:[]},this.blockOptionHover=!1,this.clearFocusValueOnUpdate=!1,this.hasGroups=!1,this.initialTouchX=0,this.initialTouchY=0,this.instancePrefix="",this.openAfterFocus=!1,this.scrollToFocusedOptionOnUpdate=!1,this.controlRef=null,this.getControlRef=function(t){e.controlRef=t},this.focusedOptionRef=null,this.getFocusedOptionRef=function(t){e.focusedOptionRef=t},this.menuListRef=null,this.getMenuListRef=function(t){e.menuListRef=t},this.inputRef=null,this.getInputRef=function(t){e.inputRef=t},this.cacheComponents=function(t){e.components=xt({components:t})},this.focus=this.focusInput,this.blur=this.blurInput,this.onChange=function(t,n){var r=e.props,o=r.onChange,i=r.name;o(t,V({},n,{name:i}))},this.setValue=function(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"set-value",r=arguments[2],o=e.props,i=o.closeMenuOnSelect,a=o.isMulti;e.onInputChange("",{action:"set-value"}),i&&(e.inputIsHiddenAfterUpdate=!a,e.onMenuClose()),e.clearFocusValueOnUpdate=!0,e.onChange(t,{action:n,option:r})},this.selectOption=function(t){var n=e.props,r=n.blurInputOnSelect;if(n.isMulti){var o=e.state.selectValue;if(e.isOptionSelected(t,o)){var i=e.getOptionValue(t);e.setValue(o.filter(function(t){return e.getOptionValue(t)!==i}),"deselect-option",t),e.announceAriaLiveSelection({event:"deselect-option",context:{value:e.getOptionLabel(t)}})}else e.setValue([].concat(W(o),[t]),"select-option",t),e.announceAriaLiveSelection({event:"select-option",context:{value:e.getOptionLabel(t)}})}else e.setValue(t,"select-option"),e.announceAriaLiveSelection({event:"select-option",context:{value:e.getOptionLabel(t)}});r&&e.blurInput()},this.removeValue=function(t){var n=e.state.selectValue,r=e.getOptionValue(t);e.onChange(n.filter(function(t){return e.getOptionValue(t)!==r}),{action:"remove-value",removedValue:t}),e.announceAriaLiveSelection({event:"remove-value",context:{value:t?e.getOptionLabel(t):void 0}}),e.focusInput()},this.clearValue=function(){var t=e.props.isMulti;e.onChange(t?[]:null,{action:"clear"})},this.popValue=function(){var t=e.state.selectValue,n=t[t.length-1];e.announceAriaLiveSelection({event:"pop-value",context:{value:n?e.getOptionLabel(n):void 0}}),e.onChange(t.slice(0,t.length-1),{action:"pop-value",removedValue:n})},this.getOptionLabel=function(t){return e.props.getOptionLabel(t)},this.getOptionValue=function(t){return e.props.getOptionValue(t)},this.getStyles=function(t,n){var r=kt[t](n);r.boxSizing="border-box";var o=e.props.styles[t];return o?o(r,n):r},this.getElementId=function(t){return e.instancePrefix+"-"+t},this.getActiveDescendentId=function(){var t=e.props.menuIsOpen,n=e.state,r=n.menuOptions,o=n.focusedOption;if(o&&t){var i=r.focusable.indexOf(o),a=r.render[i];return a&&a.key}},this.announceAriaLiveSelection=function(t){var n=t.event,r=t.context;e.setState({ariaLiveSelection:Ce(n,r)})},this.announceAriaLiveContext=function(t){var n=t.event,r=t.context;e.setState({ariaLiveContext:ke(n,V({},r,{label:e.props["aria-label"]}))})},this.onMenuMouseDown=function(t){0===t.button&&(t.stopPropagation(),t.preventDefault(),e.focusInput())},this.onMenuMouseMove=function(t){e.blockOptionHover=!1},this.onControlMouseDown=function(t){var n=e.props.openMenuOnClick;e.state.isFocused?e.props.menuIsOpen?"INPUT"!==t.target.tagName&&e.onMenuClose():e.openMenu("first"):(n&&(e.openAfterFocus=!0),e.focusInput()),"INPUT"!==t.target.tagName&&t.preventDefault()},this.onDropdownIndicatorMouseDown=function(t){if(!(t&&"mousedown"===t.type&&0!==t.button||e.props.isDisabled)){var n=e.props,r=n.isMulti,o=n.menuIsOpen;e.focusInput(),o?(e.inputIsHiddenAfterUpdate=!r,e.onMenuClose()):e.openMenu("first"),t.preventDefault(),t.stopPropagation()}},this.onClearIndicatorMouseDown=function(t){t&&"mousedown"===t.type&&0!==t.button||(e.clearValue(),t.stopPropagation(),e.openAfterFocus=!1,setTimeout(function(){return e.focusInput()}))},this.onScroll=function(t){"boolean"==typeof e.props.closeMenuOnScroll?t.target instanceof HTMLElement&&a(t.target)&&e.props.onMenuClose():"function"==typeof e.props.closeMenuOnScroll&&e.props.closeMenuOnScroll(t)&&e.props.onMenuClose()},this.onCompositionStart=function(){e.setState({isComposing:!0})},this.onCompositionEnd=function(){e.setState({isComposing:!1})},this.onTouchStart=function(t){var n=t.touches,r=n.item(0);r&&(e.initialTouchX=r.clientX,e.initialTouchY=r.clientY,e.userIsDragging=!1)},this.onTouchMove=function(t){var n=t.touches,r=n.item(0);if(r){var o=Math.abs(r.clientX-e.initialTouchX),i=Math.abs(r.clientY-e.initialTouchY);e.userIsDragging=o>5||i>5}},this.onTouchEnd=function(t){if(!e.userIsDragging){var n=t.target;e.controlRef&&!e.controlRef.contains(n)&&e.menuListRef&&!e.menuListRef.contains(n)&&e.blurInput(),e.initialTouchX=0,e.initialTouchY=0}},this.onControlTouchEnd=function(t){e.userIsDragging||e.onControlMouseDown(t)},this.onClearIndicatorTouchEnd=function(t){e.userIsDragging||e.onClearIndicatorMouseDown(t)},this.onDropdownIndicatorTouchEnd=function(t){e.userIsDragging||e.onDropdownIndicatorMouseDown(t)},this.handleInputChange=function(t){var n=t.currentTarget.value;e.inputIsHiddenAfterUpdate=!1,e.onInputChange(n,{action:"input-change"}),e.onMenuOpen()},this.onInputFocus=function(t){var n=e.props,r=n.isSearchable,o=n.isMulti;e.props.onFocus&&e.props.onFocus(t),e.inputIsHiddenAfterUpdate=!1,e.announceAriaLiveContext({event:"input",context:{isSearchable:r,isMulti:o}}),e.setState({isFocused:!0}),(e.openAfterFocus||e.props.openMenuOnFocus)&&e.openMenu("first"),e.openAfterFocus=!1},this.onInputBlur=function(t){if(e.menuListRef&&e.menuListRef.contains(document.activeElement))return void e.inputRef.focus();e.props.onBlur&&e.props.onBlur(t),e.onInputChange("",{action:"input-blur"}),e.onMenuClose(),e.setState({focusedValue:null,isFocused:!1})},this.onOptionHover=function(t){e.blockOptionHover||e.state.focusedOption===t||e.setState({focusedOption:t})},this.shouldHideSelectedOptions=function(){var t=e.props,n=t.hideSelectedOptions,r=t.isMulti;return void 0===n?r:n},this.onKeyDown=function(t){var n=e.props,r=n.isMulti,o=n.backspaceRemovesValue,i=n.escapeClearsValue,a=n.inputValue,u=n.isClearable,l=n.isDisabled,s=n.menuIsOpen,c=n.onKeyDown,f=n.tabSelectsValue,p=n.openMenuOnFocus,d=e.state,h=d.isComposing,m=d.focusedOption,v=d.focusedValue,g=d.selectValue;if(!(l||"function"==typeof c&&(c(t),t.defaultPrevented))){switch(e.blockOptionHover=!0,t.key){case"ArrowLeft":if(!r||a)return;e.focusValue("previous");break;case"ArrowRight":if(!r||a)return;e.focusValue("next");break;case"Delete":case"Backspace":if(a)return;if(v)e.removeValue(v);else{if(!o)return;r?e.popValue():u&&e.clearValue()}break;case"Tab":if(h)return;if(t.shiftKey||!s||!f||!m||p&&e.isOptionSelected(m,g))return;e.selectOption(m);break;case"Enter":if(s){if(!m)return;if(h)return;e.selectOption(m)}else e.focusOption("first");break;case"Escape":s?(e.inputIsHiddenAfterUpdate=!1,e.onInputChange("",{action:"menu-close"}),e.onMenuClose()):u&&i&&e.clearValue();break;case" ":if(a)return;if(!s){e.openMenu("first");break}if(!m)return;e.selectOption(m);break;case"ArrowUp":s?e.focusOption("up"):e.openMenu("last");break;case"ArrowDown":s?e.focusOption("down"):e.openMenu("first");break;case"PageUp":if(!s)return;e.focusOption("pageup");break;case"PageDown":if(!s)return;e.focusOption("pagedown");break;case"Home":if(!s)return;e.focusOption("first");break;case"End":if(!s)return;e.focusOption("last");break;default:return}t.preventDefault()}}},Ft={defaultInputValue:"",defaultMenuIsOpen:!1,defaultValue:null},Dt=function(e){var t,n;return n=t=function(t){function n(){var e,t,r,o;M(this,n);for(var i=arguments.length,a=Array(i),u=0;u<i;u++)a[u]=arguments[u];return t=r=z(this,(e=n.__proto__||Object.getPrototypeOf(n)).call.apply(e,[this].concat(a))),r.state={inputValue:void 0!==r.props.inputValue?r.props.inputValue:r.props.defaultInputValue,menuIsOpen:void 0!==r.props.menuIsOpen?r.props.menuIsOpen:r.props.defaultMenuIsOpen,value:void 0!==r.props.value?r.props.value:r.props.defaultValue},r.onChange=function(e,t){r.callProp("onChange",e,t),r.setState({value:e})},r.onInputChange=function(e,t){var n=r.callProp("onInputChange",e,t);r.setState({inputValue:void 0!==n?n:e})},r.onMenuOpen=function(){r.callProp("onMenuOpen"),r.setState({menuIsOpen:!0})},r.onMenuClose=function(){r.callProp("onMenuClose"),r.setState({menuIsOpen:!1})},o=t,z(r,o)}return U(n,t),L(n,[{key:"focus",value:function(){this.select.focus()}},{key:"blur",value:function(){this.select.blur()}},{key:"getProp",value:function(e){return void 0!==this.props[e]?this.props[e]:this.state[e]}},{key:"callProp",value:function(e){if("function"==typeof this.props[e]){for(var t,n=arguments.length,r=Array(n>1?n-1:0),o=1;o<n;o++)r[o-1]=arguments[o];return(t=this.props)[e].apply(t,W(r))}}},{key:"render",value:function(){var t=this;return S.a.createElement(e,V({},this.props,{ref:function(e){t.select=e},inputValue:this.getProp("inputValue"),menuIsOpen:this.getProp("menuIsOpen"),onChange:this.onChange,onInputChange:this.onInputChange,onMenuClose:this.onMenuClose,onMenuOpen:this.onMenuOpen,value:this.getProp("value")}))}}]),n}(O.Component),t.defaultProps=Ft,n},Nt={cacheOptions:!1,defaultOptions:!1},jt=function(e){var t,n;return n=t=function(t){function n(e){M(this,n);var t=z(this,(n.__proto__||Object.getPrototypeOf(n)).call(this));return t.mounted=!1,t.optionsCache={},t.handleInputChange=function(e,n){var r=t.props,o=r.cacheOptions,a=r.onInputChange,u=i(e,n,a);if(!u)return delete t.lastRequest,void t.setState({inputValue:"",loadedInputValue:"",loadedOptions:[],isLoading:!1,passEmptyOptions:!1});if(o&&t.optionsCache[u])t.setState({inputValue:u,loadedInputValue:u,loadedOptions:t.optionsCache[u],isLoading:!1,passEmptyOptions:!1});else{var l=t.lastRequest={};t.setState({inputValue:u,isLoading:!0,passEmptyOptions:!t.state.loadedInputValue},function(){t.loadOptions(u,function(e){t.mounted&&(e&&(t.optionsCache[u]=e),l===t.lastRequest&&(delete t.lastRequest,t.setState({isLoading:!1,loadedInputValue:u,loadedOptions:e||[],passEmptyOptions:!1})))})})}return u},t.state={defaultOptions:Array.isArray(e.defaultOptions)?e.defaultOptions:void 0,inputValue:void 0!==e.inputValue?e.inputValue:"",isLoading:!0===e.defaultOptions,loadedOptions:[],passEmptyOptions:!1},t}return U(n,t),L(n,[{key:"componentDidMount",value:function(){var e=this;this.mounted=!0;var t=this.props.defaultOptions,n=this.state.inputValue;!0===t&&this.loadOptions(n,function(t){if(e.mounted){var n=!!e.lastRequest;e.setState({defaultOptions:t||[],isLoading:n})}})}},{key:"componentWillReceiveProps",value:function(e){e.cacheOptions!==this.props.cacheOptions&&(this.optionsCache={}),e.defaultOptions!==this.props.defaultOptions&&this.setState({defaultOptions:Array.isArray(e.defaultOptions)?e.defaultOptions:void 0})}},{key:"componentWillUnmount",value:function(){this.mounted=!1}},{key:"focus",value:function(){this.select.focus()}},{key:"blur",value:function(){this.select.blur()}},{key:"loadOptions",value:function(e,t){var n=this.props.loadOptions;if(!n)return t();var r=n(e,t);r&&"function"==typeof r.then&&r.then(t,function(){return t()})}},{key:"render",value:function(){var t=this,n=this.props,r=(n.loadOptions,B(n,["loadOptions"])),o=this.state,i=o.defaultOptions,a=o.inputValue,u=o.isLoading,l=o.loadedInputValue,s=o.loadedOptions,c=o.passEmptyOptions,f=c?[]:a&&l?s:i||[];return S.a.createElement(e,V({},r,{filterOption:this.props.filterOption||null,ref:function(e){t.select=e},options:f,isLoading:u,onInputChange:this.handleInputChange}))}}]),n}(O.Component),t.defaultProps=Nt,n},It=(jt(Dt(Pt)),function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=arguments[1],n=String(e).toLowerCase(),r=String(t.value).toLowerCase(),o=String(t.label).toLowerCase();return r===n||o===n}),Mt={formatCreateLabel:function(e){return'Create "'+e+'"'},isValidNewOption:function(e,t,n){return!(!e||t.some(function(t){return It(e,t)})||n.some(function(t){return It(e,t)}))},getNewOptionData:function(e,t){return{label:t,value:e,__isNew__:!0}}},Lt=V({allowCreateWhileLoading:!1,createOptionPosition:"last"},Mt),Rt=function(e){var t,n;return n=t=function(t){function n(e){M(this,n);var t=z(this,(n.__proto__||Object.getPrototypeOf(n)).call(this,e));t.onChange=function(e,n){var r=t.props,o=r.getNewOptionData,i=r.inputValue,a=r.isMulti,u=r.onChange,l=r.onCreateOption,s=r.value;if("select-option"!==n.action)return u(e,n);var c=t.state.newOption,f=Array.isArray(e)?e:[e];if(f[f.length-1]!==c)u(e,n);else if(l)l(i);else{var p=o(i,i),d={action:"create-option"};a?u([].concat(W($(s)),[p]),d):u(p,d)}};var r=e.options||[];return t.state={newOption:void 0,options:r},t}return U(n,t),L(n,[{key:"componentWillReceiveProps",value:function(e){var t=e.allowCreateWhileLoading,n=e.createOptionPosition,r=e.formatCreateLabel,o=e.getNewOptionData,i=e.inputValue,a=e.isLoading,u=e.isValidNewOption,l=e.value,s=e.options||[],c=this.state.newOption;c=u(i,$(l),s)?o(i,r(i)):void 0,this.setState({newOption:c,options:!t&&a||!c?s:"first"===n?[c].concat(W(s)):[].concat(W(s),[c])})}},{key:"focus",value:function(){this.select.focus()}},{key:"blur",value:function(){this.select.blur()}},{key:"render",value:function(){var t=this,n=B(this.props,[]),r=this.state.options;return S.a.createElement(e,V({},n,{ref:function(e){t.select=e},options:r,onChange:this.onChange}))}}]),n}(O.Component),t.defaultProps=Lt,n},Vt=(Dt(Rt(Pt)),jt(Dt(Rt(Pt))),function(e){var t=e.component,n=e.duration,r=void 0===n?1:n,o=e.in,i=(e.onExited,B(e,["component","duration","in","onExited"])),a={entering:{opacity:0},entered:{opacity:1,transition:"opacity "+r+"ms"},exiting:{opacity:0},exited:{opacity:0}};return S.a.createElement(j.Transition,{mountOnEnter:!0,unmountOnExit:!0,in:o,timeout:r},function(e){var n={style:V({},a[e])};return S.a.createElement(t,V({innerProps:n},i))})}),Ut=260,Bt=function(e){function t(){var e,n,r,o;M(this,t);for(var i=arguments.length,a=Array(i),u=0;u<i;u++)a[u]=arguments[u];return n=r=z(this,(e=t.__proto__||Object.getPrototypeOf(t)).call.apply(e,[this].concat(a))),r.duration=Ut,r.state={width:"auto"},r.transition={exiting:{width:0,transition:"width "+r.duration+"ms ease-out"},exited:{width:0}},r.getWidth=function(e){e&&isNaN(r.state.width)&&(r.rafID=window.requestAnimationFrame(function(){var t=e.getBoundingClientRect(),n=t.width;r.setState({width:n})}))},r.getStyle=function(e){return{overflow:"hidden",whiteSpace:"nowrap",width:e}},r.getTransition=function(e){return r.transition[e]},o=n,z(r,o)}return U(t,e),L(t,[{key:"componentWillUnmount",value:function(){this.rafID&&window.cancelAnimationFrame(this.rafID)}},{key:"render",value:function(){var e=this,t=this.props,n=t.children,r=t.in,o=this.state.width;return S.a.createElement(j.Transition,{enter:!1,mountOnEnter:!0,unmountOnExit:!0,in:r,timeout:this.duration},function(t){var r=V({},e.getStyle(o),e.getTransition(t));return S.a.createElement("div",{ref:e.getWidth,style:r},n)})}}]),t}(O.Component),zt=function(e){return function(t){var n=(t.in,t.onExited,t.appear,t.enter,t.exit,t.innerRef),r=B(t,["in","onExited","appear","enter","exit","innerRef"]);return S.a.createElement(e,V({innerRef:n},r))}},Wt=function(e){return function(t){var n=t.in,r=t.onExited,o=B(t,["in","onExited"]);return S.a.createElement(Bt,{in:n,onExited:r},S.a.createElement(e,V({cropWithEllipsis:n},o)))}},Ht=function(e){return function(t){return S.a.createElement(Vt,V({component:e,duration:t.isMulti?Ut:1},t))}},$t=function(e){return function(t){return S.a.createElement(Vt,V({component:e},t))}},Gt=function(e){return function(t){return S.a.createElement(j.TransitionGroup,V({component:e},t))}},Kt=function(e){var t=xt({components:e}),n=t.Input,r=t.MultiValue,o=t.Placeholder,i=t.SingleValue,a=t.ValueContainer,u=B(t,["Input","MultiValue","Placeholder","SingleValue","ValueContainer"]);return V({Input:zt(n),MultiValue:Wt(r),Placeholder:Ht(o),SingleValue:$t(i),ValueContainer:Gt(a)},u)},Qt=Kt(),Yt=(Qt.Input,Qt.MultiValue,Qt.Placeholder,Qt.SingleValue,Qt.ValueContainer,Object(N.a)(Kt,y),Dt(Pt));t.a=Yt},function(e,t,n){"use strict";n.d(t,"a",function(){return i}),n.d(t,"b",function(){return a});var r=n(34),o=Object(r.a)(),i=o.addAction,a=(o.addFilter,o.removeAction,o.removeFilter,o.hasAction,o.hasFilter,o.removeAllActions,o.removeAllFilters,o.doAction);o.applyFilters,o.currentAction,o.currentFilter,o.doingAction,o.doingFilter,o.didAction,o.didFilter,o.actions,o.filters},function(e,t,n){"use strict";function r(e){return"string"!=typeof e||""===e?(console.error("The hook name must be a non-empty string."),!1):/^__/.test(e)?(console.error("The hook name cannot begin with `__`."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.-]*$/.test(e)||(console.error("The hook name can only contain numbers, letters, dashes, periods and underscores."),!1)}t.a=r},function(e,t){var n;n=function(){return this}();try{n=n||Function("return this")()||(0,eval)("this")}catch(e){"object"==typeof window&&(n=window)}e.exports=n},function(e,t,n){"use strict";function r(){if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&"function"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE)try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(r)}catch(e){console.error(e)}}r(),e.exports=n(62)},function(e,t,n){"use strict";function r(e){g.push(e)}function o(e){var t=function(e){var t=e.url,n=e.path,r=e.data,o=e.parse,l=void 0===o||o,s=Object(a.a)(e,["url","path","data","parse"]),c=e.body,f=e.headers;f=Object(i.a)({},m,f),r&&(c=JSON.stringify(r),f["Content-Type"]="application/json");var p=window.fetch(t||n,Object(i.a)({},v,s,{body:c,headers:f})),d=function(e){if(e.status>=200&&e.status<300)return e;throw e},h=function(e){return l?204===e.status?null:e.json?e.json():Promise.reject(e):e};return p.then(d).then(h).catch(function(e){if(!l)throw e;var t={code:"invalid_json",message:Object(u.a)("The response is not a valid JSON response.")};if(!e||!e.json)throw t;return e.json().catch(function(){throw t}).then(function(e){var t={code:"unknown_error",message:Object(u.a)("An unknown error occurred.")};throw e||t})})},n=[t,f.a,d.a,p.a,h.a].concat(g).reverse();return function e(t){return function(r){return(0,n[t])(r,e(t+1))}}(0)(e)}var i=n(1),a=n(9),u=n(25),l=n(33),s=n(42),c=n(43),f=n(44),p=n(11),d=n(49),h=n(50),m={Accept:"application/json, */*;q=0.1"},v={credentials:"include"},g=[];o.use=r,o.createNonceMiddleware=l.a,o.createPreloadingMiddleware=c.a,o.createRootURLMiddleware=s.a,o.fetchAllMiddleware=f.a,t.a=o},function(e,t,n){"use strict";function r(e,t){if(null==e)return{};var n,r,i=Object(o.a)(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(i[n]=e[n])}return i}t.a=r;var o=n(24)},function(e,t,n){"use strict";function r(e){return"string"!=typeof e||""===e?(console.error("The namespace must be a non-empty string."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.\-\/]*$/.test(e)||(console.error("The namespace can only contain numbers, letters, dashes, periods, underscores and slashes."),!1)}t.a=r},function(e,t,n){"use strict";var r=n(1),o=function(e,t){var n,o,i=e.path;return"string"==typeof e.namespace&&"string"==typeof e.endpoint&&(n=e.namespace.replace(/^\/|\/$/g,""),o=e.endpoint.replace(/^\//,""),i=o?n+"/"+o:n),delete e.namespace,delete e.endpoint,t(Object(r.a)({},e,{path:i}))};t.a=o},function(e,t,n){"use strict";function r(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=arguments.length>1?arguments[1]:void 0,n=e,r=e.indexOf("?");return-1!==r&&(t=Object.assign(Object(a.parse)(e.substr(r+1)),t),n=n.substr(0,r)),n+"?"+Object(a.stringify)(t)}function o(e,t){var n=e.indexOf("?");return(-1!==n?Object(a.parse)(e.substr(n+1)):{})[t]}function i(e,t){return void 0!==o(e,t)}t.a=r,t.b=i;var a=n(46);n.n(a)},function(e,t,n){"use strict";var r=Object.prototype.hasOwnProperty,o=function(){for(var e=[],t=0;t<256;++t)e.push("%"+((t<16?"0":"")+t.toString(16)).toUpperCase());return e}(),i=function(e){for(var t;e.length;){var n=e.pop();if(t=n.obj[n.prop],Array.isArray(t)){for(var r=[],o=0;o<t.length;++o)void 0!==t[o]&&r.push(t[o]);n.obj[n.prop]=r}}return t},a=function(e,t){for(var n=t&&t.plainObjects?Object.create(null):{},r=0;r<e.length;++r)void 0!==e[r]&&(n[r]=e[r]);return n},u=function e(t,n,o){if(!n)return t;if("object"!=typeof n){if(Array.isArray(t))t.push(n);else{if("object"!=typeof t)return[t,n];(o.plainObjects||o.allowPrototypes||!r.call(Object.prototype,n))&&(t[n]=!0)}return t}if("object"!=typeof t)return[t].concat(n);var i=t;return Array.isArray(t)&&!Array.isArray(n)&&(i=a(t,o)),Array.isArray(t)&&Array.isArray(n)?(n.forEach(function(n,i){r.call(t,i)?t[i]&&"object"==typeof t[i]?t[i]=e(t[i],n,o):t.push(n):t[i]=n}),t):Object.keys(n).reduce(function(t,i){var a=n[i];return r.call(t,i)?t[i]=e(t[i],a,o):t[i]=a,t},i)},l=function(e,t){return Object.keys(t).reduce(function(e,n){return e[n]=t[n],e},e)},s=function(e){try{return decodeURIComponent(e.replace(/\+/g," "))}catch(t){return e}},c=function(e){if(0===e.length)return e;for(var t="string"==typeof e?e:String(e),n="",r=0;r<t.length;++r){var i=t.charCodeAt(r);45===i||46===i||95===i||126===i||i>=48&&i<=57||i>=65&&i<=90||i>=97&&i<=122?n+=t.charAt(r):i<128?n+=o[i]:i<2048?n+=o[192|i>>6]+o[128|63&i]:i<55296||i>=57344?n+=o[224|i>>12]+o[128|i>>6&63]+o[128|63&i]:(r+=1,i=65536+((1023&i)<<10|1023&t.charCodeAt(r)),n+=o[240|i>>18]+o[128|i>>12&63]+o[128|i>>6&63]+o[128|63&i])}return n},f=function(e){for(var t=[{obj:{o:e},prop:"o"}],n=[],r=0;r<t.length;++r)for(var o=t[r],a=o.obj[o.prop],u=Object.keys(a),l=0;l<u.length;++l){var s=u[l],c=a[s];"object"==typeof c&&null!==c&&-1===n.indexOf(c)&&(t.push({obj:a,prop:s}),n.push(c))}return i(t)},p=function(e){return"[object RegExp]"===Object.prototype.toString.call(e)},d=function(e){return null!==e&&void 0!==e&&!!(e.constructor&&e.constructor.isBuffer&&e.constructor.isBuffer(e))};e.exports={arrayToObject:a,assign:l,compact:f,decode:s,encode:c,isBuffer:d,isRegExp:p,merge:u}},function(e,t,n){"use strict";var r=String.prototype.replace,o=/%20/g;e.exports={default:"RFC3986",formatters:{RFC1738:function(e){return r.call(e,o,"+")},RFC3986:function(e){return e}},RFC1738:"RFC1738",RFC3986:"RFC3986"}},function(e,t,n){"use strict";function r(e){if(null===e||void 0===e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}/*
2
+ object-assign
3
+ (c) Sindre Sorhus
4
+ @license MIT
5
+ */
6
+ var o=Object.getOwnPropertySymbols,i=Object.prototype.hasOwnProperty,a=Object.prototype.propertyIsEnumerable;e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map(function(e){return t[e]}).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach(function(e){r[e]=e}),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(e){return!1}}()?Object.assign:function(e,t){for(var n,u,l=r(e),s=1;s<arguments.length;s++){n=Object(arguments[s]);for(var c in n)i.call(n,c)&&(l[c]=n[c]);if(o){u=o(n);for(var f=0;f<u.length;f++)a.call(n,u[f])&&(l[u[f]]=n[u[f]])}}return l}},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function o(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}function i(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e.__proto__=t}function a(){}t.__esModule=!0,t.default=t.EXITING=t.ENTERED=t.ENTERING=t.EXITED=t.UNMOUNTED=void 0;var u=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)if(Object.prototype.hasOwnProperty.call(e,n)){var r=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor(e,n):{};r.get||r.set?Object.defineProperty(t,n,r):t[n]=e[n]}return t.default=e,t}(n(2)),l=r(n(0)),s=r(n(7)),c=n(17),f=(n(18),"unmounted");t.UNMOUNTED=f;var p="exited";t.EXITED=p;var d="entering";t.ENTERING=d;var h="entered";t.ENTERED=h;t.EXITING="exiting";var m=function(e){function t(t,n){var r;r=e.call(this,t,n)||this;var o,i=n.transitionGroup,a=i&&!i.isMounting?t.enter:t.appear;return r.appearStatus=null,t.in?a?(o=p,r.appearStatus=d):o=h:o=t.unmountOnExit||t.mountOnEnter?f:p,r.state={status:o},r.nextCallback=null,r}i(t,e);var n=t.prototype;return n.getChildContext=function(){return{transitionGroup:null}},t.getDerivedStateFromProps=function(e,t){return e.in&&t.status===f?{status:p}:null},n.componentDidMount=function(){this.updateStatus(!0,this.appearStatus)},n.componentDidUpdate=function(e){var t=null;if(e!==this.props){var n=this.state.status;this.props.in?n!==d&&n!==h&&(t=d):n!==d&&n!==h||(t="exiting")}this.updateStatus(!1,t)},n.componentWillUnmount=function(){this.cancelNextCallback()},n.getTimeouts=function(){var e,t,n,r=this.props.timeout;return e=t=n=r,null!=r&&"number"!=typeof r&&(e=r.exit,t=r.enter,n=r.appear),{exit:e,enter:t,appear:n}},n.updateStatus=function(e,t){if(void 0===e&&(e=!1),null!==t){this.cancelNextCallback();var n=s.default.findDOMNode(this);t===d?this.performEnter(n,e):this.performExit(n)}else this.props.unmountOnExit&&this.state.status===p&&this.setState({status:f})},n.performEnter=function(e,t){var n=this,r=this.props.enter,o=this.context.transitionGroup?this.context.transitionGroup.isMounting:t,i=this.getTimeouts();if(!t&&!r)return void this.safeSetState({status:h},function(){n.props.onEntered(e)});this.props.onEnter(e,o),this.safeSetState({status:d},function(){n.props.onEntering(e,o),n.onTransitionEnd(e,i.enter,function(){n.safeSetState({status:h},function(){n.props.onEntered(e,o)})})})},n.performExit=function(e){var t=this,n=this.props.exit,r=this.getTimeouts();if(!n)return void this.safeSetState({status:p},function(){t.props.onExited(e)});this.props.onExit(e),this.safeSetState({status:"exiting"},function(){t.props.onExiting(e),t.onTransitionEnd(e,r.exit,function(){t.safeSetState({status:p},function(){t.props.onExited(e)})})})},n.cancelNextCallback=function(){null!==this.nextCallback&&(this.nextCallback.cancel(),this.nextCallback=null)},n.safeSetState=function(e,t){t=this.setNextCallback(t),this.setState(e,t)},n.setNextCallback=function(e){var t=this,n=!0;return this.nextCallback=function(r){n&&(n=!1,t.nextCallback=null,e(r))},this.nextCallback.cancel=function(){n=!1},this.nextCallback},n.onTransitionEnd=function(e,t,n){this.setNextCallback(n),e?(this.props.addEndListener&&this.props.addEndListener(e,this.nextCallback),null!=t&&setTimeout(this.nextCallback,t)):setTimeout(this.nextCallback,0)},n.render=function(){var e=this.state.status;if(e===f)return null;var t=this.props,n=t.children,r=o(t,["children"]);if(delete r.in,delete r.mountOnEnter,delete r.unmountOnExit,delete r.appear,delete r.enter,delete r.exit,delete r.timeout,delete r.addEndListener,delete r.onEnter,delete r.onEntering,delete r.onEntered,delete r.onExit,delete r.onExiting,delete r.onExited,"function"==typeof n)return n(e,r);var i=l.default.Children.only(n);return l.default.cloneElement(i,r)},t}(l.default.Component);m.contextTypes={transitionGroup:u.object},m.childContextTypes={transitionGroup:function(){}},m.propTypes={},m.defaultProps={in:!1,mountOnEnter:!1,unmountOnExit:!1,appear:!1,enter:!0,exit:!0,onEnter:a,onEntering:a,onEntered:a,onExit:a,onExiting:a,onExited:a},m.UNMOUNTED=0,m.EXITED=1,m.ENTERING=2,m.ENTERED=3,m.EXITING=4;var v=(0,c.polyfill)(m);t.default=v},function(e,t,n){"use strict";function r(){var e=this.constructor.getDerivedStateFromProps(this.props,this.state);null!==e&&void 0!==e&&this.setState(e)}function o(e){function t(t){var n=this.constructor.getDerivedStateFromProps(e,t);return null!==n&&void 0!==n?n:null}this.setState(t.bind(this))}function i(e,t){try{var n=this.props,r=this.state;this.props=e,this.state=t,this.__reactInternalSnapshotFlag=!0,this.__reactInternalSnapshot=this.getSnapshotBeforeUpdate(n,r)}finally{this.props=n,this.state=r}}function a(e){var t=e.prototype;if(!t||!t.isReactComponent)throw new Error("Can only polyfill class components");if("function"!=typeof e.getDerivedStateFromProps&&"function"!=typeof t.getSnapshotBeforeUpdate)return e;var n=null,a=null,u=null;if("function"==typeof t.componentWillMount?n="componentWillMount":"function"==typeof t.UNSAFE_componentWillMount&&(n="UNSAFE_componentWillMount"),"function"==typeof t.componentWillReceiveProps?a="componentWillReceiveProps":"function"==typeof t.UNSAFE_componentWillReceiveProps&&(a="UNSAFE_componentWillReceiveProps"),"function"==typeof t.componentWillUpdate?u="componentWillUpdate":"function"==typeof t.UNSAFE_componentWillUpdate&&(u="UNSAFE_componentWillUpdate"),null!==n||null!==a||null!==u){var l=e.displayName||e.name,s="function"==typeof e.getDerivedStateFromProps?"getDerivedStateFromProps()":"getSnapshotBeforeUpdate()";throw Error("Unsafe legacy lifecycles will not be called for components using new component APIs.\n\n"+l+" uses "+s+" but also contains the following legacy lifecycles:"+(null!==n?"\n "+n:"")+(null!==a?"\n "+a:"")+(null!==u?"\n "+u:"")+"\n\nThe above lifecycles should be removed. Learn more about this warning here:\nhttps://fb.me/react-async-component-lifecycle-hooks")}if("function"==typeof e.getDerivedStateFromProps&&(t.componentWillMount=r,t.componentWillReceiveProps=o),"function"==typeof t.getSnapshotBeforeUpdate){if("function"!=typeof t.componentDidUpdate)throw new Error("Cannot polyfill getSnapshotBeforeUpdate() for components that do not define componentDidUpdate() on the prototype");t.componentWillUpdate=i;var c=t.componentDidUpdate;t.componentDidUpdate=function(e,t,n){var r=this.__reactInternalSnapshotFlag?this.__reactInternalSnapshot:n;c.call(this,e,t,r)}}return e}Object.defineProperty(t,"__esModule",{value:!0}),n.d(t,"polyfill",function(){return a}),r.__suppressDeprecationWarning=!0,o.__suppressDeprecationWarning=!0,i.__suppressDeprecationWarning=!0},function(e,t,n){"use strict";t.__esModule=!0,t.classNamesShape=t.timeoutsShape=void 0;!function(e){e&&e.__esModule}(n(2));t.timeoutsShape=null;t.classNamesShape=null},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function o(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}function i(){return i=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},i.apply(this,arguments)}function a(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e.__proto__=t}function u(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}t.__esModule=!0,t.default=void 0;var l=r(n(2)),s=r(n(0)),c=n(17),f=n(76),p=Object.values||function(e){return Object.keys(e).map(function(t){return e[t]})},d={component:"div",childFactory:function(e){return e}},h=function(e){function t(t,n){var r;r=e.call(this,t,n)||this;var o=r.handleExited.bind(u(u(r)));return r.state={handleExited:o,firstRender:!0},r}a(t,e);var n=t.prototype;return n.getChildContext=function(){return{transitionGroup:{isMounting:!this.appeared}}},n.componentDidMount=function(){this.appeared=!0,this.mounted=!0},n.componentWillUnmount=function(){this.mounted=!1},t.getDerivedStateFromProps=function(e,t){var n=t.children,r=t.handleExited;return{children:t.firstRender?(0,f.getInitialChildMapping)(e,r):(0,f.getNextChildMapping)(e,n,r),firstRender:!1}},n.handleExited=function(e,t){var n=(0,f.getChildMapping)(this.props.children);e.key in n||(e.props.onExited&&e.props.onExited(t),this.mounted&&this.setState(function(t){var n=i({},t.children);return delete n[e.key],{children:n}}))},n.render=function(){var e=this.props,t=e.component,n=e.childFactory,r=o(e,["component","childFactory"]),i=p(this.state.children).map(n);return delete r.appear,delete r.enter,delete r.exit,null===t?i:s.default.createElement(t,r,i)},t}(s.default.Component);h.childContextTypes={transitionGroup:l.default.object.isRequired},h.propTypes={},h.defaultProps=d;var m=(0,c.polyfill)(h);t.default=m,e.exports=t.default},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(21),o=n(22),i=n(77),a=n(78),u=n(0),l=(n.n(u),n(3)),s=wp.i18n,c=s.__,f=(s.setLocaleData,wp.blocks.registerBlockType),p=wp.element.Fragment,d=wp.components,h=d.PanelBody,m=(d.Autocomplete,wp.editor),v=m.InspectorControls;m.AlignmentToolbar;f("download-monitor/download-button",{title:c("Download Button","download-monitor"),icon:"download",keywords:[c("download","download-monitor"),"download monitor",c("file","download-monitor")],category:"common",attributes:{download_id:{type:"number",default:0},version_id:{type:"number",default:0},template:{type:"string",default:"settings"},custom_template:{type:"string",default:""},autop:{type:"number",default:0}},edit:function(e){var t=e.attributes,n=t.download_id,u=t.version_id,s=t.template,f=t.custom_template,d=t.autop,m=e.setAttributes,g=(e.className,[{value:0,label:"No"},{value:1,label:"Yes"}]);return wp.element.createElement(p,null,wp.element.createElement(v,null,wp.element.createElement(h,{title:c("Download Information","download-monitor")},wp.element.createElement("div",{className:"components-base-control"},wp.element.createElement("span",{className:"components-base-control__label"},c("Download","download-monitor")),wp.element.createElement(o.a,{onChange:function(e){return m({download_id:e})},selectedDownloadId:n})),wp.element.createElement("div",{className:"components-base-control"},wp.element.createElement("span",{className:"components-base-control__label"},c("Version","download-monitor")),wp.element.createElement(i.a,{onChange:function(e){return m({version_id:e})},selectedVersionId:u,downloadId:n}))),wp.element.createElement(h,{title:c("Template","download-monitor")},wp.element.createElement("div",{className:"components-base-control dlmGbEditorTemplateWrapper"},wp.element.createElement("span",{className:"components-base-control__label"},c("Template","download-monitor")),wp.element.createElement(a.a,{onChange:function(e){return m({template:e})},selectedTemplate:s,templatesStr:dlmBlocks.templates})),"custom"===s&&wp.element.createElement("div",{className:"components-base-control"},wp.element.createElement("span",{className:"components-base-control__label"},c("Custom Template","download-monitor")),wp.element.createElement("input",{className:"components-text-control__input",onChange:function(e){return m({custom_template:e.target.value})},value:f})),wp.element.createElement("div",{className:"components-base-control dlmGbEditorTemplateWrapper"},wp.element.createElement("span",{className:"components-base-control__label"},c("Wrap in paragraph tag (<p>)?","download-monitor")),wp.element.createElement(l.a,{value:function(e,t){return e.find(function(e){return e.value===t})}(g,d),onChange:function(e){m({autop:e.value})},options:g,isSearchable:"false"})))),wp.element.createElement(r.a,{download_id:n,version_id:u,template:s,custom_template:f}))},save:function(e){return null}})},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function i(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),u=wp.element.Component,l=function(e){function t(e){r(this,t);var n=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.updateHeight=n.updateHeight.bind(n),n.getIframeUrl=n.getIframeUrl.bind(n),n.state={calculatedHeight:{cacheKey:"",height:100}},n}return i(t,e),a(t,[{key:"getIframeUrl",value:function(){var e=dlmBlocks.urlButtonPreview;return 0!=this.props.download_id&&(e+="&download_id="+this.props.download_id),0!=this.props.version_id&&(e+="&version_id="+this.props.version_id),""!=this.props.template&&(e+="&template="+this.props.template),""!=this.props.custom_template&&(e+="&custom_template="+this.props.custom_template),e}},{key:"updateHeight",value:function(e){var t=encodeURI(this.getIframeUrl());this.state.chacheKey!=t&&this.setState({calculatedHeight:{cacheKey:t,height:e.contentDocument.getElementById("dlmPreviewContainer").scrollHeight}})}},{key:"render",value:function(){var e=this,t=this.getIframeUrl(),n=this.state.calculatedHeight.height+"px";return wp.element.createElement("div",{className:"dlmPreviewButton"},wp.element.createElement("iframe",{src:t,width:"100%",height:n,onLoad:function(t){e.updateHeight(t.target)}}))}}]),t}(u);t.a=l},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function i(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(8),u=n(0),l=(n.n(u),n(3)),s=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),c=wp.element.Component,f=function(e){function t(e){r(this,t);var n=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.state={downloads:[]},n}return i(t,e),s(t,[{key:"componentDidMount",value:function(){var e=this;Object(a.a)({url:dlmBlocks.ajax_getDownloads}).then(function(t){e.setState({downloads:t})})}},{key:"render",value:function(){var e=this;return wp.element.createElement("div",null,wp.element.createElement(l.a,{value:function(e,t){return e.find(function(e){return e.value===t})}(this.state.downloads,this.props.selectedDownloadId),onChange:function(t){return e.props.onChange(t.value)},options:this.state.downloads,isSearchable:"true"}))}}]),t}(c);t.a=f},function(e,t,n){"use strict";function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}t.a=r},function(e,t,n){"use strict";function r(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}t.a=r},function(e,t,n){"use strict";function r(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"default";p.data[t]=Object(a.a)({},f,p.data[t],e),p.data[t][""]=Object(a.a)({},f[""],p.data[t][""])}function o(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"default",t=arguments.length>1?arguments[1]:void 0,n=arguments.length>2?arguments[2]:void 0,o=arguments.length>3?arguments[3]:void 0,i=arguments.length>4?arguments[4]:void 0;return p.data[e]||r(void 0,e),p.dcnpgettext(e,t,n,o,i)}function i(e,t){return o(t,void 0,e)}t.a=i;var a=n(1),u=n(26),l=n(31),s=n.n(l),c=n(32),f=(n.n(c),{"":{plural_forms:"plural=(n!=1)"}}),p=(s()(console.error),new u.a({}))},function(e,t,n){"use strict";function r(e){var t,n,r;for(t=e.split(";"),n=0;n<t.length;n++)if(r=t[n].trim(),0===r.indexOf("plural="))return r.substr(7)}function o(e,t){var n;this.data=e,this.pluralForms={},t=t||{},this.options={};for(n in a)this.options[n]=t[n]||a[n]}t.a=o;var i=n(27),a={contextDelimiter:"",onMissingKey:null};o.prototype.getPluralForm=function(e,t){var n,o,a=this.pluralForms[e];return a||(n=this.data[e][""],o=r(n["Plural-Forms"]||n["plural-forms"]||n.plural_forms),a=this.pluralForms[e]=Object(i.a)(o)),a(t)},o.prototype.dcnpgettext=function(e,t,n,r,o){var i,a,u;return i=void 0===o?0:this.getPluralForm(e,o),a=n,t&&(a=t+this.options.contextDelimiter+n),(u=this.data[e][a])&&u[i]?u[i]:(this.options.onMissingKey&&this.options.onMissingKey(n,e),0===i?n:r)}},function(e,t,n){"use strict";function r(e){var t=Object(o.a)(e);return function(e){return+t({n:e})}}t.a=r;var o=n(28)},function(e,t,n){"use strict";function r(e){var t=Object(o.a)(e);return function(e){return Object(i.a)(t,e)}}t.a=r;var o=n(29),i=n(30)},function(e,t,n){"use strict";function r(e){for(var t,n,r,l,s=[],c=[];t=e.match(u);){for(n=t[0],r=e.substr(0,t.index).trim(),r&&s.push(r);l=c.pop();){if(a[n]){if(a[n][0]===l){n=a[n][1]||n;break}}else if(i.indexOf(l)>=0||o[l]<o[n]){c.push(l);break}s.push(l)}a[n]||c.push(n),e=e.substr(t.index+n.length)}return e=e.trim(),e&&s.push(e),s.concat(c.reverse())}t.a=r;var o,i,a,u;o={"(":9,"!":8,"*":7,"/":7,"%":7,"+":6,"-":6,"<":5,"<=":5,">":5,">=":5,"==":4,"!=":4,"&&":3,"||":2,"?":1,"?:":1},i=["(","?"],a={")":["("],":":["?","?:"]},u=/<=|>=|==|!=|&&|\|\||\?:|\(|!|\*|\/|%|\+|-|<|>|\?|\)|:/},function(e,t,n){"use strict";function r(e,t){var n,r,i,a,u,l,s=[];for(n=0;n<e.length;n++){if(u=e[n],a=o[u]){for(r=a.length,i=Array(r);r--;)i[r]=s.pop();try{l=a.apply(null,i)}catch(e){return e}}else l=t.hasOwnProperty(u)?t[u]:+u;s.push(l)}return s[0]}t.a=r;var o={"!":function(e){return!e},"*":function(e,t){return e*t},"/":function(e,t){return e/t},"%":function(e,t){return e%t},"+":function(e,t){return e+t},"-":function(e,t){return e-t},"<":function(e,t){return e<t},"<=":function(e,t){return e<=t},">":function(e,t){return e>t},">=":function(e,t){return e>=t},"==":function(e,t){return e===t},"!=":function(e,t){return e!==t},"&&":function(e,t){return e&&t},"||":function(e,t){return e||t},"?:":function(e,t,n){if(e)throw t;return n}}},function(e,t,n){e.exports=function(e,t){function n(){var t,n,u=o,l=arguments.length;e:for(;u;){if(u.args.length===arguments.length){for(n=0;n<l;n++)if(u.args[n]!==arguments[n]){u=u.next;continue e}return u!==o&&(u===i&&(i=u.prev),u.prev.next=u.next,u.next&&(u.next.prev=u.prev),u.next=o,u.prev=null,o.prev=u,o=u),u.val}u=u.next}for(t=new Array(l),n=0;n<l;n++)t[n]=arguments[n];return u={args:t,val:e.apply(null,t)},o?(o.prev=u,u.next=o):i=u,a===r?(i=i.prev,i.next=null):a++,o=u,u.val}var r,o,i,a=0;return t&&t.maxSize&&(r=t.maxSize),n.clear=function(){o=null,i=null,a=0},n}},function(e,t,n){var r;!function(){"use strict";function o(e){return a(u(e),arguments)}function i(e,t){return o.apply(null,[e].concat(t||[]))}function a(e,t){var n,r,i,a,u,s,c,f,p,d=1,h=e.length,m="";for(r=0;r<h;r++)if("string"==typeof e[r])m+=e[r];else if(Array.isArray(e[r])){if(a=e[r],a[2])for(n=t[d],i=0;i<a[2].length;i++){if(!n.hasOwnProperty(a[2][i]))throw new Error(o('[sprintf] property "%s" does not exist',a[2][i]));n=n[a[2][i]]}else n=a[1]?t[a[1]]:t[d++];if(l.not_type.test(a[8])&&l.not_primitive.test(a[8])&&n instanceof Function&&(n=n()),l.numeric_arg.test(a[8])&&"number"!=typeof n&&isNaN(n))throw new TypeError(o("[sprintf] expecting number but found %T",n));switch(l.number.test(a[8])&&(f=n>=0),a[8]){case"b":n=parseInt(n,10).toString(2);break;case"c":n=String.fromCharCode(parseInt(n,10));break;case"d":case"i":n=parseInt(n,10);break;case"j":n=JSON.stringify(n,null,a[6]?parseInt(a[6]):0);break;case"e":n=a[7]?parseFloat(n).toExponential(a[7]):parseFloat(n).toExponential();break;case"f":n=a[7]?parseFloat(n).toFixed(a[7]):parseFloat(n);break;case"g":n=a[7]?String(Number(n.toPrecision(a[7]))):parseFloat(n);break;case"o":n=(parseInt(n,10)>>>0).toString(8);break;case"s":n=String(n),n=a[7]?n.substring(0,a[7]):n;break;case"t":n=String(!!n),n=a[7]?n.substring(0,a[7]):n;break;case"T":n=Object.prototype.toString.call(n).slice(8,-1).toLowerCase(),n=a[7]?n.substring(0,a[7]):n;break;case"u":n=parseInt(n,10)>>>0;break;case"v":n=n.valueOf(),n=a[7]?n.substring(0,a[7]):n;break;case"x":n=(parseInt(n,10)>>>0).toString(16);break;case"X":n=(parseInt(n,10)>>>0).toString(16).toUpperCase()}l.json.test(a[8])?m+=n:(!l.number.test(a[8])||f&&!a[3]?p="":(p=f?"+":"-",n=n.toString().replace(l.sign,"")),s=a[4]?"0"===a[4]?"0":a[4].charAt(1):" ",c=a[6]-(p+n).length,u=a[6]&&c>0?s.repeat(c):"",m+=a[5]?p+n+u:"0"===s?p+u+n:u+p+n)}return m}function u(e){if(s[e])return s[e];for(var t,n=e,r=[],o=0;n;){if(null!==(t=l.text.exec(n)))r.push(t[0]);else if(null!==(t=l.modulo.exec(n)))r.push("%");else{if(null===(t=l.placeholder.exec(n)))throw new SyntaxError("[sprintf] unexpected placeholder");if(t[2]){o|=1;var i=[],a=t[2],u=[];if(null===(u=l.key.exec(a)))throw new SyntaxError("[sprintf] failed to parse named argument key");for(i.push(u[1]);""!==(a=a.substring(u[0].length));)if(null!==(u=l.key_access.exec(a)))i.push(u[1]);else{if(null===(u=l.index_access.exec(a)))throw new SyntaxError("[sprintf] failed to parse named argument key");i.push(u[1])}t[2]=i}else o|=2;if(3===o)throw new Error("[sprintf] mixing positional and named placeholders is not (yet) supported");r.push(t)}n=n.substring(t[0].length)}return s[e]=r}var l={not_string:/[^s]/,not_bool:/[^t]/,not_type:/[^T]/,not_primitive:/[^v]/,number:/[diefg]/,numeric_arg:/[bcdiefguxX]/,json:/[j]/,not_json:/[^j]/,text:/^[^\x25]+/,modulo:/^\x25{2}/,placeholder:/^\x25(?:([1-9]\d*)\$|\(([^\)]+)\))?(\+)?(0|'[^$])?(-)?(\d+)?(?:\.(\d+))?([b-gijostTuvxX])/,key:/^([a-z_][a-z_\d]*)/i,key_access:/^\.([a-z_][a-z_\d]*)/i,index_access:/^\[(\d+)\]/,sign:/^[\+\-]/},s=Object.create(null);t.sprintf=o,t.vsprintf=i,"undefined"!=typeof window&&(window.sprintf=o,window.vsprintf=i,void 0!==(r=function(){return{sprintf:o,vsprintf:i}}.call(t,n,t,e))&&(e.exports=r))}()},function(e,t,n){"use strict";var r=n(1),o=n(4),i=function(e){var t=e;return Object(o.a)("heartbeat.tick","core/api-fetch/create-nonce-middleware",function(e){e["rest-nonce"]&&(t=e["rest-nonce"])}),function(e,n){var o=e.headers||{},i=!0;for(var a in o)if(o.hasOwnProperty(a)&&"x-wp-nonce"===a.toLowerCase()){i=!1;break}return i&&(o=Object(r.a)({},o,{"X-WP-Nonce":t})),n(Object(r.a)({},e,{headers:o}))}};t.a=i},function(e,t,n){"use strict";function r(){var e=Object.create(null),t=Object.create(null);return e.__current=[],t.__current=[],{addAction:Object(o.a)(e),addFilter:Object(o.a)(t),removeAction:Object(i.a)(e),removeFilter:Object(i.a)(t),hasAction:Object(a.a)(e),hasFilter:Object(a.a)(t),removeAllActions:Object(i.a)(e,!0),removeAllFilters:Object(i.a)(t,!0),doAction:Object(u.a)(e),applyFilters:Object(u.a)(t,!0),currentAction:Object(l.a)(e),currentFilter:Object(l.a)(t),doingAction:Object(s.a)(e),doingFilter:Object(s.a)(t),didAction:Object(c.a)(e),didFilter:Object(c.a)(t),actions:e,filters:t}}var o=n(35),i=n(36),a=n(37),u=n(38),l=n(39),s=n(40),c=n(41);t.a=r},function(e,t,n){"use strict";function r(e){return function(t,n,r){var u=arguments.length>3&&void 0!==arguments[3]?arguments[3]:10;if(Object(i.a)(t)&&Object(o.a)(n)){if("function"!=typeof r)return void console.error("The hook callback must be a function.");if("number"!=typeof u)return void console.error("If specified, the hook priority must be a number.");var l={callback:r,priority:u,namespace:n};if(e[t]){var s,c=e[t].handlers;for(s=c.length;s>0&&!(u>=c[s-1].priority);s--);s===c.length?c[s]=l:c.splice(s,0,l),(e.__current||[]).forEach(function(e){e.name===t&&e.currentIndex>=s&&e.currentIndex++})}else e[t]={handlers:[l],runs:0};"hookAdded"!==t&&Object(a.b)("hookAdded",t,n,r,u)}}}var o=n(10),i=n(5),a=n(4);t.a=r},function(e,t,n){"use strict";function r(e,t){return function(n,r){if(Object(i.a)(n)&&(t||Object(o.a)(r))){if(!e[n])return 0;var u=0;if(t)u=e[n].handlers.length,e[n]={runs:e[n].runs,handlers:[]};else for(var l=e[n].handlers,s=l.length-1;s>=0;s--)!function(t){l[t].namespace===r&&(l.splice(t,1),u++,(e.__current||[]).forEach(function(e){e.name===n&&e.currentIndex>=t&&e.currentIndex--}))}(s);return"hookRemoved"!==n&&Object(a.b)("hookRemoved",n,r),u}}}var o=n(10),i=n(5),a=n(4);t.a=r},function(e,t,n){"use strict";function r(e){return function(t){return t in e}}t.a=r},function(e,t,n){"use strict";function r(e,t){return function(n){e[n]||(e[n]={handlers:[],runs:0}),e[n].runs++;for(var r=e[n].handlers,o=arguments.length,i=new Array(o>1?o-1:0),a=1;a<o;a++)i[a-1]=arguments[a];if(!r||!r.length)return t?i[0]:void 0;var u={name:n,currentIndex:0};for(e.__current.push(u);u.currentIndex<r.length;){var l=r[u.currentIndex],s=l.callback.apply(null,i);t&&(i[0]=s),u.currentIndex++}return e.__current.pop(),t?i[0]:void 0}}t.a=r},function(e,t,n){"use strict";function r(e){return function(){return e.__current&&e.__current.length?e.__current[e.__current.length-1].name:null}}t.a=r},function(e,t,n){"use strict";function r(e){return function(t){return void 0===t?void 0!==e.__current[0]:!!e.__current[0]&&t===e.__current[0].name}}t.a=r},function(e,t,n){"use strict";function r(e){return function(t){if(Object(o.a)(t))return e[t]&&e[t].runs?e[t].runs:0}}var o=n(5);t.a=r},function(e,t,n){"use strict";var r=n(1),o=n(11),i=function(e){return function(t,n){return Object(o.a)(t,function(t){var o,i=t.url,a=t.path;return"string"==typeof a&&(o=e,-1!==e.indexOf("?")&&(a=a.replace("?","&")),a=a.replace(/^\//,""),"string"==typeof o&&-1!==o.indexOf("?")&&(a=a.replace("?","&")),i=o+a),n(Object(r.a)({},t,{url:i}))})}};t.a=i},function(e,t,n){"use strict";var r=function(e){return function(t,n){var r=t.parse,o=void 0===r||r;if("string"==typeof t.path){var i=t.method||"GET",a=function(e){var t=e.split("?"),n=t[1],r=t[0];return n?r+"?"+n.split("&").map(function(e){return e.split("=")}).sort(function(e,t){return e[0].localeCompare(t[0])}).map(function(e){return e.join("=")}).join("&"):r}(t.path);if(o&&"GET"===i&&e[a])return Promise.resolve(e[a].body);if("OPTIONS"===i&&e[i][a])return Promise.resolve(e[i][a])}return n(t)}};t.a=r},function(e,t,n){"use strict";var r=n(45),o=n(1),i=n(9),a=n(12),u=function(e,t){var n=e.path,r=e.url,u=Object(i.a)(e,["path","url"]);return Object(o.a)({},u,{url:r&&Object(a.a)(r,t),path:n&&Object(a.a)(n,t)})},l=function(e){return e.json?e.json():Promise.reject(e)},s=function(e){if(!e)return{};var t=e.match(/<([^>]+)>; rel="next"/);return t?{next:t[1]}:{}},c=function(e){return s(e.headers.get("link")).next},f=function(e){var t=e.path&&-1!==e.path.indexOf("per_page=-1"),n=e.url&&-1!==e.url.indexOf("per_page=-1");return t||n},p=function(){var e=Object(r.a)(regeneratorRuntime.mark(function e(t,n){var r,i,a,s,p,d;return regeneratorRuntime.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:if(!1!==t.parse){e.next=2;break}return e.abrupt("return",n(t));case 2:if(f(t)){e.next=4;break}return e.abrupt("return",n(t));case 4:return e.next=6,n(Object(o.a)({},u(t,{per_page:100}),{parse:!1}));case 6:return r=e.sent,e.next=9,l(r);case 9:if(i=e.sent,Array.isArray(i)){e.next=12;break}return e.abrupt("return",i);case 12:if(a=c(r)){e.next=15;break}return e.abrupt("return",i);case 15:s=[].concat(i);case 16:if(!a){e.next=27;break}return e.next=19,n(Object(o.a)({},t,{path:void 0,url:a,parse:!1}));case 19:return p=e.sent,e.next=22,l(p);case 22:d=e.sent,s=s.concat(d),a=c(p),e.next=16;break;case 27:return e.abrupt("return",s);case 28:case"end":return e.stop()}},e,this)}));return function(t,n){return e.apply(this,arguments)}}();t.a=p},function(e,t,n){"use strict";function r(e,t,n,r,o,i,a){try{var u=e[i](a),l=u.value}catch(e){return void n(e)}u.done?t(l):Promise.resolve(l).then(r,o)}function o(e){return function(){var t=this,n=arguments;return new Promise(function(o,i){function a(e){r(l,o,i,a,u,"next",e)}function u(e){r(l,o,i,a,u,"throw",e)}var l=e.apply(t,n);a(void 0)})}}t.a=o},function(e,t,n){"use strict";var r=n(47),o=n(48),i=n(14);e.exports={formats:i,parse:o,stringify:r}},function(e,t,n){"use strict";var r=n(13),o=n(14),i={brackets:function(e){return e+"[]"},indices:function(e,t){return e+"["+t+"]"},repeat:function(e){return e}},a=Date.prototype.toISOString,u={delimiter:"&",encode:!0,encoder:r.encode,encodeValuesOnly:!1,serializeDate:function(e){return a.call(e)},skipNulls:!1,strictNullHandling:!1},l=function e(t,n,o,i,a,l,s,c,f,p,d,h){var m=t;if("function"==typeof s)m=s(n,m);else if(m instanceof Date)m=p(m);else if(null===m){if(i)return l&&!h?l(n,u.encoder):n;m=""}if("string"==typeof m||"number"==typeof m||"boolean"==typeof m||r.isBuffer(m)){if(l){return[d(h?n:l(n,u.encoder))+"="+d(l(m,u.encoder))]}return[d(n)+"="+d(String(m))]}var v=[];if(void 0===m)return v;var g;if(Array.isArray(s))g=s;else{var y=Object.keys(m);g=c?y.sort(c):y}for(var b=0;b<g.length;++b){var E=g[b];a&&null===m[E]||(v=Array.isArray(m)?v.concat(e(m[E],o(n,E),o,i,a,l,s,c,f,p,d,h)):v.concat(e(m[E],n+(f?"."+E:"["+E+"]"),o,i,a,l,s,c,f,p,d,h)))}return v};e.exports=function(e,t){var n=e,a=t?r.assign({},t):{};if(null!==a.encoder&&void 0!==a.encoder&&"function"!=typeof a.encoder)throw new TypeError("Encoder has to be a function.");var s=void 0===a.delimiter?u.delimiter:a.delimiter,c="boolean"==typeof a.strictNullHandling?a.strictNullHandling:u.strictNullHandling,f="boolean"==typeof a.skipNulls?a.skipNulls:u.skipNulls,p="boolean"==typeof a.encode?a.encode:u.encode,d="function"==typeof a.encoder?a.encoder:u.encoder,h="function"==typeof a.sort?a.sort:null,m=void 0!==a.allowDots&&a.allowDots,v="function"==typeof a.serializeDate?a.serializeDate:u.serializeDate,g="boolean"==typeof a.encodeValuesOnly?a.encodeValuesOnly:u.encodeValuesOnly;if(void 0===a.format)a.format=o.default;else if(!Object.prototype.hasOwnProperty.call(o.formatters,a.format))throw new TypeError("Unknown format option provided.");var y,b,E=o.formatters[a.format];"function"==typeof a.filter?(b=a.filter,n=b("",n)):Array.isArray(a.filter)&&(b=a.filter,y=b);var w=[];if("object"!=typeof n||null===n)return"";var x;x=a.arrayFormat in i?a.arrayFormat:"indices"in a?a.indices?"indices":"repeat":"indices";var k=i[x];y||(y=Object.keys(n)),h&&y.sort(h);for(var C=0;C<y.length;++C){var O=y[C];f&&null===n[O]||(w=w.concat(l(n[O],O,k,c,f,p?d:null,b,h,m,v,E,g)))}var S=w.join(s),_=!0===a.addQueryPrefix?"?":"";return S.length>0?_+S:""}},function(e,t,n){"use strict";var r=n(13),o=Object.prototype.hasOwnProperty,i={allowDots:!1,allowPrototypes:!1,arrayLimit:20,decoder:r.decode,delimiter:"&",depth:5,parameterLimit:1e3,plainObjects:!1,strictNullHandling:!1},a=function(e,t){for(var n={},r=t.ignoreQueryPrefix?e.replace(/^\?/,""):e,a=t.parameterLimit===1/0?void 0:t.parameterLimit,u=r.split(t.delimiter,a),l=0;l<u.length;++l){var s,c,f=u[l],p=f.indexOf("]="),d=-1===p?f.indexOf("="):p+1;-1===d?(s=t.decoder(f,i.decoder),c=t.strictNullHandling?null:""):(s=t.decoder(f.slice(0,d),i.decoder),c=t.decoder(f.slice(d+1),i.decoder)),o.call(n,s)?n[s]=[].concat(n[s]).concat(c):n[s]=c}return n},u=function(e,t,n){for(var r=t,o=e.length-1;o>=0;--o){var i,a=e[o];if("[]"===a)i=[],i=i.concat(r);else{i=n.plainObjects?Object.create(null):{};var u="["===a.charAt(0)&&"]"===a.charAt(a.length-1)?a.slice(1,-1):a,l=parseInt(u,10);!isNaN(l)&&a!==u&&String(l)===u&&l>=0&&n.parseArrays&&l<=n.arrayLimit?(i=[],i[l]=r):i[u]=r}r=i}return r},l=function(e,t,n){if(e){var r=n.allowDots?e.replace(/\.([^.[]+)/g,"[$1]"):e,i=/(\[[^[\]]*])/,a=/(\[[^[\]]*])/g,l=i.exec(r),s=l?r.slice(0,l.index):r,c=[];if(s){if(!n.plainObjects&&o.call(Object.prototype,s)&&!n.allowPrototypes)return;c.push(s)}for(var f=0;null!==(l=a.exec(r))&&f<n.depth;){if(f+=1,!n.plainObjects&&o.call(Object.prototype,l[1].slice(1,-1))&&!n.allowPrototypes)return;c.push(l[1])}return l&&c.push("["+r.slice(l.index)+"]"),u(c,t,n)}};e.exports=function(e,t){var n=t?r.assign({},t):{};if(null!==n.decoder&&void 0!==n.decoder&&"function"!=typeof n.decoder)throw new TypeError("Decoder has to be a function.");if(n.ignoreQueryPrefix=!0===n.ignoreQueryPrefix,n.delimiter="string"==typeof n.delimiter||r.isRegExp(n.delimiter)?n.delimiter:i.delimiter,n.depth="number"==typeof n.depth?n.depth:i.depth,n.arrayLimit="number"==typeof n.arrayLimit?n.arrayLimit:i.arrayLimit,n.parseArrays=!1!==n.parseArrays,n.decoder="function"==typeof n.decoder?n.decoder:i.decoder,n.allowDots="boolean"==typeof n.allowDots?n.allowDots:i.allowDots,n.plainObjects="boolean"==typeof n.plainObjects?n.plainObjects:i.plainObjects,n.allowPrototypes="boolean"==typeof n.allowPrototypes?n.allowPrototypes:i.allowPrototypes,n.parameterLimit="number"==typeof n.parameterLimit?n.parameterLimit:i.parameterLimit,n.strictNullHandling="boolean"==typeof n.strictNullHandling?n.strictNullHandling:i.strictNullHandling,""===e||null===e||void 0===e)return n.plainObjects?Object.create(null):{};for(var o="string"==typeof e?a(e,n):e,u=n.plainObjects?Object.create(null):{},s=Object.keys(o),c=0;c<s.length;++c){var f=s[c],p=l(f,o[f],n);u=r.merge(u,p,n)}return r.compact(u)}},function(e,t,n){"use strict";function r(e,t){var n=e,r=n.method,u=void 0===r?a:r;return i.has(u.toUpperCase())&&(e=Object(o.a)({},e,{headers:Object(o.a)({},e.headers,{"X-HTTP-Method-Override":u,"Content-Type":"application/json"}),method:"POST"})),t(e,t)}var o=n(1),i=new Set(["PATCH","PUT","DELETE"]),a="GET";t.a=r},function(e,t,n){"use strict";function r(e,t){return"string"!=typeof e.url||Object(o.b)(e.url,"_locale")||(e.url=Object(o.a)(e.url,{_locale:"user"})),"string"!=typeof e.path||Object(o.b)(e.path,"_locale")||(e.path=Object(o.a)(e.path,{_locale:"user"})),t(e,t)}var o=n(12);t.a=r},function(e,t,n){"use strict";function r(e,t,n,r,o,i,a,u){if(!e){if(e=void 0,void 0===t)e=Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var l=[n,r,o,i,a,u],s=0;e=Error(t.replace(/%s/g,function(){return l[s++]})),e.name="Invariant Violation"}throw e.framesToPop=1,e}}function o(e){for(var t=arguments.length-1,n="https://reactjs.org/docs/error-decoder.html?invariant="+e,o=0;o<t;o++)n+="&args[]="+encodeURIComponent(arguments[o+1]);r(!1,"Minified React error #"+e+"; visit %s for the full message or use the non-minified dev environment for full errors and additional helpful warnings. ",n)}function i(e,t,n){this.props=e,this.context=t,this.refs=M,this.updater=n||I}function a(){}function u(e,t,n){this.props=e,this.context=t,this.refs=M,this.updater=n||I}function l(e,t,n){var r=void 0,o={},i=null,a=null;if(null!=t)for(r in void 0!==t.ref&&(a=t.ref),void 0!==t.key&&(i=""+t.key),t)V.call(t,r)&&!U.hasOwnProperty(r)&&(o[r]=t[r]);var u=arguments.length-2;if(1===u)o.children=n;else if(1<u){for(var l=Array(u),s=0;s<u;s++)l[s]=arguments[s+2];o.children=l}if(e&&e.defaultProps)for(r in u=e.defaultProps)void 0===o[r]&&(o[r]=u[r]);return{$$typeof:x,type:e,key:i,ref:a,props:o,_owner:R.current}}function s(e,t){return{$$typeof:x,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}}function c(e){return"object"==typeof e&&null!==e&&e.$$typeof===x}function f(e){var t={"=":"=0",":":"=2"};return"$"+(""+e).replace(/[=:]/g,function(e){return t[e]})}function p(e,t,n,r){if(z.length){var o=z.pop();return o.result=e,o.keyPrefix=t,o.func=n,o.context=r,o.count=0,o}return{result:e,keyPrefix:t,func:n,context:r,count:0}}function d(e){e.result=null,e.keyPrefix=null,e.func=null,e.context=null,e.count=0,10>z.length&&z.push(e)}function h(e,t,n,r){var i=typeof e;"undefined"!==i&&"boolean"!==i||(e=null);var a=!1;if(null===e)a=!0;else switch(i){case"string":case"number":a=!0;break;case"object":switch(e.$$typeof){case x:case k:a=!0}}if(a)return n(r,e,""===t?"."+v(e,0):t),1;if(a=0,t=""===t?".":t+":",Array.isArray(e))for(var u=0;u<e.length;u++){i=e[u];var l=t+v(i,u);a+=h(i,l,n,r)}else if(null===e||"object"!=typeof e?l=null:(l=j&&e[j]||e["@@iterator"],l="function"==typeof l?l:null),"function"==typeof l)for(e=l.call(e),u=0;!(i=e.next()).done;)i=i.value,l=t+v(i,u++),a+=h(i,l,n,r);else"object"===i&&(n=""+e,o("31","[object Object]"===n?"object with keys {"+Object.keys(e).join(", ")+"}":n,""));return a}function m(e,t,n){return null==e?0:h(e,"",t,n)}function v(e,t){return"object"==typeof e&&null!==e&&null!=e.key?f(e.key):t.toString(36)}function g(e,t){e.func.call(e.context,t,e.count++)}function y(e,t,n){var r=e.result,o=e.keyPrefix;e=e.func.call(e.context,t,e.count++),Array.isArray(e)?b(e,r,n,function(e){return e}):null!=e&&(c(e)&&(e=s(e,o+(!e.key||t&&t.key===e.key?"":(""+e.key).replace(B,"$&/")+"/")+n)),r.push(e))}function b(e,t,n,r,o){var i="";null!=n&&(i=(""+n).replace(B,"$&/")+"/"),t=p(t,i,r,o),m(e,y,t),d(t)}/** @license React v16.7.0
7
+ * react.production.min.js
8
+ *
9
+ * Copyright (c) Facebook, Inc. and its affiliates.
10
+ *
11
+ * This source code is licensed under the MIT license found in the
12
+ * LICENSE file in the root directory of this source tree.
13
+ */
14
+ var E=n(15),w="function"==typeof Symbol&&Symbol.for,x=w?Symbol.for("react.element"):60103,k=w?Symbol.for("react.portal"):60106,C=w?Symbol.for("react.fragment"):60107,O=w?Symbol.for("react.strict_mode"):60108,S=w?Symbol.for("react.profiler"):60114,_=w?Symbol.for("react.provider"):60109,T=w?Symbol.for("react.context"):60110,P=w?Symbol.for("react.concurrent_mode"):60111,A=w?Symbol.for("react.forward_ref"):60112,F=w?Symbol.for("react.suspense"):60113,D=w?Symbol.for("react.memo"):60115,N=w?Symbol.for("react.lazy"):60116,j="function"==typeof Symbol&&Symbol.iterator,I={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},M={};i.prototype.isReactComponent={},i.prototype.setState=function(e,t){"object"!=typeof e&&"function"!=typeof e&&null!=e&&o("85"),this.updater.enqueueSetState(this,e,t,"setState")},i.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},a.prototype=i.prototype;var L=u.prototype=new a;L.constructor=u,E(L,i.prototype),L.isPureReactComponent=!0;var R={current:null,currentDispatcher:null},V=Object.prototype.hasOwnProperty,U={key:!0,ref:!0,__self:!0,__source:!0},B=/\/+/g,z=[],W={Children:{map:function(e,t,n){if(null==e)return e;var r=[];return b(e,r,null,t,n),r},forEach:function(e,t,n){if(null==e)return e;t=p(null,null,t,n),m(e,g,t),d(t)},count:function(e){return m(e,function(){return null},null)},toArray:function(e){var t=[];return b(e,t,null,function(e){return e}),t},only:function(e){return c(e)||o("143"),e}},createRef:function(){return{current:null}},Component:i,PureComponent:u,createContext:function(e,t){return void 0===t&&(t=null),e={$$typeof:T,_calculateChangedBits:t,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null},e.Provider={$$typeof:_,_context:e},e.Consumer=e},forwardRef:function(e){return{$$typeof:A,render:e}},lazy:function(e){return{$$typeof:N,_ctor:e,_status:-1,_result:null}},memo:function(e,t){return{$$typeof:D,type:e,compare:void 0===t?null:t}},Fragment:C,StrictMode:O,Suspense:F,createElement:l,cloneElement:function(e,t,n){(null===e||void 0===e)&&o("267",e);var r=void 0,i=E({},e.props),a=e.key,u=e.ref,l=e._owner;if(null!=t){void 0!==t.ref&&(u=t.ref,l=R.current),void 0!==t.key&&(a=""+t.key);var s=void 0;e.type&&e.type.defaultProps&&(s=e.type.defaultProps);for(r in t)V.call(t,r)&&!U.hasOwnProperty(r)&&(i[r]=void 0===t[r]&&void 0!==s?s[r]:t[r])}if(1===(r=arguments.length-2))i.children=n;else if(1<r){s=Array(r);for(var c=0;c<r;c++)s[c]=arguments[c+2];i.children=s}return{$$typeof:x,type:e.type,key:a,ref:u,props:i,_owner:l}},createFactory:function(e){var t=l.bind(null,e);return t.type=e,t},isValidElement:c,version:"16.7.0",unstable_ConcurrentMode:P,unstable_Profiler:S,__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED:{ReactCurrentOwner:R,assign:E}},H={default:W},$=H&&W||H;e.exports=$.default||$},function(e,t,n){(function(t){for(var r=n(53),o="undefined"==typeof window?t:window,i=["moz","webkit"],a="AnimationFrame",u=o["request"+a],l=o["cancel"+a]||o["cancelRequest"+a],s=0;!u&&s<i.length;s++)u=o[i[s]+"Request"+a],l=o[i[s]+"Cancel"+a]||o[i[s]+"CancelRequest"+a];if(!u||!l){var c=0,f=0,p=[];u=function(e){if(0===p.length){var t=r(),n=Math.max(0,1e3/60-(t-c));c=n+t,setTimeout(function(){var e=p.slice(0);p.length=0;for(var t=0;t<e.length;t++)if(!e[t].cancelled)try{e[t].callback(c)}catch(e){setTimeout(function(){throw e},0)}},Math.round(n))}return p.push({handle:++f,callback:e,cancelled:!1}),f},l=function(e){for(var t=0;t<p.length;t++)p[t].handle===e&&(p[t].cancelled=!0)}}e.exports=function(e){return u.call(o,e)},e.exports.cancel=function(){l.apply(o,arguments)},e.exports.polyfill=function(e){e||(e=o),e.requestAnimationFrame=u,e.cancelAnimationFrame=l}}).call(t,n(6))},function(e,t,n){(function(t){(function(){var n,r,o,i,a,u;"undefined"!=typeof performance&&null!==performance&&performance.now?e.exports=function(){return performance.now()}:void 0!==t&&null!==t&&t.hrtime?(e.exports=function(){return(n()-a)/1e6},r=t.hrtime,n=function(){var e;return e=r(),1e9*e[0]+e[1]},i=n(),u=1e9*t.uptime(),a=i-u):Date.now?(e.exports=function(){return Date.now()-o},o=Date.now()):(e.exports=function(){return(new Date).getTime()-o},o=(new Date).getTime())}).call(this)}).call(t,n(54))},function(e,t){function n(){throw new Error("setTimeout has not been defined")}function r(){throw new Error("clearTimeout has not been defined")}function o(e){if(c===setTimeout)return setTimeout(e,0);if((c===n||!c)&&setTimeout)return c=setTimeout,setTimeout(e,0);try{return c(e,0)}catch(t){try{return c.call(null,e,0)}catch(t){return c.call(this,e,0)}}}function i(e){if(f===clearTimeout)return clearTimeout(e);if((f===r||!f)&&clearTimeout)return f=clearTimeout,clearTimeout(e);try{return f(e)}catch(t){try{return f.call(null,e)}catch(t){return f.call(this,e)}}}function a(){m&&d&&(m=!1,d.length?h=d.concat(h):v=-1,h.length&&u())}function u(){if(!m){var e=o(a);m=!0;for(var t=h.length;t;){for(d=h,h=[];++v<t;)d&&d[v].run();v=-1,t=h.length}d=null,m=!1,i(e)}}function l(e,t){this.fun=e,this.array=t}function s(){}var c,f,p=e.exports={};!function(){try{c="function"==typeof setTimeout?setTimeout:n}catch(e){c=n}try{f="function"==typeof clearTimeout?clearTimeout:r}catch(e){f=r}}();var d,h=[],m=!1,v=-1;p.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)t[n-1]=arguments[n];h.push(new l(e,t)),1!==h.length||m||o(u)},l.prototype.run=function(){this.fun.apply(null,this.array)},p.title="browser",p.browser=!0,p.env={},p.argv=[],p.version="",p.versions={},p.on=s,p.addListener=s,p.once=s,p.off=s,p.removeListener=s,p.removeAllListeners=s,p.emit=s,p.prependListener=s,p.prependOnceListener=s,p.listeners=function(e){return[]},p.binding=function(e){throw new Error("process.binding is not supported")},p.cwd=function(){return"/"},p.chdir=function(e){throw new Error("process.chdir is not supported")},p.umask=function(){return 0}},function(e,t,n){"use strict";(function(e){n.d(t,"b",function(){return a}),n.d(t,"a",function(){return u});var r=n(56),o=void 0!==e?e:{},i=Object(r.a)(o),a=(i.flush,i.hydrate,i.cx,i.merge,i.getRegisteredStyles,i.injectGlobal),u=(i.keyframes,i.css);i.sheet,i.caches}).call(t,n(6))},function(e,t,n){"use strict";function r(e){if(e.sheet)return e.sheet;for(var t=0;t<document.styleSheets.length;t++)if(document.styleSheets[t].ownerNode===e)return document.styleSheets[t]}function o(e){var t=document.createElement("style");return t.setAttribute("data-emotion",e.key||""),void 0!==e.nonce&&t.setAttribute("nonce",e.nonce),t.appendChild(document.createTextNode("")),(void 0!==e.container?e.container:document.head).appendChild(t),t}function i(e,t){function n(e){E+=e,v&&O.insert(e,P)}function r(e,t){if(null==e)return"";switch(typeof e){case"boolean":return"";case"function":if(void 0!==e.__emotion_styles){var n=e.toString();return n}return r.call(this,void 0===this?e():e(this.mergedProps,this.context),t);case"object":return o.call(this,e);default:var i=C.registered[e];return!1===t&&void 0!==i?i:e}}function o(e){if(A.has(e))return A.get(e);var t="";return Array.isArray(e)?e.forEach(function(e){t+=r.call(this,e,!1)},this):Object.keys(e).forEach(function(n){"object"!=typeof e[n]?void 0!==C.registered[e[n]]?t+=n+"{"+C.registered[e[n]]+"}":t+=d(n)+":"+h(n,e[n])+";":Array.isArray(e[n])&&"string"==typeof e[n][0]&&void 0===C.registered[e[n][0]]?e[n].forEach(function(e){t+=d(n)+":"+h(n,e)+";"}):t+=n+"{"+r.call(this,e[n],!1)+"}"},this),A.set(e,t),t}function i(e,t){void 0===C.inserted[_]&&(E="",S(e,t),C.inserted[_]=E)}function a(e,t){var n="";return t.split(" ").forEach(function(t){void 0!==C.registered[t]?e.push(t):n+=t+" "}),n}function u(e,t){var n=[],r=a(n,e);return n.length<2?e:r+j(n,t)}function c(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return u(m(t))}function p(e){C.inserted[e]=!0}function y(e){e.forEach(p)}function b(){v&&(O.flush(),O.inject()),C.inserted={},C.registered={}}if(void 0!==e.__SECRET_EMOTION__)return e.__SECRET_EMOTION__;void 0===t&&(t={});var E,w,x=t.key||"css",k=f()(n);void 0!==t.prefix&&(w={prefix:t.prefix});var C={registered:{},inserted:{},nonce:t.nonce,key:x},O=new g(t);v&&O.inject();var S=new s.a(w);S.use(t.stylisPlugins)(k);var _,T,P="",A=new WeakMap,F=/label:\s*([^\s;\n{]+)\s*;/g,D=function(e,t){return Object(l.a)(e+t)+t},N=function(e){var t=!0,n="",o="";null==e||void 0===e.raw?(t=!1,n+=r.call(this,e,!1)):n+=e[0];for(var i=arguments.length,a=new Array(i>1?i-1:0),u=1;u<i;u++)a[u-1]=arguments[u];return a.forEach(function(o,i){n+=r.call(this,o,46===n.charCodeAt(n.length-1)),!0===t&&void 0!==e[i+1]&&(n+=e[i+1])},this),T=n,n=n.replace(F,function(e,t){return o+="-"+t,""}),_=D(n,o),n},j=function(){var e=N.apply(this,arguments),t=x+"-"+_;return void 0===C.registered[t]&&(C.registered[t]=T),i("."+t,e),t},I=function(){var e=N.apply(this,arguments),t="animation-"+_;return i("","@keyframes "+t+"{"+e+"}"),t},M=function(){i("",N.apply(this,arguments))};if(v){var L=document.querySelectorAll("[data-emotion-"+x+"]");Array.prototype.forEach.call(L,function(e){O.tags[0].parentNode.insertBefore(e,O.tags[0]),e.getAttribute("data-emotion-"+x).split(" ").forEach(p)})}var R={flush:b,hydrate:y,cx:c,merge:u,getRegisteredStyles:a,injectGlobal:M,keyframes:I,css:j,sheet:O,caches:C};return e.__SECRET_EMOTION__=R,R}var a=n(57),u=n(58),l=n(59),s=n(60),c=n(61),f=n.n(c),p=/[A-Z]|^ms/g,d=Object(a.a)(function(e){return e.replace(p,"-$&").toLowerCase()}),h=function(e,t){return null==t||"boolean"==typeof t?"":1===u.a[e]||45===e.charCodeAt(1)||isNaN(t)||0===t?t:t+"px"},m=function e(t){for(var n=t.length,r=0,o="";r<n;r++){var i=t[r];if(null!=i){var a=void 0;switch(typeof i){case"boolean":break;case"function":a=e([i()]);break;case"object":if(Array.isArray(i))a=e(i);else{a="";for(var u in i)i[u]&&u&&(a&&(a+=" "),a+=u)}break;default:a=i}a&&(o&&(o+=" "),o+=a)}}return o},v="undefined"!=typeof document,g=function(){function e(e){this.isSpeedy=!0,this.tags=[],this.ctr=0,this.opts=e}var t=e.prototype;return t.inject=function(){if(this.injected)throw new Error("already injected!");this.tags[0]=o(this.opts),this.injected=!0},t.speedy=function(e){if(0!==this.ctr)throw new Error("cannot change speedy now");this.isSpeedy=!!e},t.insert=function(e,t){if(this.isSpeedy){var n=this.tags[this.tags.length-1],i=r(n);try{i.insertRule(e,i.cssRules.length)}catch(e){}}else{var a=o(this.opts);this.tags.push(a),a.appendChild(document.createTextNode(e+(t||"")))}++this.ctr%65e3==0&&this.tags.push(o(this.opts))},t.flush=function(){this.tags.forEach(function(e){return e.parentNode.removeChild(e)}),this.tags=[],this.ctr=0,this.injected=!1},e}();t.a=i},function(e,t,n){"use strict";function r(e){var t={};return function(n){return void 0===t[n]&&(t[n]=e(n)),t[n]}}t.a=r},function(e,t,n){"use strict";var r={animationIterationCount:1,borderImageOutset:1,borderImageSlice:1,borderImageWidth:1,boxFlex:1,boxFlexGroup:1,boxOrdinalGroup:1,columnCount:1,columns:1,flex:1,flexGrow:1,flexPositive:1,flexShrink:1,flexNegative:1,flexOrder:1,gridRow:1,gridRowEnd:1,gridRowSpan:1,gridRowStart:1,gridColumn:1,gridColumnEnd:1,gridColumnSpan:1,gridColumnStart:1,fontWeight:1,lineHeight:1,opacity:1,order:1,orphans:1,tabSize:1,widows:1,zIndex:1,zoom:1,WebkitLineClamp:1,fillOpacity:1,floodOpacity:1,stopOpacity:1,strokeDasharray:1,strokeDashoffset:1,strokeMiterlimit:1,strokeOpacity:1,strokeWidth:1};t.a=r},function(e,t,n){"use strict";function r(e){for(var t,n=e.length,r=n^n,o=0;n>=4;)t=255&e.charCodeAt(o)|(255&e.charCodeAt(++o))<<8|(255&e.charCodeAt(++o))<<16|(255&e.charCodeAt(++o))<<24,t=1540483477*(65535&t)+((1540483477*(t>>>16)&65535)<<16),t^=t>>>24,t=1540483477*(65535&t)+((1540483477*(t>>>16)&65535)<<16),r=1540483477*(65535&r)+((1540483477*(r>>>16)&65535)<<16)^t,n-=4,++o;switch(n){case 3:r^=(255&e.charCodeAt(o+2))<<16;case 2:r^=(255&e.charCodeAt(o+1))<<8;case 1:r^=255&e.charCodeAt(o),r=1540483477*(65535&r)+((1540483477*(r>>>16)&65535)<<16)}return r^=r>>>13,r=1540483477*(65535&r)+((1540483477*(r>>>16)&65535)<<16),r^=r>>>15,(r>>>0).toString(36)}t.a=r},function(e,t,n){"use strict";function r(e){function t(e,r,l,s,c){for(var d,h,m,v,g,w=0,k=0,C=0,O=0,S=0,_=0,N=m=d=0,I=0,L=0,R=0,V=0,U=l.length,B=U-1,z="",W="",H="",$="";I<U;){if(h=l.charCodeAt(I),I===B&&0!==k+O+C+w&&(0!==k&&(h=47===k?10:47),O=C=w=0,U++,B++),0===k+O+C+w){if(I===B&&(0<L&&(z=z.replace(p,"")),0<z.trim().length)){switch(h){case 32:case 9:case 59:case 13:case 10:break;default:z+=l.charAt(I)}h=59}switch(h){case 123:for(z=z.trim(),d=z.charCodeAt(0),m=1,V=++I;I<U;){switch(h=l.charCodeAt(I)){case 123:m++;break;case 125:m--;break;case 47:switch(h=l.charCodeAt(I+1)){case 42:case 47:e:{for(N=I+1;N<B;++N)switch(l.charCodeAt(N)){case 47:if(42===h&&42===l.charCodeAt(N-1)&&I+2!==N){I=N+1;break e}break;case 10:if(47===h){I=N+1;break e}}I=N}}break;case 91:h++;case 40:h++;case 34:case 39:for(;I++<B&&l.charCodeAt(I)!==h;);}if(0===m)break;I++}switch(m=l.substring(V,I),0===d&&(d=(z=z.replace(f,"").trim()).charCodeAt(0)),d){case 64:switch(0<L&&(z=z.replace(p,"")),h=z.charCodeAt(1)){case 100:case 109:case 115:case 45:L=r;break;default:L=D}if(m=t(r,L,m,h,c+1),V=m.length,0<j&&(L=n(D,z,R),g=u(3,m,L,r,P,T,V,h,c,s),z=L.join(""),void 0!==g&&0===(V=(m=g.trim()).length)&&(h=0,m="")),0<V)switch(h){case 115:z=z.replace(x,a);case 100:case 109:case 45:m=z+"{"+m+"}";break;case 107:z=z.replace(y,"$1 $2"),m=z+"{"+m+"}",m=1===F||2===F&&i("@"+m,3)?"@-webkit-"+m+"@"+m:"@"+m;break;default:m=z+m,112===s&&(W+=m,m="")}else m="";break;default:m=t(r,n(r,z,R),m,s,c+1)}H+=m,m=R=L=N=d=0,z="",h=l.charCodeAt(++I);break;case 125:case 59:if(z=(0<L?z.replace(p,""):z).trim(),1<(V=z.length))switch(0===N&&(45===(d=z.charCodeAt(0))||96<d&&123>d)&&(V=(z=z.replace(" ",":")).length),0<j&&void 0!==(g=u(1,z,r,e,P,T,W.length,s,c,s))&&0===(V=(z=g.trim()).length)&&(z="\0\0"),d=z.charCodeAt(0),h=z.charCodeAt(1),d){case 0:break;case 64:if(105===h||99===h){$+=z+l.charAt(I);break}default:58!==z.charCodeAt(V-1)&&(W+=o(z,d,h,z.charCodeAt(2)))}R=L=N=d=0,z="",h=l.charCodeAt(++I)}}switch(h){case 13:case 10:47===k?k=0:0===1+d&&107!==s&&0<z.length&&(L=1,z+="\0"),0<j*M&&u(0,z,r,e,P,T,W.length,s,c,s),T=1,P++;break;case 59:case 125:if(0===k+O+C+w){T++;break}default:switch(T++,v=l.charAt(I),h){case 9:case 32:if(0===O+w+k)switch(S){case 44:case 58:case 9:case 32:v="";break;default:32!==h&&(v=" ")}break;case 0:v="\\0";break;case 12:v="\\f";break;case 11:v="\\v";break;case 38:0===O+k+w&&(L=R=1,v="\f"+v);break;case 108:if(0===O+k+w+A&&0<N)switch(I-N){case 2:112===S&&58===l.charCodeAt(I-3)&&(A=S);case 8:111===_&&(A=_)}break;case 58:0===O+k+w&&(N=I);break;case 44:0===k+C+O+w&&(L=1,v+="\r");break;case 34:case 39:0===k&&(O=O===h?0:0===O?h:O);break;case 91:0===O+k+C&&w++;break;case 93:0===O+k+C&&w--;break;case 41:0===O+k+w&&C--;break;case 40:if(0===O+k+w){if(0===d)switch(2*S+3*_){case 533:break;default:d=1}C++}break;case 64:0===k+C+O+w+N+m&&(m=1);break;case 42:case 47:if(!(0<O+w+C))switch(k){case 0:switch(2*h+3*l.charCodeAt(I+1)){case 235:k=47;break;case 220:V=I,k=42}break;case 42:47===h&&42===S&&V+2!==I&&(33===l.charCodeAt(V+2)&&(W+=l.substring(V,I+1)),v="",k=0)}}0===k&&(z+=v)}_=S,S=h,I++}if(0<(V=W.length)){if(L=r,0<j&&void 0!==(g=u(2,W,L,e,P,T,V,s,c,s))&&0===(W=g).length)return $+W+H;if(W=L.join(",")+"{"+W+"}",0!=F*A){switch(2!==F||i(W,2)||(A=0),A){case 111:W=W.replace(E,":-moz-$1")+W;break;case 112:W=W.replace(b,"::-webkit-input-$1")+W.replace(b,"::-moz-$1")+W.replace(b,":-ms-input-$1")+W}A=0}}return $+W+H}function n(e,t,n){var o=t.trim().split(v);t=o;var i=o.length,a=e.length;switch(a){case 0:case 1:var u=0;for(e=0===a?"":e[0]+" ";u<i;++u)t[u]=r(e,t[u],n).trim();break;default:var l=u=0;for(t=[];u<i;++u)for(var s=0;s<a;++s)t[l++]=r(e[s]+" ",o[u],n).trim()}return t}function r(e,t,n){var r=t.charCodeAt(0);switch(33>r&&(r=(t=t.trim()).charCodeAt(0)),r){case 38:return t.replace(g,"$1"+e.trim());case 58:return e.trim()+t.replace(g,"$1"+e.trim());default:if(0<1*n&&0<t.indexOf("\f"))return t.replace(g,(58===e.charCodeAt(0)?"":"$1")+e.trim())}return e+t}function o(e,t,n,r){var a=e+";",u=2*t+3*n+4*r;if(944===u){e=a.indexOf(":",9)+1;var l=a.substring(e,a.length-1).trim();return l=a.substring(0,e).trim()+l+";",1===F||2===F&&i(l,1)?"-webkit-"+l+l:l}if(0===F||2===F&&!i(a,1))return a;switch(u){case 1015:return 97===a.charCodeAt(10)?"-webkit-"+a+a:a;case 951:return 116===a.charCodeAt(3)?"-webkit-"+a+a:a;case 963:return 110===a.charCodeAt(5)?"-webkit-"+a+a:a;case 1009:if(100!==a.charCodeAt(4))break;case 969:case 942:return"-webkit-"+a+a;case 978:return"-webkit-"+a+"-moz-"+a+a;case 1019:case 983:return"-webkit-"+a+"-moz-"+a+"-ms-"+a+a;case 883:if(45===a.charCodeAt(8))return"-webkit-"+a+a;if(0<a.indexOf("image-set(",11))return a.replace(_,"$1-webkit-$2")+a;break;case 932:if(45===a.charCodeAt(4))switch(a.charCodeAt(5)){case 103:return"-webkit-box-"+a.replace("-grow","")+"-webkit-"+a+"-ms-"+a.replace("grow","positive")+a;case 115:return"-webkit-"+a+"-ms-"+a.replace("shrink","negative")+a;case 98:return"-webkit-"+a+"-ms-"+a.replace("basis","preferred-size")+a}return"-webkit-"+a+"-ms-"+a+a;case 964:return"-webkit-"+a+"-ms-flex-"+a+a;case 1023:if(99!==a.charCodeAt(8))break;return"-webkit-box-pack"+(l=a.substring(a.indexOf(":",15)).replace("flex-","").replace("space-between","justify"))+"-webkit-"+a+"-ms-flex-pack"+l+a;case 1005:return h.test(a)?a.replace(d,":-webkit-")+a.replace(d,":-moz-")+a:a;case 1e3:switch(l=a.substring(13).trim(),t=l.indexOf("-")+1,l.charCodeAt(0)+l.charCodeAt(t)){case 226:l=a.replace(w,"tb");break;case 232:l=a.replace(w,"tb-rl");break;case 220:l=a.replace(w,"lr");break;default:return a}return"-webkit-"+a+"-ms-"+l+a;case 1017:if(-1===a.indexOf("sticky",9))break;case 975:switch(t=(a=e).length-10,l=(33===a.charCodeAt(t)?a.substring(0,t):a).substring(e.indexOf(":",7)+1).trim(),u=l.charCodeAt(0)+(0|l.charCodeAt(7))){case 203:if(111>l.charCodeAt(8))break;case 115:a=a.replace(l,"-webkit-"+l)+";"+a;break;case 207:case 102:a=a.replace(l,"-webkit-"+(102<u?"inline-":"")+"box")+";"+a.replace(l,"-webkit-"+l)+";"+a.replace(l,"-ms-"+l+"box")+";"+a}return a+";";case 938:if(45===a.charCodeAt(5))switch(a.charCodeAt(6)){case 105:return l=a.replace("-items",""),"-webkit-"+a+"-webkit-box-"+l+"-ms-flex-"+l+a;case 115:return"-webkit-"+a+"-ms-flex-item-"+a.replace(C,"")+a;default:return"-webkit-"+a+"-ms-flex-line-pack"+a.replace("align-content","").replace(C,"")+a}break;case 973:case 989:if(45!==a.charCodeAt(3)||122===a.charCodeAt(4))break;case 931:case 953:if(!0===S.test(e))return 115===(l=e.substring(e.indexOf(":")+1)).charCodeAt(0)?o(e.replace("stretch","fill-available"),t,n,r).replace(":fill-available",":stretch"):a.replace(l,"-webkit-"+l)+a.replace(l,"-moz-"+l.replace("fill-",""))+a;break;case 962:if(a="-webkit-"+a+(102===a.charCodeAt(5)?"-ms-"+a:"")+a,211===n+r&&105===a.charCodeAt(13)&&0<a.indexOf("transform",10))return a.substring(0,a.indexOf(";",27)+1).replace(m,"$1-webkit-$2")+a}return a}function i(e,t){var n=e.indexOf(1===t?":":"{"),r=e.substring(0,3!==t?n:10);return n=e.substring(n+1,e.length-1),I(2!==t?r:r.replace(O,"$1"),n,t)}function a(e,t){var n=o(t,t.charCodeAt(0),t.charCodeAt(1),t.charCodeAt(2));return n!==t+";"?n.replace(k," or ($1)").substring(4):"("+t+")"}function u(e,t,n,r,o,i,a,u,l,s){for(var f,p=0,d=t;p<j;++p)switch(f=N[p].call(c,e,d,n,r,o,i,a,u,l,s)){case void 0:case!1:case!0:case null:break;default:d=f}if(d!==t)return d}function l(e){switch(e){case void 0:case null:j=N.length=0;break;default:switch(e.constructor){case Array:for(var t=0,n=e.length;t<n;++t)l(e[t]);break;case Function:N[j++]=e;break;case Boolean:M=0|!!e}}return l}function s(e){return e=e.prefix,void 0!==e&&(I=null,e?"function"!=typeof e?F=1:(F=2,I=e):F=0),s}function c(e,n){var r=e;if(33>r.charCodeAt(0)&&(r=r.trim()),L=r,r=[L],0<j){var o=u(-1,n,r,r,P,T,0,0,0,0);void 0!==o&&"string"==typeof o&&(n=o)}var i=t(D,r,n,0,0);return 0<j&&void 0!==(o=u(-2,i,r,r,P,T,i.length,0,0,0))&&(i=o),L="",A=0,T=P=1,i}var f=/^\0+/g,p=/[\0\r\f]/g,d=/: */g,h=/zoo|gra/,m=/([,: ])(transform)/g,v=/,\r+?/g,g=/([\t\r\n ])*\f?&/g,y=/@(k\w+)\s*(\S*)\s*/,b=/::(place)/g,E=/:(read-only)/g,w=/[svh]\w+-[tblr]{2}/,x=/\(\s*(.*)\s*\)/g,k=/([\s\S]*?);/g,C=/-self|flex-/g,O=/[^]*?(:[rp][el]a[\w-]+)[^]*/,S=/stretch|:\s*\w+\-(?:conte|avail)/,_=/([^-])(image-set\()/,T=1,P=1,A=0,F=1,D=[],N=[],j=0,I=null,M=0,L="";return c.use=l,c.set=s,void 0!==e&&s(e),c}t.a=r},function(e,t,n){!function(t){e.exports=t()}(function(){"use strict";return function(e){function t(t){if(t)try{e(t+"}")}catch(e){}}return function(n,r,o,i,a,u,l,s,c,f){switch(n){case 1:if(0===c&&64===r.charCodeAt(0))return e(r+";"),"";break;case 2:if(0===s)return r+"/*|*/";break;case 3:switch(s){case 102:case 112:return e(o[0]+r),"";default:return r+(0===f?"/*|*/":"")}case-2:r.split("/*|*/}").forEach(t)}}}})},function(e,t,n){"use strict";function r(e,t,n,r,o,i,a,u){if(!e){if(e=void 0,void 0===t)e=Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var l=[n,r,o,i,a,u],s=0;e=Error(t.replace(/%s/g,function(){return l[s++]})),e.name="Invariant Violation"}throw e.framesToPop=1,e}}function o(e){for(var t=arguments.length-1,n="https://reactjs.org/docs/error-decoder.html?invariant="+e,o=0;o<t;o++)n+="&args[]="+encodeURIComponent(arguments[o+1]);r(!1,"Minified React error #"+e+"; visit %s for the full message or use the non-minified dev environment for full errors and additional helpful warnings. ",n)}function i(e,t,n,r,o,i,a,u,l){var s=Array.prototype.slice.call(arguments,3);try{t.apply(n,s)}catch(e){this.onError(e)}}function a(e,t,n,r,o,a,u,l,s){Vr=!1,Ur=null,i.apply(Wr,arguments)}function u(e,t,n,r,i,u,l,s,c){if(a.apply(this,arguments),Vr){if(Vr){var f=Ur;Vr=!1,Ur=null}else o("198"),f=void 0;Br||(Br=!0,zr=f)}}function l(){if(Hr)for(var e in $r){var t=$r[e],n=Hr.indexOf(e);if(-1<n||o("96",e),!Gr[n]){t.extractEvents||o("97",e),Gr[n]=t,n=t.eventTypes;for(var r in n){var i=void 0,a=n[r],u=t,l=r;Kr.hasOwnProperty(l)&&o("99",l),Kr[l]=a;var c=a.phasedRegistrationNames;if(c){for(i in c)c.hasOwnProperty(i)&&s(c[i],u,l);i=!0}else a.registrationName?(s(a.registrationName,u,l),i=!0):i=!1;i||o("98",r,e)}}}}function s(e,t,n){Qr[e]&&o("100",e),Qr[e]=t,Yr[e]=t.eventTypes[n].dependencies}function c(e,t,n){var r=e.type||"unknown-event";e.currentTarget=Zr(n),u(r,t,void 0,e),e.currentTarget=null}function f(e,t){return null==t&&o("30"),null==e?t:Array.isArray(e)?Array.isArray(t)?(e.push.apply(e,t),e):(e.push(t),e):Array.isArray(t)?[e].concat(t):[e,t]}function p(e,t,n){Array.isArray(e)?e.forEach(t,n):e&&t.call(n,e)}function d(e){if(e){var t=e._dispatchListeners,n=e._dispatchInstances;if(Array.isArray(t))for(var r=0;r<t.length&&!e.isPropagationStopped();r++)c(e,t[r],n[r]);else t&&c(e,t,n);e._dispatchListeners=null,e._dispatchInstances=null,e.isPersistent()||e.constructor.release(e)}}function h(e,t){var n=e.stateNode;if(!n)return null;var r=qr(n);if(!r)return null;n=r[t];e:switch(t){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":(r=!r.disabled)||(e=e.type,r=!("button"===e||"input"===e||"select"===e||"textarea"===e)),e=!r;break e;default:e=!1}return e?null:(n&&"function"!=typeof n&&o("231",t,typeof n),n)}function m(e){if(null!==e&&(Jr=f(Jr,e)),e=Jr,Jr=null,e&&(p(e,d),Jr&&o("95"),Br))throw e=zr,Br=!1,zr=null,e}function v(e){if(e[no])return e[no];for(;!e[no];){if(!e.parentNode)return null;e=e.parentNode}return e=e[no],5===e.tag||6===e.tag?e:null}function g(e){return e=e[no],!e||5!==e.tag&&6!==e.tag?null:e}function y(e){if(5===e.tag||6===e.tag)return e.stateNode;o("33")}function b(e){return e[ro]||null}function E(e){do{e=e.return}while(e&&5!==e.tag);return e||null}function w(e,t,n){(t=h(e,n.dispatchConfig.phasedRegistrationNames[t]))&&(n._dispatchListeners=f(n._dispatchListeners,t),n._dispatchInstances=f(n._dispatchInstances,e))}function x(e){if(e&&e.dispatchConfig.phasedRegistrationNames){for(var t=e._targetInst,n=[];t;)n.push(t),t=E(t);for(t=n.length;0<t--;)w(n[t],"captured",e);for(t=0;t<n.length;t++)w(n[t],"bubbled",e)}}function k(e,t,n){e&&n&&n.dispatchConfig.registrationName&&(t=h(e,n.dispatchConfig.registrationName))&&(n._dispatchListeners=f(n._dispatchListeners,t),n._dispatchInstances=f(n._dispatchInstances,e))}function C(e){e&&e.dispatchConfig.registrationName&&k(e._targetInst,null,e)}function O(e){p(e,x)}function S(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n["Webkit"+e]="webkit"+t,n["Moz"+e]="moz"+t,n}function _(e){if(ao[e])return ao[e];if(!io[e])return e;var t,n=io[e];for(t in n)if(n.hasOwnProperty(t)&&t in uo)return ao[e]=n[t];return e}function T(){if(vo)return vo;var e,t,n=mo,r=n.length,o="value"in ho?ho.value:ho.textContent,i=o.length;for(e=0;e<r&&n[e]===o[e];e++);var a=r-e;for(t=1;t<=a&&n[r-t]===o[i-t];t++);return vo=o.slice(e,1<t?1-t:void 0)}function P(){return!0}function A(){return!1}function F(e,t,n,r){this.dispatchConfig=e,this._targetInst=t,this.nativeEvent=n,e=this.constructor.Interface;for(var o in e)e.hasOwnProperty(o)&&((t=e[o])?this[o]=t(n):"target"===o?this.target=r:this[o]=n[o]);return this.isDefaultPrevented=(null!=n.defaultPrevented?n.defaultPrevented:!1===n.returnValue)?P:A,this.isPropagationStopped=A,this}function D(e,t,n,r){if(this.eventPool.length){var o=this.eventPool.pop();return this.call(o,e,t,n,r),o}return new this(e,t,n,r)}function N(e){e instanceof this||o("279"),e.destructor(),10>this.eventPool.length&&this.eventPool.push(e)}function j(e){e.eventPool=[],e.getPooled=D,e.release=N}function I(e,t){switch(e){case"keyup":return-1!==bo.indexOf(t.keyCode);case"keydown":return 229!==t.keyCode;case"keypress":case"mousedown":case"blur":return!0;default:return!1}}function M(e){return e=e.detail,"object"==typeof e&&"data"in e?e.data:null}function L(e,t){switch(e){case"compositionend":return M(t);case"keypress":return 32!==t.which?null:(So=!0,Co);case"textInput":return e=t.data,e===Co&&So?null:e;default:return null}}function R(e,t){if(_o)return"compositionend"===e||!Eo&&I(e,t)?(e=T(),vo=mo=ho=null,_o=!1,e):null;switch(e){case"paste":return null;case"keypress":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1<t.char.length)return t.char;if(t.which)return String.fromCharCode(t.which)}return null;case"compositionend":return ko&&"ko"!==t.locale?null:t.data;default:return null}}function V(e){if(e=Xr(e)){"function"!=typeof Po&&o("280");var t=qr(e.stateNode);Po(e.stateNode,e.type,t)}}function U(e){Ao?Fo?Fo.push(e):Fo=[e]:Ao=e}function B(){if(Ao){var e=Ao,t=Fo;if(Fo=Ao=null,V(e),t)for(e=0;e<t.length;e++)V(t[e])}}function z(e,t){return e(t)}function W(e,t,n){return e(t,n)}function H(){}function $(e,t){if(Do)return e(t);Do=!0;try{return z(e,t)}finally{Do=!1,(null!==Ao||null!==Fo)&&(H(),B())}}function G(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return"input"===t?!!No[e.type]:"textarea"===t}function K(e){return e=e.target||e.srcElement||window,e.correspondingUseElement&&(e=e.correspondingUseElement),3===e.nodeType?e.parentNode:e}function Q(e){if(!oo)return!1;e="on"+e;var t=e in document;return t||(t=document.createElement("div"),t.setAttribute(e,"return;"),t="function"==typeof t[e]),t}function Y(e){var t=e.type;return(e=e.nodeName)&&"input"===e.toLowerCase()&&("checkbox"===t||"radio"===t)}function q(e){var t=Y(e)?"checked":"value",n=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),r=""+e[t];if(!e.hasOwnProperty(t)&&void 0!==n&&"function"==typeof n.get&&"function"==typeof n.set){var o=n.get,i=n.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return o.call(this)},set:function(e){r=""+e,i.call(this,e)}}),Object.defineProperty(e,t,{enumerable:n.enumerable}),{getValue:function(){return r},setValue:function(e){r=""+e},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}function X(e){e._valueTracker||(e._valueTracker=q(e))}function Z(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),r="";return e&&(r=Y(e)?e.checked?"true":"false":e.value),(e=r)!==n&&(t.setValue(e),!0)}function J(e){return null===e||"object"!=typeof e?null:(e=Yo&&e[Yo]||e["@@iterator"],"function"==typeof e?e:null)}function ee(e){if(null==e)return null;if("function"==typeof e)return e.displayName||e.name||null;if("string"==typeof e)return e;switch(e){case Ho:return"ConcurrentMode";case Vo:return"Fragment";case Ro:return"Portal";case Bo:return"Profiler";case Uo:return"StrictMode";case Go:return"Suspense"}if("object"==typeof e)switch(e.$$typeof){case Wo:return"Context.Consumer";case zo:return"Context.Provider";case $o:var t=e.render;return t=t.displayName||t.name||"",e.displayName||(""!==t?"ForwardRef("+t+")":"ForwardRef");case Ko:return ee(e.type);case Qo:if(e=1===e._status?e._result:null)return ee(e)}return null}function te(e){var t="";do{e:switch(e.tag){case 3:case 4:case 6:case 7:case 10:case 9:var n="";break e;default:var r=e._debugOwner,o=e._debugSource,i=ee(e.type);n=null,r&&(n=ee(r.type)),r=i,i="",o?i=" (at "+o.fileName.replace(Io,"")+":"+o.lineNumber+")":n&&(i=" (created by "+n+")"),n="\n in "+(r||"Unknown")+i}t+=n,e=e.return}while(e);return t}function ne(e){return!!Xo.call(Jo,e)||!Xo.call(Zo,e)&&(qo.test(e)?Jo[e]=!0:(Zo[e]=!0,!1))}function re(e,t,n,r){if(null!==n&&0===n.type)return!1;switch(typeof t){case"function":case"symbol":return!0;case"boolean":return!r&&(null!==n?!n.acceptsBooleans:"data-"!==(e=e.toLowerCase().slice(0,5))&&"aria-"!==e);default:return!1}}function oe(e,t,n,r){if(null===t||void 0===t||re(e,t,n,r))return!0;if(r)return!1;if(null!==n)switch(n.type){case 3:return!t;case 4:return!1===t;case 5:return isNaN(t);case 6:return isNaN(t)||1>t}return!1}function ie(e,t,n,r,o){this.acceptsBooleans=2===t||3===t||4===t,this.attributeName=r,this.attributeNamespace=o,this.mustUseProperty=n,this.propertyName=e,this.type=t}function ae(e){return e[1].toUpperCase()}function ue(e,t,n,r){var o=ei.hasOwnProperty(t)?ei[t]:null;(null!==o?0===o.type:!r&&(2<t.length&&("o"===t[0]||"O"===t[0])&&("n"===t[1]||"N"===t[1])))||(oe(t,n,o,r)&&(n=null),r||null===o?ne(t)&&(null===n?e.removeAttribute(t):e.setAttribute(t,""+n)):o.mustUseProperty?e[o.propertyName]=null===n?3!==o.type&&"":n:(t=o.attributeName,r=o.attributeNamespace,null===n?e.removeAttribute(t):(o=o.type,n=3===o||4===o&&!0===n?"":""+n,r?e.setAttributeNS(r,t,n):e.setAttribute(t,n))))}function le(e){switch(typeof e){case"boolean":case"number":case"object":case"string":case"undefined":return e;default:return""}}function se(e,t){var n=t.checked;return Lr({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:null!=n?n:e._wrapperState.initialChecked})}function ce(e,t){var n=null==t.defaultValue?"":t.defaultValue,r=null!=t.checked?t.checked:t.defaultChecked;n=le(null!=t.value?t.value:n),e._wrapperState={initialChecked:r,initialValue:n,controlled:"checkbox"===t.type||"radio"===t.type?null!=t.checked:null!=t.value}}function fe(e,t){null!=(t=t.checked)&&ue(e,"checked",t,!1)}function pe(e,t){fe(e,t);var n=le(t.value),r=t.type;if(null!=n)"number"===r?(0===n&&""===e.value||e.value!=n)&&(e.value=""+n):e.value!==""+n&&(e.value=""+n);else if("submit"===r||"reset"===r)return void e.removeAttribute("value");t.hasOwnProperty("value")?he(e,t.type,n):t.hasOwnProperty("defaultValue")&&he(e,t.type,le(t.defaultValue)),null==t.checked&&null!=t.defaultChecked&&(e.defaultChecked=!!t.defaultChecked)}function de(e,t,n){if(t.hasOwnProperty("value")||t.hasOwnProperty("defaultValue")){var r=t.type;if(!("submit"!==r&&"reset"!==r||void 0!==t.value&&null!==t.value))return;t=""+e._wrapperState.initialValue,n||t===e.value||(e.value=t),e.defaultValue=t}n=e.name,""!==n&&(e.name=""),e.defaultChecked=!e.defaultChecked,e.defaultChecked=!!e._wrapperState.initialChecked,""!==n&&(e.name=n)}function he(e,t,n){"number"===t&&e.ownerDocument.activeElement===e||(null==n?e.defaultValue=""+e._wrapperState.initialValue:e.defaultValue!==""+n&&(e.defaultValue=""+n))}function me(e,t,n){return e=F.getPooled(ni.change,e,t,n),e.type="change",U(n),O(e),e}function ve(e){m(e)}function ge(e){if(Z(y(e)))return e}function ye(e,t){if("change"===e)return t}function be(){ri&&(ri.detachEvent("onpropertychange",Ee),oi=ri=null)}function Ee(e){"value"===e.propertyName&&ge(oi)&&(e=me(oi,e,K(e)),$(ve,e))}function we(e,t,n){"focus"===e?(be(),ri=t,oi=n,ri.attachEvent("onpropertychange",Ee)):"blur"===e&&be()}function xe(e){if("selectionchange"===e||"keyup"===e||"keydown"===e)return ge(oi)}function ke(e,t){if("click"===e)return ge(t)}function Ce(e,t){if("input"===e||"change"===e)return ge(t)}function Oe(e){var t=this.nativeEvent;return t.getModifierState?t.getModifierState(e):!!(e=li[e])&&!!t[e]}function Se(){return Oe}function _e(e,t){return e===t?0!==e||0!==t||1/e==1/t:e!==e&&t!==t}function Te(e,t){if(_e(e,t))return!0;if("object"!=typeof e||null===e||"object"!=typeof t||null===t)return!1;var n=Object.keys(e),r=Object.keys(t);if(n.length!==r.length)return!1;for(r=0;r<n.length;r++)if(!gi.call(t,n[r])||!_e(e[n[r]],t[n[r]]))return!1;return!0}function Pe(e){var t=e;if(e.alternate)for(;t.return;)t=t.return;else{if(0!=(2&t.effectTag))return 1;for(;t.return;)if(t=t.return,0!=(2&t.effectTag))return 1}return 3===t.tag?2:3}function Ae(e){2!==Pe(e)&&o("188")}function Fe(e){var t=e.alternate;if(!t)return t=Pe(e),3===t&&o("188"),1===t?null:e;for(var n=e,r=t;;){var i=n.return,a=i?i.alternate:null;if(!i||!a)break;if(i.child===a.child){for(var u=i.child;u;){if(u===n)return Ae(i),e;if(u===r)return Ae(i),t;u=u.sibling}o("188")}if(n.return!==r.return)n=i,r=a;else{u=!1;for(var l=i.child;l;){if(l===n){u=!0,n=i,r=a;break}if(l===r){u=!0,r=i,n=a;break}l=l.sibling}if(!u){for(l=a.child;l;){if(l===n){u=!0,n=a,r=i;break}if(l===r){u=!0,r=a,n=i;break}l=l.sibling}u||o("189")}}n.alternate!==r&&o("190")}return 3!==n.tag&&o("188"),n.stateNode.current===n?e:t}function De(e){if(!(e=Fe(e)))return null;for(var t=e;;){if(5===t.tag||6===t.tag)return t;if(t.child)t.child.return=t,t=t.child;else{if(t===e)break;for(;!t.sibling;){if(!t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}}return null}function Ne(e){var t=e.keyCode;return"charCode"in e?0===(e=e.charCode)&&13===t&&(e=13):e=t,10===e&&(e=13),32<=e||13===e?e:0}function je(e,t){var n=e[0];e=e[1];var r="on"+(e[0].toUpperCase()+e.slice(1));t={phasedRegistrationNames:{bubbled:r,captured:r+"Capture"},dependencies:[n],isInteractive:t},Pi[e]=t,Ai[n]=t}function Ie(e){var t=e.targetInst,n=t;do{if(!n){e.ancestors.push(n);break}var r;for(r=n;r.return;)r=r.return;if(!(r=3!==r.tag?null:r.stateNode.containerInfo))break;e.ancestors.push(n),n=v(r)}while(n);for(n=0;n<e.ancestors.length;n++){t=e.ancestors[n];var o=K(e.nativeEvent);r=e.topLevelType;for(var i=e.nativeEvent,a=null,u=0;u<Gr.length;u++){var l=Gr[u];l&&(l=l.extractEvents(r,t,i,o))&&(a=f(a,l))}m(a)}}function Me(e,t){if(!t)return null;var n=(Di(e)?Re:Ve).bind(null,e);t.addEventListener(e,n,!1)}function Le(e,t){if(!t)return null;var n=(Di(e)?Re:Ve).bind(null,e);t.addEventListener(e,n,!0)}function Re(e,t){W(Ve,e,t)}function Ve(e,t){if(ji){var n=K(t);if(n=v(n),null===n||"number"!=typeof n.tag||2===Pe(n)||(n=null),Ni.length){var r=Ni.pop();r.topLevelType=e,r.nativeEvent=t,r.targetInst=n,e=r}else e={topLevelType:e,nativeEvent:t,targetInst:n,ancestors:[]};try{$(Ie,e)}finally{e.topLevelType=null,e.nativeEvent=null,e.targetInst=null,e.ancestors.length=0,10>Ni.length&&Ni.push(e)}}}function Ue(e){return Object.prototype.hasOwnProperty.call(e,Li)||(e[Li]=Mi++,Ii[e[Li]]={}),Ii[e[Li]]}function Be(e){if(void 0===(e=e||("undefined"!=typeof document?document:void 0)))return null;try{return e.activeElement||e.body}catch(t){return e.body}}function ze(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function We(e,t){var n=ze(e);e=0;for(var r;n;){if(3===n.nodeType){if(r=e+n.textContent.length,e<=t&&r>=t)return{node:n,offset:t-e};e=r}e:{for(;n;){if(n.nextSibling){n=n.nextSibling;break e}n=n.parentNode}n=void 0}n=ze(n)}}function He(e,t){return!(!e||!t)&&(e===t||(!e||3!==e.nodeType)&&(t&&3===t.nodeType?He(e,t.parentNode):"contains"in e?e.contains(t):!!e.compareDocumentPosition&&!!(16&e.compareDocumentPosition(t))))}function $e(){for(var e=window,t=Be();t instanceof e.HTMLIFrameElement;){try{e=t.contentDocument.defaultView}catch(e){break}t=Be(e.document)}return t}function Ge(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&("input"===t&&("text"===e.type||"search"===e.type||"tel"===e.type||"url"===e.type||"password"===e.type)||"textarea"===t||"true"===e.contentEditable)}function Ke(e,t){var n=t.window===t?t.document:9===t.nodeType?t:t.ownerDocument;return Wi||null==Ui||Ui!==Be(n)?null:(n=Ui,"selectionStart"in n&&Ge(n)?n={start:n.selectionStart,end:n.selectionEnd}:(n=(n.ownerDocument&&n.ownerDocument.defaultView||window).getSelection(),n={anchorNode:n.anchorNode,anchorOffset:n.anchorOffset,focusNode:n.focusNode,focusOffset:n.focusOffset}),zi&&Te(zi,n)?null:(zi=n,e=F.getPooled(Vi.select,Bi,e,t),e.type="select",e.target=Ui,O(e),e))}function Qe(e){var t="";return Mr.Children.forEach(e,function(e){null!=e&&(t+=e)}),t}function Ye(e,t){return e=Lr({children:void 0},t),(t=Qe(t.children))&&(e.children=t),e}function qe(e,t,n,r){if(e=e.options,t){t={};for(var o=0;o<n.length;o++)t["$"+n[o]]=!0;for(n=0;n<e.length;n++)o=t.hasOwnProperty("$"+e[n].value),e[n].selected!==o&&(e[n].selected=o),o&&r&&(e[n].defaultSelected=!0)}else{for(n=""+le(n),t=null,o=0;o<e.length;o++){if(e[o].value===n)return e[o].selected=!0,void(r&&(e[o].defaultSelected=!0));null!==t||e[o].disabled||(t=e[o])}null!==t&&(t.selected=!0)}}function Xe(e,t){return null!=t.dangerouslySetInnerHTML&&o("91"),Lr({},t,{value:void 0,defaultValue:void 0,children:""+e._wrapperState.initialValue})}function Ze(e,t){var n=t.value;null==n&&(n=t.defaultValue,t=t.children,null!=t&&(null!=n&&o("92"),Array.isArray(t)&&(1>=t.length||o("93"),t=t[0]),n=t),null==n&&(n="")),e._wrapperState={initialValue:le(n)}}function Je(e,t){var n=le(t.value),r=le(t.defaultValue);null!=n&&(n=""+n,n!==e.value&&(e.value=n),null==t.defaultValue&&e.defaultValue!==n&&(e.defaultValue=n)),null!=r&&(e.defaultValue=""+r)}function et(e){var t=e.textContent;t===e._wrapperState.initialValue&&(e.value=t)}function tt(e){switch(e){case"svg":return"http://www.w3.org/2000/svg";case"math":return"http://www.w3.org/1998/Math/MathML";default:return"http://www.w3.org/1999/xhtml"}}function nt(e,t){return null==e||"http://www.w3.org/1999/xhtml"===e?tt(t):"http://www.w3.org/2000/svg"===e&&"foreignObject"===t?"http://www.w3.org/1999/xhtml":e}function rt(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&3===n.nodeType)return void(n.nodeValue=t)}e.textContent=t}function ot(e,t,n){return null==t||"boolean"==typeof t||""===t?"":n||"number"!=typeof t||0===t||Qi.hasOwnProperty(e)&&Qi[e]?(""+t).trim():t+"px"}function it(e,t){e=e.style;for(var n in t)if(t.hasOwnProperty(n)){var r=0===n.indexOf("--"),o=ot(n,t[n],r);"float"===n&&(n="cssFloat"),r?e.setProperty(n,o):e[n]=o}}function at(e,t){t&&(qi[e]&&(null!=t.children||null!=t.dangerouslySetInnerHTML)&&o("137",e,""),null!=t.dangerouslySetInnerHTML&&(null!=t.children&&o("60"),"object"==typeof t.dangerouslySetInnerHTML&&"__html"in t.dangerouslySetInnerHTML||o("61")),null!=t.style&&"object"!=typeof t.style&&o("62",""))}function ut(e,t){if(-1===e.indexOf("-"))return"string"==typeof t.is;switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}function lt(e,t){e=9===e.nodeType||11===e.nodeType?e:e.ownerDocument;var n=Ue(e);t=Yr[t];for(var r=0;r<t.length;r++){var o=t[r];if(!n.hasOwnProperty(o)||!n[o]){switch(o){case"scroll":Le("scroll",e);break;case"focus":case"blur":Le("focus",e),Le("blur",e),n.blur=!0,n.focus=!0;break;case"cancel":case"close":Q(o)&&Le(o,e);break;case"invalid":case"submit":case"reset":break;default:-1===po.indexOf(o)&&Me(o,e)}n[o]=!0}}}function st(){}function ct(e,t){switch(e){case"button":case"input":case"select":case"textarea":return!!t.autoFocus}return!1}function ft(e,t){return"textarea"===e||"option"===e||"noscript"===e||"string"==typeof t.children||"number"==typeof t.children||"object"==typeof t.dangerouslySetInnerHTML&&null!==t.dangerouslySetInnerHTML&&null!=t.dangerouslySetInnerHTML.__html}function pt(e,t,n,r,o){e[ro]=o,"input"===n&&"radio"===o.type&&null!=o.name&&fe(e,o),ut(n,r),r=ut(n,o);for(var i=0;i<t.length;i+=2){var a=t[i],u=t[i+1];"style"===a?it(e,u):"dangerouslySetInnerHTML"===a?Ki(e,u):"children"===a?rt(e,u):ue(e,a,u,r)}switch(n){case"input":pe(e,o);break;case"textarea":Je(e,o);break;case"select":t=e._wrapperState.wasMultiple,e._wrapperState.wasMultiple=!!o.multiple,n=o.value,null!=n?qe(e,!!o.multiple,n,!1):t!==!!o.multiple&&(null!=o.defaultValue?qe(e,!!o.multiple,o.defaultValue,!0):qe(e,!!o.multiple,o.multiple?[]:"",!1))}}function dt(e){for(e=e.nextSibling;e&&1!==e.nodeType&&3!==e.nodeType;)e=e.nextSibling;return e}function ht(e){for(e=e.firstChild;e&&1!==e.nodeType&&3!==e.nodeType;)e=e.nextSibling;return e}function mt(e){0>na||(e.current=ta[na],ta[na]=null,na--)}function vt(e,t){na++,ta[na]=e.current,e.current=t}function gt(e,t){var n=e.type.contextTypes;if(!n)return ra;var r=e.stateNode;if(r&&r.__reactInternalMemoizedUnmaskedChildContext===t)return r.__reactInternalMemoizedMaskedChildContext;var o,i={};for(o in n)i[o]=t[o];return r&&(e=e.stateNode,e.__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=i),i}function yt(e){return null!==(e=e.childContextTypes)&&void 0!==e}function bt(e){mt(ia,e),mt(oa,e)}function Et(e){mt(ia,e),mt(oa,e)}function wt(e,t,n){oa.current!==ra&&o("168"),vt(oa,t,e),vt(ia,n,e)}function xt(e,t,n){var r=e.stateNode;if(e=t.childContextTypes,"function"!=typeof r.getChildContext)return n;r=r.getChildContext();for(var i in r)i in e||o("108",ee(t)||"Unknown",i);return Lr({},n,r)}function kt(e){var t=e.stateNode;return t=t&&t.__reactInternalMemoizedMergedChildContext||ra,aa=oa.current,vt(oa,t,e),vt(ia,ia.current,e),!0}function Ct(e,t,n){var r=e.stateNode;r||o("169"),n?(t=xt(e,t,aa),r.__reactInternalMemoizedMergedChildContext=t,mt(ia,e),mt(oa,e),vt(oa,t,e)):mt(ia,e),vt(ia,n,e)}function Ot(e){return function(t){try{return e(t)}catch(e){}}}function St(e){if("undefined"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__)return!1;var t=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(t.isDisabled||!t.supportsFiber)return!0;try{var n=t.inject(e);ua=Ot(function(e){return t.onCommitFiberRoot(n,e)}),la=Ot(function(e){return t.onCommitFiberUnmount(n,e)})}catch(e){}return!0}function _t(e,t,n,r){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=t,this.firstContextDependency=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=r,this.effectTag=0,this.lastEffect=this.firstEffect=this.nextEffect=null,this.childExpirationTime=this.expirationTime=0,this.alternate=null}function Tt(e,t,n,r){return new _t(e,t,n,r)}function Pt(e){return!(!(e=e.prototype)||!e.isReactComponent)}function At(e){if("function"==typeof e)return Pt(e)?1:0;if(void 0!==e&&null!==e){if((e=e.$$typeof)===$o)return 11;if(e===Ko)return 14}return 2}function Ft(e,t){var n=e.alternate;return null===n?(n=Tt(e.tag,t,e.key,e.mode),n.elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.effectTag=0,n.nextEffect=null,n.firstEffect=null,n.lastEffect=null),n.childExpirationTime=e.childExpirationTime,n.expirationTime=e.expirationTime,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,n.firstContextDependency=e.firstContextDependency,n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n}function Dt(e,t,n,r,i,a){var u=2;if(r=e,"function"==typeof e)Pt(e)&&(u=1);else if("string"==typeof e)u=5;else e:switch(e){case Vo:return Nt(n.children,i,a,t);case Ho:return jt(n,3|i,a,t);case Uo:return jt(n,2|i,a,t);case Bo:return e=Tt(12,n,t,4|i),e.elementType=Bo,e.type=Bo,e.expirationTime=a,e;case Go:return e=Tt(13,n,t,i),e.elementType=Go,e.type=Go,e.expirationTime=a,e;default:if("object"==typeof e&&null!==e)switch(e.$$typeof){case zo:u=10;break e;case Wo:u=9;break e;case $o:u=11;break e;case Ko:u=14;break e;case Qo:u=16,r=null;break e}o("130",null==e?e:typeof e,"")}return t=Tt(u,n,t,i),t.elementType=e,t.type=r,t.expirationTime=a,t}function Nt(e,t,n,r){return e=Tt(7,e,r,t),e.expirationTime=n,e}function jt(e,t,n,r){return e=Tt(8,e,r,t),t=0==(1&t)?Uo:Ho,e.elementType=t,e.type=t,e.expirationTime=n,e}function It(e,t,n){return e=Tt(6,e,null,t),e.expirationTime=n,e}function Mt(e,t,n){return t=Tt(4,null!==e.children?e.children:[],e.key,t),t.expirationTime=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function Lt(e,t){e.didError=!1;var n=e.earliestPendingTime;0===n?e.earliestPendingTime=e.latestPendingTime=t:n<t?e.earliestPendingTime=t:e.latestPendingTime>t&&(e.latestPendingTime=t),Ut(t,e)}function Rt(e,t){e.didError=!1,e.latestPingedTime>=t&&(e.latestPingedTime=0);var n=e.earliestPendingTime,r=e.latestPendingTime;n===t?e.earliestPendingTime=r===t?e.latestPendingTime=0:r:r===t&&(e.latestPendingTime=n),n=e.earliestSuspendedTime,r=e.latestSuspendedTime,0===n?e.earliestSuspendedTime=e.latestSuspendedTime=t:n<t?e.earliestSuspendedTime=t:r>t&&(e.latestSuspendedTime=t),Ut(t,e)}function Vt(e,t){var n=e.earliestPendingTime;return e=e.earliestSuspendedTime,n>t&&(t=n),e>t&&(t=e),t}function Ut(e,t){var n=t.earliestSuspendedTime,r=t.latestSuspendedTime,o=t.earliestPendingTime,i=t.latestPingedTime;o=0!==o?o:i,0===o&&(0===e||r<e)&&(o=r),e=o,0!==e&&n>e&&(e=n),t.nextExpirationTimeToWorkOn=o,t.expirationTime=e}function Bt(e){return{baseState:e,firstUpdate:null,lastUpdate:null,firstCapturedUpdate:null,lastCapturedUpdate:null,firstEffect:null,lastEffect:null,firstCapturedEffect:null,lastCapturedEffect:null}}function zt(e){return{baseState:e.baseState,firstUpdate:e.firstUpdate,lastUpdate:e.lastUpdate,firstCapturedUpdate:null,lastCapturedUpdate:null,firstEffect:null,lastEffect:null,firstCapturedEffect:null,lastCapturedEffect:null}}function Wt(e){return{expirationTime:e,tag:0,payload:null,callback:null,next:null,nextEffect:null}}function Ht(e,t){null===e.lastUpdate?e.firstUpdate=e.lastUpdate=t:(e.lastUpdate.next=t,e.lastUpdate=t)}function $t(e,t){var n=e.alternate;if(null===n){var r=e.updateQueue,o=null;null===r&&(r=e.updateQueue=Bt(e.memoizedState))}else r=e.updateQueue,o=n.updateQueue,null===r?null===o?(r=e.updateQueue=Bt(e.memoizedState),o=n.updateQueue=Bt(n.memoizedState)):r=e.updateQueue=zt(o):null===o&&(o=n.updateQueue=zt(r));null===o||r===o?Ht(r,t):null===r.lastUpdate||null===o.lastUpdate?(Ht(r,t),Ht(o,t)):(Ht(r,t),o.lastUpdate=t)}function Gt(e,t){var n=e.updateQueue;n=null===n?e.updateQueue=Bt(e.memoizedState):Kt(e,n),null===n.lastCapturedUpdate?n.firstCapturedUpdate=n.lastCapturedUpdate=t:(n.lastCapturedUpdate.next=t,n.lastCapturedUpdate=t)}function Kt(e,t){var n=e.alternate;return null!==n&&t===n.updateQueue&&(t=e.updateQueue=zt(t)),t}function Qt(e,t,n,r,o,i){switch(n.tag){case 1:return e=n.payload,"function"==typeof e?e.call(i,r,o):e;case 3:e.effectTag=-2049&e.effectTag|64;case 0:if(e=n.payload,null===(o="function"==typeof e?e.call(i,r,o):e)||void 0===o)break;return Lr({},r,o);case 2:sa=!0}return r}function Yt(e,t,n,r,o){sa=!1,t=Kt(e,t);for(var i=t.baseState,a=null,u=0,l=t.firstUpdate,s=i;null!==l;){var c=l.expirationTime;c<o?(null===a&&(a=l,i=s),u<c&&(u=c)):(s=Qt(e,t,l,s,n,r),null!==l.callback&&(e.effectTag|=32,l.nextEffect=null,null===t.lastEffect?t.firstEffect=t.lastEffect=l:(t.lastEffect.nextEffect=l,t.lastEffect=l))),l=l.next}for(c=null,l=t.firstCapturedUpdate;null!==l;){var f=l.expirationTime;f<o?(null===c&&(c=l,null===a&&(i=s)),u<f&&(u=f)):(s=Qt(e,t,l,s,n,r),null!==l.callback&&(e.effectTag|=32,l.nextEffect=null,null===t.lastCapturedEffect?t.firstCapturedEffect=t.lastCapturedEffect=l:(t.lastCapturedEffect.nextEffect=l,t.lastCapturedEffect=l))),l=l.next}null===a&&(t.lastUpdate=null),null===c?t.lastCapturedUpdate=null:e.effectTag|=32,null===a&&null===c&&(i=s),t.baseState=i,t.firstUpdate=a,t.firstCapturedUpdate=c,e.expirationTime=u,e.memoizedState=s}function qt(e,t,n){null!==t.firstCapturedUpdate&&(null!==t.lastUpdate&&(t.lastUpdate.next=t.firstCapturedUpdate,t.lastUpdate=t.lastCapturedUpdate),t.firstCapturedUpdate=t.lastCapturedUpdate=null),Xt(t.firstEffect,n),t.firstEffect=t.lastEffect=null,Xt(t.firstCapturedEffect,n),t.firstCapturedEffect=t.lastCapturedEffect=null}function Xt(e,t){for(;null!==e;){var n=e.callback;if(null!==n){e.callback=null;var r=t;"function"!=typeof n&&o("191",n),n.call(r)}e=e.nextEffect}}function Zt(e,t){return{value:e,source:t,stack:te(t)}}function Jt(e,t){var n=e.type._context;vt(ca,n._currentValue,e),n._currentValue=t}function en(e){var t=ca.current;mt(ca,e),e.type._context._currentValue=t}function tn(e){fa=e,da=pa=null,e.firstContextDependency=null}function nn(e,t){return da!==e&&!1!==t&&0!==t&&("number"==typeof t&&1073741823!==t||(da=e,t=1073741823),t={context:e,observedBits:t,next:null},null===pa?(null===fa&&o("293"),fa.firstContextDependency=pa=t):pa=pa.next=t),e._currentValue}function rn(e){return e===ha&&o("174"),e}function on(e,t){vt(ga,t,e),vt(va,e,e),vt(ma,ha,e);var n=t.nodeType;switch(n){case 9:case 11:t=(t=t.documentElement)?t.namespaceURI:nt(null,"");break;default:n=8===n?t.parentNode:t,t=n.namespaceURI||null,n=n.tagName,t=nt(t,n)}mt(ma,e),vt(ma,t,e)}function an(e){mt(ma,e),mt(va,e),mt(ga,e)}function un(e){rn(ga.current);var t=rn(ma.current),n=nt(t,e.type);t!==n&&(vt(va,e,e),vt(ma,n,e))}function ln(e){va.current===e&&(mt(ma,e),mt(va,e))}function sn(e,t){if(e&&e.defaultProps){t=Lr({},t),e=e.defaultProps;for(var n in e)void 0===t[n]&&(t[n]=e[n])}return t}function cn(e){var t=e._result;switch(e._status){case 1:return t;case 2:case 0:throw t;default:throw e._status=0,t=e._ctor,t=t(),t.then(function(t){0===e._status&&(t=t.default,e._status=1,e._result=t)},function(t){0===e._status&&(e._status=2,e._result=t)}),e._result=t,t}}function fn(e,t,n,r){t=e.memoizedState,n=n(r,t),n=null===n||void 0===n?t:Lr({},t,n),e.memoizedState=n,null!==(r=e.updateQueue)&&0===e.expirationTime&&(r.baseState=n)}function pn(e,t,n,r,o,i,a){return e=e.stateNode,"function"==typeof e.shouldComponentUpdate?e.shouldComponentUpdate(r,i,a):!t.prototype||!t.prototype.isPureReactComponent||(!Te(n,r)||!Te(o,i))}function dn(e,t,n){var r=!1,o=ra,i=t.contextType;return"object"==typeof i&&null!==i?i=ya.currentDispatcher.readContext(i):(o=yt(t)?aa:oa.current,r=t.contextTypes,i=(r=null!==r&&void 0!==r)?gt(e,o):ra),t=new t(n,i),e.memoizedState=null!==t.state&&void 0!==t.state?t.state:null,t.updater=Ea,e.stateNode=t,t._reactInternalFiber=e,r&&(e=e.stateNode,e.__reactInternalMemoizedUnmaskedChildContext=o,e.__reactInternalMemoizedMaskedChildContext=i),t}function hn(e,t,n,r){e=t.state,"function"==typeof t.componentWillReceiveProps&&t.componentWillReceiveProps(n,r),"function"==typeof t.UNSAFE_componentWillReceiveProps&&t.UNSAFE_componentWillReceiveProps(n,r),t.state!==e&&Ea.enqueueReplaceState(t,t.state,null)}function mn(e,t,n,r){var o=e.stateNode;o.props=n,o.state=e.memoizedState,o.refs=ba;var i=t.contextType;"object"==typeof i&&null!==i?o.context=ya.currentDispatcher.readContext(i):(i=yt(t)?aa:oa.current,o.context=gt(e,i)),i=e.updateQueue,null!==i&&(Yt(e,i,n,o,r),o.state=e.memoizedState),i=t.getDerivedStateFromProps,"function"==typeof i&&(fn(e,t,i,n),o.state=e.memoizedState),"function"==typeof t.getDerivedStateFromProps||"function"==typeof o.getSnapshotBeforeUpdate||"function"!=typeof o.UNSAFE_componentWillMount&&"function"!=typeof o.componentWillMount||(t=o.state,"function"==typeof o.componentWillMount&&o.componentWillMount(),"function"==typeof o.UNSAFE_componentWillMount&&o.UNSAFE_componentWillMount(),t!==o.state&&Ea.enqueueReplaceState(o,o.state,null),null!==(i=e.updateQueue)&&(Yt(e,i,n,o,r),o.state=e.memoizedState)),"function"==typeof o.componentDidMount&&(e.effectTag|=4)}function vn(e,t,n){if(null!==(e=n.ref)&&"function"!=typeof e&&"object"!=typeof e){if(n._owner){n=n._owner;var r=void 0;n&&(1!==n.tag&&o("289"),r=n.stateNode),r||o("147",e);var i=""+e;return null!==t&&null!==t.ref&&"function"==typeof t.ref&&t.ref._stringRef===i?t.ref:(t=function(e){var t=r.refs;t===ba&&(t=r.refs={}),null===e?delete t[i]:t[i]=e},t._stringRef=i,t)}"string"!=typeof e&&o("284"),n._owner||o("290",e)}return e}function gn(e,t){"textarea"!==e.type&&o("31","[object Object]"===Object.prototype.toString.call(t)?"object with keys {"+Object.keys(t).join(", ")+"}":t,"")}function yn(e){function t(t,n){if(e){var r=t.lastEffect;null!==r?(r.nextEffect=n,t.lastEffect=n):t.firstEffect=t.lastEffect=n,n.nextEffect=null,n.effectTag=8}}function n(n,r){if(!e)return null;for(;null!==r;)t(n,r),r=r.sibling;return null}function r(e,t){for(e=new Map;null!==t;)null!==t.key?e.set(t.key,t):e.set(t.index,t),t=t.sibling;return e}function i(e,t,n){return e=Ft(e,t,n),e.index=0,e.sibling=null,e}function a(t,n,r){return t.index=r,e?null!==(r=t.alternate)?(r=r.index,r<n?(t.effectTag=2,n):r):(t.effectTag=2,n):n}function u(t){return e&&null===t.alternate&&(t.effectTag=2),t}function l(e,t,n,r){return null===t||6!==t.tag?(t=It(n,e.mode,r),t.return=e,t):(t=i(t,n,r),t.return=e,t)}function s(e,t,n,r){return null!==t&&t.elementType===n.type?(r=i(t,n.props,r),r.ref=vn(e,t,n),r.return=e,r):(r=Dt(n.type,n.key,n.props,null,e.mode,r),r.ref=vn(e,t,n),r.return=e,r)}function c(e,t,n,r){return null===t||4!==t.tag||t.stateNode.containerInfo!==n.containerInfo||t.stateNode.implementation!==n.implementation?(t=Mt(n,e.mode,r),t.return=e,t):(t=i(t,n.children||[],r),t.return=e,t)}function f(e,t,n,r,o){return null===t||7!==t.tag?(t=Nt(n,e.mode,r,o),t.return=e,t):(t=i(t,n,r),t.return=e,t)}function p(e,t,n){if("string"==typeof t||"number"==typeof t)return t=It(""+t,e.mode,n),t.return=e,t;if("object"==typeof t&&null!==t){switch(t.$$typeof){case Lo:return n=Dt(t.type,t.key,t.props,null,e.mode,n),n.ref=vn(e,null,t),n.return=e,n;case Ro:return t=Mt(t,e.mode,n),t.return=e,t}if(wa(t)||J(t))return t=Nt(t,e.mode,n,null),t.return=e,t;gn(e,t)}return null}function d(e,t,n,r){var o=null!==t?t.key:null;if("string"==typeof n||"number"==typeof n)return null!==o?null:l(e,t,""+n,r);if("object"==typeof n&&null!==n){switch(n.$$typeof){case Lo:return n.key===o?n.type===Vo?f(e,t,n.props.children,r,o):s(e,t,n,r):null;case Ro:return n.key===o?c(e,t,n,r):null}if(wa(n)||J(n))return null!==o?null:f(e,t,n,r,null);gn(e,n)}return null}function h(e,t,n,r,o){if("string"==typeof r||"number"==typeof r)return e=e.get(n)||null,l(t,e,""+r,o);if("object"==typeof r&&null!==r){switch(r.$$typeof){case Lo:return e=e.get(null===r.key?n:r.key)||null,r.type===Vo?f(t,e,r.props.children,o,r.key):s(t,e,r,o);case Ro:return e=e.get(null===r.key?n:r.key)||null,c(t,e,r,o)}if(wa(r)||J(r))return e=e.get(n)||null,f(t,e,r,o,null);gn(t,r)}return null}function m(o,i,u,l){for(var s=null,c=null,f=i,m=i=0,v=null;null!==f&&m<u.length;m++){f.index>m?(v=f,f=null):v=f.sibling;var g=d(o,f,u[m],l);if(null===g){null===f&&(f=v);break}e&&f&&null===g.alternate&&t(o,f),i=a(g,i,m),null===c?s=g:c.sibling=g,c=g,f=v}if(m===u.length)return n(o,f),s;if(null===f){for(;m<u.length;m++)(f=p(o,u[m],l))&&(i=a(f,i,m),null===c?s=f:c.sibling=f,c=f);return s}for(f=r(o,f);m<u.length;m++)(v=h(f,o,m,u[m],l))&&(e&&null!==v.alternate&&f.delete(null===v.key?m:v.key),i=a(v,i,m),null===c?s=v:c.sibling=v,c=v);return e&&f.forEach(function(e){return t(o,e)}),s}function v(i,u,l,s){var c=J(l);"function"!=typeof c&&o("150"),null==(l=c.call(l))&&o("151");for(var f=c=null,m=u,v=u=0,g=null,y=l.next();null!==m&&!y.done;v++,y=l.next()){m.index>v?(g=m,m=null):g=m.sibling;var b=d(i,m,y.value,s);if(null===b){m||(m=g);break}e&&m&&null===b.alternate&&t(i,m),u=a(b,u,v),null===f?c=b:f.sibling=b,f=b,m=g}if(y.done)return n(i,m),c;if(null===m){for(;!y.done;v++,y=l.next())null!==(y=p(i,y.value,s))&&(u=a(y,u,v),null===f?c=y:f.sibling=y,f=y);return c}for(m=r(i,m);!y.done;v++,y=l.next())null!==(y=h(m,i,v,y.value,s))&&(e&&null!==y.alternate&&m.delete(null===y.key?v:y.key),u=a(y,u,v),null===f?c=y:f.sibling=y,f=y);return e&&m.forEach(function(e){return t(i,e)}),c}return function(e,r,a,l){var s="object"==typeof a&&null!==a&&a.type===Vo&&null===a.key;s&&(a=a.props.children);var c="object"==typeof a&&null!==a;if(c)switch(a.$$typeof){case Lo:e:{for(c=a.key,s=r;null!==s;){if(s.key===c){if(7===s.tag?a.type===Vo:s.elementType===a.type){n(e,s.sibling),r=i(s,a.type===Vo?a.props.children:a.props,l),r.ref=vn(e,s,a),r.return=e,e=r;break e}n(e,s);break}t(e,s),s=s.sibling}a.type===Vo?(r=Nt(a.props.children,e.mode,l,a.key),r.return=e,e=r):(l=Dt(a.type,a.key,a.props,null,e.mode,l),l.ref=vn(e,r,a),l.return=e,e=l)}return u(e);case Ro:e:{for(s=a.key;null!==r;){if(r.key===s){if(4===r.tag&&r.stateNode.containerInfo===a.containerInfo&&r.stateNode.implementation===a.implementation){n(e,r.sibling),r=i(r,a.children||[],l),r.return=e,e=r;break e}n(e,r);break}t(e,r),r=r.sibling}r=Mt(a,e.mode,l),r.return=e,e=r}return u(e)}if("string"==typeof a||"number"==typeof a)return a=""+a,null!==r&&6===r.tag?(n(e,r.sibling),r=i(r,a,l),r.return=e,e=r):(n(e,r),r=It(a,e.mode,l),r.return=e,e=r),u(e);if(wa(a))return m(e,r,a,l);if(J(a))return v(e,r,a,l);if(c&&gn(e,a),void 0===a&&!s)switch(e.tag){case 1:case 0:l=e.type,o("152",l.displayName||l.name||"Component")}return n(e,r)}}function bn(e,t){var n=Tt(5,null,null,0);n.elementType="DELETED",n.type="DELETED",n.stateNode=t,n.return=e,n.effectTag=8,null!==e.lastEffect?(e.lastEffect.nextEffect=n,e.lastEffect=n):e.firstEffect=e.lastEffect=n}function En(e,t){switch(e.tag){case 5:var n=e.type;return null!==(t=1!==t.nodeType||n.toLowerCase()!==t.nodeName.toLowerCase()?null:t)&&(e.stateNode=t,!0);case 6:return null!==(t=""===e.pendingProps||3!==t.nodeType?null:t)&&(e.stateNode=t,!0);default:return!1}}function wn(e){if(Sa){var t=Oa;if(t){var n=t;if(!En(e,t)){if(!(t=dt(n))||!En(e,t))return e.effectTag|=2,Sa=!1,void(Ca=e);bn(Ca,n)}Ca=e,Oa=ht(t)}else e.effectTag|=2,Sa=!1,Ca=e}}function xn(e){for(e=e.return;null!==e&&5!==e.tag&&3!==e.tag;)e=e.return;Ca=e}function kn(e){if(e!==Ca)return!1;if(!Sa)return xn(e),Sa=!0,!1;var t=e.type;if(5!==e.tag||"head"!==t&&"body"!==t&&!ft(t,e.memoizedProps))for(t=Oa;t;)bn(e,t),t=dt(t);return xn(e),Oa=Ca?dt(e.stateNode):null,!0}function Cn(){Oa=Ca=null,Sa=!1}function On(e,t,n,r){t.child=null===e?ka(t,null,n,r):xa(t,e.child,n,r)}function Sn(e,t,n,r,o){n=n.render;var i=t.ref;return tn(t,o),r=n(r,i),t.effectTag|=1,On(e,t,r,o),t.child}function _n(e,t,n,r,o,i){if(null===e){var a=n.type;return"function"!=typeof a||Pt(a)||void 0!==a.defaultProps||null!==n.compare||void 0!==n.defaultProps?(e=Dt(n.type,null,r,null,t.mode,i),e.ref=t.ref,e.return=t,t.child=e):(t.tag=15,t.type=a,Tn(e,t,a,r,o,i))}return a=e.child,o<i&&(o=a.memoizedProps,n=n.compare,(n=null!==n?n:Te)(o,r)&&e.ref===t.ref)?In(e,t,i):(t.effectTag|=1,e=Ft(a,r,i),e.ref=t.ref,e.return=t,t.child=e)}function Tn(e,t,n,r,o,i){return null!==e&&o<i&&Te(e.memoizedProps,r)&&e.ref===t.ref?In(e,t,i):An(e,t,n,r,i)}function Pn(e,t){var n=t.ref;(null===e&&null!==n||null!==e&&e.ref!==n)&&(t.effectTag|=128)}function An(e,t,n,r,o){var i=yt(n)?aa:oa.current;return i=gt(t,i),tn(t,o),n=n(r,i),t.effectTag|=1,On(e,t,n,o),t.child}function Fn(e,t,n,r,o){if(yt(n)){var i=!0;kt(t)}else i=!1;if(tn(t,o),null===t.stateNode)null!==e&&(e.alternate=null,t.alternate=null,t.effectTag|=2),dn(t,n,r,o),mn(t,n,r,o),r=!0;else if(null===e){var a=t.stateNode,u=t.memoizedProps;a.props=u;var l=a.context,s=n.contextType;"object"==typeof s&&null!==s?s=ya.currentDispatcher.readContext(s):(s=yt(n)?aa:oa.current,s=gt(t,s));var c=n.getDerivedStateFromProps,f="function"==typeof c||"function"==typeof a.getSnapshotBeforeUpdate;f||"function"!=typeof a.UNSAFE_componentWillReceiveProps&&"function"!=typeof a.componentWillReceiveProps||(u!==r||l!==s)&&hn(t,a,r,s),sa=!1;var p=t.memoizedState;l=a.state=p;var d=t.updateQueue;null!==d&&(Yt(t,d,r,a,o),l=t.memoizedState),u!==r||p!==l||ia.current||sa?("function"==typeof c&&(fn(t,n,c,r),l=t.memoizedState),(u=sa||pn(t,n,u,r,p,l,s))?(f||"function"!=typeof a.UNSAFE_componentWillMount&&"function"!=typeof a.componentWillMount||("function"==typeof a.componentWillMount&&a.componentWillMount(),"function"==typeof a.UNSAFE_componentWillMount&&a.UNSAFE_componentWillMount()),"function"==typeof a.componentDidMount&&(t.effectTag|=4)):("function"==typeof a.componentDidMount&&(t.effectTag|=4),t.memoizedProps=r,t.memoizedState=l),a.props=r,a.state=l,a.context=s,r=u):("function"==typeof a.componentDidMount&&(t.effectTag|=4),r=!1)}else a=t.stateNode,u=t.memoizedProps,a.props=t.type===t.elementType?u:sn(t.type,u),l=a.context,s=n.contextType,"object"==typeof s&&null!==s?s=ya.currentDispatcher.readContext(s):(s=yt(n)?aa:oa.current,s=gt(t,s)),c=n.getDerivedStateFromProps,(f="function"==typeof c||"function"==typeof a.getSnapshotBeforeUpdate)||"function"!=typeof a.UNSAFE_componentWillReceiveProps&&"function"!=typeof a.componentWillReceiveProps||(u!==r||l!==s)&&hn(t,a,r,s),sa=!1,l=t.memoizedState,p=a.state=l,d=t.updateQueue,null!==d&&(Yt(t,d,r,a,o),p=t.memoizedState),u!==r||l!==p||ia.current||sa?("function"==typeof c&&(fn(t,n,c,r),p=t.memoizedState),(c=sa||pn(t,n,u,r,l,p,s))?(f||"function"!=typeof a.UNSAFE_componentWillUpdate&&"function"!=typeof a.componentWillUpdate||("function"==typeof a.componentWillUpdate&&a.componentWillUpdate(r,p,s),"function"==typeof a.UNSAFE_componentWillUpdate&&a.UNSAFE_componentWillUpdate(r,p,s)),"function"==typeof a.componentDidUpdate&&(t.effectTag|=4),"function"==typeof a.getSnapshotBeforeUpdate&&(t.effectTag|=256)):("function"!=typeof a.componentDidUpdate||u===e.memoizedProps&&l===e.memoizedState||(t.effectTag|=4),"function"!=typeof a.getSnapshotBeforeUpdate||u===e.memoizedProps&&l===e.memoizedState||(t.effectTag|=256),t.memoizedProps=r,t.memoizedState=p),a.props=r,a.state=p,a.context=s,r=c):("function"!=typeof a.componentDidUpdate||u===e.memoizedProps&&l===e.memoizedState||(t.effectTag|=4),"function"!=typeof a.getSnapshotBeforeUpdate||u===e.memoizedProps&&l===e.memoizedState||(t.effectTag|=256),r=!1);return Dn(e,t,n,r,i,o)}function Dn(e,t,n,r,o,i){Pn(e,t);var a=0!=(64&t.effectTag);if(!r&&!a)return o&&Ct(t,n,!1),In(e,t,i);r=t.stateNode,_a.current=t;var u=a&&"function"!=typeof n.getDerivedStateFromError?null:r.render();return t.effectTag|=1,null!==e&&a?(t.child=xa(t,e.child,null,i),t.child=xa(t,null,u,i)):On(e,t,u,i),t.memoizedState=r.state,o&&Ct(t,n,!0),t.child}function Nn(e){var t=e.stateNode;t.pendingContext?wt(e,t.pendingContext,t.pendingContext!==t.context):t.context&&wt(e,t.context,!1),on(e,t.containerInfo)}function jn(e,t,n){var r=t.mode,o=t.pendingProps,i=t.memoizedState;if(0==(64&t.effectTag)){i=null;var a=!1}else i={timedOutAt:null!==i?i.timedOutAt:0},a=!0,t.effectTag&=-65;if(null===e)if(a){var u=o.fallback;e=Nt(null,r,0,null),0==(1&t.mode)&&(e.child=null!==t.memoizedState?t.child.child:t.child),r=Nt(u,r,n,null),e.sibling=r,n=e,n.return=r.return=t}else n=r=ka(t,null,o.children,n);else null!==e.memoizedState?(r=e.child,u=r.sibling,a?(n=o.fallback,o=Ft(r,r.pendingProps,0),0==(1&t.mode)&&(a=null!==t.memoizedState?t.child.child:t.child)!==r.child&&(o.child=a),r=o.sibling=Ft(u,n,u.expirationTime),n=o,o.childExpirationTime=0,n.return=r.return=t):n=r=xa(t,r.child,o.children,n)):(u=e.child,a?(a=o.fallback,o=Nt(null,r,0,null),o.child=u,0==(1&t.mode)&&(o.child=null!==t.memoizedState?t.child.child:t.child),r=o.sibling=Nt(a,r,n,null),r.effectTag|=2,n=o,o.childExpirationTime=0,n.return=r.return=t):r=n=xa(t,u,o.children,n)),t.stateNode=e.stateNode;return t.memoizedState=i,t.child=n,r}function In(e,t,n){if(null!==e&&(t.firstContextDependency=e.firstContextDependency),t.childExpirationTime<n)return null;if(null!==e&&t.child!==e.child&&o("153"),null!==t.child){for(e=t.child,n=Ft(e,e.pendingProps,e.expirationTime),t.child=n,n.return=t;null!==e.sibling;)e=e.sibling,n=n.sibling=Ft(e,e.pendingProps,e.expirationTime),n.return=t;n.sibling=null}return t.child}function Mn(e,t,n){var r=t.expirationTime;if(null!==e&&e.memoizedProps===t.pendingProps&&!ia.current&&r<n){switch(t.tag){case 3:Nn(t),Cn();break;case 5:un(t);break;case 1:yt(t.type)&&kt(t);break;case 4:on(t,t.stateNode.containerInfo);break;case 10:Jt(t,t.memoizedProps.value);break;case 13:if(null!==t.memoizedState)return 0!==(r=t.child.childExpirationTime)&&r>=n?jn(e,t,n):(t=In(e,t,n),null!==t?t.sibling:null)}return In(e,t,n)}switch(t.expirationTime=0,t.tag){case 2:r=t.elementType,null!==e&&(e.alternate=null,t.alternate=null,t.effectTag|=2),e=t.pendingProps;var i=gt(t,oa.current);if(tn(t,n),i=r(e,i),t.effectTag|=1,"object"==typeof i&&null!==i&&"function"==typeof i.render&&void 0===i.$$typeof){if(t.tag=1,yt(r)){var a=!0;kt(t)}else a=!1;t.memoizedState=null!==i.state&&void 0!==i.state?i.state:null;var u=r.getDerivedStateFromProps;"function"==typeof u&&fn(t,r,u,e),i.updater=Ea,t.stateNode=i,i._reactInternalFiber=t,mn(t,r,e,n),t=Dn(null,t,r,!0,a,n)}else t.tag=0,On(null,t,i,n),t=t.child;return t;case 16:switch(i=t.elementType,null!==e&&(e.alternate=null,t.alternate=null,t.effectTag|=2),a=t.pendingProps,e=cn(i),t.type=e,i=t.tag=At(e),a=sn(e,a),u=void 0,i){case 0:u=An(null,t,e,a,n);break;case 1:u=Fn(null,t,e,a,n);break;case 11:u=Sn(null,t,e,a,n);break;case 14:u=_n(null,t,e,sn(e.type,a),r,n);break;default:o("306",e,"")}return u;case 0:return r=t.type,i=t.pendingProps,i=t.elementType===r?i:sn(r,i),An(e,t,r,i,n);case 1:return r=t.type,i=t.pendingProps,i=t.elementType===r?i:sn(r,i),Fn(e,t,r,i,n);case 3:return Nn(t),r=t.updateQueue,null===r&&o("282"),i=t.memoizedState,i=null!==i?i.element:null,Yt(t,r,t.pendingProps,null,n),r=t.memoizedState.element,r===i?(Cn(),t=In(e,t,n)):(i=t.stateNode,(i=(null===e||null===e.child)&&i.hydrate)&&(Oa=ht(t.stateNode.containerInfo),Ca=t,i=Sa=!0),i?(t.effectTag|=2,t.child=ka(t,null,r,n)):(On(e,t,r,n),Cn()),t=t.child),t;case 5:return un(t),null===e&&wn(t),r=t.type,i=t.pendingProps,a=null!==e?e.memoizedProps:null,u=i.children,ft(r,i)?u=null:null!==a&&ft(r,a)&&(t.effectTag|=16),Pn(e,t),1!==n&&1&t.mode&&i.hidden?(t.expirationTime=1,t=null):(On(e,t,u,n),t=t.child),t;case 6:return null===e&&wn(t),null;case 13:return jn(e,t,n);case 4:return on(t,t.stateNode.containerInfo),r=t.pendingProps,null===e?t.child=xa(t,null,r,n):On(e,t,r,n),t.child;case 11:return r=t.type,i=t.pendingProps,i=t.elementType===r?i:sn(r,i),Sn(e,t,r,i,n);case 7:return On(e,t,t.pendingProps,n),t.child;case 8:case 12:return On(e,t,t.pendingProps.children,n),t.child;case 10:e:{if(r=t.type._context,i=t.pendingProps,u=t.memoizedProps,a=i.value,Jt(t,a),null!==u){var l=u.value;if(0===(a=l===a&&(0!==l||1/l==1/a)||l!==l&&a!==a?0:0|("function"==typeof r._calculateChangedBits?r._calculateChangedBits(l,a):1073741823))){if(u.children===i.children&&!ia.current){t=In(e,t,n);break e}}else for(null!==(u=t.child)&&(u.return=t);null!==u;){if(null!==(l=u.firstContextDependency))do{if(l.context===r&&0!=(l.observedBits&a)){if(1===u.tag){var s=Wt(n);s.tag=2,$t(u,s)}u.expirationTime<n&&(u.expirationTime=n),s=u.alternate,null!==s&&s.expirationTime<n&&(s.expirationTime=n);for(var c=u.return;null!==c;){if(s=c.alternate,c.childExpirationTime<n)c.childExpirationTime=n,null!==s&&s.childExpirationTime<n&&(s.childExpirationTime=n);else{if(!(null!==s&&s.childExpirationTime<n))break;s.childExpirationTime=n}c=c.return}}s=u.child,l=l.next}while(null!==l);else s=10===u.tag&&u.type===t.type?null:u.child;if(null!==s)s.return=u;else for(s=u;null!==s;){if(s===t){s=null;break}if(null!==(u=s.sibling)){u.return=s.return,s=u;break}s=s.return}u=s}}On(e,t,i.children,n),t=t.child}return t;case 9:return i=t.type,a=t.pendingProps,r=a.children,tn(t,n),i=nn(i,a.unstable_observedBits),r=r(i),t.effectTag|=1,On(e,t,r,n),t.child;case 14:return i=t.type,a=sn(i,t.pendingProps),a=sn(i.type,a),_n(e,t,i,a,r,n);case 15:return Tn(e,t,t.type,t.pendingProps,r,n);case 17:return r=t.type,i=t.pendingProps,i=t.elementType===r?i:sn(r,i),null!==e&&(e.alternate=null,t.alternate=null,t.effectTag|=2),t.tag=1,yt(r)?(e=!0,kt(t)):e=!1,tn(t,n),dn(t,r,i,n),mn(t,r,i,n),Dn(null,t,r,!0,e,n);default:o("156")}}function Ln(e){e.effectTag|=4}function Rn(e,t){var n=t.source,r=t.stack;null===r&&null!==n&&(r=te(n)),null!==n&&ee(n.type),t=t.value,null!==e&&1===e.tag&&ee(e.type);try{console.error(t)}catch(e){setTimeout(function(){throw e})}}function Vn(e){var t=e.ref;if(null!==t)if("function"==typeof t)try{t(null)}catch(t){er(e,t)}else t.current=null}function Un(e,t){for(var n=e;;){if(5===n.tag){var r=n.stateNode;if(t)r.style.display="none";else{r=n.stateNode;var o=n.memoizedProps.style;o=void 0!==o&&null!==o&&o.hasOwnProperty("display")?o.display:null,r.style.display=ot("display",o)}}else if(6===n.tag)n.stateNode.nodeValue=t?"":n.memoizedProps;else{if(13===n.tag&&null!==n.memoizedState){r=n.child.sibling,r.return=n,n=r;continue}if(null!==n.child){n.child.return=n,n=n.child;continue}}if(n===e)break;for(;null===n.sibling;){if(null===n.return||n.return===e)return;n=n.return}n.sibling.return=n.return,n=n.sibling}}function Bn(e){switch("function"==typeof la&&la(e),e.tag){case 0:case 11:case 14:case 15:var t=e.updateQueue;if(null!==t&&null!==(t=t.lastEffect)){var n=t=t.next;do{var r=n.destroy;if(null!==r){var o=e;try{r()}catch(e){er(o,e)}}n=n.next}while(n!==t)}break;case 1:if(Vn(e),t=e.stateNode,"function"==typeof t.componentWillUnmount)try{t.props=e.memoizedProps,t.state=e.memoizedState,t.componentWillUnmount()}catch(t){er(e,t)}break;case 5:Vn(e);break;case 4:Hn(e)}}function zn(e){return 5===e.tag||3===e.tag||4===e.tag}function Wn(e){e:{for(var t=e.return;null!==t;){if(zn(t)){var n=t;break e}t=t.return}o("160"),n=void 0}var r=t=void 0;switch(n.tag){case 5:t=n.stateNode,r=!1;break;case 3:case 4:t=n.stateNode.containerInfo,r=!0;break;default:o("161")}16&n.effectTag&&(rt(t,""),n.effectTag&=-17);e:t:for(n=e;;){for(;null===n.sibling;){if(null===n.return||zn(n.return)){n=null;break e}n=n.return}for(n.sibling.return=n.return,n=n.sibling;5!==n.tag&&6!==n.tag;){if(2&n.effectTag)continue t;if(null===n.child||4===n.tag)continue t;n.child.return=n,n=n.child}if(!(2&n.effectTag)){n=n.stateNode;break e}}for(var i=e;;){if(5===i.tag||6===i.tag)if(n)if(r){var a=t,u=i.stateNode,l=n;8===a.nodeType?a.parentNode.insertBefore(u,l):a.insertBefore(u,l)}else t.insertBefore(i.stateNode,n);else r?(u=t,l=i.stateNode,8===u.nodeType?(a=u.parentNode,a.insertBefore(l,u)):(a=u,a.appendChild(l)),null!==(u=u._reactRootContainer)&&void 0!==u||null!==a.onclick||(a.onclick=st)):t.appendChild(i.stateNode);else if(4!==i.tag&&null!==i.child){i.child.return=i,i=i.child;continue}if(i===e)break;for(;null===i.sibling;){if(null===i.return||i.return===e)return;i=i.return}i.sibling.return=i.return,i=i.sibling}}function Hn(e){for(var t=e,n=!1,r=void 0,i=void 0;;){if(!n){n=t.return;e:for(;;){switch(null===n&&o("160"),n.tag){case 5:r=n.stateNode,i=!1;break e;case 3:case 4:r=n.stateNode.containerInfo,i=!0;break e}n=n.return}n=!0}if(5===t.tag||6===t.tag){e:for(var a=t,u=a;;)if(Bn(u),null!==u.child&&4!==u.tag)u.child.return=u,u=u.child;else{if(u===a)break;for(;null===u.sibling;){if(null===u.return||u.return===a)break e;u=u.return}u.sibling.return=u.return,u=u.sibling}i?(a=r,u=t.stateNode,8===a.nodeType?a.parentNode.removeChild(u):a.removeChild(u)):r.removeChild(t.stateNode)}else if(4===t.tag?(r=t.stateNode.containerInfo,i=!0):Bn(t),null!==t.child){t.child.return=t,t=t.child;continue}if(t===e)break;for(;null===t.sibling;){if(null===t.return||t.return===e)return;t=t.return,4===t.tag&&(n=!1)}t.sibling.return=t.return,t=t.sibling}}function $n(e,t){switch(t.tag){case 0:case 11:case 14:case 15:case 1:break;case 5:var n=t.stateNode;if(null!=n){var r=t.memoizedProps;e=null!==e?e.memoizedProps:r;var i=t.type,a=t.updateQueue;t.updateQueue=null,null!==a&&pt(n,a,i,e,r,t)}break;case 6:null===t.stateNode&&o("162"),t.stateNode.nodeValue=t.memoizedProps;break;case 3:case 12:break;case 13:if(n=t.memoizedState,r=void 0,e=t,null===n?r=!1:(r=!0,e=t.child,0===n.timedOutAt&&(n.timedOutAt=fr())),null!==e&&Un(e,r),null!==(n=t.updateQueue)){t.updateQueue=null;var u=t.stateNode;null===u&&(u=t.stateNode=new Da),n.forEach(function(e){var n=rr.bind(null,t,e);u.has(e)||(u.add(e),e.then(n,n))})}break;case 17:break;default:o("163")}}function Gn(e,t,n){n=Wt(n),n.tag=3,n.payload={element:null};var r=t.value;return n.callback=function(){Er(r),Rn(e,t)},n}function Kn(e,t,n){n=Wt(n),n.tag=3;var r=e.type.getDerivedStateFromError;if("function"==typeof r){var o=t.value;n.payload=function(){return r(o)}}var i=e.stateNode;return null!==i&&"function"==typeof i.componentDidCatch&&(n.callback=function(){"function"!=typeof r&&(null===Qa?Qa=new Set([this]):Qa.add(this));var n=t.value,o=t.stack;Rn(e,t),this.componentDidCatch(n,{componentStack:null!==o?o:""})}),n}function Qn(e){switch(e.tag){case 1:yt(e.type)&&bt(e);var t=e.effectTag;return 2048&t?(e.effectTag=-2049&t|64,e):null;case 3:return an(e),Et(e),t=e.effectTag,0!=(64&t)&&o("285"),e.effectTag=-2049&t|64,e;case 5:return ln(e),null;case 13:return t=e.effectTag,2048&t?(e.effectTag=-2049&t|64,e):null;case 4:return an(e),null;case 10:return en(e),null;default:return null}}function Yn(){if(null!==Va)for(var e=Va.return;null!==e;){var t=e;switch(t.tag){case 1:var n=t.type.childContextTypes;null!==n&&void 0!==n&&bt(t);break;case 3:an(t),Et(t);break;case 5:ln(t);break;case 4:an(t);break;case 10:en(t)}e=e.return}Ua=null,Ba=0,za=-1,Wa=!1,Va=null}function qn(){null!==Ka&&(Rr.unstable_cancelCallback(Ga),Ka())}function Xn(e){for(;;){var t=e.alternate,n=e.return,r=e.sibling;if(0==(1024&e.effectTag)){Va=e;e:{var i=t;t=e;var a=Ba,u=t.pendingProps;switch(t.tag){case 2:case 16:break;case 15:case 0:break;case 1:yt(t.type)&&bt(t);break;case 3:an(t),Et(t),u=t.stateNode,u.pendingContext&&(u.context=u.pendingContext,u.pendingContext=null),null!==i&&null!==i.child||(kn(t),t.effectTag&=-3),Pa(t);break;case 5:ln(t);var l=rn(ga.current);if(a=t.type,null!==i&&null!=t.stateNode)Aa(i,t,a,u,l),i.ref!==t.ref&&(t.effectTag|=128);else if(u){var s=rn(ma.current);if(kn(t)){u=t,i=u.stateNode;var c=u.type,f=u.memoizedProps,p=l;switch(i[no]=u,i[ro]=f,a=void 0,l=c){case"iframe":case"object":Me("load",i);break;case"video":case"audio":for(c=0;c<po.length;c++)Me(po[c],i);break;case"source":Me("error",i);break;case"img":case"image":case"link":Me("error",i),Me("load",i);break;case"form":Me("reset",i),Me("submit",i);break;case"details":Me("toggle",i);break;case"input":ce(i,f),Me("invalid",i),lt(p,"onChange");break;case"select":i._wrapperState={wasMultiple:!!f.multiple},Me("invalid",i),lt(p,"onChange");break;case"textarea":Ze(i,f),Me("invalid",i),lt(p,"onChange")}at(l,f),c=null;for(a in f)f.hasOwnProperty(a)&&(s=f[a],"children"===a?"string"==typeof s?i.textContent!==s&&(c=["children",s]):"number"==typeof s&&i.textContent!==""+s&&(c=["children",""+s]):Qr.hasOwnProperty(a)&&null!=s&&lt(p,a));switch(l){case"input":X(i),de(i,f,!0);break;case"textarea":X(i),et(i,f);break;case"select":case"option":break;default:"function"==typeof f.onClick&&(i.onclick=st)}a=c,u.updateQueue=a,u=null!==a,u&&Ln(t)}else{f=t,i=a,p=u,c=9===l.nodeType?l:l.ownerDocument,s===$i.html&&(s=tt(i)),s===$i.html?"script"===i?(i=c.createElement("div"),i.innerHTML="<script><\/script>",c=i.removeChild(i.firstChild)):"string"==typeof p.is?c=c.createElement(i,{is:p.is}):(c=c.createElement(i),"select"===i&&p.multiple&&(c.multiple=!0)):c=c.createElementNS(s,i),i=c,i[no]=f,i[ro]=u,Ta(i,t,!1,!1),p=i,c=a,f=u;var d=l,h=ut(c,f);switch(c){case"iframe":case"object":Me("load",p),l=f;break;case"video":case"audio":for(l=0;l<po.length;l++)Me(po[l],p);l=f;break;case"source":Me("error",p),l=f;break;case"img":case"image":case"link":Me("error",p),Me("load",p),l=f;break;case"form":Me("reset",p),Me("submit",p),l=f;break;case"details":Me("toggle",p),l=f;break;case"input":ce(p,f),l=se(p,f),Me("invalid",p),lt(d,"onChange");break;case"option":l=Ye(p,f);break;case"select":p._wrapperState={wasMultiple:!!f.multiple},l=Lr({},f,{value:void 0}),Me("invalid",p),lt(d,"onChange");break;case"textarea":Ze(p,f),l=Xe(p,f),Me("invalid",p),lt(d,"onChange");break;default:l=f}at(c,l),s=void 0;var m=c,v=p,g=l;for(s in g)if(g.hasOwnProperty(s)){var y=g[s];"style"===s?it(v,y):"dangerouslySetInnerHTML"===s?null!=(y=y?y.__html:void 0)&&Ki(v,y):"children"===s?"string"==typeof y?("textarea"!==m||""!==y)&&rt(v,y):"number"==typeof y&&rt(v,""+y):"suppressContentEditableWarning"!==s&&"suppressHydrationWarning"!==s&&"autoFocus"!==s&&(Qr.hasOwnProperty(s)?null!=y&&lt(d,s):null!=y&&ue(v,s,y,h))}switch(c){case"input":X(p),de(p,f,!1);break;case"textarea":X(p),et(p,f);break;case"option":null!=f.value&&p.setAttribute("value",""+le(f.value));break;case"select":l=p,l.multiple=!!f.multiple,p=f.value,null!=p?qe(l,!!f.multiple,p,!1):null!=f.defaultValue&&qe(l,!!f.multiple,f.defaultValue,!0);break;default:"function"==typeof l.onClick&&(p.onclick=st)}(u=ct(a,u))&&Ln(t),t.stateNode=i}null!==t.ref&&(t.effectTag|=128)}else null===t.stateNode&&o("166");break;case 6:i&&null!=t.stateNode?Fa(i,t,i.memoizedProps,u):("string"!=typeof u&&(null===t.stateNode&&o("166")),i=rn(ga.current),rn(ma.current),kn(t)?(u=t,a=u.stateNode,i=u.memoizedProps,a[no]=u,(u=a.nodeValue!==i)&&Ln(t)):(a=t,u=(9===i.nodeType?i:i.ownerDocument).createTextNode(u),u[no]=t,a.stateNode=u));break;case 11:break;case 13:if(u=t.memoizedState,0!=(64&t.effectTag)){t.expirationTime=a,Va=t;break e}u=null!==u,a=null!==i&&null!==i.memoizedState,null!==i&&!u&&a&&null!==(i=i.child.sibling)&&(l=t.firstEffect,null!==l?(t.firstEffect=i,i.nextEffect=l):(t.firstEffect=t.lastEffect=i,i.nextEffect=null),i.effectTag=8),(u!==a||0==(1&t.effectTag)&&u)&&(t.effectTag|=4);break;case 7:case 8:case 12:break;case 4:an(t),Pa(t);break;case 10:en(t);break;case 9:case 14:break;case 17:yt(t.type)&&bt(t);break;default:o("156")}Va=null}if(t=e,1===Ba||1!==t.childExpirationTime){for(u=0,a=t.child;null!==a;)i=a.expirationTime,l=a.childExpirationTime,i>u&&(u=i),l>u&&(u=l),a=a.sibling;t.childExpirationTime=u}if(null!==Va)return Va;null!==n&&0==(1024&n.effectTag)&&(null===n.firstEffect&&(n.firstEffect=e.firstEffect),null!==e.lastEffect&&(null!==n.lastEffect&&(n.lastEffect.nextEffect=e.firstEffect),n.lastEffect=e.lastEffect),1<e.effectTag&&(null!==n.lastEffect?n.lastEffect.nextEffect=e:n.firstEffect=e,n.lastEffect=e))}else{if(null!==(e=Qn(e,Ba)))return e.effectTag&=1023,e;null!==n&&(n.firstEffect=n.lastEffect=null,n.effectTag|=1024)}if(null!==r)return r;if(null===n)break;e=n}return null}function Zn(e){var t=Mn(e.alternate,e,Ba);return e.memoizedProps=e.pendingProps,null===t&&(t=Xn(e)),Ia.current=null,t}function Jn(e,t){Ra&&o("243"),qn(),Ra=!0,Ia.currentDispatcher=ja;var n=e.nextExpirationTimeToWorkOn;n===Ba&&e===Ua&&null!==Va||(Yn(),Ua=e,Ba=n,Va=Ft(Ua.current,null,Ba),e.pendingCommitExpirationTime=0);for(var r=!1;;){try{if(t)for(;null!==Va&&!hr();)Va=Zn(Va);else for(;null!==Va;)Va=Zn(Va)}catch(t){if(da=pa=fa=null,null===Va)r=!0,Er(t);else{null===Va&&o("271");var i=Va,a=i.return;if(null!==a){e:{var u=e,l=a,s=i,c=t;if(a=Ba,s.effectTag|=1024,s.firstEffect=s.lastEffect=null,null!==c&&"object"==typeof c&&"function"==typeof c.then){var f=c;c=l;var p=-1,d=-1;do{if(13===c.tag){var h=c.alternate;if(null!==h&&null!==(h=h.memoizedState)){d=10*(1073741822-h.timedOutAt);break}h=c.pendingProps.maxDuration,"number"==typeof h&&(0>=h?p=0:(-1===p||h<p)&&(p=h))}c=c.return}while(null!==c);c=l;do{if((h=13===c.tag)&&(h=void 0!==c.memoizedProps.fallback&&null===c.memoizedState),h){if(l=c.updateQueue,null===l?c.updateQueue=new Set([f]):l.add(f),0==(1&c.mode)){c.effectTag|=64,s.effectTag&=-1957,1===s.tag&&(null===s.alternate?s.tag=17:(a=Wt(1073741823),a.tag=2,$t(s,a))),s.expirationTime=1073741823;break e}s=u.pingCache,null===s?(s=u.pingCache=new Na,l=new Set,s.set(f,l)):void 0===(l=s.get(f))&&(l=new Set,s.set(f,l)),l.has(a)||(l.add(a),s=nr.bind(null,u,f,a),f.then(s,s)),-1===p?u=1073741823:(-1===d&&(d=10*(1073741822-Vt(u,a))-5e3),u=d+p),0<=u&&za<u&&(za=u),c.effectTag|=2048,c.expirationTime=a;break e}c=c.return}while(null!==c);c=Error((ee(s.type)||"A React component")+" suspended while rendering, but no fallback UI was specified.\n\nAdd a <Suspense fallback=...> component higher in the tree to provide a loading indicator or placeholder to display."+te(s))}Wa=!0,c=Zt(c,s),u=l;do{switch(u.tag){case 3:u.effectTag|=2048,u.expirationTime=a,a=Gn(u,c,a),Gt(u,a);break e;case 1:if(f=c,p=u.type,d=u.stateNode,0==(64&u.effectTag)&&("function"==typeof p.getDerivedStateFromError||null!==d&&"function"==typeof d.componentDidCatch&&(null===Qa||!Qa.has(d)))){u.effectTag|=2048,u.expirationTime=a,a=Kn(u,f,a),Gt(u,a);break e}}u=u.return}while(null!==u)}Va=Xn(i);continue}r=!0,Er(t)}}break}if(Ra=!1,da=pa=fa=Ia.currentDispatcher=null,r)Ua=null,e.finishedWork=null;else if(null!==Va)e.finishedWork=null;else{if(r=e.current.alternate,null===r&&o("281"),Ua=null,Wa){if(i=e.latestPendingTime,a=e.latestSuspendedTime,u=e.latestPingedTime,0!==i&&i<n||0!==a&&a<n||0!==u&&u<n)return Rt(e,n),void sr(e,r,n,e.expirationTime,-1);if(!e.didError&&t)return e.didError=!0,n=e.nextExpirationTimeToWorkOn=n,t=e.expirationTime=1073741823,void sr(e,r,n,t,-1)}t&&-1!==za?(Rt(e,n),t=10*(1073741822-Vt(e,n)),t<za&&(za=t),t=10*(1073741822-fr()),t=za-t,sr(e,r,n,e.expirationTime,0>t?0:t)):(e.pendingCommitExpirationTime=n,e.finishedWork=r)}}function er(e,t){for(var n=e.return;null!==n;){switch(n.tag){case 1:var r=n.stateNode;if("function"==typeof n.type.getDerivedStateFromError||"function"==typeof r.componentDidCatch&&(null===Qa||!Qa.has(r)))return e=Zt(t,e),e=Kn(n,e,1073741823),$t(n,e),void ir(n,1073741823);break;case 3:return e=Zt(t,e),e=Gn(n,e,1073741823),$t(n,e),void ir(n,1073741823)}n=n.return}3===e.tag&&(n=Zt(t,e),n=Gn(e,n,1073741823),$t(e,n),ir(e,1073741823))}function tr(e,t){return 0!==La?e=La:Ra?e=$a?1073741823:Ba:1&t.mode?(e=uu?1073741822-10*(1+((1073741822-e+15)/10|0)):1073741822-25*(1+((1073741822-e+500)/25|0)),null!==Ua&&e===Ba&&--e):e=1073741823,uu&&(0===nu||e<nu)&&(nu=e),e}function nr(e,t,n){var r=e.pingCache;null!==r&&r.delete(t),null!==Ua&&Ba===n?Ua=null:(t=e.earliestSuspendedTime,r=e.latestSuspendedTime,0!==t&&n<=t&&n>=r&&(e.didError=!1,t=e.latestPingedTime,(0===t||t>n)&&(e.latestPingedTime=n),Ut(n,e),0!==(n=e.expirationTime)&&pr(e,n)))}function rr(e,t){var n=e.stateNode;null!==n&&n.delete(t),t=fr(),t=tr(t,e),null!==(e=or(e,t))&&(Lt(e,t),0!==(t=e.expirationTime)&&pr(e,t))}function or(e,t){e.expirationTime<t&&(e.expirationTime=t);var n=e.alternate;null!==n&&n.expirationTime<t&&(n.expirationTime=t);var r=e.return,o=null;if(null===r&&3===e.tag)o=e.stateNode;else for(;null!==r;){if(n=r.alternate,r.childExpirationTime<t&&(r.childExpirationTime=t),null!==n&&n.childExpirationTime<t&&(n.childExpirationTime=t),null===r.return&&3===r.tag){o=r.stateNode;break}r=r.return}return o}function ir(e,t){null!==(e=or(e,t))&&(!Ra&&0!==Ba&&t>Ba&&Yn(),Lt(e,t),Ra&&!$a&&Ua===e||pr(e,e.expirationTime),du>pu&&(du=0,o("185")))}function ar(e,t,n,r,o){var i=La;La=1073741823;try{return e(t,n,r,o)}finally{La=i}}function ur(){cu=1073741822-((Rr.unstable_now()-su)/10|0)}function lr(e,t){if(0!==Xa){if(t<Xa)return;null!==Za&&Rr.unstable_cancelCallback(Za)}Xa=t,e=Rr.unstable_now()-su,Za=Rr.unstable_scheduleCallback(mr,{timeout:10*(1073741822-t)-e})}function sr(e,t,n,r,o){e.expirationTime=r,0!==o||hr()?0<o&&(e.timeoutHandle=Ji(cr.bind(null,e,t,n),o)):(e.pendingCommitExpirationTime=n,e.finishedWork=t)}function cr(e,t,n){e.pendingCommitExpirationTime=n,e.finishedWork=t,ur(),fu=cu,gr(e,n)}function fr(){return Ja?fu:(dr(),0!==tu&&1!==tu||(ur(),fu=cu),fu)}function pr(e,t){null===e.nextScheduledRoot?(e.expirationTime=t,null===qa?(Ya=qa=e,e.nextScheduledRoot=e):(qa=qa.nextScheduledRoot=e,qa.nextScheduledRoot=Ya)):t>e.expirationTime&&(e.expirationTime=t),Ja||(iu?au&&(eu=e,tu=1073741823,yr(e,1073741823,!1)):1073741823===t?vr(1073741823,!1):lr(e,t))}function dr(){var e=0,t=null;if(null!==qa)for(var n=qa,r=Ya;null!==r;){var i=r.expirationTime;if(0===i){if((null===n||null===qa)&&o("244"),r===r.nextScheduledRoot){Ya=qa=r.nextScheduledRoot=null;break}if(r===Ya)Ya=i=r.nextScheduledRoot,qa.nextScheduledRoot=i,r.nextScheduledRoot=null;else{if(r===qa){qa=n,qa.nextScheduledRoot=Ya,r.nextScheduledRoot=null;break}n.nextScheduledRoot=r.nextScheduledRoot,r.nextScheduledRoot=null}r=n.nextScheduledRoot}else{if(i>e&&(e=i,t=r),r===qa)break;if(1073741823===e)break;n=r,r=r.nextScheduledRoot}}eu=t,tu=e}function hr(){return!!mu||!!Rr.unstable_shouldYield()&&(mu=!0)}function mr(){try{if(!hr()&&null!==Ya){ur();var e=Ya;do{var t=e.expirationTime;0!==t&&cu<=t&&(e.nextExpirationTimeToWorkOn=cu),e=e.nextScheduledRoot}while(e!==Ya)}vr(0,!0)}finally{mu=!1}}function vr(e,t){if(dr(),t)for(ur(),fu=cu;null!==eu&&0!==tu&&e<=tu&&!(mu&&cu>tu);)yr(eu,tu,cu>tu),dr(),ur(),fu=cu;else for(;null!==eu&&0!==tu&&e<=tu;)yr(eu,tu,!1),dr();if(t&&(Xa=0,Za=null),0!==tu&&lr(eu,tu),du=0,hu=null,null!==lu)for(e=lu,lu=null,t=0;t<e.length;t++){var n=e[t];try{n._onComplete()}catch(e){ru||(ru=!0,ou=e)}}if(ru)throw e=ou,ou=null,ru=!1,e}function gr(e,t){Ja&&o("253"),eu=e,tu=t,yr(e,t,!1),vr(1073741823,!1)}function yr(e,t,n){if(Ja&&o("245"),Ja=!0,n){var r=e.finishedWork;null!==r?br(e,r,t):(e.finishedWork=null,r=e.timeoutHandle,-1!==r&&(e.timeoutHandle=-1,ea(r)),Jn(e,n),null!==(r=e.finishedWork)&&(hr()?e.finishedWork=r:br(e,r,t)))}else r=e.finishedWork,null!==r?br(e,r,t):(e.finishedWork=null,r=e.timeoutHandle,-1!==r&&(e.timeoutHandle=-1,ea(r)),Jn(e,n),null!==(r=e.finishedWork)&&br(e,r,t));Ja=!1}function br(e,t,n){var r=e.firstBatch;if(null!==r&&r._expirationTime>=n&&(null===lu?lu=[r]:lu.push(r),r._defer))return e.finishedWork=t,void(e.expirationTime=0);e.finishedWork=null,e===hu?du++:(hu=e,du=0),$a=Ra=!0,e.current===t&&o("177"),n=e.pendingCommitExpirationTime,0===n&&o("261"),e.pendingCommitExpirationTime=0,r=t.expirationTime;var i=t.childExpirationTime;if(r=i>r?i:r,e.didError=!1,0===r?(e.earliestPendingTime=0,e.latestPendingTime=0,e.earliestSuspendedTime=0,e.latestSuspendedTime=0,e.latestPingedTime=0):(r<e.latestPingedTime&&(e.latestPingedTime=0),i=e.latestPendingTime,0!==i&&(i>r?e.earliestPendingTime=e.latestPendingTime=0:e.earliestPendingTime>r&&(e.earliestPendingTime=e.latestPendingTime)),i=e.earliestSuspendedTime,0===i?Lt(e,r):r<e.latestSuspendedTime?(e.earliestSuspendedTime=0,e.latestSuspendedTime=0,e.latestPingedTime=0,Lt(e,r)):r>i&&Lt(e,r)),Ut(0,e),Ia.current=null,1<t.effectTag?null!==t.lastEffect?(t.lastEffect.nextEffect=t,r=t.firstEffect):r=t:r=t.firstEffect,Xi=ji,i=$e(),Ge(i)){if("selectionStart"in i)var a={start:i.selectionStart,end:i.selectionEnd};else e:{a=(a=i.ownerDocument)&&a.defaultView||window;var u=a.getSelection&&a.getSelection();if(u&&0!==u.rangeCount){a=u.anchorNode;var l=u.anchorOffset,s=u.focusNode;u=u.focusOffset;try{a.nodeType,s.nodeType}catch(e){a=null;break e}var c=0,f=-1,p=-1,d=0,h=0,m=i,v=null;t:for(;;){for(var g;m!==a||0!==l&&3!==m.nodeType||(f=c+l),m!==s||0!==u&&3!==m.nodeType||(p=c+u),3===m.nodeType&&(c+=m.nodeValue.length),null!==(g=m.firstChild);)v=m,m=g;for(;;){if(m===i)break t;if(v===a&&++d===l&&(f=c),v===s&&++h===u&&(p=c),null!==(g=m.nextSibling))break;m=v,v=m.parentNode}m=g}a=-1===f||-1===p?null:{start:f,end:p}}else a=null}a=a||{start:0,end:0}}else a=null;for(Zi={focusedElem:i,selectionRange:a},ji=!1,Ha=r;null!==Ha;){i=!1,a=void 0;try{for(;null!==Ha;){if(256&Ha.effectTag)e:{var y=Ha.alternate;switch(l=Ha,l.tag){case 0:case 11:case 15:break e;case 1:if(256&l.effectTag&&null!==y){var b=y.memoizedProps,E=y.memoizedState,w=l.stateNode,x=w.getSnapshotBeforeUpdate(l.elementType===l.type?b:sn(l.type,b),E);w.__reactInternalSnapshotBeforeUpdate=x}break e;case 3:case 5:case 6:case 4:case 17:break e;default:o("163")}}Ha=Ha.nextEffect}}catch(e){i=!0,a=e}i&&(null===Ha&&o("178"),er(Ha,a),null!==Ha&&(Ha=Ha.nextEffect))}for(Ha=r;null!==Ha;){y=!1,b=void 0;try{for(;null!==Ha;){var k=Ha.effectTag;if(16&k&&rt(Ha.stateNode,""),128&k){var C=Ha.alternate;if(null!==C){var O=C.ref;null!==O&&("function"==typeof O?O(null):O.current=null)}}switch(14&k){case 2:Wn(Ha),Ha.effectTag&=-3;break;case 6:Wn(Ha),Ha.effectTag&=-3,$n(Ha.alternate,Ha);break;case 4:$n(Ha.alternate,Ha);break;case 8:E=Ha,Hn(E),E.return=null,E.child=null,E.memoizedState=null,E.updateQueue=null;var S=E.alternate;null!==S&&(S.return=null,S.child=null,S.memoizedState=null,S.updateQueue=null)}Ha=Ha.nextEffect}}catch(e){y=!0,b=e}y&&(null===Ha&&o("178"),er(Ha,b),null!==Ha&&(Ha=Ha.nextEffect))}if(O=Zi,C=$e(),k=O.focusedElem,y=O.selectionRange,C!==k&&k&&k.ownerDocument&&He(k.ownerDocument.documentElement,k)){null!==y&&Ge(k)&&(C=y.start,O=y.end,void 0===O&&(O=C),"selectionStart"in k?(k.selectionStart=C,k.selectionEnd=Math.min(O,k.value.length)):(O=(C=k.ownerDocument||document)&&C.defaultView||window,O.getSelection&&(O=O.getSelection(),b=k.textContent.length,S=Math.min(y.start,b),y=void 0===y.end?S:Math.min(y.end,b),!O.extend&&S>y&&(b=y,y=S,S=b),b=We(k,S),E=We(k,y),b&&E&&(1!==O.rangeCount||O.anchorNode!==b.node||O.anchorOffset!==b.offset||O.focusNode!==E.node||O.focusOffset!==E.offset)&&(C=C.createRange(),C.setStart(b.node,b.offset),O.removeAllRanges(),S>y?(O.addRange(C),O.extend(E.node,E.offset)):(C.setEnd(E.node,E.offset),O.addRange(C)))))),C=[];for(O=k;O=O.parentNode;)1===O.nodeType&&C.push({element:O,left:O.scrollLeft,top:O.scrollTop});for("function"==typeof k.focus&&k.focus(),k=0;k<C.length;k++)O=C[k],O.element.scrollLeft=O.left,O.element.scrollTop=O.top}for(Zi=null,ji=!!Xi,Xi=null,e.current=t,Ha=r;null!==Ha;){r=!1,k=void 0;try{for(C=n;null!==Ha;){var _=Ha.effectTag;if(36&_){var T=Ha.alternate;switch(O=Ha,S=C,O.tag){case 0:case 11:case 15:break;case 1:var P=O.stateNode;if(4&O.effectTag)if(null===T)P.componentDidMount();else{var A=O.elementType===O.type?T.memoizedProps:sn(O.type,T.memoizedProps);P.componentDidUpdate(A,T.memoizedState,P.__reactInternalSnapshotBeforeUpdate)}var F=O.updateQueue;null!==F&&qt(O,F,P,S);break;case 3:var D=O.updateQueue;if(null!==D){if(y=null,null!==O.child)switch(O.child.tag){case 5:y=O.child.stateNode;break;case 1:y=O.child.stateNode}qt(O,D,y,S)}break;case 5:var N=O.stateNode;null===T&&4&O.effectTag&&ct(O.type,O.memoizedProps)&&N.focus();break;case 6:case 4:case 12:case 13:case 17:break;default:o("163")}}if(128&_){var j=Ha.ref;if(null!==j){var I=Ha.stateNode;switch(Ha.tag){case 5:var M=I;break;default:M=I}"function"==typeof j?j(M):j.current=M}}Ha=Ha.nextEffect}}catch(e){r=!0,k=e}r&&(null===Ha&&o("178"),er(Ha,k),null!==Ha&&(Ha=Ha.nextEffect))}Ra=$a=!1,"function"==typeof ua&&ua(t.stateNode),_=t.expirationTime,t=t.childExpirationTime,t=t>_?t:_,0===t&&(Qa=null),e.expirationTime=t,e.finishedWork=null}function Er(e){null===eu&&o("246"),eu.expirationTime=0,ru||(ru=!0,ou=e)}function wr(e,t){var n=iu;iu=!0;try{return e(t)}finally{(iu=n)||Ja||vr(1073741823,!1)}}function xr(e,t){if(iu&&!au){au=!0;try{return e(t)}finally{au=!1}}return e(t)}function kr(e,t,n){if(uu)return e(t,n);iu||Ja||0===nu||(vr(nu,!1),nu=0);var r=uu,o=iu;iu=uu=!0;try{return e(t,n)}finally{uu=r,(iu=o)||Ja||vr(1073741823,!1)}}function Cr(e,t,n,r,i){var a=t.current;e:if(n){n=n._reactInternalFiber;t:{2===Pe(n)&&1===n.tag||o("170");var u=n;do{switch(u.tag){case 3:u=u.stateNode.context;break t;case 1:if(yt(u.type)){u=u.stateNode.__reactInternalMemoizedMergedChildContext;break t}}u=u.return}while(null!==u);o("171"),u=void 0}if(1===n.tag){var l=n.type;if(yt(l)){n=xt(n,l,u);break e}}n=u}else n=ra;return null===t.context?t.context=n:t.pendingContext=n,t=i,i=Wt(r),i.payload={element:e},t=void 0===t?null:t,null!==t&&(i.callback=t),qn(),$t(a,i),ir(a,r),r}function Or(e,t,n,r){var o=t.current;return o=tr(fr(),o),Cr(e,t,n,o,r)}function Sr(e){if(e=e.current,!e.child)return null;switch(e.child.tag){case 5:default:return e.child.stateNode}}function _r(e,t,n){var r=3<arguments.length&&void 0!==arguments[3]?arguments[3]:null;return{$$typeof:Ro,key:null==r?null:""+r,children:e,containerInfo:t,implementation:n}}function Tr(e){var t=1073741822-25*(1+((1073741822-fr()+500)/25|0));t>=Ma&&(t=Ma-1),this._expirationTime=Ma=t,this._root=e,this._callbacks=this._next=null,this._hasChildren=this._didComplete=!1,this._children=null,this._defer=!0}function Pr(){this._callbacks=null,this._didCommit=!1,this._onCommit=this._onCommit.bind(this)}function Ar(e,t,n){t=Tt(3,null,null,t?3:0),e={current:t,containerInfo:e,pendingChildren:null,pingCache:null,earliestPendingTime:0,latestPendingTime:0,earliestSuspendedTime:0,latestSuspendedTime:0,latestPingedTime:0,didError:!1,pendingCommitExpirationTime:0,finishedWork:null,timeoutHandle:-1,context:null,pendingContext:null,hydrate:n,nextExpirationTimeToWorkOn:0,expirationTime:0,firstBatch:null,nextScheduledRoot:null},this._internalRoot=t.stateNode=e}function Fr(e){return!(!e||1!==e.nodeType&&9!==e.nodeType&&11!==e.nodeType&&(8!==e.nodeType||" react-mount-point-unstable "!==e.nodeValue))}function Dr(e,t){if(t||(t=e?9===e.nodeType?e.documentElement:e.firstChild:null,t=!(!t||1!==t.nodeType||!t.hasAttribute("data-reactroot"))),!t)for(var n;n=e.lastChild;)e.removeChild(n);return new Ar(e,!1,t)}function Nr(e,t,n,r,i){Fr(n)||o("200");var a=n._reactRootContainer;if(a){if("function"==typeof i){var u=i;i=function(){var e=Sr(a._internalRoot);u.call(e)}}null!=e?a.legacy_renderSubtreeIntoContainer(e,t,i):a.render(t,i)}else{if(a=n._reactRootContainer=Dr(n,r),"function"==typeof i){var l=i;i=function(){var e=Sr(a._internalRoot);l.call(e)}}xr(function(){null!=e?a.legacy_renderSubtreeIntoContainer(e,t,i):a.render(t,i)})}return Sr(a._internalRoot)}function jr(e,t){var n=2<arguments.length&&void 0!==arguments[2]?arguments[2]:null;return Fr(t)||o("200"),_r(e,t,null,n)}function Ir(e,t){return Fr(e)||o("299","unstable_createRoot"),new Ar(e,!0,null!=t&&!0===t.hydrate)}/** @license React v16.7.0
15
+ * react-dom.production.min.js
16
+ *
17
+ * Copyright (c) Facebook, Inc. and its affiliates.
18
+ *
19
+ * This source code is licensed under the MIT license found in the
20
+ * LICENSE file in the root directory of this source tree.
21
+ */
22
+ var Mr=n(0),Lr=n(15),Rr=n(63);Mr||o("227");var Vr=!1,Ur=null,Br=!1,zr=null,Wr={onError:function(e){Vr=!0,Ur=e}},Hr=null,$r={},Gr=[],Kr={},Qr={},Yr={},qr=null,Xr=null,Zr=null,Jr=null,eo={injectEventPluginOrder:function(e){Hr&&o("101"),Hr=Array.prototype.slice.call(e),l()},injectEventPluginsByName:function(e){var t,n=!1;for(t in e)if(e.hasOwnProperty(t)){var r=e[t];$r.hasOwnProperty(t)&&$r[t]===r||($r[t]&&o("102",t),$r[t]=r,n=!0)}n&&l()}},to=Math.random().toString(36).slice(2),no="__reactInternalInstance$"+to,ro="__reactEventHandlers$"+to,oo=!("undefined"==typeof window||!window.document||!window.document.createElement),io={animationend:S("Animation","AnimationEnd"),animationiteration:S("Animation","AnimationIteration"),animationstart:S("Animation","AnimationStart"),transitionend:S("Transition","TransitionEnd")},ao={},uo={};oo&&(uo=document.createElement("div").style,"AnimationEvent"in window||(delete io.animationend.animation,delete io.animationiteration.animation,delete io.animationstart.animation),"TransitionEvent"in window||delete io.transitionend.transition);var lo=_("animationend"),so=_("animationiteration"),co=_("animationstart"),fo=_("transitionend"),po="abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange seeked seeking stalled suspend timeupdate volumechange waiting".split(" "),ho=null,mo=null,vo=null;Lr(F.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e&&(e.preventDefault?e.preventDefault():"unknown"!=typeof e.returnValue&&(e.returnValue=!1),this.isDefaultPrevented=P)},stopPropagation:function(){var e=this.nativeEvent;e&&(e.stopPropagation?e.stopPropagation():"unknown"!=typeof e.cancelBubble&&(e.cancelBubble=!0),this.isPropagationStopped=P)},persist:function(){this.isPersistent=P},isPersistent:A,destructor:function(){var e,t=this.constructor.Interface;for(e in t)this[e]=null;this.nativeEvent=this._targetInst=this.dispatchConfig=null,this.isPropagationStopped=this.isDefaultPrevented=A,this._dispatchInstances=this._dispatchListeners=null}}),F.Interface={type:null,target:null,currentTarget:function(){return null},eventPhase:null,bubbles:null,cancelable:null,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:null,isTrusted:null},F.extend=function(e){function t(){}function n(){return r.apply(this,arguments)}var r=this;t.prototype=r.prototype;var o=new t;return Lr(o,n.prototype),n.prototype=o,n.prototype.constructor=n,n.Interface=Lr({},r.Interface,e),n.extend=r.extend,j(n),n},j(F);var go=F.extend({data:null}),yo=F.extend({data:null}),bo=[9,13,27,32],Eo=oo&&"CompositionEvent"in window,wo=null;oo&&"documentMode"in document&&(wo=document.documentMode);var xo=oo&&"TextEvent"in window&&!wo,ko=oo&&(!Eo||wo&&8<wo&&11>=wo),Co=String.fromCharCode(32),Oo={beforeInput:{phasedRegistrationNames:{bubbled:"onBeforeInput",captured:"onBeforeInputCapture"},dependencies:["compositionend","keypress","textInput","paste"]},compositionEnd:{phasedRegistrationNames:{bubbled:"onCompositionEnd",captured:"onCompositionEndCapture"},dependencies:"blur compositionend keydown keypress keyup mousedown".split(" ")},compositionStart:{phasedRegistrationNames:{bubbled:"onCompositionStart",captured:"onCompositionStartCapture"},dependencies:"blur compositionstart keydown keypress keyup mousedown".split(" ")},compositionUpdate:{phasedRegistrationNames:{bubbled:"onCompositionUpdate",captured:"onCompositionUpdateCapture"},dependencies:"blur compositionupdate keydown keypress keyup mousedown".split(" ")}},So=!1,_o=!1,To={eventTypes:Oo,extractEvents:function(e,t,n,r){var o=void 0,i=void 0;if(Eo)e:{switch(e){case"compositionstart":o=Oo.compositionStart;break e;case"compositionend":o=Oo.compositionEnd;break e;case"compositionupdate":o=Oo.compositionUpdate;break e}o=void 0}else _o?I(e,n)&&(o=Oo.compositionEnd):"keydown"===e&&229===n.keyCode&&(o=Oo.compositionStart);return o?(ko&&"ko"!==n.locale&&(_o||o!==Oo.compositionStart?o===Oo.compositionEnd&&_o&&(i=T()):(ho=r,mo="value"in ho?ho.value:ho.textContent,_o=!0)),o=go.getPooled(o,t,n,r),i?o.data=i:null!==(i=M(n))&&(o.data=i),O(o),i=o):i=null,(e=xo?L(e,n):R(e,n))?(t=yo.getPooled(Oo.beforeInput,t,n,r),t.data=e,O(t)):t=null,null===i?t:null===t?i:[i,t]}},Po=null,Ao=null,Fo=null,Do=!1,No={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0},jo=Mr.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,Io=/^(.*)[\\\/]/,Mo="function"==typeof Symbol&&Symbol.for,Lo=Mo?Symbol.for("react.element"):60103,Ro=Mo?Symbol.for("react.portal"):60106,Vo=Mo?Symbol.for("react.fragment"):60107,Uo=Mo?Symbol.for("react.strict_mode"):60108,Bo=Mo?Symbol.for("react.profiler"):60114,zo=Mo?Symbol.for("react.provider"):60109,Wo=Mo?Symbol.for("react.context"):60110,Ho=Mo?Symbol.for("react.concurrent_mode"):60111,$o=Mo?Symbol.for("react.forward_ref"):60112,Go=Mo?Symbol.for("react.suspense"):60113,Ko=Mo?Symbol.for("react.memo"):60115,Qo=Mo?Symbol.for("react.lazy"):60116,Yo="function"==typeof Symbol&&Symbol.iterator,qo=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,Xo=Object.prototype.hasOwnProperty,Zo={},Jo={},ei={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(e){ei[e]=new ie(e,0,!1,e,null)}),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(e){var t=e[0];ei[t]=new ie(t,1,!1,e[1],null)}),["contentEditable","draggable","spellCheck","value"].forEach(function(e){ei[e]=new ie(e,2,!1,e.toLowerCase(),null)}),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(function(e){ei[e]=new ie(e,2,!1,e,null)}),"allowFullScreen async autoFocus autoPlay controls default defer disabled formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach(function(e){ei[e]=new ie(e,3,!1,e.toLowerCase(),null)}),["checked","multiple","muted","selected"].forEach(function(e){ei[e]=new ie(e,3,!0,e,null)}),["capture","download"].forEach(function(e){ei[e]=new ie(e,4,!1,e,null)}),["cols","rows","size","span"].forEach(function(e){ei[e]=new ie(e,6,!1,e,null)}),["rowSpan","start"].forEach(function(e){ei[e]=new ie(e,5,!1,e.toLowerCase(),null)});var ti=/[\-:]([a-z])/g;"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach(function(e){var t=e.replace(ti,ae);ei[t]=new ie(t,1,!1,e,null)}),"xlink:actuate xlink:arcrole xlink:href xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(e){var t=e.replace(ti,ae);ei[t]=new ie(t,1,!1,e,"http://www.w3.org/1999/xlink")}),["xml:base","xml:lang","xml:space"].forEach(function(e){var t=e.replace(ti,ae);ei[t]=new ie(t,1,!1,e,"http://www.w3.org/XML/1998/namespace")}),ei.tabIndex=new ie("tabIndex",1,!1,"tabindex",null);var ni={change:{phasedRegistrationNames:{bubbled:"onChange",captured:"onChangeCapture"},dependencies:"blur change click focus input keydown keyup selectionchange".split(" ")}},ri=null,oi=null,ii=!1;oo&&(ii=Q("input")&&(!document.documentMode||9<document.documentMode));var ai={eventTypes:ni,_isInputEventSupported:ii,extractEvents:function(e,t,n,r){var o=t?y(t):window,i=void 0,a=void 0,u=o.nodeName&&o.nodeName.toLowerCase();if("select"===u||"input"===u&&"file"===o.type?i=ye:G(o)?ii?i=Ce:(i=xe,a=we):(u=o.nodeName)&&"input"===u.toLowerCase()&&("checkbox"===o.type||"radio"===o.type)&&(i=ke),i&&(i=i(e,t)))return me(i,n,r);a&&a(e,o,t),"blur"===e&&(e=o._wrapperState)&&e.controlled&&"number"===o.type&&he(o,"number",o.value)}},ui=F.extend({view:null,detail:null}),li={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"},si=0,ci=0,fi=!1,pi=!1,di=ui.extend({screenX:null,screenY:null,clientX:null,clientY:null,pageX:null,pageY:null,ctrlKey:null,shiftKey:null,altKey:null,metaKey:null,getModifierState:Se,button:null,buttons:null,relatedTarget:function(e){return e.relatedTarget||(e.fromElement===e.srcElement?e.toElement:e.fromElement)},movementX:function(e){if("movementX"in e)return e.movementX;var t=si;return si=e.screenX,fi?"mousemove"===e.type?e.screenX-t:0:(fi=!0,0)},movementY:function(e){if("movementY"in e)return e.movementY;var t=ci;return ci=e.screenY,pi?"mousemove"===e.type?e.screenY-t:0:(pi=!0,0)}}),hi=di.extend({pointerId:null,width:null,height:null,pressure:null,tangentialPressure:null,tiltX:null,tiltY:null,twist:null,pointerType:null,isPrimary:null}),mi={mouseEnter:{registrationName:"onMouseEnter",dependencies:["mouseout","mouseover"]},mouseLeave:{registrationName:"onMouseLeave",dependencies:["mouseout","mouseover"]},pointerEnter:{registrationName:"onPointerEnter",dependencies:["pointerout","pointerover"]},pointerLeave:{registrationName:"onPointerLeave",dependencies:["pointerout","pointerover"]}},vi={eventTypes:mi,extractEvents:function(e,t,n,r){var o="mouseover"===e||"pointerover"===e,i="mouseout"===e||"pointerout"===e;if(o&&(n.relatedTarget||n.fromElement)||!i&&!o)return null;if(o=r.window===r?r:(o=r.ownerDocument)?o.defaultView||o.parentWindow:window,i?(i=t,t=(t=n.relatedTarget||n.toElement)?v(t):null):i=null,i===t)return null;var a=void 0,u=void 0,l=void 0,s=void 0;"mouseout"===e||"mouseover"===e?(a=di,u=mi.mouseLeave,l=mi.mouseEnter,s="mouse"):"pointerout"!==e&&"pointerover"!==e||(a=hi,u=mi.pointerLeave,l=mi.pointerEnter,s="pointer");var c=null==i?o:y(i);if(o=null==t?o:y(t),e=a.getPooled(u,i,n,r),e.type=s+"leave",e.target=c,e.relatedTarget=o,n=a.getPooled(l,t,n,r),n.type=s+"enter",n.target=o,n.relatedTarget=c,r=t,i&&r)e:{for(t=i,o=r,s=0,a=t;a;a=E(a))s++;for(a=0,l=o;l;l=E(l))a++;for(;0<s-a;)t=E(t),s--;for(;0<a-s;)o=E(o),a--;for(;s--;){if(t===o||t===o.alternate)break e;t=E(t),o=E(o)}t=null}else t=null;for(o=t,t=[];i&&i!==o&&(null===(s=i.alternate)||s!==o);)t.push(i),i=E(i);for(i=[];r&&r!==o&&(null===(s=r.alternate)||s!==o);)i.push(r),r=E(r);for(r=0;r<t.length;r++)k(t[r],"bubbled",e);for(r=i.length;0<r--;)k(i[r],"captured",n);return[e,n]}},gi=Object.prototype.hasOwnProperty,yi=F.extend({animationName:null,elapsedTime:null,pseudoElement:null}),bi=F.extend({clipboardData:function(e){return"clipboardData"in e?e.clipboardData:window.clipboardData}}),Ei=ui.extend({relatedTarget:null}),wi={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},xi={8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",45:"Insert",46:"Delete",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"NumLock",145:"ScrollLock",224:"Meta"},ki=ui.extend({key:function(e){if(e.key){var t=wi[e.key]||e.key;if("Unidentified"!==t)return t}return"keypress"===e.type?(e=Ne(e),13===e?"Enter":String.fromCharCode(e)):"keydown"===e.type||"keyup"===e.type?xi[e.keyCode]||"Unidentified":""},location:null,ctrlKey:null,shiftKey:null,altKey:null,metaKey:null,repeat:null,locale:null,getModifierState:Se,charCode:function(e){return"keypress"===e.type?Ne(e):0},keyCode:function(e){return"keydown"===e.type||"keyup"===e.type?e.keyCode:0},which:function(e){return"keypress"===e.type?Ne(e):"keydown"===e.type||"keyup"===e.type?e.keyCode:0}}),Ci=di.extend({dataTransfer:null}),Oi=ui.extend({touches:null,targetTouches:null,changedTouches:null,altKey:null,metaKey:null,ctrlKey:null,shiftKey:null,getModifierState:Se}),Si=F.extend({propertyName:null,elapsedTime:null,pseudoElement:null}),_i=di.extend({deltaX:function(e){return"deltaX"in e?e.deltaX:"wheelDeltaX"in e?-e.wheelDeltaX:0},deltaY:function(e){return"deltaY"in e?e.deltaY:"wheelDeltaY"in e?-e.wheelDeltaY:"wheelDelta"in e?-e.wheelDelta:0},deltaZ:null,deltaMode:null}),Ti=[["abort","abort"],[lo,"animationEnd"],[so,"animationIteration"],[co,"animationStart"],["canplay","canPlay"],["canplaythrough","canPlayThrough"],["drag","drag"],["dragenter","dragEnter"],["dragexit","dragExit"],["dragleave","dragLeave"],["dragover","dragOver"],["durationchange","durationChange"],["emptied","emptied"],["encrypted","encrypted"],["ended","ended"],["error","error"],["gotpointercapture","gotPointerCapture"],["load","load"],["loadeddata","loadedData"],["loadedmetadata","loadedMetadata"],["loadstart","loadStart"],["lostpointercapture","lostPointerCapture"],["mousemove","mouseMove"],["mouseout","mouseOut"],["mouseover","mouseOver"],["playing","playing"],["pointermove","pointerMove"],["pointerout","pointerOut"],["pointerover","pointerOver"],["progress","progress"],["scroll","scroll"],["seeking","seeking"],["stalled","stalled"],["suspend","suspend"],["timeupdate","timeUpdate"],["toggle","toggle"],["touchmove","touchMove"],[fo,"transitionEnd"],["waiting","waiting"],["wheel","wheel"]],Pi={},Ai={};[["blur","blur"],["cancel","cancel"],["click","click"],["close","close"],["contextmenu","contextMenu"],["copy","copy"],["cut","cut"],["auxclick","auxClick"],["dblclick","doubleClick"],["dragend","dragEnd"],["dragstart","dragStart"],["drop","drop"],["focus","focus"],["input","input"],["invalid","invalid"],["keydown","keyDown"],["keypress","keyPress"],["keyup","keyUp"],["mousedown","mouseDown"],["mouseup","mouseUp"],["paste","paste"],["pause","pause"],["play","play"],["pointercancel","pointerCancel"],["pointerdown","pointerDown"],["pointerup","pointerUp"],["ratechange","rateChange"],["reset","reset"],["seeked","seeked"],["submit","submit"],["touchcancel","touchCancel"],["touchend","touchEnd"],["touchstart","touchStart"],["volumechange","volumeChange"]].forEach(function(e){je(e,!0)}),Ti.forEach(function(e){je(e,!1)});var Fi={eventTypes:Pi,isInteractiveTopLevelEventType:function(e){return void 0!==(e=Ai[e])&&!0===e.isInteractive},extractEvents:function(e,t,n,r){var o=Ai[e];if(!o)return null;switch(e){case"keypress":if(0===Ne(n))return null;case"keydown":case"keyup":e=ki;break;case"blur":case"focus":e=Ei;break;case"click":if(2===n.button)return null;case"auxclick":case"dblclick":case"mousedown":case"mousemove":case"mouseup":case"mouseout":case"mouseover":case"contextmenu":e=di;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":e=Ci;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":e=Oi;break;case lo:case so:case co:e=yi;break;case fo:e=Si;break;case"scroll":e=ui;break;case"wheel":e=_i;break;case"copy":case"cut":case"paste":e=bi;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":e=hi;break;default:e=F}return t=e.getPooled(o,t,n,r),O(t),t}},Di=Fi.isInteractiveTopLevelEventType,Ni=[],ji=!0,Ii={},Mi=0,Li="_reactListenersID"+(""+Math.random()).slice(2),Ri=oo&&"documentMode"in document&&11>=document.documentMode,Vi={select:{phasedRegistrationNames:{bubbled:"onSelect",captured:"onSelectCapture"},dependencies:"blur contextmenu dragend focus keydown keyup mousedown mouseup selectionchange".split(" ")}},Ui=null,Bi=null,zi=null,Wi=!1,Hi={eventTypes:Vi,extractEvents:function(e,t,n,r){var o,i=r.window===r?r.document:9===r.nodeType?r:r.ownerDocument;if(!(o=!i)){e:{i=Ue(i),o=Yr.onSelect;for(var a=0;a<o.length;a++){var u=o[a];if(!i.hasOwnProperty(u)||!i[u]){i=!1;break e}}i=!0}o=!i}if(o)return null;switch(i=t?y(t):window,e){case"focus":(G(i)||"true"===i.contentEditable)&&(Ui=i,Bi=t,zi=null);break;case"blur":zi=Bi=Ui=null;break;case"mousedown":Wi=!0;break;case"contextmenu":case"mouseup":case"dragend":return Wi=!1,Ke(n,r);case"selectionchange":if(Ri)break;case"keydown":case"keyup":return Ke(n,r)}return null}};eo.injectEventPluginOrder("ResponderEventPlugin SimpleEventPlugin EnterLeaveEventPlugin ChangeEventPlugin SelectEventPlugin BeforeInputEventPlugin".split(" ")),qr=b,Xr=g,Zr=y,eo.injectEventPluginsByName({SimpleEventPlugin:Fi,EnterLeaveEventPlugin:vi,ChangeEventPlugin:ai,SelectEventPlugin:Hi,BeforeInputEventPlugin:To});var $i={html:"http://www.w3.org/1999/xhtml",mathml:"http://www.w3.org/1998/Math/MathML",svg:"http://www.w3.org/2000/svg"},Gi=void 0,Ki=function(e){return"undefined"!=typeof MSApp&&MSApp.execUnsafeLocalFunction?function(t,n,r,o){MSApp.execUnsafeLocalFunction(function(){return e(t,n)})}:e}(function(e,t){if(e.namespaceURI!==$i.svg||"innerHTML"in e)e.innerHTML=t;else{for(Gi=Gi||document.createElement("div"),Gi.innerHTML="<svg>"+t+"</svg>",t=Gi.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}}),Qi={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},Yi=["Webkit","ms","Moz","O"];Object.keys(Qi).forEach(function(e){Yi.forEach(function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),Qi[t]=Qi[e]})});var qi=Lr({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0}),Xi=null,Zi=null,Ji="function"==typeof setTimeout?setTimeout:void 0,ea="function"==typeof clearTimeout?clearTimeout:void 0;new Set;var ta=[],na=-1,ra={},oa={current:ra},ia={current:!1},aa=ra,ua=null,la=null,sa=!1,ca={current:null},fa=null,pa=null,da=null,ha={},ma={current:ha},va={current:ha},ga={current:ha},ya=jo.ReactCurrentOwner,ba=(new Mr.Component).refs,Ea={isMounted:function(e){return!!(e=e._reactInternalFiber)&&2===Pe(e)},enqueueSetState:function(e,t,n){e=e._reactInternalFiber;var r=fr();r=tr(r,e);var o=Wt(r);o.payload=t,void 0!==n&&null!==n&&(o.callback=n),qn(),$t(e,o),ir(e,r)},enqueueReplaceState:function(e,t,n){e=e._reactInternalFiber;var r=fr();r=tr(r,e);var o=Wt(r);o.tag=1,o.payload=t,void 0!==n&&null!==n&&(o.callback=n),qn(),$t(e,o),ir(e,r)},enqueueForceUpdate:function(e,t){e=e._reactInternalFiber;var n=fr();n=tr(n,e);var r=Wt(n);r.tag=2,void 0!==t&&null!==t&&(r.callback=t),qn(),$t(e,r),ir(e,n)}},wa=Array.isArray,xa=yn(!0),ka=yn(!1),Ca=null,Oa=null,Sa=!1,_a=jo.ReactCurrentOwner,Ta=void 0,Pa=void 0,Aa=void 0,Fa=void 0;Ta=function(e,t){for(var n=t.child;null!==n;){if(5===n.tag||6===n.tag)e.appendChild(n.stateNode);else if(4!==n.tag&&null!==n.child){n.child.return=n,n=n.child;continue}if(n===t)break;for(;null===n.sibling;){if(null===n.return||n.return===t)return;n=n.return}n.sibling.return=n.return,n=n.sibling}},Pa=function(){},Aa=function(e,t,n,r,o){var i=e.memoizedProps;if(i!==r){var a=t.stateNode;switch(rn(ma.current),e=null,n){case"input":i=se(a,i),r=se(a,r),e=[];break;case"option":i=Ye(a,i),r=Ye(a,r),e=[];break;case"select":i=Lr({},i,{value:void 0}),r=Lr({},r,{value:void 0}),e=[];break;case"textarea":i=Xe(a,i),r=Xe(a,r),e=[];break;default:"function"!=typeof i.onClick&&"function"==typeof r.onClick&&(a.onclick=st)}at(n,r),a=n=void 0;var u=null;for(n in i)if(!r.hasOwnProperty(n)&&i.hasOwnProperty(n)&&null!=i[n])if("style"===n){var l=i[n];for(a in l)l.hasOwnProperty(a)&&(u||(u={}),u[a]="")}else"dangerouslySetInnerHTML"!==n&&"children"!==n&&"suppressContentEditableWarning"!==n&&"suppressHydrationWarning"!==n&&"autoFocus"!==n&&(Qr.hasOwnProperty(n)?e||(e=[]):(e=e||[]).push(n,null));for(n in r){var s=r[n];if(l=null!=i?i[n]:void 0,r.hasOwnProperty(n)&&s!==l&&(null!=s||null!=l))if("style"===n)if(l){for(a in l)!l.hasOwnProperty(a)||s&&s.hasOwnProperty(a)||(u||(u={}),u[a]="");for(a in s)s.hasOwnProperty(a)&&l[a]!==s[a]&&(u||(u={}),u[a]=s[a])}else u||(e||(e=[]),e.push(n,u)),u=s;else"dangerouslySetInnerHTML"===n?(s=s?s.__html:void 0,l=l?l.__html:void 0,null!=s&&l!==s&&(e=e||[]).push(n,""+s)):"children"===n?l===s||"string"!=typeof s&&"number"!=typeof s||(e=e||[]).push(n,""+s):"suppressContentEditableWarning"!==n&&"suppressHydrationWarning"!==n&&(Qr.hasOwnProperty(n)?(null!=s&&lt(o,n),e||l===s||(e=[])):(e=e||[]).push(n,s))}u&&(e=e||[]).push("style",u),o=e,(t.updateQueue=o)&&Ln(t)}},Fa=function(e,t,n,r){n!==r&&Ln(t)};var Da="function"==typeof WeakSet?WeakSet:Set,Na="function"==typeof WeakMap?WeakMap:Map,ja={readContext:nn},Ia=jo.ReactCurrentOwner,Ma=1073741822,La=0,Ra=!1,Va=null,Ua=null,Ba=0,za=-1,Wa=!1,Ha=null,$a=!1,Ga=null,Ka=null,Qa=null,Ya=null,qa=null,Xa=0,Za=void 0,Ja=!1,eu=null,tu=0,nu=0,ru=!1,ou=null,iu=!1,au=!1,uu=!1,lu=null,su=Rr.unstable_now(),cu=1073741822-(su/10|0),fu=cu,pu=50,du=0,hu=null,mu=!1;Po=function(e,t,n){switch(t){case"input":if(pe(e,n),t=n.name,"radio"===n.type&&null!=t){for(n=e;n.parentNode;)n=n.parentNode;for(n=n.querySelectorAll("input[name="+JSON.stringify(""+t)+'][type="radio"]'),t=0;t<n.length;t++){var r=n[t];if(r!==e&&r.form===e.form){var i=b(r);i||o("90"),Z(r),pe(r,i)}}}break;case"textarea":Je(e,n);break;case"select":null!=(t=n.value)&&qe(e,!!n.multiple,t,!1)}},Tr.prototype.render=function(e){this._defer||o("250"),this._hasChildren=!0,this._children=e;var t=this._root._internalRoot,n=this._expirationTime,r=new Pr;return Cr(e,t,null,n,r._onCommit),r},Tr.prototype.then=function(e){if(this._didComplete)e();else{var t=this._callbacks;null===t&&(t=this._callbacks=[]),t.push(e)}},Tr.prototype.commit=function(){var e=this._root._internalRoot,t=e.firstBatch;if(this._defer&&null!==t||o("251"),this._hasChildren){var n=this._expirationTime;if(t!==this){this._hasChildren&&(n=this._expirationTime=t._expirationTime,this.render(this._children));for(var r=null,i=t;i!==this;)r=i,i=i._next;null===r&&o("251"),r._next=i._next,this._next=t,e.firstBatch=this}this._defer=!1,gr(e,n),t=this._next,this._next=null,t=e.firstBatch=t,null!==t&&t._hasChildren&&t.render(t._children)}else this._next=null,this._defer=!1},Tr.prototype._onComplete=function(){if(!this._didComplete){this._didComplete=!0;var e=this._callbacks;if(null!==e)for(var t=0;t<e.length;t++)(0,e[t])()}},Pr.prototype.then=function(e){if(this._didCommit)e();else{var t=this._callbacks;null===t&&(t=this._callbacks=[]),t.push(e)}},Pr.prototype._onCommit=function(){if(!this._didCommit){this._didCommit=!0;var e=this._callbacks;if(null!==e)for(var t=0;t<e.length;t++){var n=e[t];"function"!=typeof n&&o("191",n),n()}}},Ar.prototype.render=function(e,t){var n=this._internalRoot,r=new Pr;return t=void 0===t?null:t,null!==t&&r.then(t),Or(e,n,null,r._onCommit),r},Ar.prototype.unmount=function(e){var t=this._internalRoot,n=new Pr;return e=void 0===e?null:e,null!==e&&n.then(e),Or(null,t,null,n._onCommit),n},Ar.prototype.legacy_renderSubtreeIntoContainer=function(e,t,n){var r=this._internalRoot,o=new Pr;return n=void 0===n?null:n,null!==n&&o.then(n),Or(t,r,e,o._onCommit),o},Ar.prototype.createBatch=function(){var e=new Tr(this),t=e._expirationTime,n=this._internalRoot,r=n.firstBatch;if(null===r)n.firstBatch=e,e._next=null;else{for(n=null;null!==r&&r._expirationTime>=t;)n=r,r=r._next;e._next=r,null!==n&&(n._next=e)}return e},z=wr,W=kr,H=function(){Ja||0===nu||(vr(nu,!1),nu=0)};var vu={createPortal:jr,findDOMNode:function(e){if(null==e)return null;if(1===e.nodeType)return e;var t=e._reactInternalFiber;return void 0===t&&("function"==typeof e.render?o("188"):o("268",Object.keys(e))),e=De(t),e=null===e?null:e.stateNode},hydrate:function(e,t,n){return Nr(null,e,t,!0,n)},render:function(e,t,n){return Nr(null,e,t,!1,n)},unstable_renderSubtreeIntoContainer:function(e,t,n,r){return(null==e||void 0===e._reactInternalFiber)&&o("38"),Nr(e,t,n,!1,r)},unmountComponentAtNode:function(e){return Fr(e)||o("40"),!!e._reactRootContainer&&(xr(function(){Nr(null,null,e,!1,function(){e._reactRootContainer=null})}),!0)},unstable_createPortal:function(){return jr.apply(void 0,arguments)},unstable_batchedUpdates:wr,unstable_interactiveUpdates:kr,flushSync:function(e,t){Ja&&o("187");var n=iu;iu=!0;try{return ar(e,t)}finally{iu=n,vr(1073741823,!1)}},unstable_createRoot:Ir,unstable_flushControlled:function(e){var t=iu;iu=!0;try{ar(e)}finally{(iu=t)||Ja||vr(1073741823,!1)}},__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED:{Events:[g,y,b,eo.injectEventPluginsByName,Kr,O,function(e){p(e,C)},U,B,Ve,m]}};!function(e){var t=e.findFiberByHostInstance;St(Lr({},e,{overrideProps:null,findHostInstanceByFiber:function(e){return e=De(e),null===e?null:e.stateNode},findFiberByHostInstance:function(e){return t?t(e):null}}))}({findFiberByHostInstance:v,bundleType:0,version:"16.7.0",rendererPackageName:"react-dom"});var gu={default:vu},yu=gu&&vu||gu;e.exports=yu.default||yu},function(e,t,n){"use strict";e.exports=n(64)},function(e,t,n){"use strict";(function(e){function n(){if(!h){var e=s.expirationTime;m?k():m=!0,x(i,e)}}function r(){var e=s,t=s.next;if(s===t)s=null;else{var r=s.previous;s=r.next=t,t.previous=r}e.next=e.previous=null,r=e.callback,t=e.expirationTime,e=e.priorityLevel;var o=f,i=d;f=e,d=t;try{var a=r()}finally{f=o,d=i}if("function"==typeof a)if(a={callback:a,priorityLevel:e,expirationTime:t,next:null,previous:null},null===s)s=a.next=a.previous=a;else{r=null,e=s;do{if(e.expirationTime>=t){r=e;break}e=e.next}while(e!==s);null===r?r=s:r===s&&(s=a,n()),t=r.previous,t.next=r.previous=a,a.next=r,a.previous=t}}function o(){if(-1===p&&null!==s&&1===s.priorityLevel){h=!0;try{do{r()}while(null!==s&&1===s.priorityLevel)}finally{h=!1,null!==s?n():m=!1}}}function i(e){h=!0;var i=c;c=e;try{if(e)for(;null!==s;){var a=t.unstable_now();if(!(s.expirationTime<=a))break;do{r()}while(null!==s&&s.expirationTime<=a)}else if(null!==s)do{r()}while(null!==s&&!C())}finally{h=!1,c=i,null!==s?n():m=!1,o()}}function a(e){u=b(function(t){y(l),e(t)}),l=g(function(){E(u),e(t.unstable_now())},100)}/** @license React v0.12.0
23
+ * scheduler.production.min.js
24
+ *
25
+ * Copyright (c) Facebook, Inc. and its affiliates.
26
+ *
27
+ * This source code is licensed under the MIT license found in the
28
+ * LICENSE file in the root directory of this source tree.
29
+ */
30
+ Object.defineProperty(t,"__esModule",{value:!0});var u,l,s=null,c=!1,f=3,p=-1,d=-1,h=!1,m=!1,v=Date,g="function"==typeof setTimeout?setTimeout:void 0,y="function"==typeof clearTimeout?clearTimeout:void 0,b="function"==typeof requestAnimationFrame?requestAnimationFrame:void 0,E="function"==typeof cancelAnimationFrame?cancelAnimationFrame:void 0;if("object"==typeof performance&&"function"==typeof performance.now){var w=performance;t.unstable_now=function(){return w.now()}}else t.unstable_now=function(){return v.now()};var x,k,C,O=null;if("undefined"!=typeof window?O=window:void 0!==e&&(O=e),O&&O._schedMock){var S=O._schedMock;x=S[0],k=S[1],C=S[2],t.unstable_now=S[3]}else if("undefined"==typeof window||"function"!=typeof MessageChannel){var _=null,T=function(e){if(null!==_)try{_(e)}finally{_=null}};x=function(e){null!==_?setTimeout(x,0,e):(_=e,setTimeout(T,0,!1))},k=function(){_=null},C=function(){return!1}}else{"undefined"!=typeof console&&("function"!=typeof b&&console.error("This browser doesn't support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https://fb.me/react-polyfills"),"function"!=typeof E&&console.error("This browser doesn't support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https://fb.me/react-polyfills"));var P=null,A=!1,F=-1,D=!1,N=!1,j=0,I=33,M=33;C=function(){return j<=t.unstable_now()};var L=new MessageChannel,R=L.port2;L.port1.onmessage=function(){A=!1;var e=P,n=F;P=null,F=-1;var r=t.unstable_now(),o=!1;if(0>=j-r){if(!(-1!==n&&n<=r))return D||(D=!0,a(V)),P=e,void(F=n);o=!0}if(null!==e){N=!0;try{e(o)}finally{N=!1}}};var V=function(e){if(null!==P){a(V);var t=e-j+M;t<M&&I<M?(8>t&&(t=8),M=t<I?I:t):I=t,j=e+M,A||(A=!0,R.postMessage(void 0))}else D=!1};x=function(e,t){P=e,F=t,N||0>t?R.postMessage(void 0):D||(D=!0,a(V))},k=function(){P=null,A=!1,F=-1}}t.unstable_ImmediatePriority=1,t.unstable_UserBlockingPriority=2,t.unstable_NormalPriority=3,t.unstable_IdlePriority=5,t.unstable_LowPriority=4,t.unstable_runWithPriority=function(e,n){switch(e){case 1:case 2:case 3:case 4:case 5:break;default:e=3}var r=f,i=p;f=e,p=t.unstable_now();try{return n()}finally{f=r,p=i,o()}},t.unstable_scheduleCallback=function(e,r){var o=-1!==p?p:t.unstable_now();if("object"==typeof r&&null!==r&&"number"==typeof r.timeout)r=o+r.timeout;else switch(f){case 1:r=o+-1;break;case 2:r=o+250;break;case 5:r=o+1073741823;break;case 4:r=o+1e4;break;default:r=o+5e3}if(e={callback:e,priorityLevel:f,expirationTime:r,next:null,previous:null},null===s)s=e.next=e.previous=e,n();else{o=null;var i=s;do{if(i.expirationTime>r){o=i;break}i=i.next}while(i!==s);null===o?o=s:o===s&&(s=e,n()),r=o.previous,r.next=o.previous=e,e.next=o,e.previous=r}return e},t.unstable_cancelCallback=function(e){var t=e.next;if(null!==t){if(t===e)s=null;else{e===s&&(s=t);var n=e.previous;n.next=t,t.previous=n}e.next=e.previous=null}},t.unstable_wrapCallback=function(e){var n=f;return function(){var r=f,i=p;f=n,p=t.unstable_now();try{return e.apply(this,arguments)}finally{f=r,p=i,o()}}},t.unstable_getCurrentPriorityLevel=function(){return f},t.unstable_shouldYield=function(){return!c&&(null!==s&&s.expirationTime<d||C())},t.unstable_continueExecution=function(){null!==s&&n()},t.unstable_pauseExecution=function(){},t.unstable_getFirstCallbackNode=function(){return s}}).call(t,n(6))},function(e,t,n){"use strict";function r(){}var o=n(66);e.exports=function(){function e(e,t,n,r,i,a){if(a!==o){var u=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw u.name="Invariant Violation",u}}function t(){return e}e.isRequired=e;var n={array:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t};return n.checkPropTypes=r,n.PropTypes=n,n}},function(e,t,n){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function o(e,t){var n={};for(var r in e)t.indexOf(r)>=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function a(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function u(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var l=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},s=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),c=n(0),f=r(c),p=n(2),d=r(p),h={position:"absolute",top:0,left:0,visibility:"hidden",height:0,overflow:"scroll",whiteSpace:"pre"},m=["extraWidth","injectStyles","inputClassName","inputRef","inputStyle","minWidth","onAutosize","placeholderIsMinWidth"],v=function(e){return m.forEach(function(t){return delete e[t]}),e},g=function(e,t){t.style.fontSize=e.fontSize,t.style.fontFamily=e.fontFamily,t.style.fontWeight=e.fontWeight,t.style.fontStyle=e.fontStyle,t.style.letterSpacing=e.letterSpacing,t.style.textTransform=e.textTransform},y=!("undefined"==typeof window||!window.navigator)&&/MSIE |Trident\/|Edge\//.test(window.navigator.userAgent),b=function(){return y?"_"+Math.random().toString(36).substr(2,12):void 0},E=function(e){function t(e){i(this,t);var n=a(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.inputRef=function(e){n.input=e,"function"==typeof n.props.inputRef&&n.props.inputRef(e)},n.placeHolderSizerRef=function(e){n.placeHolderSizer=e},n.sizerRef=function(e){n.sizer=e},n.state={inputWidth:e.minWidth,inputId:e.id||b()},n}return u(t,e),s(t,[{key:"componentDidMount",value:function(){this.mounted=!0,this.copyInputStyles(),this.updateInputWidth()}},{key:"componentWillReceiveProps",value:function(e){var t=e.id;t!==this.props.id&&this.setState({inputId:t||b()})}},{key:"componentDidUpdate",value:function(e,t){t.inputWidth!==this.state.inputWidth&&"function"==typeof this.props.onAutosize&&this.props.onAutosize(this.state.inputWidth),this.updateInputWidth()}},{key:"componentWillUnmount",value:function(){this.mounted=!1}},{key:"copyInputStyles",value:function(){if(this.mounted&&window.getComputedStyle){var e=this.input&&window.getComputedStyle(this.input);e&&(g(e,this.sizer),this.placeHolderSizer&&g(e,this.placeHolderSizer))}}},{key:"updateInputWidth",value:function(){if(this.mounted&&this.sizer&&void 0!==this.sizer.scrollWidth){var e=void 0;e=this.props.placeholder&&(!this.props.value||this.props.value&&this.props.placeholderIsMinWidth)?Math.max(this.sizer.scrollWidth,this.placeHolderSizer.scrollWidth)+2:this.sizer.scrollWidth+2;e+="number"===this.props.type&&void 0===this.props.extraWidth?16:parseInt(this.props.extraWidth)||0,e<this.props.minWidth&&(e=this.props.minWidth),e!==this.state.inputWidth&&this.setState({inputWidth:e})}}},{key:"getInput",value:function(){return this.input}},{key:"focus",value:function(){this.input.focus()}},{key:"blur",value:function(){this.input.blur()}},{key:"select",value:function(){this.input.select()}},{key:"renderStyles",value:function(){var e=this.props.injectStyles;return y&&e?f.default.createElement("style",{dangerouslySetInnerHTML:{__html:"input#"+this.state.inputId+"::-ms-clear {display: none;}"}}):null}},{key:"render",value:function(){var e=[this.props.defaultValue,this.props.value,""].reduce(function(e,t){return null!==e&&void 0!==e?e:t}),t=l({},this.props.style);t.display||(t.display="inline-block");var n=l({boxSizing:"content-box",width:this.state.inputWidth+"px"},this.props.inputStyle),r=o(this.props,[]);return v(r),r.className=this.props.inputClassName,r.id=this.state.inputId,r.style=n,f.default.createElement("div",{className:this.props.className,style:t},this.renderStyles(),f.default.createElement("input",l({},r,{ref:this.inputRef})),f.default.createElement("div",{ref:this.sizerRef,style:h},e),this.props.placeholder?f.default.createElement("div",{ref:this.placeHolderSizerRef,style:h},this.props.placeholder):null)}}]),t}(c.Component);E.propTypes={className:d.default.string,defaultValue:d.default.any,extraWidth:d.default.oneOfType([d.default.number,d.default.string]),id:d.default.string,injectStyles:d.default.bool,inputClassName:d.default.string,inputRef:d.default.func,inputStyle:d.default.object,minWidth:d.default.oneOfType([d.default.number,d.default.string]),onAutosize:d.default.func,onChange:d.default.func,placeholder:d.default.string,placeholderIsMinWidth:d.default.bool,style:d.default.object,value:d.default.any},E.defaultProps={minWidth:1,injectStyles:!0},t.default=E},function(e,t,n){"use strict";function r(e,t){void 0===t&&(t=o);var n,r,i=[],a=!1,u=function(e,n){return t(e,i[n])};return function(){for(var t=arguments.length,o=new Array(t),l=0;l<t;l++)o[l]=arguments[l];return a&&n===this&&o.length===i.length&&o.every(u)?r:(r=e.apply(this,o),a=!0,n=this,i=o,r)}}var o=function(e,t){return e===t};t.a=r},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}var o=r(n(70)),i=r(n(75)),a=r(n(19)),u=r(n(16));e.exports={Transition:u.default,TransitionGroup:a.default,ReplaceTransition:i.default,CSSTransition:o.default}},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function o(){return o=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},o.apply(this,arguments)}function i(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e.__proto__=t}t.__esModule=!0,t.default=void 0;var a=(function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)if(Object.prototype.hasOwnProperty.call(e,n)){var r=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor(e,n):{};r.get||r.set?Object.defineProperty(t,n,r):t[n]=e[n]}t.default=e}(n(2)),r(n(71))),u=r(n(74)),l=r(n(0)),s=r(n(16)),c=(n(18),function(e,t){return e&&t&&t.split(" ").forEach(function(t){return(0,a.default)(e,t)})}),f=function(e,t){return e&&t&&t.split(" ").forEach(function(t){return(0,u.default)(e,t)})},p=function(e){function t(){for(var t,n=arguments.length,r=new Array(n),o=0;o<n;o++)r[o]=arguments[o];return t=e.call.apply(e,[this].concat(r))||this,t.onEnter=function(e,n){var r=t.getClassNames(n?"appear":"enter"),o=r.className;t.removeClasses(e,"exit"),c(e,o),t.props.onEnter&&t.props.onEnter(e,n)},t.onEntering=function(e,n){var r=t.getClassNames(n?"appear":"enter"),o=r.activeClassName;t.reflowAndAddClass(e,o),t.props.onEntering&&t.props.onEntering(e,n)},t.onEntered=function(e,n){var r=t.getClassNames("enter"),o=r.doneClassName;t.removeClasses(e,n?"appear":"enter"),c(e,o),t.props.onEntered&&t.props.onEntered(e,n)},t.onExit=function(e){var n=t.getClassNames("exit"),r=n.className;t.removeClasses(e,"appear"),t.removeClasses(e,"enter"),c(e,r),t.props.onExit&&t.props.onExit(e)},t.onExiting=function(e){var n=t.getClassNames("exit"),r=n.activeClassName;t.reflowAndAddClass(e,r),t.props.onExiting&&t.props.onExiting(e)},t.onExited=function(e){var n=t.getClassNames("exit"),r=n.doneClassName;t.removeClasses(e,"exit"),c(e,r),t.props.onExited&&t.props.onExited(e)},t.getClassNames=function(e){var n=t.props.classNames,r="string"!=typeof n?n[e]:n+"-"+e;return{className:r,activeClassName:"string"!=typeof n?n[e+"Active"]:r+"-active",doneClassName:"string"!=typeof n?n[e+"Done"]:r+"-done"}},t}i(t,e);var n=t.prototype;return n.removeClasses=function(e,t){var n=this.getClassNames(t),r=n.className,o=n.activeClassName,i=n.doneClassName;r&&f(e,r),o&&f(e,o),i&&f(e,i)},n.reflowAndAddClass=function(e,t){t&&(e&&e.scrollTop,c(e,t))},n.render=function(){var e=o({},this.props);return delete e.classNames,l.default.createElement(s.default,o({},e,{onEnter:this.onEnter,onEntered:this.onEntered,onEntering:this.onEntering,onExit:this.onExit,onExiting:this.onExiting,onExited:this.onExited}))},t}(l.default.Component);p.propTypes={};var d=p;t.default=d,e.exports=t.default},function(e,t,n){"use strict";function r(e,t){e.classList?e.classList.add(t):(0,i.default)(e,t)||("string"==typeof e.className?e.className=e.className+" "+t:e.setAttribute("class",(e.className&&e.className.baseVal||"")+" "+t))}var o=n(72);t.__esModule=!0,t.default=r;var i=o(n(73));e.exports=t.default},function(e,t){function n(e){return e&&e.__esModule?e:{default:e}}e.exports=n},function(e,t,n){"use strict";function r(e,t){return e.classList?!!t&&e.classList.contains(t):-1!==(" "+(e.className.baseVal||e.className)+" ").indexOf(" "+t+" ")}t.__esModule=!0,t.default=r,e.exports=t.default},function(e,t,n){"use strict";function r(e,t){return e.replace(new RegExp("(^|\\s)"+t+"(?:\\s|$)","g"),"$1").replace(/\s+/g," ").replace(/^\s*|\s*$/g,"")}e.exports=function(e,t){e.classList?e.classList.remove(t):"string"==typeof e.className?e.className=r(e.className,t):e.setAttribute("class",r(e.className&&e.className.baseVal||"",t))}},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function o(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}function i(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e.__proto__=t}t.__esModule=!0,t.default=void 0;var a=(r(n(2)),r(n(0))),u=n(7),l=r(n(19)),s=function(e){function t(){for(var t,n=arguments.length,r=new Array(n),o=0;o<n;o++)r[o]=arguments[o];return t=e.call.apply(e,[this].concat(r))||this,t.handleEnter=function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];return t.handleLifecycle("onEnter",0,n)},t.handleEntering=function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];return t.handleLifecycle("onEntering",0,n)},t.handleEntered=function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];return t.handleLifecycle("onEntered",0,n)},t.handleExit=function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];return t.handleLifecycle("onExit",1,n)},t.handleExiting=function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];return t.handleLifecycle("onExiting",1,n)},t.handleExited=function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];return t.handleLifecycle("onExited",1,n)},t}i(t,e);var n=t.prototype;return n.handleLifecycle=function(e,t,n){var r,o=this.props.children,i=a.default.Children.toArray(o)[t];i.props[e]&&(r=i.props)[e].apply(r,n),this.props[e]&&this.props[e]((0,u.findDOMNode)(this))},n.render=function(){var e=this.props,t=e.children,n=e.in,r=o(e,["children","in"]),i=a.default.Children.toArray(t),u=i[0],s=i[1];return delete r.onEnter,delete r.onEntering,delete r.onEntered,delete r.onExit,delete r.onExiting,delete r.onExited,a.default.createElement(l.default,r,n?a.default.cloneElement(u,{key:"first",onEnter:this.handleEnter,onEntering:this.handleEntering,onEntered:this.handleEntered}):a.default.cloneElement(s,{key:"second",onEnter:this.handleExit,onEntering:this.handleExiting,onEntered:this.handleExited}))},t}(a.default.Component);s.propTypes={};var c=s;t.default=c,e.exports=t.default},function(e,t,n){"use strict";function r(e,t){var n=function(e){return t&&(0,l.isValidElement)(e)?t(e):e},r=Object.create(null);return e&&l.Children.map(e,function(e){return e}).forEach(function(e){r[e.key]=n(e)}),r}function o(e,t){function n(n){return n in t?t[n]:e[n]}e=e||{},t=t||{};var r=Object.create(null),o=[];for(var i in e)i in t?o.length&&(r[i]=o,o=[]):o.push(i);var a,u={};for(var l in t){if(r[l])for(a=0;a<r[l].length;a++){var s=r[l][a];u[r[l][a]]=n(s)}u[l]=n(l)}for(a=0;a<o.length;a++)u[o[a]]=n(o[a]);return u}function i(e,t,n){return null!=n[t]?n[t]:e.props[t]}function a(e,t){return r(e.children,function(n){return(0,l.cloneElement)(n,{onExited:t.bind(null,n),in:!0,appear:i(n,"appear",e),enter:i(n,"enter",e),exit:i(n,"exit",e)})})}function u(e,t,n){var a=r(e.children),u=o(t,a);return Object.keys(u).forEach(function(r){var o=u[r];if((0,l.isValidElement)(o)){var s=r in t,c=r in a,f=t[r],p=(0,l.isValidElement)(f)&&!f.props.in;!c||s&&!p?c||!s||p?c&&s&&(0,l.isValidElement)(f)&&(u[r]=(0,l.cloneElement)(o,{onExited:n.bind(null,o),in:f.props.in,exit:i(o,"exit",e),enter:i(o,"enter",e)})):u[r]=(0,l.cloneElement)(o,{in:!1}):u[r]=(0,l.cloneElement)(o,{onExited:n.bind(null,o),in:!0,exit:i(o,"exit",e),enter:i(o,"enter",e)})}}),u}t.__esModule=!0,t.getChildMapping=r,t.mergeChildMappings=o,t.getInitialChildMapping=a,t.getNextChildMapping=u;var l=n(0)},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function i(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(8),u=n(0),l=(n.n(u),n(3)),s=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),c=wp.element.Component,f=wp.i18n,p=f.__,d=(f.setLocaleData,function(e){function t(e){r(this,t);var n=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.state={versions:[],currentDownloadId:e.download_id},n}return i(t,e),s(t,[{key:"componentDidMount",value:function(){this.fetchVersions(this.props.downloadId)}},{key:"componentDidUpdate",value:function(){this.fetchVersions(this.props.downloadId)}},{key:"fetchVersions",value:function(e){var t=this;void 0!==e&&e!=this.state.currentDownloadId&&Object(a.a)({url:dlmBlocks.ajax_getVersions+"&download_id="+e}).then(function(n){n.unshift({value:0,label:p("Latest version","download-monitor")}),t.setState({versions:n,currentDownloadId:e})})}},{key:"render",value:function(){var e=this;return wp.element.createElement("div",null,wp.element.createElement(l.a,{value:function(e,t){return e.find(function(e){return e.value===t})}(this.state.versions,this.props.selectedVersionId),onChange:function(t){return e.props.onChange(t.value)},options:this.state.versions,isSearchable:"true",isDisabled:void 0===this.props.downloadId}))}}]),t}(c));t.a=d},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function i(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(0),u=(n.n(a),n(3)),l=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),s=wp.element.Component,c=function(e){function t(e){r(this,t);var n=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.state={templates:[]},n}return i(t,e),l(t,[{key:"componentDidMount",value:function(){this.setState({templates:JSON.parse(this.props.templatesStr)})}},{key:"render",value:function(){var e=this;return wp.element.createElement("div",null,wp.element.createElement(u.a,{value:function(e,t){return e.find(function(e){return e.value===t})}(this.state.templates,this.props.selectedTemplate),onChange:function(t){return e.props.onChange(t.value)},options:this.state.templates,isSearchable:"true"}))}}]),t}(s);t.a=c}]);
assets/blocks/src/blocks.js ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ //import 'whatwg-fetch';
2
+
3
+ const {__, setLocaleData} = wp.i18n;
4
+ const {registerBlockType} = wp.blocks;
5
+ const {Fragment} = wp.element;
6
+ const {PanelBody, Autocomplete} = wp.components;
7
+ const {InspectorControls, AlignmentToolbar} = wp.editor;
8
+
9
+ import DownloadButton from './components/DownloadButton';
10
+ import DownloadInput from './components/DownloadInput';
11
+ import VersionInput from './components/VersionInput';
12
+ import TemplateInput from './components/TemplateInput';
13
+
14
+ import React from 'react';
15
+ import Select from 'react-select';
16
+
17
+ //setLocaleData( window.gutenberg_dlm_blocks.localeData, 'download-monitor' );
18
+
19
+ registerBlockType( 'download-monitor/download-button', {
20
+ title: __( 'Download Button', 'download-monitor' ),
21
+ icon: 'download',
22
+ keywords: [__( 'download', 'download-monitor' ), 'download monitor', __( 'file', 'download-monitor' )],
23
+ category: 'common',
24
+ attributes: {
25
+ download_id: {
26
+ type: 'number',
27
+ default: 0
28
+ },
29
+ version_id: {
30
+ type: 'number',
31
+ default: 0
32
+ },
33
+ template: {
34
+ type: 'string',
35
+ default: 'settings'
36
+ },
37
+ custom_template: {
38
+ type: 'string',
39
+ default: ''
40
+ },
41
+ autop: {
42
+ type: 'number',
43
+ default: 0
44
+ },
45
+ }
46
+ ,
47
+ edit: ( props ) => {
48
+ const {attributes: { download_id, version_id, template, custom_template, autop}, setAttributes, className} = props;
49
+
50
+ const valueFromId = (opts, id) => opts.find(o => o.value === id);
51
+ let autoPOptions = [{ value: 0, label: 'No'},{ value: 1, label: 'Yes'}];
52
+
53
+ return (
54
+ <Fragment>
55
+ <InspectorControls>
56
+ <PanelBody title={__( 'Download Information', 'download-monitor' )}>
57
+ <div className="components-base-control">
58
+ <span className="components-base-control__label">{__( 'Download', 'download-monitor' )}</span>
59
+ <DownloadInput onChange={(v)=> setAttributes( {download_id: v} )} selectedDownloadId={download_id} />
60
+ </div>
61
+
62
+ <div className="components-base-control">
63
+ <span className="components-base-control__label">{__( 'Version', 'download-monitor' )}</span>
64
+ <VersionInput onChange={(v)=> setAttributes( {version_id: v} )} selectedVersionId={version_id} downloadId={download_id} />
65
+ </div>
66
+ </PanelBody>
67
+
68
+ <PanelBody title={__( 'Template', 'download-monitor' )}>
69
+ <div className="components-base-control dlmGbEditorTemplateWrapper">
70
+ <span className="components-base-control__label">{__( 'Template', 'download-monitor' )}</span>
71
+ <TemplateInput onChange={( v ) => setAttributes( {template: v} )} selectedTemplate={template} templatesStr={dlmBlocks.templates} />
72
+ </div>
73
+ { template === "custom" &&
74
+ <div className="components-base-control">
75
+ <span className="components-base-control__label">{__( 'Custom Template', 'download-monitor' )}</span>
76
+ <input className="components-text-control__input" onChange={( e ) => setAttributes( {custom_template: e.target.value} ) } value={custom_template} />
77
+ </div>
78
+ }
79
+ <div className="components-base-control dlmGbEditorTemplateWrapper">
80
+ <span className="components-base-control__label">{__( 'Wrap in paragraph tag (<p>)?', 'download-monitor' )}</span>
81
+ <Select
82
+ value={valueFromId( autoPOptions, autop )}
83
+ onChange={(selectedOption) => { setAttributes({autop: selectedOption.value}) }}
84
+ options={autoPOptions}
85
+ isSearchable="false"
86
+ />
87
+ </div>
88
+ </PanelBody>
89
+ </InspectorControls>
90
+ <DownloadButton download_id={download_id} version_id={version_id} template={template} custom_template={custom_template} />
91
+ </Fragment>
92
+ );
93
+ },
94
+ save: ( props ) => {
95
+ return null;
96
+ },
97
+ } );
assets/blocks/src/components/DownloadButton/index.js ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ //import { Component } from '@wordpress/element';
3
+ const { Component } = wp.element;
4
+
5
+ export default class DownloadButton extends Component {
6
+
7
+ constructor(props) {
8
+ super(props);
9
+
10
+ this.updateHeight = this.updateHeight.bind(this);
11
+ this.getIframeUrl = this.getIframeUrl.bind(this);
12
+
13
+ this.state = { calculatedHeight: {
14
+ cacheKey: "",
15
+ height: 100,
16
+ }};
17
+ }
18
+
19
+ getIframeUrl() {
20
+ let iframeURL = dlmBlocks.urlButtonPreview;
21
+
22
+ if(this.props.download_id != 0) {
23
+ iframeURL += "&download_id=" + this.props.download_id;
24
+ }
25
+
26
+ if(this.props.version_id != 0) {
27
+ iframeURL += "&version_id=" + this.props.version_id;
28
+ }
29
+
30
+ if(this.props.template != "") {
31
+ iframeURL += "&template=" + this.props.template;
32
+ }
33
+
34
+ if(this.props.custom_template != "") {
35
+ iframeURL += "&custom_template=" + this.props.custom_template;
36
+ }
37
+
38
+ return iframeURL;
39
+ }
40
+
41
+ updateHeight(target) {
42
+
43
+ let cacheKey = encodeURI(this.getIframeUrl());
44
+
45
+ // check if we need to reset height to new URL
46
+ if(this.state.chacheKey != cacheKey) {
47
+ this.setState({calculatedHeight: {
48
+ cacheKey: cacheKey,
49
+ height: target.contentDocument.getElementById("dlmPreviewContainer").scrollHeight,
50
+ }});
51
+ }
52
+ }
53
+
54
+ render() {
55
+
56
+ let iframeURL = this.getIframeUrl();
57
+ let frameHeight = this.state.calculatedHeight.height + "px";
58
+
59
+ return(
60
+ <div className="dlmPreviewButton">
61
+ <iframe src={iframeURL} width="100%" height={frameHeight} onLoad={(e)=>{this.updateHeight(e.target)}}></iframe>
62
+ </div>
63
+ );
64
+ }
65
+
66
+ }
assets/blocks/src/components/DownloadInput/index.js ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ const {Component} = wp.element;
2
+
3
+ import apiFetch from '@wordpress/api-fetch';
4
+ import React from 'react';
5
+ import Select from 'react-select';
6
+
7
+ export default class DownloadInput extends Component {
8
+
9
+ constructor( props ) {
10
+ super( props );
11
+ this.state = { downloads: [] };
12
+ }
13
+
14
+ componentDidMount() {
15
+ apiFetch( { url: dlmBlocks.ajax_getDownloads } ).then( results => {
16
+ this.setState({downloads: results });
17
+ } );
18
+ }
19
+
20
+ render() {
21
+ const valueFromId = (opts, id) => opts.find(o => o.value === id);
22
+
23
+ return (
24
+ <div>
25
+ <Select
26
+ value={valueFromId( this.state.downloads, this.props.selectedDownloadId )}
27
+ onChange={(selectedOption) => this.props.onChange(selectedOption.value)}
28
+ options={this.state.downloads}
29
+ isSearchable="true"
30
+ />
31
+ </div>
32
+ );
33
+ }
34
+
35
+ }
assets/blocks/src/components/TemplateInput/index.js ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ const {Component} = wp.element;
2
+
3
+ import React from 'react';
4
+ import Select from 'react-select';
5
+
6
+ export default class TemplateInput extends Component {
7
+
8
+ constructor( props ) {
9
+ super( props );
10
+ this.state = { templates: [] };
11
+ }
12
+
13
+ componentDidMount() {
14
+ this.setState( {templates: JSON.parse(this.props.templatesStr) } );
15
+ }
16
+
17
+ render() {
18
+ const valueFromId = (opts, id) => opts.find(o => o.value === id);
19
+
20
+ return (
21
+ <div>
22
+ <Select
23
+ value={valueFromId( this.state.templates, this.props.selectedTemplate )}
24
+ onChange={(selectedOption) => this.props.onChange(selectedOption.value)}
25
+ options={this.state.templates}
26
+ isSearchable="true"
27
+ />
28
+ </div>
29
+ );
30
+ }
31
+
32
+ }
assets/blocks/src/components/VersionInput/index.js ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ const {Component} = wp.element;
2
+ const {__, setLocaleData} = wp.i18n;
3
+
4
+ import apiFetch from '@wordpress/api-fetch';
5
+ import React from 'react';
6
+ import Select from 'react-select';
7
+
8
+ export default class VersionInput extends Component {
9
+
10
+ constructor( props ) {
11
+ super( props );
12
+ this.state = { versions: [], currentDownloadId: props.download_id };
13
+ }
14
+
15
+ componentDidMount() {
16
+ this.fetchVersions(this.props.downloadId);
17
+ }
18
+
19
+ componentDidUpdate() {
20
+ this.fetchVersions(this.props.downloadId);
21
+ }
22
+
23
+ fetchVersions( downloadId) {
24
+ if( typeof downloadId !== 'undefined' && downloadId != this.state.currentDownloadId ) {
25
+ apiFetch( { url: dlmBlocks.ajax_getVersions + "&download_id=" + downloadId } ).then( results => {
26
+ results.unshift({value: 0, label: __('Latest version', 'download-monitor')});
27
+ this.setState({versions: results, currentDownloadId: downloadId});
28
+ } );
29
+ }
30
+
31
+ }
32
+
33
+ render() {
34
+
35
+ const valueFromId = (opts, id) => opts.find(o => o.value === id);
36
+
37
+ return (
38
+ <div>
39
+ <Select
40
+ value={valueFromId( this.state.versions, this.props.selectedVersionId )}
41
+ onChange={(selectedOption) => this.props.onChange(selectedOption.value)}
42
+ options={this.state.versions}
43
+ isSearchable="true"
44
+ isDisabled={(typeof this.props.downloadId === 'undefined')}
45
+ />
46
+ </div>
47
+ );
48
+ }
49
+
50
+ }
assets/css/admin.css CHANGED
@@ -1 +1 @@
1
- .post-type-dlm_download h1 a.dlm-delete-logs{color:#a00}.post-type-dlm_download h1 a.dlm-delete-logs:hover{color:#fff;background:#a00;border-color:#7C0900}#dlm_logs td{padding:7px;vertical-align:middle}#dlm_logs .check-column{width:1.5em;padding:0;vertical-align:middle}#dlm_logs .column-status{width:2em}#dlm_logs td.column-status{font-size:10px;vertical-align:middle;text-align:center}#dlm_logs td.column-status span{color:#fff;font-weight:400;-moz-border-radius:50%;-webkit-border-radius:50%;border-radius:50%;height:18px;line-height:18px;width:18px;display:inline-block;background:url(../images/log-status-icons.png) top left no-repeat}#dlm_logs td.column-status .completed{background-color:#6cc644}#dlm_logs td.column-status .failed{background-color:#bd2c00;background-position-y:-18px}#dlm_logs td.column-status .redirected{background-color:#1c769b;background-position-y:-36px}#dlm_logs td.column-user_agent,#dlm_logs td.column-user_ip{font-family:monospace;font-weight:400}#dlm_logs span.dlm-description{font-weight:400}#dlm_logs .column-download,#dlm_logs .column-file,#dlm_logs .column-user,#dlm_logs .column-user_ua{width:16%!important}#dlm_logs .column-date,#dlm_logs .column-user_ip{width:6%!important}.post-type-dlm_download .inline-edit-row .inline-edit-col-dlm .inline-edit-col-dlm-inner{margin-top:10px}ul.download_monitor_file_browser{list-style:none outside;margin:0;border:1px solid #ddd;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;background:#f9f9f9;padding:5px;-moz-box-shadow:inset 0 0 0 1px #fff;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff}ul.download_monitor_file_browser li{padding:0;margin:0}ul.download_monitor_file_browser li a{color:#21759B;display:block;padding:4px 0 4px 4px;text-decoration:none}ul.download_monitor_file_browser li a:hover{background-color:#eaf2fa}ul.download_monitor_file_browser li a:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f123";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}ul.download_monitor_file_browser li a.folder:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f318";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}ul.download_monitor_file_browser li a.filetype-3g2:before,ul.download_monitor_file_browser li a.filetype-3gp:before,ul.download_monitor_file_browser li a.filetype-asf:before,ul.download_monitor_file_browser li a.filetype-asx:before,ul.download_monitor_file_browser li a.filetype-avi:before,ul.download_monitor_file_browser li a.filetype-mov:before,ul.download_monitor_file_browser li a.filetype-mp4:before,ul.download_monitor_file_browser li a.filetype-mpg:before,ul.download_monitor_file_browser li a.filetype-rm:before,ul.download_monitor_file_browser li a.filetype-srt:before,ul.download_monitor_file_browser li a.filetype-vob:before,ul.download_monitor_file_browser li a.filetype-wmv:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f126";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}ul.download_monitor_file_browser li a.filetype-aif:before,ul.download_monitor_file_browser li a.filetype-iff:before,ul.download_monitor_file_browser li a.filetype-m3u:before,ul.download_monitor_file_browser li a.filetype-m4a:before,ul.download_monitor_file_browser li a.filetype-mid:before,ul.download_monitor_file_browser li a.filetype-midi:before,ul.download_monitor_file_browser li a.filetype-mp3:before,ul.download_monitor_file_browser li a.filetype-mpa:before,ul.download_monitor_file_browser li a.filetype-ra:before,ul.download_monitor_file_browser li a.filetype-wav:before,ul.download_monitor_file_browser li a.filetype-wma:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f127";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}ul.download_monitor_file_browser li a.filetype-ai:before,ul.download_monitor_file_browser li a.filetype-bmp:before,ul.download_monitor_file_browser li a.filetype-dds:before,ul.download_monitor_file_browser li a.filetype-eps:before,ul.download_monitor_file_browser li a.filetype-gif:before,ul.download_monitor_file_browser li a.filetype-ico:before,ul.download_monitor_file_browser li a.filetype-jpeg:before,ul.download_monitor_file_browser li a.filetype-jpg:before,ul.download_monitor_file_browser li a.filetype-png:before,ul.download_monitor_file_browser li a.filetype-ps:before,ul.download_monitor_file_browser li a.filetype-psd:before,ul.download_monitor_file_browser li a.filetype-pspimage:before,ul.download_monitor_file_browser li a.filetype-svg:before,ul.download_monitor_file_browser li a.filetype-tga:before,ul.download_monitor_file_browser li a.filetype-thm:before,ul.download_monitor_file_browser li a.filetype-tif:before,ul.download_monitor_file_browser li a.filetype-yuv:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f128";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}ul.download_monitor_file_browser li.nofiles{color:#999;font-style:italic;padding:4px 0}ul.download_monitor_file_browser li ul{list-style:none outside;margin:0;padding:0 0 0 28px}ul.download_monitor_file_browser li ul.loading{background:url(../images/ajax-loader.gif) no-repeat 24px 0;height:32px}table.wp-list-table .column-thumb{width:44px;text-align:center;white-space:nowrap}table.wp-list-table .column-dlm_download_cat,table.wp-list-table .column-dlm_download_tag,table.wp-list-table .column-file{width:11%!important}table.wp-list-table .column-file,table.wp-list-table .column-title{width:17%!important}table.wp-list-table .column-download_id,table.wp-list-table .column-version{width:5em}table.wp-list-table th.column-download_count span:first-child,table.wp-list-table th.column-featured span:first-child,table.wp-list-table th.column-members_only span:first-child,table.wp-list-table th.column-redirect_only span:first-child,table.wp-list-table th.column-thumb span:first-child{float:none;display:inline-block;width:1em;height:1em;line-height:1em;padding:2px 0 0;overflow:hidden}table.wp-list-table th.column-download_count .sorting-indicator,table.wp-list-table th.column-featured .sorting-indicator,table.wp-list-table th.column-members_only .sorting-indicator,table.wp-list-table th.column-redirect_only .sorting-indicator,table.wp-list-table th.column-thumb .sorting-indicator{float:right}table.wp-list-table th.column-thumb{width:52px;text-align:center}table.wp-list-table th.column-thumb span:first-child:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f128";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}table.wp-list-table th.column-download_count{width:5em}table.wp-list-table th.column-download_count span:first-child:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f346";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}table.wp-list-table th.column-members_only{width:3.5em}table.wp-list-table th.column-members_only span:first-child:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f338";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}table.wp-list-table th.column-redirect_only{width:3.5em}table.wp-list-table th.column-redirect_only span:first-child:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f103";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}table.wp-list-table th.column-featured{width:3.5em}table.wp-list-table th.column-featured span:first-child:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f155";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}table.wp-list-table td.column-download_count,table.wp-list-table td.column-featured,table.wp-list-table td.column-members_only,table.wp-list-table td.column-redirect_only{text-align:left;padding-left:11px}table.wp-list-table td.column-download_count span.na,table.wp-list-table td.column-featured span.na,table.wp-list-table td.column-members_only span.na,table.wp-list-table td.column-redirect_only span.na{color:#999;width:1em;height:1em;line-height:1em;display:inline-block;overflow:hidden;vertical-align:middle}table.wp-list-table td.column-download_count span.na:before,table.wp-list-table td.column-featured span.na:before,table.wp-list-table td.column-members_only span.na:before,table.wp-list-table td.column-redirect_only span.na:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f460";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}table.wp-list-table td.column-download_count span.yes,table.wp-list-table td.column-featured span.yes,table.wp-list-table td.column-members_only span.yes,table.wp-list-table td.column-redirect_only span.yes{width:1em;height:1em;line-height:1em;display:inline-block;overflow:hidden;vertical-align:middle}table.wp-list-table td.column-download_count span.yes:before,table.wp-list-table td.column-featured span.yes:before,table.wp-list-table td.column-members_only span.yes:before,table.wp-list-table td.column-redirect_only span.yes:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f147";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}table.wp-list-table .column-thumb img{padding:2px;margin:0;border:1px solid #dfdfdf;vertical-align:middle;width:32px;height:32px}#download-monitor-file .inside{padding:0;margin:0}#download-monitor-file .dlm-metaboxes-wrapper .close_all,#download-monitor-file .dlm-metaboxes-wrapper .expand_all{float:right;margin-left:1em;line-height:22px;text-decoration:none}#download-monitor-file .dlm-metaboxes-wrapper .expand_all:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f168";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}#download-monitor-file .dlm-metaboxes-wrapper .close_all:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f460";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}#download-monitor-file .dlm-metaboxes-wrapper p.toolbar{margin:0!important;border-top:1px solid #fff;border-bottom:1px solid #DFDFDF;padding:7px 12px!important;overflow:hidden;zoom:1}#download-monitor-file .dlm-metaboxes-wrapper p.toolbar a.button{float:left;margin:0}#download-monitor-file .dlm-metaboxes-wrapper .fr,#download-monitor-file .dlm-metaboxes-wrapper button.add_attribute,#download-monitor-file .dlm-metaboxes-wrapper button.add_variable_attribute,#download-monitor-file .dlm-metaboxes-wrapper select.attribute_taxonomy{float:right;margin:0 0 0 6px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metaboxes{padding:0 12px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox-sortable-placeholder{border-color:#bbb;background-color:#f5f5f5;margin:9px 0;border-width:1px;border-style:dashed}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox{background:#ececec;border:1px solid #ececec;margin:9px 0!important}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox h3{margin:0!important;padding:6px!important;font-size:1em!important;overflow:hidden;zoom:1;cursor:move}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox h3 button{float:right}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox h3 strong{font-weight:400;line-height:24px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox h3 select{font-family:sans-serif}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox h3 .handlediv{background-position:6px 5px!important;display:none;height:24px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox:hover h3 .handlediv{display:block}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table{width:100%;position:relative;background:#fff;padding:3px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td{text-align:left;padding:6px;vertical-align:top;border:0;line-height:26px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td label{text-align:left;display:block;line-height:21px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td input{float:left;min-width:200px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td input,#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td textarea{width:100%;margin:0;display:block;font-size:14px;padding:4px;color:#555}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td textarea{height:7.5em}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td select{width:100%}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td input.short{width:200px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td input.checkbox{width:auto;min-width:inherit;vertical-align:middle;display:inline;float:none}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td input.date-picker-field{width:50%;min-width:inherit;float:none;display:inline}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td input.hour,#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td input.minute{width:2em;min-width:inherit;float:none;display:inline}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td.attribute_name{width:200px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table .minus,#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table .plus{margin-top:6px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table .fl{float:left}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table .fr{float:right}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox:first-child h3{background:#EAF2FA;background-image:linear-gradient(bottom,#dae6f2 0,#eaf2fa 100%);background-image:-o-linear-gradient(bottom,#dae6f2 0,#eaf2fa 100%);background-image:-moz-linear-gradient(bottom,#dae6f2 0,#eaf2fa 100%);background-image:-webkit-linear-gradient(bottom,#dae6f2 0,#eaf2fa 100%);background-image:-ms-linear-gradient(bottom,#dae6f2 0,#eaf2fa 100%);background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#dae6f2),color-stop(1,#eaf2fa));border-color:#d3deea;color:#21759B}#download-monitor-file .dlm-metaboxes-wrapper .plus:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f132";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}#download-monitor-file .dlm-metaboxes-wrapper .minus:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f460";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}#download-monitor-file .dlm-metaboxes-wrapper .dlm_upload_file:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f317";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}#download-monitor-file .dlm-metaboxes-wrapper .dlm_browse_for_file:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f322";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}#download-monitor-information p{overflow:hidden}#download-monitor-information p label{width:100%;font-weight:700;box-sizing:border-box;line-height:28px;float:left}#download-monitor-information p label input{width:65%;padding:5px;font-size:11px;font-weight:400;background:#eaeaea;border:0;box-shadow:none;box-sizing:border-box;float:right}#download-monitor-options .inside{padding:0;margin:0}#download-monitor-options .form-field-checkbox label{display:inline;padding:0 0 4px}#download-monitor-options .form-field-checkbox input{display:inline-block;width:auto;vertical-align:middle}#download-monitor-options .form-field-checkbox .dlm-description{padding:4px 0 0;display:block}#download-monitor-options .access_permissions{margin:0!important;border-top:1px solid #fff;border-bottom:1px solid #DFDFDF;padding:7px 12px!important;overflow:hidden;zoom:1}#download-monitor-options .access_permissions h4{margin:0 0 .5em}#download-monitor-options .access_permissions ul{background:#fff;border:1px solid #dfdfdf;height:110px;overflow:auto;padding:.5em .9em;margin:0}#download-monitor-options p{margin:0!important;border-top:1px solid #fff;border-bottom:1px solid #DFDFDF;padding:7px 12px!important;overflow:hidden;zoom:1}#insert-download{padding:20px}#insert-download #drag-drop-area,#insert-download #insert-shortcode{margin:1em 0}#insert-download .error,#insert-download .updated{margin-left:0;margin-right:0}#insert-download h2{margin-top:0}#insert-download label{margin:0 0 .25em;display:block;font-size:1.1em}#insert-download span.description{display:block}#insert-download input.input{margin:0 0 .25em;display:block;width:100%;font-size:1.1em}#insert-download .add_link{float:right}#insert-download ul.page-numbers{overflow:hidden;zoom:1;margin:0 auto;padding:0;text-align:center}#insert-download ul.page-numbers li{display:inline-block;margin:0;list-style:none outside;line-height:1em}#insert-download ul.page-numbers li a,#insert-download ul.page-numbers li span{text-decoration:none;border:1px solid #ddd;-webkit-border-radius:4px;border-radius:4px;padding:8px;display:block}#insert-download ul.page-numbers li span{border-color:#eee}#insert-download legend{font-weight:700;display:block;margin:0 0 1em}#insert-download fieldset label{display:block;margin:0 0 .5em}.dlm-code-nginx-rules{display:block}.settings_panel .form-table td{padding-left:0}.settings_panel .dlm-lazy-select-loader{display:inline-block;vertical-align:middle;padding:0 0 0 3px}.settings_panel .dlm-lazy-select-loader img{display:inline-block;height:25px;width:25px;margin-top:1px}.dlm-reports h1 .dlm-reports-actions{float:right}.dlm-reports h1 .dlm-reports-actions .dlm-reports-header-date-selector,.dlm-reports h1 .dlm-reports-actions .dlm-reports-header-period,.dlm-reports h1 .dlm-reports-actions a.dlm-reports-header-chart-switcher{margin:0 5px;float:left}.dlm-reports h1 .dlm-reports-actions>:last-child{margin-right:0}.dlm-reports h1 .dlm-reports-actions .dlm-reports-header-date-selector{position:relative;font-size:14px;padding:0 .5em 0 1em;background:#fff;border:1px solid #ccc;border-radius:3px;user-select:none;cursor:pointer}.dlm-reports h1 .dlm-reports-actions .dlm-reports-header-date-selector .dlm-arrow:before{font-family:dashicons!important;content:"\f140";font-style:normal;font-weight:400;speak:none;display:inline-block;text-decoration:inherit;width:1em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;font-size:1.6em;vertical-align:middle;margin-top:-2px}.dlm-reports h1 .dlm-reports-actions .dlm-reports-header-date-selector .dlm_rdrs_overlay{display:block;width:466px;padding:10px;background:#fff;border:1px solid #ccc;position:absolute;top:30px;right:0;z-index:10;overflow:hidden}.dlm-reports h1 .dlm-reports-actions .dlm-reports-header-date-selector .dlm_rdrs_overlay .dlm_rdrs_date{font-size:70%;margin-right:5px;float:left;z-index:11}.dlm-reports h1 .dlm-reports-actions .dlm-reports-header-date-selector .dlm_rdrs_overlay .dlm_rdrs_date .ui-datepicker-inline{border:0}.dlm-reports h1 .dlm-reports-actions .dlm-reports-header-date-selector .dlm_rdrs_overlay .dlm_rdrs_date .ui-datepicker-inline .ui-state-highlight{background:#e6e6e6 url(../images/jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x;color:#555;border:1px solid #D3D3D3}.dlm-reports h1 .dlm-reports-actions .dlm-reports-header-date-selector .dlm_rdrs_overlay .dlm_rdrs_date .ui-datepicker-inline .ui-state-active{border:1px solid #aaa;background:#fff url(../images/jquery-ui/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x}.dlm-reports h1 .dlm-reports-actions .dlm-reports-header-date-selector .dlm_rdrs_overlay .dlm_rdrs_date .ui-datepicker-inline td,.dlm-reports h1 .dlm-reports-actions .dlm-reports-header-date-selector .dlm_rdrs_overlay .dlm_rdrs_date .ui-datepicker-inline th{padding:0;margin:0;line-height:2em}.dlm-reports h1 .dlm-reports-actions .dlm-reports-header-date-selector .dlm_rdrs_overlay .dlm_rdrs_date .ui-datepicker-inline td a,.dlm-reports h1 .dlm-reports-actions .dlm-reports-header-date-selector .dlm_rdrs_overlay .dlm_rdrs_date .ui-datepicker-inline th a{text-align:center!important}.dlm-reports h1 .dlm-reports-actions .dlm-reports-header-date-selector .dlm_rdrs_overlay .dlm_rdrs_actions{width:70px;padding-left:10px;text-align:center;float:left}.dlm-reports h1 .dlm-reports-actions a.dlm-reports-header-chart-switcher{display:block;margin-top:1px;padding-top:4px;color:#23282d;text-decoration:none}.dlm-reports h1 .dlm-reports-actions a.dlm-reports-header-chart-switcher:before{font-family:dashicons!important;font-style:normal;font-weight:400;speak:none;display:inline-block;text-decoration:inherit;width:1em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;font-size:1.4em}.dlm-reports h1 .dlm-reports-actions a.dlm-reports-header-chart-switcher.dlm-line:before{content:"\f238"}.dlm-reports h1 .dlm-reports-actions a.dlm-reports-header-chart-switcher.dlm-bar:before{content:"\f185"}.dlm-reports h1 .dlm-reports-actions .dlm-reports-header-period a{border-color:#ccc!important}.dlm-reports h1 .dlm-reports-actions .dlm-reports-header-period a:first-child{border-bottom-right-radius:0;border-top-right-radius:0;border-right:0}.dlm-reports h1 .dlm-reports-actions .dlm-reports-header-period a:last-child{border-bottom-left-radius:0;border-top-left-radius:0;border-left:0}.dlm-reports .dlm_reports_loader{position:absolute;width:32px;height:32px;top:50%;left:50%;margin:-16px 0 0 -16px}.dlm-reports .dlm-reports-block-chart{width:100%;height:300px;margin-top:20px;background:#fff;border:1px solid #e5e5e5;overflow:hidden}.dlm-reports .dlm-reports-block-chart .chart-container h6{display:none}.dlm-reports .dlm-reports-block{position:relative;box-sizing:border-box;width:100%;padding:20px 10px;margin-top:20px;background:#fff;border:1px solid #e5e5e5;overflow:hidden;float:left}.dlm-reports .dlm-reports-block.dlm-reports-block-half{width:49%;margin-right:1%}.dlm-reports .dlm-reports-block.dlm-reports-block-half-right{width:49%;margin-left:1%}.dlm-reports .dlm-reports-block .dlm-reports-placeholder-no-data{display:inline-block;width:100%;font-size:1.5em;color:#b4b9be;font-style:italic;text-align:center}.dlm-reports .dlm-reports-block ul{box-sizing:border-box;width:100%;padding:0;margin:0}.dlm-reports .dlm-reports-block ul li{display:inline-block;width:33%;padding:5px 0}.dlm-reports .dlm-reports-block ul li label,.dlm-reports .dlm-reports-block ul li span{display:block;width:100%;text-align:center}.dlm-reports .dlm-reports-block ul li span{font-size:2.5em;font-weight:700;padding:.5em 0 0}.dlm-reports .dlm-reports-block table{width:100%}.dlm-reports .dlm-reports-block table td,.dlm-reports .dlm-reports-block table th{text-align:center;padding:10px 0;border-bottom:1px solid #e5e5e5}.dlm-reports .dlm-reports-block table td:first-child,.dlm-reports .dlm-reports-block table th:first-child{text-align:left}.dlm-reports .dlm-reports-block table th{padding-bottom:20px}.dlm_extensions_wrap h1 a.dlm-reload-button{float:right}.dlm_extensions_wrap .dlm_extensions{padding:15px 0;overflow:hidden}.dlm_extensions_wrap .dlm_extensions div.dlm_extension{cursor:auto!important}.dlm_extensions_wrap .dlm_extensions div.dlm_extension a{color:#444;text-decoration:none}.dlm_extensions_wrap .dlm_extensions div.dlm_extension .dlm_extension_img_wrapper{width:100%;background:#419CCB;text-align:center}.dlm_extensions_wrap .dlm_extensions div.dlm_extension .dlm_extension_img_wrapper img{max-width:100%;margin:0 auto}.dlm_extensions_wrap .dlm_extensions div.dlm_extension h3{padding:0 20px}.dlm_extensions_wrap .dlm_extensions div.dlm_extension p.extension-desc{min-height:85px;padding:0 20px}.dlm_extensions_wrap .dlm_extensions div.dlm_extension .product_footer{padding:0 20px 15px}.dlm_extensions_wrap .dlm_extensions div.dlm_extension .product_footer .loop_price{font-weight:700}.dlm_extensions_wrap .dlm_extensions div.dlm_extension .product_footer .loop_price.sale{color:green}.dlm_extensions_wrap .dlm_extensions div.dlm_extension .product_footer .loop_price.sale strike{color:#444}.dlm_extensions_wrap .dlm_extensions div.dlm_extension .product_footer .loop_more{color:#459ac9;text-decoration:none;font-weight:700;float:right}.dlm_extensions_wrap .dlm_extensions div.dlm_extension .extension_license{padding:0 20px 20px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.dlm_extensions_wrap .dlm_extensions div.dlm_extension .extension_license div.dlm_license_error{padding:.5em;margin-bottom:15px;background:#ffffe0}.dlm_extensions_wrap .dlm_extensions div.dlm_extension .extension_license div.dlm_license_error a{color:#00f;text-decoration:underline}.dlm_extensions_wrap .dlm_extensions div.dlm_extension .extension_license p.license-status{padding:5px 0;margin:5px 0;background:red;font-weight:700;font-size:1.2em;color:#fff;text-align:center}.dlm_extensions_wrap .dlm_extensions div.dlm_extension .extension_license p.license-status.active{background:green}.dlm_extensions_wrap .dlm_extensions div.dlm_extension .extension_license input{width:100%;margin:7px 0;padding:7px}.dlm_extensions_wrap .dlm_extensions div.dlm_extension .extension_license a.button-primary{width:100%;margin:5px auto 0;color:#fff;text-align:center}#ui-datepicker-div{display:none}
1
+ .post-type-dlm_download h1 a.dlm-delete-logs{color:#a00}.post-type-dlm_download h1 a.dlm-delete-logs:hover{color:#fff;background:#a00;border-color:#7c0900}#dlm_logs td{padding:7px 7px;vertical-align:middle}#dlm_logs .check-column{width:1.5em;padding:0;vertical-align:middle}#dlm_logs .column-status{width:2em}#dlm_logs td.column-status{font-size:10px;vertical-align:middle;text-align:center}#dlm_logs td.column-status span{color:#fff;font-weight:400;-moz-border-radius:50%;-webkit-border-radius:50%;border-radius:50%;height:18px;line-height:18px;width:18px;display:inline-block;background:url(../images/log-status-icons.png) top left no-repeat}#dlm_logs td.column-status .completed{background-color:#6cc644}#dlm_logs td.column-status .failed{background-color:#bd2c00;background-position-y:-18px}#dlm_logs td.column-status .redirected{background-color:#1c769b;background-position-y:-36px}#dlm_logs td.column-user_agent,#dlm_logs td.column-user_ip{font-family:monospace;font-weight:400}#dlm_logs span.dlm-description{font-weight:400}#dlm_logs .column-download,#dlm_logs .column-file,#dlm_logs .column-user,#dlm_logs .column-user_ua{width:16%!important}#dlm_logs .column-date,#dlm_logs .column-user_ip{width:6%!important}.post-type-dlm_download .inline-edit-row .inline-edit-col-dlm .inline-edit-col-dlm-inner{margin-top:10px}ul.download_monitor_file_browser{list-style:none outside;margin:0;border:1px solid #ddd;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;background:#f9f9f9;padding:5px 5px;-moz-box-shadow:inset 0 0 0 1px #fff;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff}ul.download_monitor_file_browser li{padding:0;margin:0}ul.download_monitor_file_browser li a{color:#21759b;display:block;padding:4px 0 4px 4px;text-decoration:none}ul.download_monitor_file_browser li a:hover{background-color:#eaf2fa}ul.download_monitor_file_browser li a:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f123";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}ul.download_monitor_file_browser li a.folder:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f318";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}ul.download_monitor_file_browser li a.filetype-3g2:before,ul.download_monitor_file_browser li a.filetype-3gp:before,ul.download_monitor_file_browser li a.filetype-asf:before,ul.download_monitor_file_browser li a.filetype-asx:before,ul.download_monitor_file_browser li a.filetype-avi:before,ul.download_monitor_file_browser li a.filetype-mov:before,ul.download_monitor_file_browser li a.filetype-mp4:before,ul.download_monitor_file_browser li a.filetype-mpg:before,ul.download_monitor_file_browser li a.filetype-rm:before,ul.download_monitor_file_browser li a.filetype-srt:before,ul.download_monitor_file_browser li a.filetype-vob:before,ul.download_monitor_file_browser li a.filetype-wmv:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f126";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}ul.download_monitor_file_browser li a.filetype-aif:before,ul.download_monitor_file_browser li a.filetype-iff:before,ul.download_monitor_file_browser li a.filetype-m3u:before,ul.download_monitor_file_browser li a.filetype-m4a:before,ul.download_monitor_file_browser li a.filetype-mid:before,ul.download_monitor_file_browser li a.filetype-midi:before,ul.download_monitor_file_browser li a.filetype-mp3:before,ul.download_monitor_file_browser li a.filetype-mpa:before,ul.download_monitor_file_browser li a.filetype-ra:before,ul.download_monitor_file_browser li a.filetype-wav:before,ul.download_monitor_file_browser li a.filetype-wma:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f127";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}ul.download_monitor_file_browser li a.filetype-ai:before,ul.download_monitor_file_browser li a.filetype-bmp:before,ul.download_monitor_file_browser li a.filetype-dds:before,ul.download_monitor_file_browser li a.filetype-eps:before,ul.download_monitor_file_browser li a.filetype-gif:before,ul.download_monitor_file_browser li a.filetype-ico:before,ul.download_monitor_file_browser li a.filetype-jpeg:before,ul.download_monitor_file_browser li a.filetype-jpg:before,ul.download_monitor_file_browser li a.filetype-png:before,ul.download_monitor_file_browser li a.filetype-ps:before,ul.download_monitor_file_browser li a.filetype-psd:before,ul.download_monitor_file_browser li a.filetype-pspimage:before,ul.download_monitor_file_browser li a.filetype-svg:before,ul.download_monitor_file_browser li a.filetype-tga:before,ul.download_monitor_file_browser li a.filetype-thm:before,ul.download_monitor_file_browser li a.filetype-tif:before,ul.download_monitor_file_browser li a.filetype-yuv:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f128";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}ul.download_monitor_file_browser li.nofiles{color:#999;font-style:italic;padding:4px 0}ul.download_monitor_file_browser li ul{list-style:none outside;margin:0;padding:0 0 0 28px}ul.download_monitor_file_browser li ul.loading{background:url(../images/ajax-loader.gif) no-repeat 24px 0;height:32px}table.wp-list-table .column-thumb{width:44px;text-align:center;white-space:nowrap}table.wp-list-table .column-dlm_download_cat,table.wp-list-table .column-dlm_download_tag,table.wp-list-table .column-file{width:11%!important}table.wp-list-table .column-file,table.wp-list-table .column-title{width:17%!important}table.wp-list-table .column-download_id,table.wp-list-table .column-version{width:5em}table.wp-list-table th.column-download_count span:first-child,table.wp-list-table th.column-featured span:first-child,table.wp-list-table th.column-members_only span:first-child,table.wp-list-table th.column-redirect_only span:first-child,table.wp-list-table th.column-thumb span:first-child{float:none;display:inline-block;width:1em;height:1em;line-height:1em;padding:2px 0 0 0;overflow:hidden}table.wp-list-table th.column-download_count .sorting-indicator,table.wp-list-table th.column-featured .sorting-indicator,table.wp-list-table th.column-members_only .sorting-indicator,table.wp-list-table th.column-redirect_only .sorting-indicator,table.wp-list-table th.column-thumb .sorting-indicator{float:right}table.wp-list-table th.column-thumb{width:52px;text-align:center}table.wp-list-table th.column-thumb span:first-child:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f128";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}table.wp-list-table th.column-download_count{width:5em}table.wp-list-table th.column-download_count span:first-child:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f346";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}table.wp-list-table th.column-members_only{width:3.5em}table.wp-list-table th.column-members_only span:first-child:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f338";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}table.wp-list-table th.column-redirect_only{width:3.5em}table.wp-list-table th.column-redirect_only span:first-child:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f103";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}table.wp-list-table th.column-featured{width:3.5em}table.wp-list-table th.column-featured span:first-child:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f155";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}table.wp-list-table td.column-download_count,table.wp-list-table td.column-featured,table.wp-list-table td.column-members_only,table.wp-list-table td.column-redirect_only{text-align:left;padding-left:11px}table.wp-list-table td.column-download_count span.na,table.wp-list-table td.column-featured span.na,table.wp-list-table td.column-members_only span.na,table.wp-list-table td.column-redirect_only span.na{color:#999;width:1em;height:1em;line-height:1em;display:inline-block;overflow:hidden;vertical-align:middle}table.wp-list-table td.column-download_count span.na:before,table.wp-list-table td.column-featured span.na:before,table.wp-list-table td.column-members_only span.na:before,table.wp-list-table td.column-redirect_only span.na:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f460";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}table.wp-list-table td.column-download_count span.yes,table.wp-list-table td.column-featured span.yes,table.wp-list-table td.column-members_only span.yes,table.wp-list-table td.column-redirect_only span.yes{width:1em;height:1em;line-height:1em;display:inline-block;overflow:hidden;vertical-align:middle}table.wp-list-table td.column-download_count span.yes:before,table.wp-list-table td.column-featured span.yes:before,table.wp-list-table td.column-members_only span.yes:before,table.wp-list-table td.column-redirect_only span.yes:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f147";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}table.wp-list-table .column-thumb img{padding:2px;margin:0;border:1px solid #dfdfdf;vertical-align:middle;width:32px;height:32px}#download-monitor-file .inside{padding:0;margin:0}#download-monitor-file .dlm-metaboxes-wrapper .close_all,#download-monitor-file .dlm-metaboxes-wrapper .expand_all{float:right;margin-left:1em;line-height:22px;text-decoration:none}#download-monitor-file .dlm-metaboxes-wrapper .expand_all:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f168";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}#download-monitor-file .dlm-metaboxes-wrapper .close_all:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f460";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}#download-monitor-file .dlm-metaboxes-wrapper p.toolbar{margin:0!important;border-top:1px solid #fff;border-bottom:1px solid #dfdfdf;padding:7px 12px!important;overflow:hidden;zoom:1}#download-monitor-file .dlm-metaboxes-wrapper p.toolbar a.button{float:left;margin:0}#download-monitor-file .dlm-metaboxes-wrapper .fr,#download-monitor-file .dlm-metaboxes-wrapper button.add_attribute,#download-monitor-file .dlm-metaboxes-wrapper button.add_variable_attribute,#download-monitor-file .dlm-metaboxes-wrapper select.attribute_taxonomy{float:right;margin:0 0 0 6px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metaboxes{padding:0 12px 0}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox-sortable-placeholder{border-color:#bbb;background-color:#f5f5f5;margin:9px 0;border-width:1px;border-style:dashed}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox{background:#ececec;border:1px solid #ececec;margin:9px 0!important}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox h3{margin:0!important;padding:6px!important;font-size:1em!important;overflow:hidden;zoom:1;cursor:move}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox h3 button{float:right}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox h3 strong{font-weight:400;line-height:24px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox h3 select{font-family:sans-serif}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox h3 .handlediv{background-position:6px 5px!important;display:none;height:24px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox:hover h3 .handlediv{display:block}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table{width:100%;position:relative;background:#fff;padding:3px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td{text-align:left;padding:6px 6px;vertical-align:top;border:0;line-height:26px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td label{text-align:left;display:block;line-height:21px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td input{float:left;min-width:200px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td input,#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td textarea{width:100%;margin:0;display:block;font-size:14px;padding:4px;color:#555}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td textarea{height:7.5em}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td select{width:100%}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td input.short{width:200px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td input.checkbox{width:auto;min-width:inherit;vertical-align:middle;display:inline;float:none}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td input.date-picker-field{width:50%;min-width:inherit;float:none;display:inline}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td input.hour,#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td input.minute{width:2em;min-width:inherit;float:none;display:inline}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td.attribute_name{width:200px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table .minus,#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table .plus{margin-top:6px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table .fl{float:left}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table .fr{float:right}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox:first-child h3{background:#eaf2fa;background-image:linear-gradient(bottom,#dae6f2 0,#eaf2fa 100%);background-image:-o-linear-gradient(bottom,#dae6f2 0,#eaf2fa 100%);background-image:-moz-linear-gradient(bottom,#dae6f2 0,#eaf2fa 100%);background-image:-webkit-linear-gradient(bottom,#dae6f2 0,#eaf2fa 100%);background-image:-ms-linear-gradient(bottom,#dae6f2 0,#eaf2fa 100%);background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#dae6f2),color-stop(1,#eaf2fa));border-color:#d3deea;color:#21759b}#download-monitor-file .dlm-metaboxes-wrapper .plus:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f132";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}#download-monitor-file .dlm-metaboxes-wrapper .minus:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f460";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}#download-monitor-file .dlm-metaboxes-wrapper .dlm_upload_file:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f317";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}#download-monitor-file .dlm-metaboxes-wrapper .dlm_browse_for_file:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f322";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}#download-monitor-information p{overflow:hidden}#download-monitor-information p label{width:100%;font-weight:700;box-sizing:border-box;line-height:28px;float:left}#download-monitor-information p label input{width:65%;padding:5px;font-size:11px;font-weight:400;background:#eaeaea;border:0;box-shadow:none;box-sizing:border-box;float:right}#download-monitor-options .inside{padding:0;margin:0}#download-monitor-options .form-field-checkbox label{display:inline;padding:0 0 4px}#download-monitor-options .form-field-checkbox input{display:inline-block;width:auto;vertical-align:middle}#download-monitor-options .form-field-checkbox .dlm-description{padding:4px 0 0 0;display:block}#download-monitor-options .access_permissions{margin:0!important;border-top:1px solid #fff;border-bottom:1px solid #dfdfdf;padding:7px 12px!important;overflow:hidden;zoom:1}#download-monitor-options .access_permissions h4{margin-bottom:.5em;margin:0 0 .5em}#download-monitor-options .access_permissions ul{background:#fff;border:1px solid #dfdfdf;height:110px;overflow:auto;padding:.5em .9em;margin:0}#download-monitor-options p{margin:0!important;border-top:1px solid #fff;border-bottom:1px solid #dfdfdf;padding:7px 12px!important;overflow:hidden;zoom:1}#insert-download{padding:20px 20px}#insert-download #drag-drop-area,#insert-download #insert-shortcode{margin:1em 0}#insert-download .error,#insert-download .updated{margin-left:0;margin-right:0}#insert-download h2{margin-top:0}#insert-download label{margin:0 0 .25em 0;display:block;font-size:1.1em}#insert-download span.description{display:block}#insert-download input.input{margin:0 0 .25em 0;display:block;width:100%;font-size:1.1em}#insert-download .add_link{float:right}#insert-download ul.page-numbers{overflow:hidden;zoom:1;margin:0 auto;padding:0;text-align:center}#insert-download ul.page-numbers li{display:inline-block;margin:0;list-style:none outside;line-height:1em}#insert-download ul.page-numbers li a,#insert-download ul.page-numbers li span{text-decoration:none;border:1px solid #ddd;-webkit-border-radius:4px;border-radius:4px;padding:8px;display:block}#insert-download ul.page-numbers li span{border-color:#eee}#insert-download legend{font-weight:700;display:block;margin:0 0 1em}#insert-download fieldset label{display:block;margin:0 0 .5em}.dlm-code-nginx-rules{display:block}.settings_panel .form-table td{padding-left:0}.settings_panel .dlm-lazy-select-loader{display:inline-block;vertical-align:middle;padding:0 0 0 3px}.settings_panel .dlm-lazy-select-loader img{display:inline-block;height:25px;width:25px;margin-top:1px}.dlm-reports h1 .dlm-reports-actions{float:right}.dlm-reports h1 .dlm-reports-actions .dlm-reports-header-date-selector,.dlm-reports h1 .dlm-reports-actions .dlm-reports-header-period,.dlm-reports h1 .dlm-reports-actions a.dlm-reports-header-chart-switcher{margin:0 5px;float:left}.dlm-reports h1 .dlm-reports-actions>:last-child{margin-right:0}.dlm-reports h1 .dlm-reports-actions .dlm-reports-header-date-selector{position:relative;font-size:14px;padding:0 .5em 0 1em;background:#fff;border:1px solid #ccc;border-radius:3px;user-select:none;cursor:pointer}.dlm-reports h1 .dlm-reports-actions .dlm-reports-header-date-selector .dlm-arrow:before{font-family:dashicons!important;content:"\f140";font-style:normal;font-weight:400;speak:none;display:inline-block;text-decoration:inherit;width:1em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;font-size:1.6em;vertical-align:middle;margin-top:-2px}.dlm-reports h1 .dlm-reports-actions .dlm-reports-header-date-selector .dlm_rdrs_overlay{display:block;width:466px;padding:10px;background:#fff;border:1px solid #ccc;position:absolute;top:30px;right:0;z-index:10;overflow:hidden}.dlm-reports h1 .dlm-reports-actions .dlm-reports-header-date-selector .dlm_rdrs_overlay .dlm_rdrs_date{font-size:70%;margin-right:5px;float:left;z-index:11}.dlm-reports h1 .dlm-reports-actions .dlm-reports-header-date-selector .dlm_rdrs_overlay .dlm_rdrs_date .ui-datepicker-inline{border:0}.dlm-reports h1 .dlm-reports-actions .dlm-reports-header-date-selector .dlm_rdrs_overlay .dlm_rdrs_date .ui-datepicker-inline .ui-state-highlight{background:#e6e6e6 url(../images/jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x;color:#555;border:1px solid #d3d3d3}.dlm-reports h1 .dlm-reports-actions .dlm-reports-header-date-selector .dlm_rdrs_overlay .dlm_rdrs_date .ui-datepicker-inline .ui-state-active{border:1px solid #aaa;background:#fff url(../images/jquery-ui/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x}.dlm-reports h1 .dlm-reports-actions .dlm-reports-header-date-selector .dlm_rdrs_overlay .dlm_rdrs_date .ui-datepicker-inline td,.dlm-reports h1 .dlm-reports-actions .dlm-reports-header-date-selector .dlm_rdrs_overlay .dlm_rdrs_date .ui-datepicker-inline th{padding:0;margin:0;line-height:2em}.dlm-reports h1 .dlm-reports-actions .dlm-reports-header-date-selector .dlm_rdrs_overlay .dlm_rdrs_date .ui-datepicker-inline td a,.dlm-reports h1 .dlm-reports-actions .dlm-reports-header-date-selector .dlm_rdrs_overlay .dlm_rdrs_date .ui-datepicker-inline th a{text-align:center!important}.dlm-reports h1 .dlm-reports-actions .dlm-reports-header-date-selector .dlm_rdrs_overlay .dlm_rdrs_actions{width:70px;padding-left:10px;text-align:center;float:left}.dlm-reports h1 .dlm-reports-actions a.dlm-reports-header-chart-switcher{display:block;margin-top:1px;padding-top:4px;color:#23282d;text-decoration:none}.dlm-reports h1 .dlm-reports-actions a.dlm-reports-header-chart-switcher:before{font-family:dashicons!important;font-style:normal;font-weight:400;speak:none;display:inline-block;text-decoration:inherit;width:1em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;font-size:1.4em}.dlm-reports h1 .dlm-reports-actions a.dlm-reports-header-chart-switcher.dlm-line:before{content:"\f238"}.dlm-reports h1 .dlm-reports-actions a.dlm-reports-header-chart-switcher.dlm-bar:before{content:"\f185"}.dlm-reports h1 .dlm-reports-actions .dlm-reports-header-period a{border-color:#ccc!important}.dlm-reports h1 .dlm-reports-actions .dlm-reports-header-period a:first-child{border-bottom-right-radius:0;border-top-right-radius:0;border-right:0}.dlm-reports h1 .dlm-reports-actions .dlm-reports-header-period a:last-child{border-bottom-left-radius:0;border-top-left-radius:0;border-left:0}.dlm-reports .dlm_reports_loader{position:absolute;width:32px;height:32px;top:50%;left:50%;margin:-16px 0 0 -16px}.dlm-reports .dlm-reports-block-chart{width:100%;height:300px;margin-top:20px;background:#fff;border:1px solid #e5e5e5;overflow:hidden}.dlm-reports .dlm-reports-block-chart .chart-container h6{display:none}.dlm-reports .dlm-reports-block{position:relative;box-sizing:border-box;width:100%;padding:20px 10px;margin-top:20px;background:#fff;border:1px solid #e5e5e5;overflow:hidden;float:left}.dlm-reports .dlm-reports-block.dlm-reports-block-half{width:49%;margin-right:1%}.dlm-reports .dlm-reports-block.dlm-reports-block-half-right{width:49%;margin-left:1%}.dlm-reports .dlm-reports-block .dlm-reports-placeholder-no-data{display:inline-block;width:100%;font-size:1.5em;color:#b4b9be;font-style:italic;text-align:center}.dlm-reports .dlm-reports-block ul{box-sizing:border-box;width:100%;padding:0;margin:0}.dlm-reports .dlm-reports-block ul li{display:inline-block;width:33%;padding:5px 0}.dlm-reports .dlm-reports-block ul li label,.dlm-reports .dlm-reports-block ul li span{display:block;width:100%;text-align:center}.dlm-reports .dlm-reports-block ul li span{font-size:2.5em;font-weight:700;padding:.5em 0 0}.dlm-reports .dlm-reports-block table{width:100%}.dlm-reports .dlm-reports-block table td,.dlm-reports .dlm-reports-block table th{text-align:center;padding:10px 0;border-bottom:1px solid #e5e5e5}.dlm-reports .dlm-reports-block table td:first-child,.dlm-reports .dlm-reports-block table th:first-child{text-align:left}.dlm-reports .dlm-reports-block table th{padding-bottom:20px}.dlm_extensions_wrap h1 a.dlm-reload-button{float:right}.dlm_extensions_wrap .dlm_extensions{padding:15px 0;overflow:hidden}.dlm_extensions_wrap .dlm_extensions div.dlm_extension{cursor:auto!important}.dlm_extensions_wrap .dlm_extensions div.dlm_extension a{color:#444;text-decoration:none}.dlm_extensions_wrap .dlm_extensions div.dlm_extension .dlm_extension_img_wrapper{width:100%;background:#419ccb;text-align:center}.dlm_extensions_wrap .dlm_extensions div.dlm_extension .dlm_extension_img_wrapper img{max-width:100%;margin:0 auto}.dlm_extensions_wrap .dlm_extensions div.dlm_extension h3{padding:0 20px}.dlm_extensions_wrap .dlm_extensions div.dlm_extension p.extension-desc{min-height:85px;padding:0 20px}.dlm_extensions_wrap .dlm_extensions div.dlm_extension .product_footer{padding:0 20px 15px}.dlm_extensions_wrap .dlm_extensions div.dlm_extension .product_footer .loop_price{font-weight:700}.dlm_extensions_wrap .dlm_extensions div.dlm_extension .product_footer .loop_price.sale{color:green}.dlm_extensions_wrap .dlm_extensions div.dlm_extension .product_footer .loop_price.sale strike{color:#444}.dlm_extensions_wrap .dlm_extensions div.dlm_extension .product_footer .loop_more{color:#459ac9;text-decoration:none;font-weight:700;float:right}.dlm_extensions_wrap .dlm_extensions div.dlm_extension .extension_license{padding:0 20px 20px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.dlm_extensions_wrap .dlm_extensions div.dlm_extension .extension_license div.dlm_license_error{padding:.5em;margin-bottom:15px;background:#ffffe0}.dlm_extensions_wrap .dlm_extensions div.dlm_extension .extension_license div.dlm_license_error a{color:#00f;text-decoration:underline}.dlm_extensions_wrap .dlm_extensions div.dlm_extension .extension_license p.license-status{padding:5px 0;margin:5px 0;background:red;font-weight:700;font-size:1.2em;color:#fff;text-align:center}.dlm_extensions_wrap .dlm_extensions div.dlm_extension .extension_license p.license-status.active{background:green}.dlm_extensions_wrap .dlm_extensions div.dlm_extension .extension_license input{width:100%;margin:7px 0;padding:7px}.dlm_extensions_wrap .dlm_extensions div.dlm_extension .extension_license a.button-primary{width:100%;margin:5px auto 0;color:#fff;text-align:center}#ui-datepicker-div{display:none}
assets/css/frontend.css CHANGED
@@ -1 +1 @@
1
- .download-box{width:250px;border:1px solid #ccc;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;text-align:center;position:relative;margin:1em auto;box-shadow:0 2px 4px rgba(0,0,0,.1),inset 0 1px 0 rgba(255,255,255,.4)}.download-box h1{margin:.5em 0!important}.download-box img.wp-post-image{margin:0;padding:0;display:block;width:100%;-moz-border-radius:0;-webkit-border-radius:0;-moz-border-top-left-radius:3px;-moz-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-radius:0;border-top-left-radius:3px;border-top-right-radius:3px;box-shadow:inset 0 1px 0 rgba(255,255,255,.4)}.download-box .download-box-content{padding:0 1em 1em}.download-box .download-count{-moz-border-radius:1em;-webkit-border-radius:1em;border-radius:1em;color:#777;text-shadow:0 1px 0 rgba(255,255,255,.5);background:#ddd;box-shadow:0 2px 4px rgba(0,0,0,.1),inset 0 1px 0 rgba(255,255,255,.4);position:absolute;top:0;right:0;padding:.6em;width:auto;min-width:1em;font-size:1em;text-align:center;vertical-align:middle;line-height:1em;border:1px solid #bbb;margin:-.5em -.5em 0 0}.download-button{text-align:center;text-decoration:none;padding:.75em 1em;color:#fff;display:block;font-size:1.2em;line-height:1.5em;background-color:#09c;background-image:-webkit-linear-gradient(#009fd4,#09c,#0086b2);background-image:-moz-linear-gradient(#009fd4,#09c,#0086b2);-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;text-shadow:0 -1px 0 rgba(0,0,0,.5);box-shadow:0 2px 4px rgba(0,0,0,.3),inset 0 1px 0 rgba(255,255,255,.4);border:1px solid #0086b2;cursor:pointer}.download-button:hover{color:#fff;background-color:#09c;background-image:-webkit-linear-gradient(#09c,#0086b2);background-image:-moz-linear-gradient(#09c,#0086b2)}.download-button small{font-size:.8em;opacity:.8;display:block}.filetype-icon{padding-left:19px;background-repeat:no-repeat;background-position:left;background-image:url(../images/filetypes/document.png)}.filetype-pdf{background-image:url(../images/filetypes/document-pdf.png)}.filetype-aif,.filetype-aifc,.filetype-aiff,.filetype-au,.filetype-kar,.filetype-m3u,.filetype-m4r,.filetype-mid,.filetype-midi,.filetype-mp2,.filetype-mp3,.filetype-mpga,.filetype-ra,.filetype-ram,.filetype-rm,.filetype-rpm,.filetype-snd,.filetype-wav,.filetype-wave{background-image:url(../images/filetypes/document-music.png)}.filetype-avi,.filetype-divx,.filetype-mov,.filetype-movie,.filetype-mp4,.filetype-mpe,.filetype-mpeg,.filetype-mpg,.filetype-mxu,.filetype-qt,.filetype-wmv{background-image:url(../images/filetypes/document-film.png)}.filetype-7z,.filetype-gz,.filetype-rar,.filetype-sit,.filetype-tar,.filetype-zip{background-image:url(../images/filetypes/document-zipper.png)}.filetype-csv,.filetype-tsv,.filetype-xls,.filetype-xlsx{background-image:url(../images/filetypes/document-excel.png)}.filetype-doc,.filetype-docx{background-image:url(../images/filetypes/document-word-text.png)}.filetype-ai{background-image:url(../images/filetypes/document-illustrator.png)}.filetype-swf{background-image:url(../images/filetypes/document-flash-movie.png)}.filetype-bmp,.filetype-djv,.filetype-eps,.filetype-gif,.filetype-ief,.filetype-jpe,.filetype-jpeg,.filetype-jpg,.filetype-pbm,.filetype-pgm,.filetype-png,.filetype-pnm,.filetype-ppm,.filetype-ps,.filetype-ras,.filetype-rgb,.filetype-tif,.filetype-tiff,.filetype-wbmp,.filetype-xbm,.filetype-xpm,.filetype-xwd{background-image:url(../images/filetypes/document-image.png)}.filetype-psd{background-image:url(../images/filetypes/document-photoshop.png)}.filetype-ppt,.filetype-pptx{background-image:url(../images/filetypes/document-powerpoint.png)}.filetype-as,.filetype-css,.filetype-htaccess,.filetype-htm,.filetype-html,.filetype-js,.filetype-php,.filetype-sql,.filetype-xml,.filetype-xsl{background-image:url(../images/filetypes/document-code.png)}.filetype-rtf,.filetype-rtx{background-image:url(../images/filetypes/document-text-image.png)}.filetype-txt{background-image:url(../images/filetypes/document-text.png)}#content nav.download-monitor-pagination,nav.download-monitor-pagination{text-align:center}#content nav.download-monitor-pagination ul,nav.download-monitor-pagination ul{display:inline-block;white-space:nowrap;padding:0;clear:both;border:1px solid #eee;border-right:0;margin:1px}#content nav.download-monitor-pagination ul li,nav.download-monitor-pagination ul li{border-right:1px solid #eee;padding:0;margin:0;float:left;display:inline;overflow:hidden}#content nav.download-monitor-pagination ul li a,#content nav.download-monitor-pagination ul li span,nav.download-monitor-pagination ul li a,nav.download-monitor-pagination ul li span{margin:0;text-decoration:none;line-height:1em;font-size:1em;font-weight:400;padding:.5em;min-width:1em;display:block}#content nav.download-monitor-pagination ul li a:focus,#content nav.download-monitor-pagination ul li a:hover,#content nav.download-monitor-pagination ul li span.current,nav.download-monitor-pagination ul li a:focus,nav.download-monitor-pagination ul li a:hover,nav.download-monitor-pagination ul li span.current{background:#eee;color:#888}.dlm_widget_downloads ul,.dlm_widget_downloads ul li{list-style:none}
1
+ .download-box{width:250px;border:1px solid #ccc;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;text-align:center;position:relative;margin:1em auto;box-shadow:0 2px 4px rgba(0,0,0,.1),inset 0 1px 0 rgba(255,255,255,.4)}.download-box h1{margin:.5em 0!important}.download-box img.wp-post-image{margin:0;padding:0;display:block;width:100%;-moz-border-radius:0;-webkit-border-radius:0;-moz-border-top-left-radius:3px;-moz-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-radius:0;border-top-left-radius:3px;border-top-right-radius:3px;box-shadow:inset 0 1px 0 rgba(255,255,255,.4)}.download-box .download-box-content{padding:0 1em 1em}.download-box .download-count{-moz-border-radius:1em;-webkit-border-radius:1em;border-radius:1em;color:#777;text-shadow:0 1px 0 rgba(255,255,255,.5);background:#ddd;box-shadow:0 2px 4px rgba(0,0,0,.1),inset 0 1px 0 rgba(255,255,255,.4);position:absolute;top:0;right:0;padding:.6em;width:auto;min-width:1em;font-size:1em;text-align:center;vertical-align:middle;line-height:1em;border:1px solid #bbb;margin:-.5em -.5em 0 0}.download-button{text-align:center;text-decoration:none;padding:.75em 1em;color:#fff;display:block;font-size:1.2em;line-height:1.5em;background-color:#09c;background-image:-webkit-linear-gradient(#009fd4,#09c,#0086b2);background-image:-moz-linear-gradient(#009fd4,#09c,#0086b2);-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;text-shadow:0 -1px 0 rgba(0,0,0,.5);box-shadow:0 2px 4px rgba(0,0,0,.3),inset 0 1px 0 rgba(255,255,255,.4);border:1px solid #0086b2;cursor:pointer}.download-button:hover{color:#fff;background-color:#09c;background-image:-webkit-linear-gradient(#09c,#0086b2);background-image:-moz-linear-gradient(#09c,#0086b2)}.download-button small{font-size:.8em;opacity:.8;display:block}.filetype-icon{padding-left:19px;background-repeat:no-repeat;background-position:left;background-image:url(../images/filetypes/document.png)}.filetype-pdf{background-image:url(../images/filetypes/document-pdf.png)}.filetype-aif,.filetype-aifc,.filetype-aiff,.filetype-au,.filetype-kar,.filetype-m3u,.filetype-m4r,.filetype-mid,.filetype-midi,.filetype-mp2,.filetype-mp3,.filetype-mpga,.filetype-ra,.filetype-ram,.filetype-rm,.filetype-rpm,.filetype-snd,.filetype-wav,.filetype-wave{background-image:url(../images/filetypes/document-music.png)}.filetype-avi,.filetype-divx,.filetype-mov,.filetype-movie,.filetype-mp4,.filetype-mpe,.filetype-mpeg,.filetype-mpg,.filetype-mxu,.filetype-qt,.filetype-wmv{background-image:url(../images/filetypes/document-film.png)}.filetype-7z,.filetype-gz,.filetype-rar,.filetype-sit,.filetype-tar,.filetype-zip{background-image:url(../images/filetypes/document-zipper.png)}.filetype-csv,.filetype-tsv,.filetype-xls,.filetype-xlsx{background-image:url(../images/filetypes/document-excel.png)}.filetype-doc,.filetype-docx{background-image:url(../images/filetypes/document-word-text.png)}.filetype-ai{background-image:url(../images/filetypes/document-illustrator.png)}.filetype-swf{background-image:url(../images/filetypes/document-flash-movie.png)}.filetype-bmp,.filetype-djv,.filetype-eps,.filetype-gif,.filetype-ief,.filetype-jpe,.filetype-jpeg,.filetype-jpg,.filetype-pbm,.filetype-pgm,.filetype-png,.filetype-pnm,.filetype-ppm,.filetype-ps,.filetype-ras,.filetype-rgb,.filetype-tif,.filetype-tiff,.filetype-wbmp,.filetype-xbm,.filetype-xpm,.filetype-xwd{background-image:url(../images/filetypes/document-image.png)}.filetype-psd{background-image:url(../images/filetypes/document-photoshop.png)}.filetype-ppt,.filetype-pptx{background-image:url(../images/filetypes/document-powerpoint.png)}.filetype-as,.filetype-css,.filetype-htaccess,.filetype-htm,.filetype-html,.filetype-js,.filetype-php,.filetype-sql,.filetype-xml,.filetype-xsl{background-image:url(../images/filetypes/document-code.png)}.filetype-rtf,.filetype-rtx{background-image:url(../images/filetypes/document-text-image.png)}.filetype-txt{background-image:url(../images/filetypes/document-text.png)}#content nav.download-monitor-pagination,nav.download-monitor-pagination{text-align:center}#content nav.download-monitor-pagination ul,nav.download-monitor-pagination ul{display:inline-block;white-space:nowrap;padding:0;clear:both;border:1px solid #eee;border-right:0;margin:1px}#content nav.download-monitor-pagination ul li,nav.download-monitor-pagination ul li{border-right:1px solid #eee;padding:0;margin:0;float:left;display:inline;overflow:hidden}#content nav.download-monitor-pagination ul li a,#content nav.download-monitor-pagination ul li span,nav.download-monitor-pagination ul li a,nav.download-monitor-pagination ul li span{margin:0;text-decoration:none;padding:0;line-height:1em;font-size:1em;font-weight:400;padding:.5em;min-width:1em;display:block}#content nav.download-monitor-pagination ul li a:focus,#content nav.download-monitor-pagination ul li a:hover,#content nav.download-monitor-pagination ul li span.current,nav.download-monitor-pagination ul li a:focus,nav.download-monitor-pagination ul li a:hover,nav.download-monitor-pagination ul li span.current{background:#eee;color:#888}.dlm_widget_downloads ul,.dlm_widget_downloads ul li{list-style:none}
assets/css/gb-editor.css ADDED
@@ -0,0 +1 @@
 
1
+ .dlmPreviewButton{border:2px dashed #419ccb;color:#fff;padding:1em;overflow:hidden}.dlmPreviewButton iframe{overflow:hidden;float:left}
assets/css/gb-editor.less ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ .dlmPreviewButton {
2
+ border: 2px dashed #419ccb;
3
+ color: #fff;
4
+ padding: 1em;
5
+ overflow: hidden;
6
+
7
+ iframe {
8
+ overflow: hidden;
9
+ float: left;
10
+ }
11
+ }
assets/css/preview.css ADDED
@@ -0,0 +1 @@
 
1
+ body,html{padding:0;margin:0;overflow:hidden!important}table,td,tr{padding:0!important;margin:0!important}p{padding:0!important;margin:0!important}.dlmPreviewContainer{overflow:hidden}
assets/css/preview.less ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ html,body {
2
+ padding: 0;
3
+ margin: 0;
4
+ overflow: hidden !important;
5
+ }
6
+
7
+ table,tr,td {
8
+ padding: 0 !important;
9
+ margin: 0 !important;
10
+ }
11
+
12
+ p {
13
+ padding: 0 !important;
14
+ margin: 0 !important;
15
+ }
16
+
17
+ .dlmPreviewContainer {
18
+ overflow: hidden;
19
+ }
assets/js/blockui.min.js CHANGED
@@ -1,14 +1 @@
1
- /*!
2
- * jQuery blockUI plugin
3
- * Version 2.61.0-2013.06.06
4
- * @requires jQuery v1.7 or later
5
- *
6
- * Examples at: http://malsup.com/jquery/block/
7
- * Copyright (c) 2007-2013 M. Alsup
8
- * Dual licensed under the MIT and GPL licenses:
9
- * http://www.opensource.org/licenses/mit-license.php
10
- * http://www.gnu.org/licenses/gpl.html
11
- *
12
- * Thanks to Amir-Hossein Sobhi for some excellent contributions!
13
- */
14
- !function(){"use strict";function a(a){function b(b,d){var f,p,q=b==window,r=d&&void 0!==d.message?d.message:void 0;if(d=a.extend({},a.blockUI.defaults,d||{}),!d.ignoreIfBlocked||!a(b).data("blockUI.isBlocked")){if(d.overlayCSS=a.extend({},a.blockUI.defaults.overlayCSS,d.overlayCSS||{}),f=a.extend({},a.blockUI.defaults.css,d.css||{}),d.onOverlayClick&&(d.overlayCSS.cursor="pointer"),p=a.extend({},a.blockUI.defaults.themedCSS,d.themedCSS||{}),r=void 0===r?d.message:r,q&&n&&c(window,{fadeOut:0}),r&&"string"!=typeof r&&(r.parentNode||r.jquery)){var s=r.jquery?r[0]:r,t={};a(b).data("blockUI.history",t),t.el=s,t.parent=s.parentNode,t.display=s.style.display,t.position=s.style.position,t.parent&&t.parent.removeChild(s)}a(b).data("blockUI.onUnblock",d.onUnblock);var u,v,w,x,y=d.baseZ;u=a(k||d.forceIframe?'<iframe class="blockUI" style="z-index:'+y+++';display:none;border:none;margin:0;padding:0;position:absolute;width:100%;height:100%;top:0;left:0" src="'+d.iframeSrc+'"></iframe>':'<div class="blockUI" style="display:none"></div>'),v=a(d.theme?'<div class="blockUI blockOverlay ui-widget-overlay" style="z-index:'+y+++';display:none"></div>':'<div class="blockUI blockOverlay" style="z-index:'+y+++';display:none;border:none;margin:0;padding:0;width:100%;height:100%;top:0;left:0"></div>'),d.theme&&q?(x='<div class="blockUI '+d.blockMsgClass+' blockPage ui-dialog ui-widget ui-corner-all" style="z-index:'+(y+10)+';display:none;position:fixed">',d.title&&(x+='<div class="ui-widget-header ui-dialog-titlebar ui-corner-all blockTitle">'+(d.title||"&nbsp;")+"</div>"),x+='<div class="ui-widget-content ui-dialog-content"></div>',x+="</div>"):d.theme?(x='<div class="blockUI '+d.blockMsgClass+' blockElement ui-dialog ui-widget ui-corner-all" style="z-index:'+(y+10)+';display:none;position:absolute">',d.title&&(x+='<div class="ui-widget-header ui-dialog-titlebar ui-corner-all blockTitle">'+(d.title||"&nbsp;")+"</div>"),x+='<div class="ui-widget-content ui-dialog-content"></div>',x+="</div>"):x=q?'<div class="blockUI '+d.blockMsgClass+' blockPage" style="z-index:'+(y+10)+';display:none;position:fixed"></div>':'<div class="blockUI '+d.blockMsgClass+' blockElement" style="z-index:'+(y+10)+';display:none;position:absolute"></div>',w=a(x),r&&(d.theme?(w.css(p),w.addClass("ui-widget-content")):w.css(f)),d.theme||v.css(d.overlayCSS),v.css("position",q?"fixed":"absolute"),(k||d.forceIframe)&&u.css("opacity",0);var z=[u,v,w],A=a(q?"body":b);a.each(z,function(){this.appendTo(A)}),d.theme&&d.draggable&&a.fn.draggable&&w.draggable({handle:".ui-dialog-titlebar",cancel:"li"});var B=m&&(!a.support.boxModel||a("object,embed",q?null:b).length>0);if(l||B){if(q&&d.allowBodyStretch&&a.support.boxModel&&a("html,body").css("height","100%"),(l||!a.support.boxModel)&&!q)var C=i(b,"borderTopWidth"),D=i(b,"borderLeftWidth"),E=C?"(0 - "+C+")":0,F=D?"(0 - "+D+")":0;a.each(z,function(a,b){var c=b[0].style;if(c.position="absolute",a<2)q?c.setExpression("height","Math.max(document.body.scrollHeight, document.body.offsetHeight) - (jQuery.support.boxModel?0:"+d.quirksmodeOffsetHack+') + "px"'):c.setExpression("height",'this.parentNode.offsetHeight + "px"'),q?c.setExpression("width",'jQuery.support.boxModel && document.documentElement.clientWidth || document.body.clientWidth + "px"'):c.setExpression("width",'this.parentNode.offsetWidth + "px"'),F&&c.setExpression("left",F),E&&c.setExpression("top",E);else if(d.centerY)q&&c.setExpression("top",'(document.documentElement.clientHeight || document.body.clientHeight) / 2 - (this.offsetHeight / 2) + (blah = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + "px"'),c.marginTop=0;else if(!d.centerY&&q){var e=d.css&&d.css.top?parseInt(d.css.top,10):0,f="((document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + "+e+') + "px"';c.setExpression("top",f)}})}if(r&&(d.theme?w.find(".ui-widget-content").append(r):w.append(r),(r.jquery||r.nodeType)&&a(r).show()),(k||d.forceIframe)&&d.showOverlay&&u.show(),d.fadeIn){var G=d.onBlock?d.onBlock:j,H=d.showOverlay&&!r?G:j,I=r?G:j;d.showOverlay&&v._fadeIn(d.fadeIn,H),r&&w._fadeIn(d.fadeIn,I)}else d.showOverlay&&v.show(),r&&w.show(),d.onBlock&&d.onBlock();if(e(1,b,d),q?(n=w[0],o=a(d.focusableElements,n),d.focusInput&&setTimeout(g,20)):h(w[0],d.centerX,d.centerY),d.timeout){var J=setTimeout(function(){q?a.unblockUI(d):a(b).unblock(d)},d.timeout);a(b).data("blockUI.timeout",J)}}}function c(b,c){var f,g=b==window,h=a(b),i=h.data("blockUI.history"),j=h.data("blockUI.timeout");j&&(clearTimeout(j),h.removeData("blockUI.timeout")),c=a.extend({},a.blockUI.defaults,c||{}),e(0,b,c),null===c.onUnblock&&(c.onUnblock=h.data("blockUI.onUnblock"),h.removeData("blockUI.onUnblock"));var k;k=g?a("body").children().filter(".blockUI").add("body > .blockUI"):h.find(">.blockUI"),c.cursorReset&&(k.length>1&&(k[1].style.cursor=c.cursorReset),k.length>2&&(k[2].style.cursor=c.cursorReset)),g&&(n=o=null),c.fadeOut?(f=k.length,k.fadeOut(c.fadeOut,function(){0==--f&&d(k,i,c,b)})):d(k,i,c,b)}function d(b,c,d,e){var f=a(e);b.each(function(a,b){this.parentNode&&this.parentNode.removeChild(this)}),c&&c.el&&(c.el.style.display=c.display,c.el.style.position=c.position,c.parent&&c.parent.appendChild(c.el),f.removeData("blockUI.history")),f.data("blockUI.static")&&f.css("position","static"),"function"==typeof d.onUnblock&&d.onUnblock(e,d);var g=a(document.body),h=g.width(),i=g[0].style.width;g.width(h-1).width(h),g[0].style.width=i}function e(b,c,d){var e=c==window,g=a(c);if((b||(!e||n)&&(e||g.data("blockUI.isBlocked")))&&(g.data("blockUI.isBlocked",b),e&&d.bindEvents&&(!b||d.showOverlay))){var h="mousedown mouseup keydown keypress keyup touchstart touchend touchmove";b?a(document).bind(h,d,f):a(document).unbind(h,f)}}function f(b){if(b.keyCode&&9==b.keyCode&&n&&b.data.constrainTabKey){var c=o,d=!b.shiftKey&&b.target===c[c.length-1],e=b.shiftKey&&b.target===c[0];if(d||e)return setTimeout(function(){g(e)},10),!1}var f=b.data,h=a(b.target);return h.hasClass("blockOverlay")&&f.onOverlayClick&&f.onOverlayClick(),h.parents("div."+f.blockMsgClass).length>0||0===h.parents().children().filter("div.blockUI").length}function g(a){if(o){var b=o[!0===a?o.length-1:0];b&&b.focus()}}function h(a,b,c){var d=a.parentNode,e=a.style,f=(d.offsetWidth-a.offsetWidth)/2-i(d,"borderLeftWidth"),g=(d.offsetHeight-a.offsetHeight)/2-i(d,"borderTopWidth");b&&(e.left=f>0?f+"px":"0"),c&&(e.top=g>0?g+"px":"0")}function i(b,c){return parseInt(a.css(b,c),10)||0}a.fn._fadeIn=a.fn.fadeIn;var j=a.noop||function(){},k=/MSIE/.test(navigator.userAgent),l=/MSIE 6.0/.test(navigator.userAgent)&&!/MSIE 8.0/.test(navigator.userAgent),m=(document.documentMode,a.isFunction(document.createElement("div").style.setExpression));a.blockUI=function(a){b(window,a)},a.unblockUI=function(a){c(window,a)},a.growlUI=function(b,c,d,e){var f=a('<div class="growlUI"></div>');b&&f.append("<h1>"+b+"</h1>"),c&&f.append("<h2>"+c+"</h2>"),void 0===d&&(d=3e3);var g=function(b){b=b||{},a.blockUI({message:f,fadeIn:void 0!==b.fadeIn?b.fadeIn:700,fadeOut:void 0!==b.fadeOut?b.fadeOut:1e3,timeout:void 0!==b.timeout?b.timeout:d,centerY:!1,showOverlay:!1,onUnblock:e,css:a.blockUI.defaults.growlCSS})};g();f.css("opacity");f.mouseover(function(){g({fadeIn:0,timeout:3e4});var b=a(".blockMsg");b.stop(),b.fadeTo(300,1)}).mouseout(function(){a(".blockMsg").fadeOut(1e3)})},a.fn.block=function(c){if(this[0]===window)return a.blockUI(c),this;var d=a.extend({},a.blockUI.defaults,c||{});return this.each(function(){var b=a(this);d.ignoreIfBlocked&&b.data("blockUI.isBlocked")||b.unblock({fadeOut:0})}),this.each(function(){"static"==a.css(this,"position")&&(this.style.position="relative",a(this).data("blockUI.static",!0)),this.style.zoom=1,b(this,c)})},a.fn.unblock=function(b){return this[0]===window?(a.unblockUI(b),this):this.each(function(){c(this,b)})},a.blockUI.version=2.6,a.blockUI.defaults={message:"<h1>Please wait...</h1>",title:null,draggable:!0,theme:!1,css:{padding:0,margin:0,width:"30%",top:"40%",left:"35%",textAlign:"center",color:"#000",border:"3px solid #aaa",backgroundColor:"#fff",cursor:"wait"},themedCSS:{width:"30%",top:"40%",left:"35%"},overlayCSS:{backgroundColor:"#000",opacity:.6,cursor:"wait"},cursorReset:"default",growlCSS:{width:"350px",top:"10px",left:"",right:"10px",border:"none",padding:"5px",opacity:.6,cursor:"default",color:"#fff",backgroundColor:"#000","-webkit-border-radius":"10px","-moz-border-radius":"10px","border-radius":"10px"},iframeSrc:/^https/i.test(window.location.href||"")?"javascript:false":"about:blank",forceIframe:!1,baseZ:1e3,centerX:!0,centerY:!0,allowBodyStretch:!0,bindEvents:!0,constrainTabKey:!0,fadeIn:200,fadeOut:400,timeout:0,showOverlay:!0,focusInput:!0,focusableElements:":input:enabled:visible",onBlock:null,onUnblock:null,onOverlayClick:null,quirksmodeOffsetHack:4,blockMsgClass:"blockMsg",ignoreIfBlocked:!1};var n=null,o=[]}"function"==typeof define&&define.amd&&define.amd.jQuery?define(["jquery"],a):a(jQuery)}();
1
+ !function(){"use strict";function e(x){x.fn._fadeIn=x.fn.fadeIn;var C=x.noop||function(){},S=/MSIE/.test(navigator.userAgent),O=/MSIE 6.0/.test(navigator.userAgent)&&!/MSIE 8.0/.test(navigator.userAgent),E=(document.documentMode,x.isFunction(document.createElement("div").style.setExpression));x.blockUI=function(e){t(window,e)},x.unblockUI=function(e){B(window,e)},x.growlUI=function(e,o,t,i){var n=x('<div class="growlUI"></div>');e&&n.append("<h1>"+e+"</h1>"),o&&n.append("<h2>"+o+"</h2>"),void 0===t&&(t=3e3);var s=function(e){e=e||{},x.blockUI({message:n,fadeIn:void 0!==e.fadeIn?e.fadeIn:700,fadeOut:void 0!==e.fadeOut?e.fadeOut:1e3,timeout:void 0!==e.timeout?e.timeout:t,centerY:!1,showOverlay:!1,onUnblock:i,css:x.blockUI.defaults.growlCSS})};s();n.css("opacity");n.mouseover(function(){s({fadeIn:0,timeout:3e4});var e=x(".blockMsg");e.stop(),e.fadeTo(300,1)}).mouseout(function(){x(".blockMsg").fadeOut(1e3)})},x.fn.block=function(e){if(this[0]===window)return x.blockUI(e),this;var o=x.extend({},x.blockUI.defaults,e||{});return this.each(function(){var e=x(this);o.ignoreIfBlocked&&e.data("blockUI.isBlocked")||e.unblock({fadeOut:0})}),this.each(function(){"static"==x.css(this,"position")&&(this.style.position="relative",x(this).data("blockUI.static",!0)),this.style.zoom=1,t(this,e)})},x.fn.unblock=function(e){return this[0]===window?(x.unblockUI(e),this):this.each(function(){B(this,e)})},x.blockUI.version=2.6,x.blockUI.defaults={message:"<h1>Please wait...</h1>",title:null,draggable:!0,theme:!1,css:{padding:0,margin:0,width:"30%",top:"40%",left:"35%",textAlign:"center",color:"#000",border:"3px solid #aaa",backgroundColor:"#fff",cursor:"wait"},themedCSS:{width:"30%",top:"40%",left:"35%"},overlayCSS:{backgroundColor:"#000",opacity:.6,cursor:"wait"},cursorReset:"default",growlCSS:{width:"350px",top:"10px",left:"",right:"10px",border:"none",padding:"5px",opacity:.6,cursor:"default",color:"#fff",backgroundColor:"#000","-webkit-border-radius":"10px","-moz-border-radius":"10px","border-radius":"10px"},iframeSrc:/^https/i.test(window.location.href||"")?"javascript:false":"about:blank",forceIframe:!1,baseZ:1e3,centerX:!0,centerY:!0,allowBodyStretch:!0,bindEvents:!0,constrainTabKey:!0,fadeIn:200,fadeOut:400,timeout:0,showOverlay:!0,focusInput:!0,focusableElements:":input:enabled:visible",onBlock:null,onUnblock:null,onOverlayClick:null,quirksmodeOffsetHack:4,blockMsgClass:"blockMsg",ignoreIfBlocked:!1};var T=null,M=[];function t(e,n){var o,t,s=e==window,i=n&&void 0!==n.message?n.message:void 0;if(!(n=x.extend({},x.blockUI.defaults,n||{})).ignoreIfBlocked||!x(e).data("blockUI.isBlocked")){if(n.overlayCSS=x.extend({},x.blockUI.defaults.overlayCSS,n.overlayCSS||{}),o=x.extend({},x.blockUI.defaults.css,n.css||{}),n.onOverlayClick&&(n.overlayCSS.cursor="pointer"),t=x.extend({},x.blockUI.defaults.themedCSS,n.themedCSS||{}),i=void 0===i?n.message:i,s&&T&&B(window,{fadeOut:0}),i&&"string"!=typeof i&&(i.parentNode||i.jquery)){var l=i.jquery?i[0]:i,a={};x(e).data("blockUI.history",a),a.el=l,a.parent=l.parentNode,a.display=l.style.display,a.position=l.style.position,a.parent&&a.parent.removeChild(l)}x(e).data("blockUI.onUnblock",n.onUnblock);var d,c,r,u,f=n.baseZ;d=S||n.forceIframe?x('<iframe class="blockUI" style="z-index:'+f+++';display:none;border:none;margin:0;padding:0;position:absolute;width:100%;height:100%;top:0;left:0" src="'+n.iframeSrc+'"></iframe>'):x('<div class="blockUI" style="display:none"></div>'),c=n.theme?x('<div class="blockUI blockOverlay ui-widget-overlay" style="z-index:'+f+++';display:none"></div>'):x('<div class="blockUI blockOverlay" style="z-index:'+f+++';display:none;border:none;margin:0;padding:0;width:100%;height:100%;top:0;left:0"></div>'),n.theme&&s?(u='<div class="blockUI '+n.blockMsgClass+' blockPage ui-dialog ui-widget ui-corner-all" style="z-index:'+(f+10)+';display:none;position:fixed">',n.title&&(u+='<div class="ui-widget-header ui-dialog-titlebar ui-corner-all blockTitle">'+(n.title||"&nbsp;")+"</div>"),u+='<div class="ui-widget-content ui-dialog-content"></div>',u+="</div>"):n.theme?(u='<div class="blockUI '+n.blockMsgClass+' blockElement ui-dialog ui-widget ui-corner-all" style="z-index:'+(f+10)+';display:none;position:absolute">',n.title&&(u+='<div class="ui-widget-header ui-dialog-titlebar ui-corner-all blockTitle">'+(n.title||"&nbsp;")+"</div>"),u+='<div class="ui-widget-content ui-dialog-content"></div>',u+="</div>"):u=s?'<div class="blockUI '+n.blockMsgClass+' blockPage" style="z-index:'+(f+10)+';display:none;position:fixed"></div>':'<div class="blockUI '+n.blockMsgClass+' blockElement" style="z-index:'+(f+10)+';display:none;position:absolute"></div>',r=x(u),i&&(n.theme?(r.css(t),r.addClass("ui-widget-content")):r.css(o)),n.theme||c.css(n.overlayCSS),c.css("position",s?"fixed":"absolute"),(S||n.forceIframe)&&d.css("opacity",0);var b=[d,c,r],p=x(s?"body":e);x.each(b,function(){this.appendTo(p)}),n.theme&&n.draggable&&x.fn.draggable&&r.draggable({handle:".ui-dialog-titlebar",cancel:"li"});var h=E&&(!x.support.boxModel||0<x("object,embed",s?null:e).length);if(O||h){if(s&&n.allowBodyStretch&&x.support.boxModel&&x("html,body").css("height","100%"),(O||!x.support.boxModel)&&!s)var k=z(e,"borderTopWidth"),v=z(e,"borderLeftWidth"),m=k?"(0 - "+k+")":0,y=v?"(0 - "+v+")":0;x.each(b,function(e,o){var t=o[0].style;if(t.position="absolute",e<2)s?t.setExpression("height","Math.max(document.body.scrollHeight, document.body.offsetHeight) - (jQuery.support.boxModel?0:"+n.quirksmodeOffsetHack+') + "px"'):t.setExpression("height",'this.parentNode.offsetHeight + "px"'),s?t.setExpression("width",'jQuery.support.boxModel && document.documentElement.clientWidth || document.body.clientWidth + "px"'):t.setExpression("width",'this.parentNode.offsetWidth + "px"'),y&&t.setExpression("left",y),m&&t.setExpression("top",m);else if(n.centerY)s&&t.setExpression("top",'(document.documentElement.clientHeight || document.body.clientHeight) / 2 - (this.offsetHeight / 2) + (blah = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + "px"'),t.marginTop=0;else if(!n.centerY&&s){var i="((document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + "+(n.css&&n.css.top?parseInt(n.css.top,10):0)+') + "px"';t.setExpression("top",i)}})}if(i&&(n.theme?r.find(".ui-widget-content").append(i):r.append(i),(i.jquery||i.nodeType)&&x(i).show()),(S||n.forceIframe)&&n.showOverlay&&d.show(),n.fadeIn){var g=n.onBlock?n.onBlock:C,I=n.showOverlay&&!i?g:C,w=i?g:C;n.showOverlay&&c._fadeIn(n.fadeIn,I),i&&r._fadeIn(n.fadeIn,w)}else n.showOverlay&&c.show(),i&&r.show(),n.onBlock&&n.onBlock();if(j(1,e,n),s?(T=r[0],M=x(n.focusableElements,T),n.focusInput&&setTimeout(H,20)):function(e,o,t){var i=e.parentNode,n=e.style,s=(i.offsetWidth-e.offsetWidth)/2-z(i,"borderLeftWidth"),l=(i.offsetHeight-e.offsetHeight)/2-z(i,"borderTopWidth");o&&(n.left=0<s?s+"px":"0");t&&(n.top=0<l?l+"px":"0")}(r[0],n.centerX,n.centerY),n.timeout){var U=setTimeout(function(){s?x.unblockUI(n):x(e).unblock(n)},n.timeout);x(e).data("blockUI.timeout",U)}}}function B(e,o){var t,i,n=e==window,s=x(e),l=s.data("blockUI.history"),a=s.data("blockUI.timeout");a&&(clearTimeout(a),s.removeData("blockUI.timeout")),o=x.extend({},x.blockUI.defaults,o||{}),j(0,e,o),null===o.onUnblock&&(o.onUnblock=s.data("blockUI.onUnblock"),s.removeData("blockUI.onUnblock")),i=n?x("body").children().filter(".blockUI").add("body > .blockUI"):s.find(">.blockUI"),o.cursorReset&&(1<i.length&&(i[1].style.cursor=o.cursorReset),2<i.length&&(i[2].style.cursor=o.cursorReset)),n&&(T=M=null),o.fadeOut?(t=i.length,i.fadeOut(o.fadeOut,function(){0==--t&&d(i,l,o,e)})):d(i,l,o,e)}function d(e,o,t,i){var n=x(i);e.each(function(e,o){this.parentNode&&this.parentNode.removeChild(this)}),o&&o.el&&(o.el.style.display=o.display,o.el.style.position=o.position,o.parent&&o.parent.appendChild(o.el),n.removeData("blockUI.history")),n.data("blockUI.static")&&n.css("position","static"),"function"==typeof t.onUnblock&&t.onUnblock(i,t);var s=x(document.body),l=s.width(),a=s[0].style.width;s.width(l-1).width(l),s[0].style.width=a}function j(e,o,t){var i=o==window,n=x(o);if((e||(!i||T)&&(i||n.data("blockUI.isBlocked")))&&(n.data("blockUI.isBlocked",e),i&&t.bindEvents&&(!e||t.showOverlay))){var s="mousedown mouseup keydown keypress keyup touchstart touchend touchmove";e?x(document).bind(s,t,l):x(document).unbind(s,l)}}function l(e){if(e.keyCode&&9==e.keyCode&&T&&e.data.constrainTabKey){var o=M,t=!e.shiftKey&&e.target===o[o.length-1],i=e.shiftKey&&e.target===o[0];if(t||i)return setTimeout(function(){H(i)},10),!1}var n=e.data,s=x(e.target);return s.hasClass("blockOverlay")&&n.onOverlayClick&&n.onOverlayClick(),0<s.parents("div."+n.blockMsgClass).length||0===s.parents().children().filter("div.blockUI").length}function H(e){if(M){var o=M[!0===e?M.length-1:0];o&&o.focus()}}function z(e,o){return parseInt(x.css(e,o),10)||0}}"function"==typeof define&&define.amd&&define.amd.jQuery?define(["jquery"],e):e(jQuery)}();
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/js/edit-download.min.js CHANGED
@@ -1 +1 @@
1
- jQuery(function(a){function b(){jQuery(".downloadable_files .downloadable_file").each(function(a,b){jQuery(".file_menu_order",b).val(parseInt(jQuery(b).index(".downloadable_files .downloadable_file")))})}jQuery(".expand_all").click(function(){return jQuery(this).closest(".dlm-metaboxes-wrapper").find(".dlm-metabox table").show(),!1}),jQuery(".close_all").click(function(){return jQuery(this).closest(".dlm-metaboxes-wrapper").find(".dlm-metabox table").hide(),!1}),jQuery(".dlm-metaboxes-wrapper").on("click",".dlm-metabox h3",function(a){jQuery(a.target).filter(":input, option").length||jQuery(this).next(".dlm-metabox-content").toggle()}),jQuery(".dlm-metabox.closed").each(function(){jQuery(this).find(".dlm-metabox-content").hide()}),jQuery(".date-picker-field").datepicker({dateFormat:"yy-mm-dd",numberOfMonths:1,showButtonPanel:!0}),jQuery(".downloadable_files").sortable({items:".downloadable_file",cursor:"move",axis:"y",handle:"h3",scrollSensitivity:40,forcePlaceholderSize:!0,helper:"clone",opacity:.65,placeholder:"dlm-metabox-sortable-placeholder",start:function(a,b){b.item.css("background-color","#f6f6f6")},stop:function(a,c){c.item.removeAttr("style"),b()}}),jQuery(".download_monitor_files").on("click","a.add_file",function(){jQuery(".download_monitor_files").block({message:null,overlayCSS:{background:"#fff url("+a("#dlm-plugin-url").val()+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}});var c=jQuery(".downloadable_files .downloadable_file").size(),d={action:"download_monitor_add_file",post_id:a("#dlm-post-id").val(),size:c,security:a("#dlm-ajax-nonce-add-file").val()};return jQuery.post(ajaxurl,d,function(a){jQuery(".downloadable_files").prepend(a),b(),jQuery(".download_monitor_files").unblock(),jQuery(".date-picker-field").datepicker({dateFormat:"yy-mm-dd",numberOfMonths:1,showButtonPanel:!0})}),!1}),jQuery(".download_monitor_files").on("click","button.remove_file",function(b){if(b.preventDefault(),confirm(dlm_ed_strings.confirm_delete)){var c=jQuery(this).closest(".downloadable_file"),d=c.attr("data-file");if(d>0){jQuery(c).block({message:null,overlayCSS:{background:"#fff url("+a("#dlm-plugin-url").val()+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}});var e={action:"download_monitor_remove_file",file_id:d,download_id:a("#dlm-post-id").val(),security:a("#dlm-ajax-nonce-remove-file").val()};jQuery.post(ajaxurl,e,function(a){jQuery(c).fadeOut("300").remove()})}else jQuery(c).fadeOut("300").remove()}return!1}),jQuery(".download_monitor_files").on("click","a.dlm_browse_for_file",function(b){return downloadable_files_field=jQuery(this).closest(".downloadable_file").find('textarea[name^="downloadable_file_urls"]'),window.send_to_editor=window.send_to_browse_file_url,tb_show(dlm_ed_strings.browse_file,"media-upload.php?post_id="+a("#dlm-post-id").val()+"&amp;type=downloadable_file_browser&amp;from=wpdlm01&amp;TB_iframe=true"),!1}),window.send_to_browse_file_url=function(a){a&&(old=jQuery.trim(jQuery(downloadable_files_field).val()),old&&(old+="\n"),jQuery(downloadable_files_field).val(old+a)),tb_remove(),window.send_to_editor=window.send_to_editor_default};var c;jQuery(document).on("click",".dlm_upload_file",function(b){var d=a(this),e=d.parent().parent().find(".downloadable_file_urls"),f=e.val();b.preventDefault(),c&&c.close();var g=[new wp.media.controller.Library({library:wp.media.query(),multiple:!0,title:d.data("choose"),priority:20,filterable:"uploaded"})];c=wp.media.frames.downloadable_file=wp.media({title:d.data("choose"),library:{type:""},button:{text:d.data("update")},multiple:!0,states:g}),c.on("select",function(){c.state().get("selection").map(function(a){a=a.toJSON(),a.url&&(f=f?f+"\n"+a.url:a.url)}),e.val(f)}),c.on("ready",function(){c.uploader.options.uploader.params={type:"dlm_download"}}),c.open()})});
1
+ jQuery(function(d){function l(){jQuery(".downloadable_files .downloadable_file").each(function(e,o){jQuery(".file_menu_order",o).val(parseInt(jQuery(o).index(".downloadable_files .downloadable_file")))})}var r;jQuery(".expand_all").click(function(){return jQuery(this).closest(".dlm-metaboxes-wrapper").find(".dlm-metabox table").show(),!1}),jQuery(".close_all").click(function(){return jQuery(this).closest(".dlm-metaboxes-wrapper").find(".dlm-metabox table").hide(),!1}),jQuery(".dlm-metaboxes-wrapper").on("click",".dlm-metabox h3",function(e){jQuery(e.target).filter(":input, option").length||jQuery(this).next(".dlm-metabox-content").toggle()}),jQuery(".dlm-metabox.closed").each(function(){jQuery(this).find(".dlm-metabox-content").hide()}),jQuery(".date-picker-field").datepicker({dateFormat:"yy-mm-dd",numberOfMonths:1,showButtonPanel:!0}),jQuery(".downloadable_files").sortable({items:".downloadable_file",cursor:"move",axis:"y",handle:"h3",scrollSensitivity:40,forcePlaceholderSize:!0,helper:"clone",opacity:.65,placeholder:"dlm-metabox-sortable-placeholder",start:function(e,o){o.item.css("background-color","#f6f6f6")},stop:function(e,o){o.item.removeAttr("style"),l()}}),jQuery(".download_monitor_files").on("click","a.add_file",function(){jQuery(".download_monitor_files").block({message:null,overlayCSS:{background:"#fff url("+d("#dlm-plugin-url").val()+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}});var e=jQuery(".downloadable_files .downloadable_file").size(),o={action:"download_monitor_add_file",post_id:d("#dlm-post-id").val(),size:e,security:d("#dlm-ajax-nonce-add-file").val()};return jQuery.post(ajaxurl,o,function(e){jQuery(".downloadable_files").prepend(e),l(),jQuery(".download_monitor_files").unblock(),jQuery(".date-picker-field").datepicker({dateFormat:"yy-mm-dd",numberOfMonths:1,showButtonPanel:!0})}),!1}),jQuery(".download_monitor_files").on("click","button.remove_file",function(e){if(e.preventDefault(),confirm(dlm_ed_strings.confirm_delete)){var o=jQuery(this).closest(".downloadable_file"),l=o.attr("data-file");if(0<l){jQuery(o).block({message:null,overlayCSS:{background:"#fff url("+d("#dlm-plugin-url").val()+"/assets/images/ajax-loader.gif) no-repeat center",opacity:.6}});var a={action:"download_monitor_remove_file",file_id:l,download_id:d("#dlm-post-id").val(),security:d("#dlm-ajax-nonce-remove-file").val()};jQuery.post(ajaxurl,a,function(e){jQuery(o).fadeOut("300").remove()})}else jQuery(o).fadeOut("300").remove()}return!1}),jQuery(".download_monitor_files").on("click","a.dlm_browse_for_file",function(e){return downloadable_files_field=jQuery(this).closest(".downloadable_file").find('textarea[name^="downloadable_file_urls"]'),window.send_to_editor=window.send_to_browse_file_url,tb_show(dlm_ed_strings.browse_file,"media-upload.php?post_id="+d("#dlm-post-id").val()+"&amp;type=downloadable_file_browser&amp;from=wpdlm01&amp;TB_iframe=true"),!1}),window.send_to_browse_file_url=function(e){e&&(old=jQuery.trim(jQuery(downloadable_files_field).val()),old&&(old+="\n"),jQuery(downloadable_files_field).val(old+e)),tb_remove(),window.send_to_editor=window.send_to_editor_default},jQuery(document).on("click",".dlm_upload_file",function(e){var o=d(this),l=o.parent().parent().find(".downloadable_file_urls"),a=l.val();e.preventDefault(),r&&r.close();var t=[new wp.media.controller.Library({library:wp.media.query(),multiple:!0,title:o.data("choose"),priority:20,filterable:"uploaded"})];(r=wp.media.frames.downloadable_file=wp.media({title:o.data("choose"),library:{type:""},button:{text:o.data("update")},multiple:!0,states:t})).on("select",function(){r.state().get("selection").map(function(e){(e=e.toJSON()).url&&(a=a?a+"\n"+e.url:e.url)}),l.val(a)}),r.on("ready",function(){r.uploader.options.uploader.params={type:"dlm_download"}}),r.open()})});
assets/js/extensions.min.js CHANGED
@@ -1 +1 @@
1
- jQuery(function(a){a.each(a(".extension_license a"),function(b,c){a(c).click(function(){var b=a(c).closest(".extension_license"),d="inactive"==a(b).find("#status").val()?"activate":"deactivate";a(b).find(".dlm_license_error").remove(),a.post(ajaxurl,{action:"dlm_extension",nonce:a("#dlm-ajax-nonce").val(),product_id:a(b).find("#product_id").val(),key:a(b).find("#key").val(),email:a(b).find("#email").val(),extension_action:d},function(c){"failed"==c.result?a(b).prepend(a("<div>").addClass("dlm_license_error").html(c.message)):"activate"==d?(a(b).find(".license-status").addClass("active").html("ACTIVE"),a(b).find(".button").html("Deactivate"),a(b).find("#status").val("active"),a(b).find("#key").attr("disabled",!0),a(b).find("#email").attr("disabled",!0)):(a(b).find(".license-status").removeClass("active").html("INACTIVE"),a(b).find(".button").html("Activate"),a(b).find("#status").val("inactive"),a(b).find("#key").attr("disabled",!1),a(b).find("#email").attr("disabled",!1))})})})});
1
+ jQuery(function(n){n.each(n(".extension_license a"),function(e,a){n(a).click(function(){var t=n(a).closest(".extension_license"),i="inactive"==n(t).find("#status").val()?"activate":"deactivate";n(t).find(".dlm_license_error").remove(),n.post(ajaxurl,{action:"dlm_extension",nonce:n("#dlm-ajax-nonce").val(),product_id:n(t).find("#product_id").val(),key:n(t).find("#key").val(),email:n(t).find("#email").val(),extension_action:i},function(e){"failed"==e.result?n(t).prepend(n("<div>").addClass("dlm_license_error").html(e.message)):"activate"==i?(n(t).find(".license-status").addClass("active").html("ACTIVE"),n(t).find(".button").html("Deactivate"),n(t).find("#status").val("active"),n(t).find("#key").attr("disabled",!0),n(t).find("#email").attr("disabled",!0)):(n(t).find(".license-status").removeClass("active").html("INACTIVE"),n(t).find(".button").html("Activate"),n(t).find("#status").val("inactive"),n(t).find("#key").attr("disabled",!1),n(t).find("#email").attr("disabled",!1))})})})});
assets/js/insert-download.min.js CHANGED
@@ -1 +1 @@
1
- jQuery(function(a){jQuery("body").on("click","a.dlm_insert_download",function(){return tb_show(dlm_id_strings.insert_download,"media-upload.php?type=add_download&amp;from=wpdlm01&amp;TB_iframe=true&amp;height=200"),!1})});
1
+ jQuery(function(d){jQuery("body").on("click","a.dlm_insert_download",function(){return tb_show(dlm_id_strings.insert_download,"media-upload.php?type=add_download&amp;from=wpdlm01&amp;TB_iframe=true&amp;height=200"),!1})});
assets/js/notices.min.js CHANGED
@@ -1 +1 @@
1
- jQuery(function(a){a(".dlm-notice.is-dismissible").on("click",".notice-dismiss",function(b){var c=a(this).closest(".dlm-notice"),d=c.attr("id"),e=c.attr("data-nonce");a.post(ajaxurl,{action:"dlm_dismiss_notice",nonce:e,notice:d},function(a){})})});
1
+ jQuery(function(o){o(".dlm-notice.is-dismissible").on("click",".notice-dismiss",function(i){var n=o(this).closest(".dlm-notice"),t=n.attr("id"),c=n.attr("data-nonce");o.post(ajaxurl,{action:"dlm_dismiss_notice",nonce:c,notice:t},function(i){})})});
assets/js/overview-download.min.js CHANGED
@@ -1 +1 @@
1
- !function(a){var b=inlineEditPost.edit;inlineEditPost.edit=function(c){b.apply(this,arguments);var d=0;if("object"==typeof c&&(d=parseInt(this.getId(c))),d>0){var e=a("#edit-"+d),f=a("#post-"+d),g="Yes"==a(".column-featured",f).text(),h="Yes"==a(".column-members_only",f).text(),i="Yes"==a(".column-redirect_only",f).text();a(':input[name="_featured"]',e).prop("checked",g),a(':input[name="_members_only"]',e).prop("checked",h),a(':input[name="_redirect_only"]',e).prop("checked",i)}}}(jQuery);
1
+ !function(p){var d=inlineEditPost.edit;inlineEditPost.edit=function(e){d.apply(this,arguments);var t=0;if("object"==typeof e&&(t=parseInt(this.getId(e))),0<t){var n=p("#edit-"+t),i=p("#post-"+t),o="Yes"==p(".column-featured",i).text(),r="Yes"==p(".column-members_only",i).text(),c="Yes"==p(".column-redirect_only",i).text();p(':input[name="_featured"]',n).prop("checked",o),p(':input[name="_members_only"]',n).prop("checked",r),p(':input[name="_redirect_only"]',n).prop("checked",c)}}}(jQuery);
assets/js/reports/charts-date-range-selector.min.js CHANGED
@@ -1 +1 @@
1
- jQuery.fn.extend({dlm_reports_date_range:function(a,b,c){return new DLM_Reports_Date_Range_Selector(this,a,b,c),this}});var DLM_Reports_Date_Range_Selector=function(a,b,c,d){this.container=a,this.startDate=new Date(b),this.endDate=new Date(c),this.url=d,this.el=null,this.opened=!1,this.startDateInput=null,this.endDateInput=null,this.setup=function(){var a=this;this.container.click(function(){return a.toggleDisplay(),!1})},this.setup()};DLM_Reports_Date_Range_Selector.prototype.toggleDisplay=function(){this.opened?this.hide():this.display()},DLM_Reports_Date_Range_Selector.prototype.display=function(){this.opened||(this.opened=!0,this.el=this.createElement(),this.container.append(this.el))},DLM_Reports_Date_Range_Selector.prototype.hide=function(){this.opened=!1,this.el.remove()},DLM_Reports_Date_Range_Selector.prototype.apply=function(){var a=new Date(this.startDateInput.val()),b=new Date(this.endDateInput.val()),c=a.getFullYear()+"-"+(a.getMonth()+1)+"-"+a.getDate(),d=b.getFullYear()+"-"+(b.getMonth()+1)+"-"+b.getDate();this.hide(),window.location.replace(this.url+"&date_from="+c+"&date_to="+d)},DLM_Reports_Date_Range_Selector.prototype.createElement=function(){var a=this,b=jQuery("<div>").addClass("dlm_rdrs_overlay"),c=jQuery("<div>").addClass("dlm_rdrs_date").attr("id","dlm_rdrs_date_start"),d=jQuery("<div>").addClass("dlm_rdrs_date").attr("id","dlm_rdrs_date_end");this.startDateInput=jQuery("<input>").attr("type","hidden"),this.endDateInput=jQuery("<input>").attr("type","hidden");var e=jQuery("<div>").addClass("dlm_rdrs_actions"),f=jQuery("<a>").addClass("button").html("Apply").click(function(){return a.apply(),!1});return e.append(f),b.append(c).append(d).append(e).append(this.startDateInput).append(this.endDateInput),c.datepicker({inline:!0,altField:this.startDateInput,dateFormat:"yy-m-dd",defaultDate:this.startDate}),d.datepicker({inline:!0,altField:this.endDateInput,dateFormat:"yy-m-dd",defaultDate:this.endDate}),b.click(function(){return!1}),b};
1
+ jQuery.fn.extend({dlm_reports_date_range:function(t,e,a){return new DLM_Reports_Date_Range_Selector(this,t,e,a),this}});var DLM_Reports_Date_Range_Selector=function(t,e,a,n){this.container=t,this.startDate=new Date(e),this.endDate=new Date(a),this.url=n,this.el=null,this.opened=!1,this.startDateInput=null,this.endDateInput=null,this.setup=function(){var t=this;this.container.click(function(){return t.toggleDisplay(),!1})},this.setup()};DLM_Reports_Date_Range_Selector.prototype.toggleDisplay=function(){this.opened?this.hide():this.display()},DLM_Reports_Date_Range_Selector.prototype.display=function(){this.opened||(this.opened=!0,this.el=this.createElement(),this.container.append(this.el))},DLM_Reports_Date_Range_Selector.prototype.hide=function(){this.opened=!1,this.el.remove()},DLM_Reports_Date_Range_Selector.prototype.apply=function(){var t=new Date(this.startDateInput.val()),e=new Date(this.endDateInput.val()),a=t.getFullYear()+"-"+(t.getMonth()+1)+"-"+t.getDate(),n=e.getFullYear()+"-"+(e.getMonth()+1)+"-"+e.getDate();this.hide(),window.location.replace(this.url+"&date_from="+a+"&date_to="+n)},DLM_Reports_Date_Range_Selector.prototype.createElement=function(){var t=this,e=jQuery("<div>").addClass("dlm_rdrs_overlay"),a=jQuery("<div>").addClass("dlm_rdrs_date").attr("id","dlm_rdrs_date_start"),n=jQuery("<div>").addClass("dlm_rdrs_date").attr("id","dlm_rdrs_date_end");this.startDateInput=jQuery("<input>").attr("type","hidden"),this.endDateInput=jQuery("<input>").attr("type","hidden");var r=jQuery("<div>").addClass("dlm_rdrs_actions"),i=jQuery("<a>").addClass("button").html("Apply").click(function(){return t.apply(),!1});return r.append(i),e.append(a).append(n).append(r).append(this.startDateInput).append(this.endDateInput),a.datepicker({inline:!0,altField:this.startDateInput,dateFormat:"yy-m-dd",defaultDate:this.startDate}),n.datepicker({inline:!0,altField:this.endDateInput,dateFormat:"yy-m-dd",defaultDate:this.endDate}),e.click(function(){return!1}),e};
assets/js/reports/reports.min.js CHANGED
@@ -1 +1 @@
1
- function DLM_createLoaderObj(){var a=document.createElement("div");a=jQuery(a),a.addClass("dlm_reports_loader");var b=document.createElement("img");return b=jQuery(b),b.attr("src",dlm_rs.img_path+"ajax-loader.gif"),a.append(b),a}jQuery(function(a){a.each(a(".dlm-reports-block-chart"),function(a,b){new DLM_Reports_Block_Chart(b)}),a.each(a(".dlm-reports-block-summary"),function(a,b){new DLM_Reports_Block_Summary(b)}),a.each(a(".dlm-reports-block-table"),function(a,b){new DLM_Reports_Block_Table(b)})});var DLM_Reports_Data=function(a){this.type=null,this.from=null,this.to=null,this.period=null,this.init=function(a){this.type=jQuery(a).data("type"),this.to=jQuery(a).data("to"),this.from=jQuery(a).data("from"),this.period=jQuery(a).data("period")},this.init(a)},DLM_Reports_Data_Fetch=function(a,b,c){this.id=a,this.data=b,this.cb=c,this.fetch()};DLM_Reports_Data_Fetch.prototype.fetch=function(){var a=this.id,b=this.cb,c=this.data.from,d=this.data.to,e=this.data.period;jQuery.get(ajaxurl,{action:"dlm_reports_data",nonce:dlm_rs.ajax_nonce,id:a,from:c,to:d,period:e},function(a){b(a)})};var DLM_Reports_Block_Chart=function(a){this.container=a,this.id=null,this.queryData=null,this.data=null,this.chart=null,this.setup=function(){this.id=jQuery(this.container).attr("id"),this.queryData=new DLM_Reports_Data(this.container),this.displayLoader(),this.fetch()},this.setup()};DLM_Reports_Block_Chart.prototype.displayLoader=function(){jQuery(this.container).append(DLM_createLoaderObj())},DLM_Reports_Block_Chart.prototype.hideLoader=function(){jQuery(this.container).find(".dlm_reports_loader").remove()},DLM_Reports_Block_Chart.prototype.fetch=function(){var a=this;new DLM_Reports_Data_Fetch(this.id,this.queryData,function(b){a.data=b,a.hideLoader(),a.render()})},DLM_Reports_Block_Chart.prototype.render=function(){null!==this.data&&(this.chart=new Chart({parent:this.container,title:"",data:this.data,type:this.queryData.type,height:250,show_dots:0,x_axis_mode:"tick",y_axis_mode:"span",is_series:1,format_tooltip_x:function(a){return(a+"").toUpperCase()},format_tooltip_y:function(a){return a+" downloads"}}))};var DLM_Reports_Block_Summary=function(a){this.container=a,this.id=null,this.data=null,this.data=null,this.chart=null,this.setup=function(){this.id=jQuery(this.container).attr("id"),this.data=new DLM_Reports_Data(this.container),this.displayLoader(),this.fetch()},this.setup()};DLM_Reports_Block_Summary.prototype.displayLoader=function(){jQuery(this.container).append(DLM_createLoaderObj())},DLM_Reports_Block_Summary.prototype.hideLoader=function(){jQuery(this.container).find(".dlm_reports_loader").remove()},DLM_Reports_Block_Summary.prototype.fetch=function(){var a=this;new DLM_Reports_Data_Fetch(this.id,this.data,function(b){a.data=b,a.hideLoader(),a.render()})},DLM_Reports_Block_Summary.prototype.render=function(){if(null!==this.data){var a=this;jQuery.each(this.data,function(b,c){jQuery(a.container).find("#"+b)&&jQuery(a.container).find("#"+b).find("span:first").html(c)})}};var DLM_Reports_Block_Table=function(a){this.container=a,this.id=null,this.data=null,this.data=null,this.chart=null,this.setup=function(){this.id=jQuery(this.container).attr("id"),this.data=new DLM_Reports_Data(this.container),this.displayLoader(),this.fetch()},this.setup()};DLM_Reports_Block_Table.prototype.displayLoader=function(){jQuery(this.container).append(DLM_createLoaderObj())},DLM_Reports_Block_Table.prototype.hideLoader=function(){jQuery(this.container).find(".dlm_reports_loader").remove()},DLM_Reports_Block_Table.prototype.fetch=function(){var a=this;new DLM_Reports_Data_Fetch(this.id,this.data,function(b){a.data=b,a.hideLoader(),a.render()})},DLM_Reports_Block_Table.prototype.render=function(){if(!(null===this.data||this.data.length<2)){var a=jQuery(document.createElement("table"));a.attr("cellspacing",0).attr("cellpadding",0).attr("border",0);for(var b=document.createElement("tr"),c=0;c<this.data[0].length;c++){var d=document.createElement("th");d.innerHTML=this.data[0][c],b.appendChild(d)}a.append(b);for(var c=1;c<this.data.length;c++){for(var e=document.createElement("tr"),f=0;f<this.data[c].length;f++){var g=document.createElement("td");g.innerHTML=this.data[c][f],e.appendChild(g)}a.append(e)}jQuery(this.container).html("").append(a)}};
1
+ function DLM_createLoaderObj(){var t=document.createElement("div");(t=jQuery(t)).addClass("dlm_reports_loader");var e=document.createElement("img");return(e=jQuery(e)).attr("src",dlm_rs.img_path+"ajax-loader.gif"),t.append(e),t}jQuery(function(t){t.each(t(".dlm-reports-block-chart"),function(t,e){new DLM_Reports_Block_Chart(e)}),t.each(t(".dlm-reports-block-summary"),function(t,e){new DLM_Reports_Block_Summary(e)}),t.each(t(".dlm-reports-block-table"),function(t,e){new DLM_Reports_Block_Table(e)})});var DLM_Reports_Data=function(t){this.type=null,this.from=null,this.to=null,this.period=null,this.init=function(t){this.type=jQuery(t).data("type"),this.to=jQuery(t).data("to"),this.from=jQuery(t).data("from"),this.period=jQuery(t).data("period")},this.init(t)},DLM_Reports_Data_Fetch=function(t,e,a){this.id=t,this.data=e,this.cb=a,this.fetch()};DLM_Reports_Data_Fetch.prototype.fetch=function(){var t=this.id,e=this.cb,a=this.data.from,r=this.data.to,i=this.data.period;jQuery.get(ajaxurl,{action:"dlm_reports_data",nonce:dlm_rs.ajax_nonce,id:t,from:a,to:r,period:i},function(t){e(t)})};var DLM_Reports_Block_Chart=function(t){this.container=t,this.id=null,this.queryData=null,this.data=null,this.chart=null,this.setup=function(){this.id=jQuery(this.container).attr("id"),this.queryData=new DLM_Reports_Data(this.container),this.displayLoader(),this.fetch()},this.setup()};DLM_Reports_Block_Chart.prototype.displayLoader=function(){jQuery(this.container).append(DLM_createLoaderObj())},DLM_Reports_Block_Chart.prototype.hideLoader=function(){jQuery(this.container).find(".dlm_reports_loader").remove()},DLM_Reports_Block_Chart.prototype.fetch=function(){var e=this;new DLM_Reports_Data_Fetch(this.id,this.queryData,function(t){e.data=t,e.hideLoader(),e.render()})},DLM_Reports_Block_Chart.prototype.render=function(){null!==this.data&&(this.chart=new Chart({parent:this.container,title:"",data:this.data,type:this.queryData.type,height:250,show_dots:0,x_axis_mode:"tick",y_axis_mode:"span",is_series:1,format_tooltip_x:function(t){return(t+"").toUpperCase()},format_tooltip_y:function(t){return t+" downloads"}}))};var DLM_Reports_Block_Summary=function(t){this.container=t,this.id=null,this.data=null,this.data=null,this.chart=null,this.setup=function(){this.id=jQuery(this.container).attr("id"),this.data=new DLM_Reports_Data(this.container),this.displayLoader(),this.fetch()},this.setup()};DLM_Reports_Block_Summary.prototype.displayLoader=function(){jQuery(this.container).append(DLM_createLoaderObj())},DLM_Reports_Block_Summary.prototype.hideLoader=function(){jQuery(this.container).find(".dlm_reports_loader").remove()},DLM_Reports_Block_Summary.prototype.fetch=function(){var e=this;new DLM_Reports_Data_Fetch(this.id,this.data,function(t){e.data=t,e.hideLoader(),e.render()})},DLM_Reports_Block_Summary.prototype.render=function(){if(null!==this.data){var a=this;jQuery.each(this.data,function(t,e){jQuery(a.container).find("#"+t)&&jQuery(a.container).find("#"+t).find("span:first").html(e)})}};var DLM_Reports_Block_Table=function(t){this.container=t,this.id=null,this.data=null,this.data=null,this.chart=null,this.setup=function(){this.id=jQuery(this.container).attr("id"),this.data=new DLM_Reports_Data(this.container),this.displayLoader(),this.fetch()},this.setup()};DLM_Reports_Block_Table.prototype.displayLoader=function(){jQuery(this.container).append(DLM_createLoaderObj())},DLM_Reports_Block_Table.prototype.hideLoader=function(){jQuery(this.container).find(".dlm_reports_loader").remove()},DLM_Reports_Block_Table.prototype.fetch=function(){var e=this;new DLM_Reports_Data_Fetch(this.id,this.data,function(t){e.data=t,e.hideLoader(),e.render()})},DLM_Reports_Block_Table.prototype.render=function(){if(!(null===this.data||this.data.length<2)){var t=jQuery(document.createElement("table"));t.attr("cellspacing",0).attr("cellpadding",0).attr("border",0);for(var e=document.createElement("tr"),a=0;a<this.data[0].length;a++){var r=document.createElement("th");r.innerHTML=this.data[0][a],e.appendChild(r)}t.append(e);for(a=1;a<this.data.length;a++){for(var i=document.createElement("tr"),o=0;o<this.data[a].length;o++){var n=document.createElement("td");n.innerHTML=this.data[a][o],i.appendChild(n)}t.append(i)}jQuery(this.container).html("").append(t)}};
assets/js/settings.min.js CHANGED
@@ -1 +1 @@
1
- jQuery(function(a){function b(b){if(a(b).hasClass("nav-tab-active"))return!1;var c=a(b).attr("href").replace(dlm_settings_vars.settings_url,"");return a(".settings_panel").hide(),a(".nav-tab-active").removeClass("nav-tab-active"),a(c).show(),a(b).addClass("nav-tab-active"),a("#setting-dlm_settings_tab_saved").val(c.replace("#settings-","")),!0}if(a(".nav-tab-wrapper a").click(function(){return b(a(this))}),a("#setting-dlm_default_template").change(function(){"custom"==a(this).val()?a("#setting-dlm_custom_template").closest("tr").show():a("#setting-dlm_custom_template").closest("tr").hide()}).change(),a("#setting-dlm_enable_logging").change(function(){!0===a(this).is(":checked")?a("#setting-dlm_count_unique_ips").closest("tr").show():a("#setting-dlm_count_unique_ips").closest("tr").hide()}).change(),window.location.hash){var c=window.location.hash.replace("#","");a(".nav-tab-wrapper a#dlm-tab-"+c).click()}else a(".nav-tab-wrapper a:first").click();a(window).bind("hashchange",function(b){var c=window.location.hash.replace("#","");a(".nav-tab-wrapper a#dlm-tab-"+c).click()}),a(document).ready(function(){if("undefined"!=typeof dlm_settings_tab_saved){var c=a('.nav-tab-wrapper a[href="'+dlm_settings_vars.settings_url+"#settings-"+dlm_settings_tab_saved+'"]');void 0!==c&&b(c)}a.each(a(".dlm-lazy-select"),function(){var b=a(this);a("<span>").addClass("dlm-lazy-select-loader").append(a("<img>").attr("src",dlm_settings_vars.img_path+"ajax-loader.gif")).insertAfter(b),a.post(ajaxurl,{action:"dlm_settings_lazy_select",nonce:dlm_settings_vars.lazy_select_nonce,option:b.attr("name")},function(c){if(b.find("option").remove(),c)for(var d=b.data("selected"),e=0;e<c.length;e++){var f=a("<option>").attr("value",c[e].key).html(c[e].lbl);d===c[e].key&&f.attr("selected","selected"),b.append(f)}b.parent().find(".dlm-lazy-select-loader").remove()})})})});
1
+ jQuery(function(i){function e(t){if(i(t).hasClass("nav-tab-active"))return!1;var e=i(t).attr("href").replace(dlm_settings_vars.settings_url,"");return i(".settings_panel").hide(),i(".nav-tab-active").removeClass("nav-tab-active"),i(e).show(),i(t).addClass("nav-tab-active"),i("#setting-dlm_settings_tab_saved").val(e.replace("#settings-","")),!0}if(i(".nav-tab-wrapper a").click(function(){return e(i(this))}),i("#setting-dlm_default_template").change(function(){"custom"==i(this).val()?i("#setting-dlm_custom_template").closest("tr").show():i("#setting-dlm_custom_template").closest("tr").hide()}).change(),i("#setting-dlm_enable_logging").change(function(){!0===i(this).is(":checked")?i("#setting-dlm_count_unique_ips").closest("tr").show():i("#setting-dlm_count_unique_ips").closest("tr").hide()}).change(),window.location.hash){var t=window.location.hash.replace("#","");i(".nav-tab-wrapper a#dlm-tab-"+t).click()}else i(".nav-tab-wrapper a:first").click();i(window).bind("hashchange",function(t){var e=window.location.hash.replace("#","");i(".nav-tab-wrapper a#dlm-tab-"+e).click()}),i(document).ready(function(){if("undefined"!=typeof dlm_settings_tab_saved){var t=i('.nav-tab-wrapper a[href="'+dlm_settings_vars.settings_url+"#settings-"+dlm_settings_tab_saved+'"]');void 0!==t&&e(t)}i.each(i(".dlm-lazy-select"),function(){var s=i(this);i("<span>").addClass("dlm-lazy-select-loader").append(i("<img>").attr("src",dlm_settings_vars.img_path+"ajax-loader.gif")).insertAfter(s),i.post(ajaxurl,{action:"dlm_settings_lazy_select",nonce:dlm_settings_vars.lazy_select_nonce,option:s.attr("name")},function(t){if(s.find("option").remove(),t)for(var e=s.data("selected"),a=0;a<t.length;a++){var n=i("<option>").attr("value",t[a].key).html(t[a].lbl);e===t[a].key&&n.attr("selected","selected"),s.append(n)}s.parent().find(".dlm-lazy-select-loader").remove()})})})});
composer.lock CHANGED
@@ -4,6 +4,7 @@
4
  "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
5
  "This file is @generated automatically"
6
  ],
 
7
  "content-hash": "d70a3087707c8c856d9cf0112285fd11",
8
  "packages": [
9
  {
@@ -35,7 +36,7 @@
35
  "license": [
36
  "MIT"
37
  ],
38
- "time": "2016-04-16T21:52:24+00:00"
39
  }
40
  ],
41
  "packages-dev": [
@@ -91,29 +92,32 @@
91
  "constructor",
92
  "instantiate"
93
  ],
94
- "time": "2017-07-22T11:58:36+00:00"
95
  },
96
  {
97
  "name": "myclabs/deep-copy",
98
- "version": "1.7.0",
99
  "source": {
100
  "type": "git",
101
  "url": "https://github.com/myclabs/DeepCopy.git",
102
- "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
103
  },
104
  "dist": {
105
  "type": "zip",
106
- "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
107
- "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
108
  "shasum": ""
109
  },
110
  "require": {
111
- "php": "^5.6 || ^7.0"
 
 
 
112
  },
113
  "require-dev": {
114
  "doctrine/collections": "^1.0",
115
  "doctrine/common": "^2.6",
116
- "phpunit/phpunit": "^4.1"
117
  },
118
  "type": "library",
119
  "autoload": {
@@ -136,7 +140,7 @@
136
  "object",
137
  "object graph"
138
  ],
139
- "time": "2017-10-19T19:58:43+00:00"
140
  },
141
  {
142
  "name": "phar-io/manifest",
@@ -191,7 +195,7 @@
191
  }
192
  ],
193
  "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
194
- "time": "2017-03-05T18:14:27+00:00"
195
  },
196
  {
197
  "name": "phar-io/version",
@@ -238,7 +242,7 @@
238
  }
239
  ],
240
  "description": "Library for handling version information and constraints",
241
- "time": "2017-03-05T17:38:23+00:00"
242
  },
243
  {
244
  "name": "phpdocumentor/reflection-common",
@@ -292,7 +296,7 @@
292
  "reflection",
293
  "static analysis"
294
  ],
295
- "time": "2017-09-11T18:02:19+00:00"
296
  },
297
  {
298
  "name": "phpdocumentor/reflection-docblock",
@@ -343,7 +347,7 @@
343
  }
344
  ],
345
  "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
346
- "time": "2017-11-30T07:14:17+00:00"
347
  },
348
  {
349
  "name": "phpdocumentor/type-resolver",
@@ -390,20 +394,20 @@
390
  "email": "me@mikevanriel.com"
391
  }
392
  ],
393
- "time": "2017-07-14T14:27:02+00:00"
394
  },
395
  {
396
  "name": "phpspec/prophecy",
397
- "version": "1.7.6",
398
  "source": {
399
  "type": "git",
400
  "url": "https://github.com/phpspec/prophecy.git",
401
- "reference": "33a7e3c4fda54e912ff6338c48823bd5c0f0b712"
402
  },
403
  "dist": {
404
  "type": "zip",
405
- "url": "https://api.github.com/repos/phpspec/prophecy/zipball/33a7e3c4fda54e912ff6338c48823bd5c0f0b712",
406
- "reference": "33a7e3c4fda54e912ff6338c48823bd5c0f0b712",
407
  "shasum": ""
408
  },
409
  "require": {
@@ -415,12 +419,12 @@
415
  },
416
  "require-dev": {
417
  "phpspec/phpspec": "^2.5|^3.2",
418
- "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5"
419
  },
420
  "type": "library",
421
  "extra": {
422
  "branch-alias": {
423
- "dev-master": "1.7.x-dev"
424
  }
425
  },
426
  "autoload": {
@@ -453,7 +457,7 @@
453
  "spy",
454
  "stub"
455
  ],
456
- "time": "2018-04-18T13:57:24+00:00"
457
  },
458
  {
459
  "name": "phpunit/php-code-coverage",
@@ -516,7 +520,7 @@
516
  "testing",
517
  "xunit"
518
  ],
519
- "time": "2018-04-06T15:36:58+00:00"
520
  },
521
  {
522
  "name": "phpunit/php-file-iterator",
@@ -563,7 +567,7 @@
563
  "filesystem",
564
  "iterator"
565
  ],
566
- "time": "2017-11-27T13:52:08+00:00"
567
  },
568
  {
569
  "name": "phpunit/php-text-template",
@@ -604,7 +608,7 @@
604
  "keywords": [
605
  "template"
606
  ],
607
- "time": "2015-06-21T13:50:34+00:00"
608
  },
609
  {
610
  "name": "phpunit/php-timer",
@@ -653,7 +657,7 @@
653
  "keywords": [
654
  "timer"
655
  ],
656
- "time": "2017-02-26T11:10:40+00:00"
657
  },
658
  {
659
  "name": "phpunit/php-token-stream",
@@ -702,20 +706,20 @@
702
  "keywords": [
703
  "tokenizer"
704
  ],
705
- "time": "2017-11-27T05:48:46+00:00"
706
  },
707
  {
708
  "name": "phpunit/phpunit",
709
- "version": "6.5.8",
710
  "source": {
711
  "type": "git",
712
  "url": "https://github.com/sebastianbergmann/phpunit.git",
713
- "reference": "4f21a3c6b97c42952fd5c2837bb354ec0199b97b"
714
  },
715
  "dist": {
716
  "type": "zip",
717
- "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/4f21a3c6b97c42952fd5c2837bb354ec0199b97b",
718
- "reference": "4f21a3c6b97c42952fd5c2837bb354ec0199b97b",
719
  "shasum": ""
720
  },
721
  "require": {
@@ -733,7 +737,7 @@
733
  "phpunit/php-file-iterator": "^1.4.3",
734
  "phpunit/php-text-template": "^1.2.1",
735
  "phpunit/php-timer": "^1.0.9",
736
- "phpunit/phpunit-mock-objects": "^5.0.5",
737
  "sebastian/comparator": "^2.1",
738
  "sebastian/diff": "^2.0",
739
  "sebastian/environment": "^3.1",
@@ -786,20 +790,20 @@
786
  "testing",
787
  "xunit"
788
  ],
789
- "time": "2018-04-10T11:38:34+00:00"
790
  },
791
  {
792
  "name": "phpunit/phpunit-mock-objects",
793
- "version": "5.0.6",
794
  "source": {
795
  "type": "git",
796
  "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
797
- "reference": "33fd41a76e746b8fa96d00b49a23dadfa8334cdf"
798
  },
799
  "dist": {
800
  "type": "zip",
801
- "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/33fd41a76e746b8fa96d00b49a23dadfa8334cdf",
802
- "reference": "33fd41a76e746b8fa96d00b49a23dadfa8334cdf",
803
  "shasum": ""
804
  },
805
  "require": {
@@ -812,7 +816,7 @@
812
  "phpunit/phpunit": "<6.0"
813
  },
814
  "require-dev": {
815
- "phpunit/phpunit": "^6.5"
816
  },
817
  "suggest": {
818
  "ext-soap": "*"
@@ -845,7 +849,7 @@
845
  "mock",
846
  "xunit"
847
  ],
848
- "time": "2018-01-06T05:45:45+00:00"
849
  },
850
  {
851
  "name": "sebastian/code-unit-reverse-lookup",
@@ -890,7 +894,7 @@
890
  ],
891
  "description": "Looks up which function or method a line of code belongs to",
892
  "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
893
- "time": "2017-03-04T06:30:41+00:00"
894
  },
895
  {
896
  "name": "sebastian/comparator",
@@ -954,7 +958,7 @@
954
  "compare",
955
  "equality"
956
  ],
957
- "time": "2018-02-01T13:46:46+00:00"
958
  },
959
  {
960
  "name": "sebastian/diff",
@@ -1006,7 +1010,7 @@
1006
  "keywords": [
1007
  "diff"
1008
  ],
1009
- "time": "2017-08-03T08:09:46+00:00"
1010
  },
1011
  {
1012
  "name": "sebastian/environment",
@@ -1056,7 +1060,7 @@
1056
  "environment",
1057
  "hhvm"
1058
  ],
1059
- "time": "2017-07-01T08:51:00+00:00"
1060
  },
1061
  {
1062
  "name": "sebastian/exporter",
@@ -1123,7 +1127,7 @@
1123
  "export",
1124
  "exporter"
1125
  ],
1126
- "time": "2017-04-03T13:19:02+00:00"
1127
  },
1128
  {
1129
  "name": "sebastian/global-state",
@@ -1174,7 +1178,7 @@
1174
  "keywords": [
1175
  "global state"
1176
  ],
1177
- "time": "2017-04-27T15:39:26+00:00"
1178
  },
1179
  {
1180
  "name": "sebastian/object-enumerator",
@@ -1221,7 +1225,7 @@
1221
  ],
1222
  "description": "Traverses array structures and object graphs to enumerate all referenced objects",
1223
  "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
1224
- "time": "2017-08-03T12:35:26+00:00"
1225
  },
1226
  {
1227
  "name": "sebastian/object-reflector",
@@ -1266,7 +1270,7 @@
1266
  ],
1267
  "description": "Allows reflection of object attributes, including inherited and non-public ones",
1268
  "homepage": "https://github.com/sebastianbergmann/object-reflector/",
1269
- "time": "2017-03-29T09:07:27+00:00"
1270
  },
1271
  {
1272
  "name": "sebastian/recursion-context",
@@ -1319,7 +1323,7 @@
1319
  ],
1320
  "description": "Provides functionality to recursively process PHP variables",
1321
  "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
1322
- "time": "2017-03-03T06:23:57+00:00"
1323
  },
1324
  {
1325
  "name": "sebastian/resource-operations",
@@ -1361,7 +1365,7 @@
1361
  ],
1362
  "description": "Provides a list of PHP built-in functions that operate on resources",
1363
  "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
1364
- "time": "2015-07-28T20:34:47+00:00"
1365
  },
1366
  {
1367
  "name": "sebastian/version",
@@ -1404,7 +1408,65 @@
1404
  ],
1405
  "description": "Library that helps with managing the version number of Git-hosted PHP projects",
1406
  "homepage": "https://github.com/sebastianbergmann/version",
1407
- "time": "2016-10-03T07:35:21+00:00"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1408
  },
1409
  {
1410
  "name": "theseer/tokenizer",
@@ -1444,24 +1506,25 @@
1444
  }
1445
  ],
1446
  "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
1447
- "time": "2017-04-07T12:08:54+00:00"
1448
  },
1449
  {
1450
  "name": "webmozart/assert",
1451
- "version": "1.3.0",
1452
  "source": {
1453
  "type": "git",
1454
  "url": "https://github.com/webmozart/assert.git",
1455
- "reference": "0df1908962e7a3071564e857d86874dad1ef204a"
1456
  },
1457
  "dist": {
1458
  "type": "zip",
1459
- "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a",
1460
- "reference": "0df1908962e7a3071564e857d86874dad1ef204a",
1461
  "shasum": ""
1462
  },
1463
  "require": {
1464
- "php": "^5.3.3 || ^7.0"
 
1465
  },
1466
  "require-dev": {
1467
  "phpunit/phpunit": "^4.6",
@@ -1494,7 +1557,7 @@
1494
  "check",
1495
  "validate"
1496
  ],
1497
- "time": "2018-01-29T19:49:41+00:00"
1498
  }
1499
  ],
1500
  "aliases": [],
4
  "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
5
  "This file is @generated automatically"
6
  ],
7
+ "hash": "6cf54def86b3bae6e59ed6671f2da40a",
8
  "content-hash": "d70a3087707c8c856d9cf0112285fd11",
9
  "packages": [
10
  {
36
  "license": [
37
  "MIT"
38
  ],
39
+ "time": "2016-04-16 21:52:24"
40
  }
41
  ],
42
  "packages-dev": [
92
  "constructor",
93
  "instantiate"
94
  ],
95
+ "time": "2017-07-22 11:58:36"
96
  },
97
  {
98
  "name": "myclabs/deep-copy",
99
+ "version": "1.8.1",
100
  "source": {
101
  "type": "git",
102
  "url": "https://github.com/myclabs/DeepCopy.git",
103
+ "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8"
104
  },
105
  "dist": {
106
  "type": "zip",
107
+ "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8",
108
+ "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8",
109
  "shasum": ""
110
  },
111
  "require": {
112
+ "php": "^7.1"
113
+ },
114
+ "replace": {
115
+ "myclabs/deep-copy": "self.version"
116
  },
117
  "require-dev": {
118
  "doctrine/collections": "^1.0",
119
  "doctrine/common": "^2.6",
120
+ "phpunit/phpunit": "^7.1"
121
  },
122
  "type": "library",
123
  "autoload": {
140
  "object",
141
  "object graph"
142
  ],
143
+ "time": "2018-06-11 23:09:50"
144
  },
145
  {
146
  "name": "phar-io/manifest",
195
  }
196
  ],
197
  "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
198
+ "time": "2017-03-05 18:14:27"
199
  },
200
  {
201
  "name": "phar-io/version",
242
  }
243
  ],
244
  "description": "Library for handling version information and constraints",
245
+ "time": "2017-03-05 17:38:23"
246
  },
247
  {
248
  "name": "phpdocumentor/reflection-common",
296
  "reflection",
297
  "static analysis"
298
  ],
299
+ "time": "2017-09-11 18:02:19"
300
  },
301
  {
302
  "name": "phpdocumentor/reflection-docblock",
347
  }
348
  ],
349
  "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
350
+ "time": "2017-11-30 07:14:17"
351
  },
352
  {
353
  "name": "phpdocumentor/type-resolver",
394
  "email": "me@mikevanriel.com"
395
  }
396
  ],
397
+ "time": "2017-07-14 14:27:02"
398
  },
399
  {
400
  "name": "phpspec/prophecy",
401
+ "version": "1.8.0",
402
  "source": {
403
  "type": "git",
404
  "url": "https://github.com/phpspec/prophecy.git",
405
+ "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
406
  },
407
  "dist": {
408
  "type": "zip",
409
+ "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
410
+ "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
411
  "shasum": ""
412
  },
413
  "require": {
419
  },
420
  "require-dev": {
421
  "phpspec/phpspec": "^2.5|^3.2",
422
+ "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
423
  },
424
  "type": "library",
425
  "extra": {
426
  "branch-alias": {
427
+ "dev-master": "1.8.x-dev"
428
  }
429
  },
430
  "autoload": {
457
  "spy",
458
  "stub"
459
  ],
460
+ "time": "2018-08-05 17:53:17"
461
  },
462
  {
463
  "name": "phpunit/php-code-coverage",
520
  "testing",
521
  "xunit"
522
  ],
523
+ "time": "2018-04-06 15:36:58"
524
  },
525
  {
526
  "name": "phpunit/php-file-iterator",
567
  "filesystem",
568
  "iterator"
569
  ],
570
+ "time": "2017-11-27 13:52:08"
571
  },
572
  {
573
  "name": "phpunit/php-text-template",
608
  "keywords": [
609
  "template"
610
  ],
611
+ "time": "2015-06-21 13:50:34"
612
  },
613
  {
614
  "name": "phpunit/php-timer",
657
  "keywords": [
658
  "timer"
659
  ],
660
+ "time": "2017-02-26 11:10:40"
661
  },
662
  {
663
  "name": "phpunit/php-token-stream",
706
  "keywords": [
707
  "tokenizer"
708
  ],
709
+ "time": "2017-11-27 05:48:46"
710
  },
711
  {
712
  "name": "phpunit/phpunit",
713
+ "version": "6.5.13",
714
  "source": {
715
  "type": "git",
716
  "url": "https://github.com/sebastianbergmann/phpunit.git",
717
+ "reference": "0973426fb012359b2f18d3bd1e90ef1172839693"
718
  },
719
  "dist": {
720
  "type": "zip",
721
+ "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0973426fb012359b2f18d3bd1e90ef1172839693",
722
+ "reference": "0973426fb012359b2f18d3bd1e90ef1172839693",
723
  "shasum": ""
724
  },
725
  "require": {
737
  "phpunit/php-file-iterator": "^1.4.3",
738
  "phpunit/php-text-template": "^1.2.1",
739
  "phpunit/php-timer": "^1.0.9",
740
+ "phpunit/phpunit-mock-objects": "^5.0.9",
741
  "sebastian/comparator": "^2.1",
742
  "sebastian/diff": "^2.0",
743
  "sebastian/environment": "^3.1",
790
  "testing",
791
  "xunit"
792
  ],
793
+ "time": "2018-09-08 15:10:43"
794
  },
795
  {
796
  "name": "phpunit/phpunit-mock-objects",
797
+ "version": "5.0.10",
798
  "source": {
799
  "type": "git",
800
  "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
801
+ "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
802
  },
803
  "dist": {
804
  "type": "zip",
805
+ "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
806
+ "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
807
  "shasum": ""
808
  },
809
  "require": {
816
  "phpunit/phpunit": "<6.0"
817
  },
818
  "require-dev": {
819
+ "phpunit/phpunit": "^6.5.11"
820
  },
821
  "suggest": {
822
  "ext-soap": "*"
849
  "mock",
850
  "xunit"
851
  ],
852
+ "time": "2018-08-09 05:50:03"
853
  },
854
  {
855
  "name": "sebastian/code-unit-reverse-lookup",
894
  ],
895
  "description": "Looks up which function or method a line of code belongs to",
896
  "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
897
+ "time": "2017-03-04 06:30:41"
898
  },
899
  {
900
  "name": "sebastian/comparator",
958
  "compare",
959
  "equality"
960
  ],
961
+ "time": "2018-02-01 13:46:46"
962
  },
963
  {
964
  "name": "sebastian/diff",
1010
  "keywords": [
1011
  "diff"
1012
  ],
1013
+ "time": "2017-08-03 08:09:46"
1014
  },
1015
  {
1016
  "name": "sebastian/environment",
1060
  "environment",
1061
  "hhvm"
1062
  ],
1063
+ "time": "2017-07-01 08:51:00"
1064
  },
1065
  {
1066
  "name": "sebastian/exporter",
1127
  "export",
1128
  "exporter"
1129
  ],
1130
+ "time": "2017-04-03 13:19:02"
1131
  },
1132
  {
1133
  "name": "sebastian/global-state",
1178
  "keywords": [
1179
  "global state"
1180
  ],
1181
+ "time": "2017-04-27 15:39:26"
1182
  },
1183
  {
1184
  "name": "sebastian/object-enumerator",
1225
  ],
1226
  "description": "Traverses array structures and object graphs to enumerate all referenced objects",
1227
  "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
1228
+ "time": "2017-08-03 12:35:26"
1229
  },
1230
  {
1231
  "name": "sebastian/object-reflector",
1270
  ],
1271
  "description": "Allows reflection of object attributes, including inherited and non-public ones",
1272
  "homepage": "https://github.com/sebastianbergmann/object-reflector/",
1273
+ "time": "2017-03-29 09:07:27"
1274
  },
1275
  {
1276
  "name": "sebastian/recursion-context",
1323
  ],
1324
  "description": "Provides functionality to recursively process PHP variables",
1325
  "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
1326
+ "time": "2017-03-03 06:23:57"
1327
  },
1328
  {
1329
  "name": "sebastian/resource-operations",
1365
  ],
1366
  "description": "Provides a list of PHP built-in functions that operate on resources",
1367
  "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
1368
+ "time": "2015-07-28 20:34:47"
1369
  },
1370
  {
1371
  "name": "sebastian/version",
1408
  ],
1409
  "description": "Library that helps with managing the version number of Git-hosted PHP projects",
1410
  "homepage": "https://github.com/sebastianbergmann/version",
1411
+ "time": "2016-10-03 07:35:21"
1412
+ },
1413
+ {
1414
+ "name": "symfony/polyfill-ctype",
1415
+ "version": "v1.10.0",
1416
+ "source": {
1417
+ "type": "git",
1418
+ "url": "https://github.com/symfony/polyfill-ctype.git",
1419
+ "reference": "e3d826245268269cd66f8326bd8bc066687b4a19"
1420
+ },
1421
+ "dist": {
1422
+ "type": "zip",
1423
+ "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19",
1424
+ "reference": "e3d826245268269cd66f8326bd8bc066687b4a19",
1425
+ "shasum": ""
1426
+ },
1427
+ "require": {
1428
+ "php": ">=5.3.3"
1429
+ },
1430
+ "suggest": {
1431
+ "ext-ctype": "For best performance"
1432
+ },
1433
+ "type": "library",
1434
+ "extra": {
1435
+ "branch-alias": {
1436
+ "dev-master": "1.9-dev"
1437
+ }
1438
+ },
1439
+ "autoload": {
1440
+ "psr-4": {
1441
+ "Symfony\\Polyfill\\Ctype\\": ""
1442
+ },
1443
+ "files": [
1444
+ "bootstrap.php"
1445
+ ]
1446
+ },
1447
+ "notification-url": "https://packagist.org/downloads/",
1448
+ "license": [
1449
+ "MIT"
1450
+ ],
1451
+ "authors": [
1452
+ {
1453
+ "name": "Symfony Community",
1454
+ "homepage": "https://symfony.com/contributors"
1455
+ },
1456
+ {
1457
+ "name": "Gert de Pagter",
1458
+ "email": "backendtea@gmail.com"
1459
+ }
1460
+ ],
1461
+ "description": "Symfony polyfill for ctype functions",
1462
+ "homepage": "https://symfony.com",
1463
+ "keywords": [
1464
+ "compatibility",
1465
+ "ctype",
1466
+ "polyfill",
1467
+ "portable"
1468
+ ],
1469
+ "time": "2018-08-06 14:22:27"
1470
  },
1471
  {
1472
  "name": "theseer/tokenizer",
1506
  }
1507
  ],
1508
  "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
1509
+ "time": "2017-04-07 12:08:54"
1510
  },
1511
  {
1512
  "name": "webmozart/assert",
1513
+ "version": "1.4.0",
1514
  "source": {
1515
  "type": "git",
1516
  "url": "https://github.com/webmozart/assert.git",
1517
+ "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9"
1518
  },
1519
  "dist": {
1520
  "type": "zip",
1521
+ "url": "https://api.github.com/repos/webmozart/assert/zipball/83e253c8e0be5b0257b881e1827274667c5c17a9",
1522
+ "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9",
1523
  "shasum": ""
1524
  },
1525
  "require": {
1526
+ "php": "^5.3.3 || ^7.0",
1527
+ "symfony/polyfill-ctype": "^1.8"
1528
  },
1529
  "require-dev": {
1530
  "phpunit/phpunit": "^4.6",
1557
  "check",
1558
  "validate"
1559
  ],
1560
+ "time": "2018-12-25 11:19:39"
1561
  }
1562
  ],
1563
  "aliases": [],
download-monitor.php CHANGED
@@ -3,11 +3,11 @@
3
  Plugin Name: Download Monitor
4
  Plugin URI: https://www.download-monitor.com
5
  Description: A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.
6
- Version: 4.1.1
7
  Author: Never5
8
  Author URI: https://www.never5.com
9
  Requires at least: 3.8
10
- Tested up to: 4.9.8
11
  Text Domain: download-monitor
12
 
13
  License: GPL v3
@@ -33,7 +33,7 @@ if ( ! defined( 'ABSPATH' ) ) {
33
  } // Exit if accessed directly
34
 
35
  // Define DLM Version
36
- define( 'DLM_VERSION', '4.1.1' );
37
 
38
  // Define DLM FILE
39
  define( 'DLM_PLUGIN_FILE', __FILE__ );
3
  Plugin Name: Download Monitor
4
  Plugin URI: https://www.download-monitor.com
5
  Description: A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.
6
+ Version: 4.2.0
7
  Author: Never5
8
  Author URI: https://www.never5.com
9
  Requires at least: 3.8
10
+ Tested up to: 5.0.3
11
  Text Domain: download-monitor
12
 
13
  License: GPL v3
33
  } // Exit if accessed directly
34
 
35
  // Define DLM Version
36
+ define( 'DLM_VERSION', '4.2.0' );
37
 
38
  // Define DLM FILE
39
  define( 'DLM_PLUGIN_FILE', __FILE__ );
languages/download-monitor-ar-dlm_gutenberg_blocks.json ADDED
@@ -0,0 +1 @@
 
1
+ {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;","lang":"ar"},"Remove":["حذف"],"Click to toggle":["اضغط للتبديل"],"Version <span class=\"version\">%s</span> (%s)":["نسخة <span class=\"version\">%s</span> (%s)"],"n/a":["n/a"],"Downloaded %s time":["تم التنزيل 0 مرة","تم التنزيل مرة واحدة","تم التنزيل مرتين","تم التنزيل بضع مرات","تم التنزيل عدة مرات","تم التنزيل %d مرة"],"Version":["نسخة"],"File URL(s)":["رابط الملف (روابط)"],"Enter one file path/URL per line - multiple files will be used as mirrors (chosen at random).":["ادخل مسار/رابط واحد في كل سطر - الملفات المتعددة ستكون بمثابة مرايا تنزيل (مختارة عشوائيا)."],"Upload file":["ارفع ملفا"],"Choose a file":["اختر ملفا"],"Insert file URL":["أدرج رابط الملف"],"Browse for file":["تصفح من أجل الملف"],"Download count":["عداد التنزيل"],"File Date":["تاريخ الملف"],"h":["h"],"m":["m"],"It looks like you upgraded to the latest version of Download Monitor from a legacy version (3.x)":[""],"Currently your downloads don't work like they should, we need to %s before they'll work again.":[""],"upgrade your downloads":[""],"We've created an upgrading tool that will do all the work for you. You can read more about this tool on %sour website (click here)%s or start the upgrade now.":[""],"Take me to the Upgrade Tool":[""],"hide notice":[""],"Download Monitor Extensions":[""],"Extensions":[""],"If you like %sDownload Monitor%s please leave us a %s★★★★★%s rating. A huge thank you from us in advance!":[""],"Insert Download":["أدرج تنزيلا"],"Are you sure you want to delete this file ? ":[""],"Browse for a file":["تصفح من أجل الملف"],"Select a category":["اختر تصنيفا"],"Download Monitor Data":[""],"Featured download":["تنزيل بارز"],"Members only":["للأعضاء فقط"],"Redirect to file":["تحويل لملف"],"Image":["صورة"],"Title":["عنوان"],"ID":["مُعَرّف"],"File":["ملف"],"Categories":["تصنيفات"],"Tags":["وسم"],"Featured":["بارز"],"Redirect only":["للتحويل فقط"],"Date posted":["تاريخ منشور"],"Yes":["نعم"],"Download title":["عنوان التنزيل"],"Download updated.":["التنزيل مُحدّث."],"Custom field updated.":["حقل خاص مُحدّث."],"Custom field deleted.":["حقل خاص محذوف."],"Download restored to revision from %s":["تنزيل قيد المراجعة من %s"],"Download published.":["تنزيل منشور."],"Download saved.":["تنزيل محفوظ."],"Download submitted.":["تنزيل مُرسل."],"Download scheduled for: <strong>%1$s</strong>.":["تنزيل مبرمج ل: <strong>%1$s</strong>."],"M j, Y @ G:i":["j M, Y @ G:i"],"Download draft updated.":["مسودة التنزيل مُحدّثة."],"Popular Downloads":["التنزيلات الأكثر شعبية"],"There are no stats available yet!":["لا توجد إحصائيات متوفرة حاليا!"],"Download":["تنزيل"],"Extend Download Monitor with its powerful free and paid extensions. %sClick here to browse all extensions%s":[""],"No files found":["لا يوجد ملفات "],"Insert Shortcode":["أدرج شفرة قصيرة"],"Quick-add download":["إضافة سريعة للتنزيل"],"Error: File was not created.":["خطأ: لم يتم إنشاء الملف."],"Download successfully created.":["تم إنشاء التنزيل بنجاح."],"Error: Download was not created.":["خطأ: لم يتم إنشاء التنزيل."],"Search download":[""],"Choose a download":["اختر تنزيلا"],"Template":["قالب"],"Template Name":["اسم القالب"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>image</code>, the <code>content-download-image.php</code> template will be used instead.":["Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>image</code>, the <code>content-download-image.php</code> template will be used instead."],"Drop file here":["ضع الملف هنا"],"Select File":["اختر ملفا"],"Enter URL manually":["أدخل الرابط يدويا"],"Download URL":["رابط التنزيل"],"Required URL":["رابط إجباري"],"Download Title":["عنوان التنزيل"],"Required title":["عنوان إجباري"],"Optional version number":["رقم النسخة اختياري"],"Save Download":["حفظ التنزيل"],"Allowed Files":["الملفات المسموح بها"],"Please wait...":["انتظر رجاءا..."],"Reports":[""],"Switch to %s":[""],"Per Day":[""],"Month":[""],"Download Reports":[""],"Loading":[""],"Settings":["إعدادات"],"Because your server is running on nginx, our .htaccess file can't protect your downloads.":[""],"Please add the following rules to your nginx config to disable direct file access: %s":[""],"Download Monitor Transients successfully cleared!":[""],"Settings successfully saved":["تم حفظ التعديلات"],"Save Changes":["حفظ التعديلات"],"General":["عام"],"Default Template":["القالب الإفتراضي"],"Choose which template is used for <code>[download]</code> shortcodes by default (this can be overridden by the <code>format</code> argument).":["Choose which template is used for <code>[download]</code> shortcodes by default (this can be overridden by the <code>format</code> argument)."],"Default - Title and count":["الافتراضي - العنوان و العداد"],"Button - CSS styled button showing title and count":["زر - زر يظهر العنوان و العداد CSS styled"],"Box - Box showing thumbnail, title, count, filename and filesize.":["صندوق - صندوق يظهر صورة مصغرة، العنوان، العداد، اسم الملف و حجم الملف."],"Filename - Filename and download count":["اسم الملف - اسم الملف و عداد التنزيل"],"Title - Shows download title only":["العنوان - يظهر عنوان التنزيل فقط"],"Version list - Lists all download versions in an unordered list":["قائمة النسخ - يظهر جميع نسخ التنزيل بدون ترتيب"],"Custom template":["قالب مخصص"],"Custom Template":["قالب مخصص"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>button</code>, the <code>content-download-button.php</code> template will be used instead. You can add custom templates inside your theme folder.":[""],"X-Accel-Redirect / X-Sendfile":["X-Accel-Redirect / X-Sendfile"],"Enable":["مُفعّل"],"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be used to serve downloads instead of PHP (server requires <code>mod_xsendfile</code>).":["If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be used to serve downloads instead of PHP (server requires <code>mod_xsendfile</code>)."],"Prevent hotlinking":["تجنب الروابط الساخنة"],"If enabled, the download handler will check the PHP referer to see if it originated from your site and if not, redirect them to the homepage.":["إذا كان مُفعّلا، معالج التنزيل سوف يقوم بالتحقق من مُحوّل PHP إذا كان في الأصل من موقعك أما إذا كان العكس , يقوم بتحويله إلى الصفحة الرئيسية."],"Allow Proxy IP Override":[""],"If enabled, Download Monitor will use the X_FORWARDED_FOR HTTP header set by proxies as the IP address. Note that anyone can set this header, making it less secure.":[""],"Endpoint":["نقطة النهاية"],"download":["تنزيل"],"Download Endpoint":["تنزيل نقطة النهاية"],"Define what endpoint should be used for download links. By default this will be <code>%s</code>.":["حدد أي نقطة نهاية يجب استخدامها لروابط التنزيل ، افتراضيا سوف تكون <code>%s</code>."],"Endpoint Value":["قيمة نقطة النهاية"],"Define what unique value should be used on the end of your endpoint to identify the downloadable file. e.g. ID would give a link like <code>%s</code>":["Define what unique value should be used on the end of your endpoint to identify the downloadable file. e.g. ID would give a link like <code>%s</code>"],"Download ID":["مُعرّف التنزيل"],"Download slug":["الاسم اللطيف للتنزيل"],"Hashes":[""],"MD5 hashes":["MD5 hashes"],"Generate MD5 hash for uploaded files":["توليد MD5 hash للملفات المُحمّلة"],"SHA1 hashes":["SHA1 hashes"],"Generate SHA1 hash for uploaded files":["توليد SHA1 hash للملفات المُحمّلة"],"SHA256 hashes":[""],"Generate SHA256 hash for uploaded files":[""],"Hashes can optionally be output via shortcodes, but may cause performance issues with large files.":["Hashes يمكن إظهارها اختياريا عبر الشفرات القصيرة، لكن هذا يمكن أن يسبب مشاكل في الأداء مع الملفات الكبيرة."],"CRC32B hashes":["CRC32B hashes"],"Generate CRC32B hash for uploaded files":["توليد CRC32B hash للملفات المُحمّلة"],"Logging":["تسجيل"],"Download Log":["سجل التنزيل"],"Log download attempts, IP addresses and more.":["سجل محاولات التنزيل، عناوين الآي بي و المزيد."],"Count unique IPs only":[""],"If enabled, the counter for each download will only increment and create a log entry once per IP address.":[""],"Access":[""],"No Access Page":[""],"Choose what page is displayed when the user has no access to a file. Don't forget to add the <code>[dlm_no_access]</code> shortcode to the page.":[""],"You do not have permission to access this download. %sGo to homepage%s":[""],"No access message":[""],"The message that will be displayed to visitors when they don't have access to a file.":[""],"Blacklist IPs":["عناوين الأي بي في القائمة السوداء"],"List IP Addresses to blacklist, 1 per line. Use IP/CIDR netmask format for ranges. IPv4 examples: <code>198.51.100.1</code> or <code>198.51.100.0/24</code>. IPv6 examples: <code>2001:db8::1</code> or <code>2001:db8::/32</code>.":[""],"Blacklist user agents":["القائمة السوداء لعملاء المستخدمين"],"List browser user agents to blacklist, 1 per line. Partial matches are sufficient. Regex matching is allowed by surrounding the pattern with forward slashes, e.g. <code>/^Mozilla.+Googlebot/</code>":[""],"Misc":[""],"Remove Data on Uninstall?":[""],"Check this box if you would like to completely remove all Download Monitor data when the plugin is deleted.":[""],"Clear all transients":[""],"Remove all Download Monitor transients, this can solve version caching issues.":[""],"Select Page":[""],"Download Information":[""],"Download Options":["خيارات التنزيل"],"Downloadable Files/Versions":["الملفات/النسخ القابلة للتنزيل"],"Short Description":["تعريف قصير"],"URL":[""],"Shortcode":[""],"No download information for new downloads.":[""],"Mark this download as featured. Used by shortcodes and widgets.":["سجل هذا التنزيل كتنزيل بارز. يستعمل من طرف الشفرات القصيرة و المربعات الجانبية."],"Only logged in users will be able to access the file via a download link if this is enabled.":["إذا كان هذا مُفعلا فإن المستخدمين المسجلين فقط لديهم القابلية لولوج الملف عن طريق رابط التنزيل."],"Don't force download. If the <code>dlm_uploads</code> folder is protected you may need to move your file.":[""],"Add file":["أضف ملفا"],"Close all":["أغلق الكل"],"Expand all":["فتح الكل"],"Documentation":[""],"Password Required":["كلمة السر مطلوبة"],"Download does not exist.":["التنزيل غير موجود."],"Go to homepage &rarr;":["اذهب إلى الصفحة الرئيسية &rarr;"],"Download Error":["خطأ في التنزيل"],"No file paths defined.":["لم يتم تحديد مسار الملف."],"Redirected to file":["مُحوّل إلى ملف"],"Redirected to remote file.":["تحويل إلى ملف عن بعد."],"File not found.":["ملف غير موجود."],"No Access":[""],"Legacy Upgrader":[""],"Download Monitor - Legacy Upgrade":[""],"Welcome to the Download Monitor Legacy Upgrader. On this page we will upgrade your old Download Monitor (legacy) data so it will work with the latest version. If you're on this page, it should mean that you updated to this version from Download Monitor %s. If you're unsure if this is correct, or you want to read more about the legacy upgrade, we've setup a page that will explain this process in a lot more detail. %sClick here%s if to view that page.":[""],"Version ID":["مُعرّف النسخة"],"Filename":["اسم الملف"],"User ID":["مُعرّف المستخدم"],"User Login":["مستخدم الدخول"],"User Email":["بريد المستخدم"],"User IP":["أي بي المستخدم"],"User Agent":["عميل المستخدم"],"Date":["التاريخ"],"Status":["الحالة"],"Meta Data":[""],"Logs":["السجلات"],"Download Logs":["سجلات التنزيل "],"Export CSV":["تصدير CSV"],"Are you sure you want to delete ALL log items?":[""],"Delete Logs":["احذف السجلات"],"Delete":[""],"Download Complete":["اكتمل التنزيل"],"%s ago":["%s مضت"]," (v%s)":[""]," (v%s no longer exists)":[""],"Download #%d (no longer exists)":["التنزيل #%d (لم يعد موجودا)"],"Non-member":["غير عضو"],"User":["مستخدم"],"IP Address":["عنوان أي بي"],"Log entries deleted":[""],"Any status":["أي حالة"],"Failed":["أخفق"],"Redirected":["مُحوّل"],"Completed":["مُكتمل"],"Show all dates":["إظهار كل التواريخ"],"%1$s %2$d":["%1$s %2$d"],"Select a User":[""],"25 per page":["25 في كل صفحة"],"50 per page":["50 في كل صفحة"],"100 per page":["100 في كل صفحة"],"200 per page":["200 في كل صفحة"],"Show All":["إظهار الكل"],"Filter":["فلتر"],"All Downloads":["كل التنزيلات"],"Downloads":["تنزيلات"],"Add New":["أضف جديد"],"Add Download":["أضف تنزيل"],"Edit":["تعديل"],"Edit Download":["تعديل التنزيل"],"New Download":["تنزيل جديد"],"View Download":["مشاهدة التنزيل"],"Search Downloads":["بحث في التنزيلات"],"No Downloads found":["لا توجد تنزيلات"],"No Downloads found in trash":["لا توجد تنزيلات في سلة المهملات"],"Parent Download":["التنزيل الرئيسي"],"This is where you can create and manage downloads for your site.":["هنا يمكنك إنشاء و تسيير التنزيلات لموقعك."],"License successfully activated.":[""],"<a href=\"%s\">Register your copy</a> of the <strong>%s</strong> extension to receive access to automatic upgrades and support. Need a license key? <a href=\"%s\" target=\"_blank\">Purchase one now</a>.":[""],"Download not found":["تنزيل غير موجود"],"Download Categories":[""],"Download Category":["تصنيفات التنزيل"],"Search Download Categories":["بحث في تصنيفات التنزيل"],"All Download Categories":["كل تصنيفات التنزيل"],"Parent Download Category":["التصنيف الأب للتنزيل"],"Edit Download Category":["تعديل تصنيف التنزيل"],"Update Download Category":["تحديث تصنيف التنزيل"],"Add New Download Category":["أضف تصنيف تنزيل جديدا"],"New Download Category Name":["اسم جديد لتصنيف التنزيل"],"Download Tags":[""],"Download Tag":["وسم التنزيل"],"Search Download Tags":["بحث في وسوم التنزيل"],"All Download Tags":["كل وسوم التنزيل"],"Parent Download Tag":["وسم رئيسي للتنزيل"],"Edit Download Tag":["تعديل وسم التنزيل"],"Update Download Tag":["تحديث وسم التنزيل"],"Add New Download Tag":["إضافة وسم تنزيل جديد"],"New Download Tag Name":["اسم وسم تنزيل جديد"],"Display a list of your downloads.":["إظهار قائمة تنزيلاتك."],"Downloads List":["قائمة التنزيلات"],"Featured Downloads":["تنزيلات بارزة"],"Limit":[""],"Output template":[""],"Default template":["قالب افتراضي"],"Order by":[""],"Random":["عشوائي"],"Date added":["تاريخ مضاف"],"Date modified":["تاريخ مُغيّر"],"Order":[""],"ASC":["تصاعدي"],"DESC":["تنازلي"],"Show only featured downloads":["إظهار التنزيلات البارزة فقط"],"Show only members only downloads":["إظهار تنزيلات الأعضاء فقط"],"1 download":["0 تنزيل","تنزيل واحد","تنزيلان","بضع تنزيلات","العديد من التنزيلات","%d تنزيل"],"Version %s":["نسخة %s"],"Download File":["تنزيل الملف"],"Download &ldquo;%s&rdquo;":["تنزيل &ldquo;%s&rdquo;"],"Downloaded 1 time":["تم التنزيل 0 مرة","تم التنزيل مرة واحدة","تم التنزيل مرتين","تم التنزيل عدة مرات","تم التنزيل العديد من المرات","تم التنزيل %d مرة"],"Download Monitor":["مراقب التنزيل"],"https://www.download-monitor.com":["http://www.download-monitor.com"],"A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.":["الحل الكامل لتسيير الملفات القابلة للتنزيل, مراقبة التنزيلات و إخراج روابط التنزيل و معلومات الملف في موقعك المدعوم من طرف وردبريس."],"Never5":[""],"https://www.never5.com":[""],"Drop file here *or* select file\u0004or":["أو"]}}}
languages/download-monitor-be_BY-dlm_gutenberg_blocks.json ADDED
@@ -0,0 +1 @@
 
1
+ {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);","lang":"be_BY"},"Remove":[""],"Click to toggle":[""],"Version <span class=\"version\">%s</span> (%s)":[""],"n/a":[""],"Downloaded %s time":["","Downloaded %s times","Downloaded %s times","Downloaded %s times"],"Version":[""],"File URL(s)":[""],"Enter one file path/URL per line - multiple files will be used as mirrors (chosen at random).":[""],"Upload file":[""],"Choose a file":[""],"Insert file URL":[""],"Browse for file":[""],"Download count":[""],"File Date":[""],"h":[""],"m":[""],"It looks like you upgraded to the latest version of Download Monitor from a legacy version (3.x)":[""],"Currently your downloads don't work like they should, we need to %s before they'll work again.":[""],"upgrade your downloads":[""],"We've created an upgrading tool that will do all the work for you. You can read more about this tool on %sour website (click here)%s or start the upgrade now.":[""],"Take me to the Upgrade Tool":[""],"hide notice":[""],"Download Monitor Extensions":[""],"Extensions":[""],"If you like %sDownload Monitor%s please leave us a %s★★★★★%s rating. A huge thank you from us in advance!":[""],"Insert Download":[""],"Are you sure you want to delete this file ? ":[""],"Browse for a file":[""],"Select a category":[""],"Download Monitor Data":[""],"Featured download":[""],"Members only":[""],"Redirect to file":[""],"Image":[""],"Title":[""],"ID":[""],"File":[""],"Categories":[""],"Tags":[""],"Featured":[""],"Redirect only":[""],"Date posted":[""],"Yes":[""],"Download title":[""],"Download updated.":[""],"Custom field updated.":[""],"Custom field deleted.":[""],"Download restored to revision from %s":[""],"Download published.":[""],"Download saved.":[""],"Download submitted.":[""],"Download scheduled for: <strong>%1$s</strong>.":[""],"M j, Y @ G:i":[""],"Download draft updated.":[""],"Popular Downloads":[""],"There are no stats available yet!":[""],"Download":[""],"Extend Download Monitor with its powerful free and paid extensions. %sClick here to browse all extensions%s":[""],"No files found":[""],"Insert Shortcode":[""],"Quick-add download":[""],"Error: File was not created.":[""],"Download successfully created.":[""],"Error: Download was not created.":[""],"Search download":[""],"Choose a download":[""],"Template":[""],"Template Name":[""],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>image</code>, the <code>content-download-image.php</code> template will be used instead.":[""],"Drop file here":[""],"Select File":[""],"Enter URL manually":[""],"Download URL":[""],"Required URL":[""],"Download Title":[""],"Required title":[""],"Optional version number":[""],"Save Download":[""],"Allowed Files":[""],"Please wait...":[""],"Reports":[""],"Switch to %s":[""],"Per Day":[""],"Month":[""],"Download Reports":[""],"Loading":[""],"Settings":[""],"Because your server is running on nginx, our .htaccess file can't protect your downloads.":[""],"Please add the following rules to your nginx config to disable direct file access: %s":[""],"Download Monitor Transients successfully cleared!":[""],"Settings successfully saved":[""],"Save Changes":[""],"General":[""],"Default Template":[""],"Choose which template is used for <code>[download]</code> shortcodes by default (this can be overridden by the <code>format</code> argument).":[""],"Default - Title and count":[""],"Button - CSS styled button showing title and count":[""],"Box - Box showing thumbnail, title, count, filename and filesize.":[""],"Filename - Filename and download count":[""],"Title - Shows download title only":[""],"Version list - Lists all download versions in an unordered list":[""],"Custom template":[""],"Custom Template":[""],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>button</code>, the <code>content-download-button.php</code> template will be used instead. You can add custom templates inside your theme folder.":[""],"X-Accel-Redirect / X-Sendfile":[""],"Enable":[""],"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be used to serve downloads instead of PHP (server requires <code>mod_xsendfile</code>).":[""],"Prevent hotlinking":[""],"If enabled, the download handler will check the PHP referer to see if it originated from your site and if not, redirect them to the homepage.":[""],"Allow Proxy IP Override":[""],"If enabled, Download Monitor will use the X_FORWARDED_FOR HTTP header set by proxies as the IP address. Note that anyone can set this header, making it less secure.":[""],"Endpoint":[""],"download":[""],"Download Endpoint":[""],"Define what endpoint should be used for download links. By default this will be <code>%s</code>.":[""],"Endpoint Value":[""],"Define what unique value should be used on the end of your endpoint to identify the downloadable file. e.g. ID would give a link like <code>%s</code>":[""],"Download ID":[""],"Download slug":[""],"Hashes":[""],"MD5 hashes":[""],"Generate MD5 hash for uploaded files":[""],"SHA1 hashes":[""],"Generate SHA1 hash for uploaded files":[""],"SHA256 hashes":[""],"Generate SHA256 hash for uploaded files":[""],"Hashes can optionally be output via shortcodes, but may cause performance issues with large files.":[""],"CRC32B hashes":[""],"Generate CRC32B hash for uploaded files":[""],"Logging":[""],"Download Log":[""],"Log download attempts, IP addresses and more.":[""],"Count unique IPs only":[""],"If enabled, the counter for each download will only increment and create a log entry once per IP address.":[""],"Access":[""],"No Access Page":[""],"Choose what page is displayed when the user has no access to a file. Don't forget to add the <code>[dlm_no_access]</code> shortcode to the page.":[""],"You do not have permission to access this download. %sGo to homepage%s":[""],"No access message":[""],"The message that will be displayed to visitors when they don't have access to a file.":[""],"Blacklist IPs":[""],"List IP Addresses to blacklist, 1 per line. Use IP/CIDR netmask format for ranges. IPv4 examples: <code>198.51.100.1</code> or <code>198.51.100.0/24</code>. IPv6 examples: <code>2001:db8::1</code> or <code>2001:db8::/32</code>.":[""],"Blacklist user agents":[""],"List browser user agents to blacklist, 1 per line. Partial matches are sufficient. Regex matching is allowed by surrounding the pattern with forward slashes, e.g. <code>/^Mozilla.+Googlebot/</code>":[""],"Misc":[""],"Remove Data on Uninstall?":[""],"Check this box if you would like to completely remove all Download Monitor data when the plugin is deleted.":[""],"Clear all transients":[""],"Remove all Download Monitor transients, this can solve version caching issues.":[""],"Select Page":[""],"Download Information":[""],"Download Options":[""],"Downloadable Files/Versions":[""],"Short Description":[""],"URL":[""],"Shortcode":[""],"No download information for new downloads.":[""],"Mark this download as featured. Used by shortcodes and widgets.":[""],"Only logged in users will be able to access the file via a download link if this is enabled.":[""],"Don't force download. If the <code>dlm_uploads</code> folder is protected you may need to move your file.":[""],"Add file":[""],"Close all":[""],"Expand all":[""],"Documentation":[""],"Password Required":[""],"Download does not exist.":[""],"Go to homepage &rarr;":[""],"Download Error":[""],"No file paths defined.":[""],"Redirected to file":[""],"Redirected to remote file.":[""],"File not found.":[""],"No Access":[""],"Legacy Upgrader":[""],"Download Monitor - Legacy Upgrade":[""],"Welcome to the Download Monitor Legacy Upgrader. On this page we will upgrade your old Download Monitor (legacy) data so it will work with the latest version. If you're on this page, it should mean that you updated to this version from Download Monitor %s. If you're unsure if this is correct, or you want to read more about the legacy upgrade, we've setup a page that will explain this process in a lot more detail. %sClick here%s if to view that page.":[""],"Version ID":[""],"Filename":[""],"User ID":[""],"User Login":[""],"User Email":[""],"User IP":[""],"User Agent":[""],"Date":[""],"Status":[""],"Meta Data":[""],"Logs":[""],"Download Logs":[""],"Export CSV":[""],"Are you sure you want to delete ALL log items?":[""],"Delete Logs":[""],"Delete":[""],"Download Complete":[""],"%s ago":[""]," (v%s)":[""]," (v%s no longer exists)":[""],"Download #%d (no longer exists)":[""],"Non-member":[""],"User":[""],"IP Address":[""],"Log entries deleted":[""],"Any status":[""],"Failed":[""],"Redirected":[""],"Completed":[""],"Show all dates":[""],"%1$s %2$d":[""],"Select a User":[""],"25 per page":[""],"50 per page":[""],"100 per page":[""],"200 per page":[""],"Show All":[""],"Filter":[""],"All Downloads":[""],"Downloads":[""],"Add New":[""],"Add Download":[""],"Edit":[""],"Edit Download":[""],"New Download":[""],"View Download":[""],"Search Downloads":[""],"No Downloads found":[""],"No Downloads found in trash":[""],"Parent Download":[""],"This is where you can create and manage downloads for your site.":[""],"License successfully activated.":[""],"<a href=\"%s\">Register your copy</a> of the <strong>%s</strong> extension to receive access to automatic upgrades and support. Need a license key? <a href=\"%s\" target=\"_blank\">Purchase one now</a>.":[""],"Download not found":[""],"Download Categories":[""],"Download Category":[""],"Search Download Categories":[""],"All Download Categories":[""],"Parent Download Category":[""],"Edit Download Category":[""],"Update Download Category":[""],"Add New Download Category":[""],"New Download Category Name":[""],"Download Tags":[""],"Download Tag":[""],"Search Download Tags":[""],"All Download Tags":[""],"Parent Download Tag":[""],"Edit Download Tag":[""],"Update Download Tag":[""],"Add New Download Tag":[""],"New Download Tag Name":[""],"Display a list of your downloads.":[""],"Downloads List":[""],"Featured Downloads":[""],"Limit":[""],"Output template":[""],"Default template":[""],"Order by":[""],"Random":[""],"Date added":[""],"Date modified":[""],"Order":[""],"ASC":[""],"DESC":[""],"Show only featured downloads":[""],"Show only members only downloads":[""],"1 download":["","%d downloads","%d downloads","%d downloads"],"Version %s":[""],"Download File":[""],"Download &ldquo;%s&rdquo;":[""],"Downloaded 1 time":["","Downloaded %d times","Downloaded %d times","Downloaded %d times"],"Download Monitor":[""],"https://www.download-monitor.com":[""],"A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.":[""],"Never5":[""],"https://www.never5.com":[""],"Drop file here *or* select file\u0004or":[""]}}}
languages/download-monitor-ca_ES-dlm_gutenberg_blocks.json ADDED
@@ -0,0 +1 @@
 
1
+ {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"ca_ES"},"Remove":["Esborrar"],"Click to toggle":["Fes clic per alternar"],"Version <span class=\"version\">%s</span> (%s)":["Versió <span class=\"version\">%s</span> (%s)"],"n/a":["No disponible"],"Downloaded %s time":["Descàrregat %s vegada","Descàrregat %s vegades"],"Version":["Versió"],"File URL(s)":["Adreça(ces) URL de l'arxiu"],"Enter one file path/URL per line - multiple files will be used as mirrors (chosen at random).":["Introdueix una ruta d'arxiu/URL per línia; si hi ha diferents arxius es faran servir com a descàrregues alternatives (escollides a l'atzar)."],"Upload file":["Pujar un arxiu"],"Choose a file":["Tria un arxiu"],"Insert file URL":["Insereix la URL de l'arxiu"],"Browse for file":["Cercar arxiu"],"Download count":["Nombre de descàrregues"],"File Date":["Data de l'arxiu"],"h":["h"],"m":["m"],"It looks like you upgraded to the latest version of Download Monitor from a legacy version (3.x)":[""],"Currently your downloads don't work like they should, we need to %s before they'll work again.":[""],"upgrade your downloads":[""],"We've created an upgrading tool that will do all the work for you. You can read more about this tool on %sour website (click here)%s or start the upgrade now.":[""],"Take me to the Upgrade Tool":[""],"hide notice":[""],"Download Monitor Extensions":["Extensions de Download Monitor"],"Extensions":["Extensions"],"If you like %sDownload Monitor%s please leave us a %s★★★★★%s rating. A huge thank you from us in advance!":["Si t'agrada %sDownload Monitor%s, si us plau, envía'ns una valoració de %s★★★★★%s. Gràcies anticipades!"],"Insert Download":["Inserir descàrrega"],"Are you sure you want to delete this file ? ":["Segur que voleu eliminar aquest arxiu?"],"Browse for a file":["Cercar un arxiu"],"Select a category":["Selecciona una categoria"],"Download Monitor Data":["Dades de Download Monitor"],"Featured download":["Descàrrega destacada"],"Members only":["Només per a membres"],"Redirect to file":["Redirigir a l'arxiu"],"Image":["Imatge"],"Title":["Títol"],"ID":["ID"],"File":["Arxiu"],"Categories":["Categories"],"Tags":["Etiquetes"],"Featured":["Destacat"],"Redirect only":["Només redirigir"],"Date posted":["Data de publicació"],"Yes":["Si"],"Download title":["Títol de la descàrrega"],"Download updated.":["Descàrrega actualitzada"],"Custom field updated.":["Camp personalitzat actualitzat."],"Custom field deleted.":["Camp personalitzat esborrat."],"Download restored to revision from %s":["Descàrrega recuperada des de la revisió %s"],"Download published.":["Descàrrega publicada"],"Download saved.":["Descàrrega desada"],"Download submitted.":["Descàrrega enviada"],"Download scheduled for: <strong>%1$s</strong>.":["Descàrrega prevista per a: <strong>%1$s</strong>."],"M j, Y @ G:i":["j \"\"d\"\"e F \"\"d\"\"e Y, G:i"],"Download draft updated.":["Esborrany de descàrrega actualitzat."],"Popular Downloads":["Descàrregues més populars"],"There are no stats available yet!":["Encara no hi ha estadístiques disponibles!"],"Download":["Descàrrega"],"Extend Download Monitor with its powerful free and paid extensions. %sClick here to browse all extensions%s":["Amplía Download Monitor amb les seves extensions, tant gratuitas com de pagament. %sFes clic aquí per veure totes les extensions%s"],"No files found":["No s'han trobat arxius"],"Insert Shortcode":["Inserir còdi curt"],"Quick-add download":["Addició ràpida d'una descàrrega."],"Error: File was not created.":["Error: No s'ha creat l'arxiu."],"Download successfully created.":["Descàrrega creada correctament."],"Error: Download was not created.":["Error: No s'ha creat la descàrrega."],"Search download":[""],"Choose a download":["Tria una descàrrega"],"Template":["Plantilla"],"Template Name":["Nom de la plantilla"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>image</code>, the <code>content-download-image.php</code> template will be used instead.":["Deixant-lo en blanc, es farà servir l'arxiu de plantilla predeterminada <code>content-download.php</code>. Si, per exemple, escrius <code>image</code>, en el seu lloc es farà servir la plantilla <code>content-download-image.php</code>."],"Drop file here":["Deixar anar l'arxiu aquí"],"Select File":["Selecciona Arxiu"],"Enter URL manually":["Introduir l'adreça URL manualment"],"Download URL":["URL de descàrrega"],"Required URL":["URL necessaria"],"Download Title":["Títol de la descàrrega"],"Required title":["Títol necessari"],"Optional version number":["Número de versió opcional"],"Save Download":["Desar la descàrrega"],"Allowed Files":["Arxius permesos"],"Please wait...":["Si us pla, espera..."],"Reports":[""],"Switch to %s":[""],"Per Day":[""],"Month":[""],"Download Reports":[""],"Loading":[""],"Settings":["Configuració"],"Because your server is running on nginx, our .htaccess file can't protect your downloads.":["A causa que el servidor s'està executant en Nginx, el nostre arxiu .htaccess no pot protegir les seves descàrregues."],"Please add the following rules to your nginx config to disable direct file access: %s":["Si us plau, afegiu les següents regles a la seva configuració Nginx per desactivar l'accés directe a arxius:%s"],"Download Monitor Transients successfully cleared!":[""],"Settings successfully saved":["Configuració guardada correctament"],"Save Changes":["Desa els canvis"],"General":["General"],"Default Template":["Plantilla predeterminada"],"Choose which template is used for <code>[download]</code> shortcodes by default (this can be overridden by the <code>format</code> argument).":["Tria quina plantilla fara servir el còdi curt <code>[download]</code> de forma predeterminada (això pot ser anul·lat pe l'argument <code>format</code>)."],"Default - Title and count":["Predeterminat: Títol i quantitat de descàrregues"],"Button - CSS styled button showing title and count":["Botó: Botó amb estil CSS que mostra el títol i la quantitat de descàrregues."],"Box - Box showing thumbnail, title, count, filename and filesize.":["Caixa: Caixa que mostra una miniatura, el títol, la quantitat de descàrregues, el nom de l'arxiu i la seva mida."],"Filename - Filename and download count":["Nom d'arxiu: Mostra el nom de l'arxiu i la quantitat de descàrregues."],"Title - Shows download title only":["Títol: Només mostra el títol de la descàrrega."],"Version list - Lists all download versions in an unordered list":["Llista de versions: Mostra totes les versions de la descàrrega en una llista sense ordenar."],"Custom template":["Plantilla personalitzada"],"Custom Template":["Plantilla personalitzada"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>button</code>, the <code>content-download-button.php</code> template will be used instead. You can add custom templates inside your theme folder.":[""],"X-Accel-Redirect / X-Sendfile":["X-Accel-Redirect / X-Sendfile"],"Enable":["Activar"],"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be used to serve downloads instead of PHP (server requires <code>mod_xsendfile</code>).":["Si el servidor ho permet, es poden distribuir las descàrregues mitjançamt <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> en comptes de fer servir PHP (el servidor necesita <code>mod_xsendfile</code>)."],"Prevent hotlinking":["Evitar el hotlinking"],"If enabled, the download handler will check the PHP referer to see if it originated from your site and if not, redirect them to the homepage.":["Si esta actiu, el gestor de descàrregues comprobarà si la referencia PHP s'ha originat des de el teu lloc web, i en cas contrari la redirigirà a la pàgina d'inici."],"Allow Proxy IP Override":[""],"If enabled, Download Monitor will use the X_FORWARDED_FOR HTTP header set by proxies as the IP address. Note that anyone can set this header, making it less secure.":[""],"Endpoint":["Punt final"],"download":["Descàrrega"],"Download Endpoint":["Punt final de la descàrrega"],"Define what endpoint should be used for download links. By default this will be <code>%s</code>.":["Definir quin punt final s'ha d'utilitzar pels enllaços de descàrrega. Per defecte es farà servir <code>%s</code>."],"Endpoint Value":["Valor del punt final"],"Define what unique value should be used on the end of your endpoint to identify the downloadable file. e.g. ID would give a link like <code>%s</code>":["Defineix quin valor únic hauria de fer-se servir al final del teu punt final per identificar l'arxiu descarrregable. Per exemple, una ID mostraria un enllaç similar a <code>%s</code>."],"Download ID":["ID de descàrrega"],"Download slug":["Resum de descàrrega"],"Hashes":["Hashes"],"MD5 hashes":["Hash MD5"],"Generate MD5 hash for uploaded files":["Genera un hash MD5 per als arxius guardats"],"SHA1 hashes":["Hash SHA1"],"Generate SHA1 hash for uploaded files":["Genera un hash SHA1 per als arxius guardats"],"SHA256 hashes":[""],"Generate SHA256 hash for uploaded files":[""],"Hashes can optionally be output via shortcodes, but may cause performance issues with large files.":["Els hashes poden exportar-se de forma opcional mitjançant còdis curts, però podrien provocar problemes de rendiment amb arxius grans."],"CRC32B hashes":["Hash CRC32B"],"Generate CRC32B hash for uploaded files":["Genera un hash CRC32B per als arxius guardats"],"Logging":["Registres"],"Download Log":["Registre de descàrregues"],"Log download attempts, IP addresses and more.":["Registrar els intents de descàrrega, les adreces IP i més."],"Count unique IPs only":["Comptar només les IPs úniques"],"If enabled, the counter for each download will only increment and create a log entry once per IP address.":["Si s'activa, el comptador per a cada descàrrega només s'incrementarà i crearrà una entrada al registre un cop per adreça IP."],"Access":["Accés"],"No Access Page":["Pàgina per sense accés"],"Choose what page is displayed when the user has no access to a file. Don't forget to add the <code>[dlm_no_access]</code> shortcode to the page.":["Trieu la pàgina que es mostra quan l'usuari no té accés a un arxiu. No t'oblidis d'afegir el codi curt <code>[dlm_no_access]</ code> a la pàgina."],"You do not have permission to access this download. %sGo to homepage%s":["No tens permís per accedir a aquesta descàrrega. %sAnar a la pàgina principal%s"],"No access message":["Missatge si no es pot accedir"],"The message that will be displayed to visitors when they don't have access to a file.":["Aquest missatge es mostrarà als visitantes que no tinguin accés a un arxiu."],"Blacklist IPs":["IPs a la llista negra"],"List IP Addresses to blacklist, 1 per line. Use IP/CIDR netmask format for ranges. IPv4 examples: <code>198.51.100.1</code> or <code>198.51.100.0/24</code>. IPv6 examples: <code>2001:db8::1</code> or <code>2001:db8::/32</code>.":["Llista d'adreces IP a la llista negra, 1 per línia. Utilitzeu el format de màscara de xarxa IP/CIDR per rangs. Exemples IPv4: <code>198.51.100.1</code> o <code>198.51.100.0/24</code>. Exemples IPv6: <code>2001:db8::1</code> o <code>2001:db8::/32</code>."],"Blacklist user agents":["Agents d'usuari a la llista negra"],"List browser user agents to blacklist, 1 per line. Partial matches are sufficient. Regex matching is allowed by surrounding the pattern with forward slashes, e.g. <code>/^Mozilla.+Googlebot/</code>":[""],"Misc":[""],"Remove Data on Uninstall?":[""],"Check this box if you would like to completely remove all Download Monitor data when the plugin is deleted.":[""],"Clear all transients":[""],"Remove all Download Monitor transients, this can solve version caching issues.":[""],"Select Page":["Seleccionar pàgina"],"Download Information":["Informació de la descàrrega"],"Download Options":["Opcions de les descàrregues"],"Downloadable Files/Versions":["Arxius/Versions descarregables"],"Short Description":["Descripció breu"],"URL":["URL"],"Shortcode":["Còdi curt"],"No download information for new downloads.":[""],"Mark this download as featured. Used by shortcodes and widgets.":["Marcar aquesta descàrrega com a destacada. Utilitzat pels còdis curs i els ginys."],"Only logged in users will be able to access the file via a download link if this is enabled.":["Al activar aquesta opció npmés podràn accedir a l'arxiu el usuaris que hagin iniciat sessió i tinguin accés a l'enllaç de descàrrega."],"Don't force download. If the <code>dlm_uploads</code> folder is protected you may need to move your file.":["No forçar la descàrrega. Si la carpeta <code>dlm_uploads</code> està protegida és possible que hagi de moure l'arxiu.."],"Add file":["Afegir arxiu"],"Close all":["Tancar tot"],"Expand all":["Obrir tot"],"Documentation":[""],"Password Required":["Contraseña requerida"],"Download does not exist.":["La descàrrega no existeix."],"Go to homepage &rarr;":["Anar a la página d'inici &rarr;"],"Download Error":["Error en la descàrrega"],"No file paths defined.":["No s'han definit rutes d'arxius."],"Redirected to file":["Redirigit a l'arxiu"],"Redirected to remote file.":["Redirigit a arxiu remot."],"File not found.":["Cap arxiu trobat"],"No Access":["Sense accés"],"Legacy Upgrader":[""],"Download Monitor - Legacy Upgrade":[""],"Welcome to the Download Monitor Legacy Upgrader. On this page we will upgrade your old Download Monitor (legacy) data so it will work with the latest version. If you're on this page, it should mean that you updated to this version from Download Monitor %s. If you're unsure if this is correct, or you want to read more about the legacy upgrade, we've setup a page that will explain this process in a lot more detail. %sClick here%s if to view that page.":[""],"Version ID":["ID de la versió"],"Filename":["Nom de l'arxiu"],"User ID":["ID de l'usuari"],"User Login":["Nom de l'usuari"],"User Email":["Correu electrònic de l'usuari"],"User IP":["IP de l'usuari"],"User Agent":["Agent de l'usuari"],"Date":["Data"],"Status":["Estat"],"Meta Data":[""],"Logs":["Registres"],"Download Logs":["Registres de descàrrega"],"Export CSV":["Exportar CSV"],"Are you sure you want to delete ALL log items?":[""],"Delete Logs":["Esborra els registres"],"Delete":["Esborrar"],"Download Complete":["Descàrrega ompletada"],"%s ago":["Fa %s"]," (v%s)":[""]," (v%s no longer exists)":[""],"Download #%d (no longer exists)":["Descàrrega #%d (ja no existeix)"],"Non-member":["No membres"],"User":["Usuari"],"IP Address":["Adreça IP"],"Log entries deleted":["Entrades del registre eliminades"],"Any status":["Qualsevol estat"],"Failed":["Fallit"],"Redirected":["Redirigida"],"Completed":["Completada"],"Show all dates":["Mostrar totes les dates"],"%1$s %2$d":["%1$s %2$d"],"Select a User":[""],"25 per page":["25 per pàgina"],"50 per page":["50 per pàgina"],"100 per page":["100 per pàgina"],"200 per page":["200 per pàgina"],"Show All":["Mostra-ho tot"],"Filter":["Filtre"],"All Downloads":["Totes les descàrregues"],"Downloads":["Descàrregues"],"Add New":["Afegir nova"],"Add Download":["Afegir descàrrega"],"Edit":["Editar"],"Edit Download":["Editar descàrrega"],"New Download":["Noca descàrrega"],"View Download":["Veure la descàrrega"],"Search Downloads":["Cercar descàrregues"],"No Downloads found":["No s'han trobat descàrregues"],"No Downloads found in trash":["No s'han trobat descàrregues a la paperera"],"Parent Download":["Descàrrega pare"],"This is where you can create and manage downloads for your site.":["Aquí pots crear i gestionar les descàrregues del teu lloc web."],"License successfully activated.":["La llicència s'ha activat correctament."],"<a href=\"%s\">Register your copy</a> of the <strong>%s</strong> extension to receive access to automatic upgrades and support. Need a license key? <a href=\"%s\" target=\"_blank\">Purchase one now</a>.":[""],"Download not found":["No s'ha trobat la descàrrega"],"Download Categories":[""],"Download Category":["Categoria de descàrrega"],"Search Download Categories":["Cercar categories de descàrrega"],"All Download Categories":["Totes les categories de descàrrega"],"Parent Download Category":["Categoria de descàrrega pare"],"Edit Download Category":["Editar categoria de descàrrega"],"Update Download Category":["Actualitzar categoria de descàrrega"],"Add New Download Category":["Afegir una categoria de descàrrega nova"],"New Download Category Name":["Nom de la nova categoria de descàrrega"],"Download Tags":[""],"Download Tag":["Etiqueta de descàrrega"],"Search Download Tags":["Cercar etiquetes de descàrrega"],"All Download Tags":["Totes les etiquetes de descàrrega"],"Parent Download Tag":["Etiqueta de descàrrega pare"],"Edit Download Tag":["Editar etiqueta de descàrrega"],"Update Download Tag":["Actualitzar l'etiqueta de descàrrega"],"Add New Download Tag":["Afegir una etiqueta de descàrrega nova"],"New Download Tag Name":["Nom de la nova etiqueta de descàrrega"],"Display a list of your downloads.":["Mostra una llista de les teves descàrregue."],"Downloads List":["Llista de descàrregues"],"Featured Downloads":["Descàrregues destacades"],"Limit":["Límit"],"Output template":["Plantilla de sortida"],"Default template":["Plantilla predeterminada"],"Order by":["Ordenat por"],"Random":["Al atzar"],"Date added":["Data de creació"],"Date modified":["Data de modificació"],"Order":["Tipus d'ordenació:"],"ASC":["Ascendent"],"DESC":["Descendent"],"Show only featured downloads":["Mostrar només les descàrregues destacades"],"Show only members only downloads":["Mostrar només les descàrregues als membres"],"1 download":["1 descàrrega","%d descàrregues"],"Version %s":["Versió %s"],"Download File":["Descarregar arxiu"],"Download &ldquo;%s&rdquo;":["Descarregar &ldquo;%s&rdquo;"],"Downloaded 1 time":["Descarregat 1 vegada","Descarregat %d vegades"],"Download Monitor":["Download Monitor"],"https://www.download-monitor.com":["https://www.download-monitor.com"],"A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.":["Una completa solució per gestionar arxius descarregables, monitoritzar descàrregues i exportar enllaços de descàrrega i informació d'arxius al teu web fet amb WordPress."],"Never5":["Never5"],"https://www.never5.com":["https://www.never5.com"],"Drop file here *or* select file\u0004or":["o"]}}}
languages/download-monitor-cs_CZ-dlm_gutenberg_blocks.json ADDED
@@ -0,0 +1 @@
 
1
+ {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;","lang":"cs_CZ"},"Remove":["Vyjmou"],"Click to toggle":["Kliknutím přepnout"],"Version <span class=\"version\">%s</span> (%s)":["Verze <span class=\"version\">%s</span> (%s)"],"n/a":["n/a"],"Downloaded %s time":["Staženo %s ×","Staženo %s ×","Staženo %s ×","Staženo %s ×"],"Version":["Verze"],"File URL(s)":["URL souboru"],"Enter one file path/URL per line - multiple files will be used as mirrors (chosen at random).":["Zadejte cestu k souboru/URL na řádek - výce souborů bude použito jako zrcadla (náhodně vybraná)."],"Upload file":["Nahrát soubor"],"Choose a file":["Vybrat soubor"],"Insert file URL":["Vložit URL souboru"],"Browse for file":["Procházet k souboru"],"Download count":["Počet stažení"],"File Date":["Datum souboru"],"h":["h"],"m":["m"],"It looks like you upgraded to the latest version of Download Monitor from a legacy version (3.x)":[""],"Currently your downloads don't work like they should, we need to %s before they'll work again.":[""],"upgrade your downloads":[""],"We've created an upgrading tool that will do all the work for you. You can read more about this tool on %sour website (click here)%s or start the upgrade now.":[""],"Take me to the Upgrade Tool":[""],"hide notice":[""],"Download Monitor Extensions":[""],"Extensions":[""],"If you like %sDownload Monitor%s please leave us a %s★★★★★%s rating. A huge thank you from us in advance!":[""],"Insert Download":["Vložit download"],"Are you sure you want to delete this file ? ":[""],"Browse for a file":["Vyhledat soubor"],"Select a category":["Vyberte kategorii"],"Download Monitor Data":[""],"Featured download":["Zvýrazněný download"],"Members only":["Jen pro přihlášené"],"Redirect to file":["Přesměrování k souboru"],"Image":["Obrázek"],"Title":["Název"],"ID":["ID"],"File":["Soubor"],"Categories":["Kategorie"],"Tags":["Štítky"],"Featured":["Zvýrazněný"],"Redirect only":["Pouze přesměrování"],"Date posted":["Datum vložení"],"Yes":["Ano"],"Download title":["Název downloadu"],"Download updated.":["Download aktualizován."],"Custom field updated.":["Uživatelské pole aktualizováno."],"Custom field deleted.":["Uživatelské pole smazáno"],"Download restored to revision from %s":["Download obnoven na verzi z %s"],"Download published.":["Download zveřejněn."],"Download saved.":["Download uložen."],"Download submitted.":["Download schválen."],"Download scheduled for: <strong>%1$s</strong>.":["Download naplánován pro: <strong>%1$s</strong>."],"M j, Y @ G:i":["j. n. Y @ G:i"],"Download draft updated.":["Náhled downloadu aktualizován."],"Popular Downloads":["Oblíbené downloady"],"There are no stats available yet!":["Ještě nejsou statistiky k dispozici."],"Download":["Download"],"Extend Download Monitor with its powerful free and paid extensions. %sClick here to browse all extensions%s":[""],"No files found":["Nenalezeny soubory"],"Insert Shortcode":["Vložit zkratku"],"Quick-add download":["Přiložit download"],"Error: File was not created.":["Chyba: Soubor nebyl vytvořen."],"Download successfully created.":["Download byl úspěšně vytvořen."],"Error: Download was not created.":["Chyba: Download nebyl vytvořen."],"Search download":[""],"Choose a download":["Vyberte download"],"Template":["Šablona"],"Template Name":["Název šablony"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>image</code>, the <code>content-download-image.php</code> template will be used instead.":["Nechte prázdné pro použití výchozího<code>content-download.php</code> souboru šablony. Pokud zadáte, například, <code>image</code>, bude použita šablona <code>content-download-image.php</code>."],"Drop file here":["Přetáhněte soubor sem"],"Select File":["Vyberte soubor"],"Enter URL manually":["Zadejte URL adresu ručně"],"Download URL":["URL downloadu"],"Required URL":["URL vyžadováno"],"Download Title":["Název downloadu"],"Required title":["Název vyžadován"],"Optional version number":["Číslo verze - volitelně"],"Save Download":["Uložit download"],"Allowed Files":["Povolené typy souborů"],"Please wait...":["Počkejte..."],"Reports":[""],"Switch to %s":[""],"Per Day":[""],"Month":[""],"Download Reports":[""],"Loading":[""],"Settings":["Nastavení"],"Because your server is running on nginx, our .htaccess file can't protect your downloads.":[""],"Please add the following rules to your nginx config to disable direct file access: %s":[""],"Download Monitor Transients successfully cleared!":[""],"Settings successfully saved":["Nastavení bylo úspěšně uloženo"],"Save Changes":["Uložit změny"],"General":["Hlavní"],"Default Template":["Výchozí šablona"],"Choose which template is used for <code>[download]</code> shortcodes by default (this can be overridden by the <code>format</code> argument).":["Vyberte, která šablona bude použita pro zkratku <code>[download]</code> jako výchozí (toto může být přepsáno v argumentu <code>format</code>)."],"Default - Title and count":["Výchozí - Název a počítadlo"],"Button - CSS styled button showing title and count":["Button - stylované tlačítko zobrazující název a počítadlo"],"Box - Box showing thumbnail, title, count, filename and filesize.":["Box - Box zobrazí náhled, název, počítadlo, název a velikost souboru"],"Filename - Filename and download count":["Filename - Název souboru a počítadlo"],"Title - Shows download title only":["Title - Zobrazí pouze název"],"Version list - Lists all download versions in an unordered list":["Version list - Neuspořádaný seznam všech verzí downloadu"],"Custom template":["Uživatelská šablona"],"Custom Template":["Uživatelská šablona"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>button</code>, the <code>content-download-button.php</code> template will be used instead. You can add custom templates inside your theme folder.":[""],"X-Accel-Redirect / X-Sendfile":["X-Accel-Redirect / X-Sendfile"],"Enable":["Povolit"],"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be used to serve downloads instead of PHP (server requires <code>mod_xsendfile</code>).":["Pokud je povoleno, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> mohou být použity místo PHP (server vyžaduje <code>mod_xsendfile</code>)."],"Prevent hotlinking":["Předcházet hotlinking"],"If enabled, the download handler will check the PHP referer to see if it originated from your site and if not, redirect them to the homepage.":["Pokud je povoleno, download handler zjistí PHP referer, zda je stahování za vašeho webu, a pokud ne, přesměruje na domovskou stránku."],"Allow Proxy IP Override":[""],"If enabled, Download Monitor will use the X_FORWARDED_FOR HTTP header set by proxies as the IP address. Note that anyone can set this header, making it less secure.":[""],"Endpoint":["Koncový bod"],"download":["stažení"],"Download Endpoint":["Koncový bod stažení"],"Define what endpoint should be used for download links. By default this will be <code>%s</code>.":["Definuje koncový bod použitý jako odkaz na stahované soubory. Jako výchozí bude <code>%s</code>."],"Endpoint Value":["Hodnota koncového bodu"],"Define what unique value should be used on the end of your endpoint to identify the downloadable file. e.g. ID would give a link like <code>%s</code>":["Definuje jedinečnou hodnotu k identifikaci strahovaného souboru v rámci vašeho koncového bodu. Např. ID zobrazí odkaz jako <code>%s</code>"],"Download ID":["ID downloadu"],"Download slug":["Zkratka downloadu"],"Hashes":[""],"MD5 hashes":["MD5 hashes"],"Generate MD5 hash for uploaded files":["Generovat MD5 hash pro uploadované soubory"],"SHA1 hashes":["SHA1 hashes"],"Generate SHA1 hash for uploaded files":["Generovat SHA1 hash pro uploadované soubory"],"SHA256 hashes":[""],"Generate SHA256 hash for uploaded files":[""],"Hashes can optionally be output via shortcodes, but may cause performance issues with large files.":["Hashe můžete použít volitelně pro zkratky, mohou ale způsobit problémy s výkonem u velkých souborů."],"CRC32B hashes":["CRC32B hashes"],"Generate CRC32B hash for uploaded files":["Generovat CRC32B hash pro uploadované soubory"],"Logging":["Logování"],"Download Log":["Log downloadů"],"Log download attempts, IP addresses and more.":["Loguje pokusy o stažení, IP adresy a další."],"Count unique IPs only":[""],"If enabled, the counter for each download will only increment and create a log entry once per IP address.":[""],"Access":[""],"No Access Page":[""],"Choose what page is displayed when the user has no access to a file. Don't forget to add the <code>[dlm_no_access]</code> shortcode to the page.":[""],"You do not have permission to access this download. %sGo to homepage%s":[""],"No access message":[""],"The message that will be displayed to visitors when they don't have access to a file.":[""],"Blacklist IPs":["Seznam zakázaných IP adres"],"List IP Addresses to blacklist, 1 per line. Use IP/CIDR netmask format for ranges. IPv4 examples: <code>198.51.100.1</code> or <code>198.51.100.0/24</code>. IPv6 examples: <code>2001:db8::1</code> or <code>2001:db8::/32</code>.":[""],"Blacklist user agents":["Seznam zakázaných agentů"],"List browser user agents to blacklist, 1 per line. Partial matches are sufficient. Regex matching is allowed by surrounding the pattern with forward slashes, e.g. <code>/^Mozilla.+Googlebot/</code>":[""],"Misc":[""],"Remove Data on Uninstall?":[""],"Check this box if you would like to completely remove all Download Monitor data when the plugin is deleted.":[""],"Clear all transients":[""],"Remove all Download Monitor transients, this can solve version caching issues.":[""],"Select Page":[""],"Download Information":[""],"Download Options":["Volby downloadu"],"Downloadable Files/Versions":["Soubory ke stažení/Verze"],"Short Description":["Krátký popis"],"URL":[""],"Shortcode":[""],"No download information for new downloads.":[""],"Mark this download as featured. Used by shortcodes and widgets.":["Označte tento download jako zvýrazněný. Používá se pro zkratky a widgety."],"Only logged in users will be able to access the file via a download link if this is enabled.":["Pokud zvolíte tuto volbu, budou mít přístup k souboru a k jeho stažení pouze přihlášení uživatelé."],"Don't force download. If the <code>dlm_uploads</code> folder is protected you may need to move your file.":[""],"Add file":["Přidat soubor"],"Close all":["Sbalit vše"],"Expand all":["Rozbalit vše"],"Documentation":[""],"Password Required":["Heslo vyžadováno"],"Download does not exist.":["Download neexistuje."],"Go to homepage &rarr;":["Přejít na homepage &rarr;"],"Download Error":["Chyba downloadu"],"No file paths defined.":["Nejsou definovány cesty k souboru."],"Redirected to file":["Přesměrovat k souboru"],"Redirected to remote file.":["Přesměrovat k vzdálenému souboru."],"File not found.":["Soubor nenalezen."],"No Access":[""],"Legacy Upgrader":[""],"Download Monitor - Legacy Upgrade":[""],"Welcome to the Download Monitor Legacy Upgrader. On this page we will upgrade your old Download Monitor (legacy) data so it will work with the latest version. If you're on this page, it should mean that you updated to this version from Download Monitor %s. If you're unsure if this is correct, or you want to read more about the legacy upgrade, we've setup a page that will explain this process in a lot more detail. %sClick here%s if to view that page.":[""],"Version ID":["ID verze"],"Filename":["Jméno souboru"],"User ID":["ID uživatele"],"User Login":["Login uživatele"],"User Email":["Email uživatele"],"User IP":["IP uživatele"],"User Agent":["Agent uživatele"],"Date":["Datum"],"Status":["Status"],"Meta Data":[""],"Logs":["Logy"],"Download Logs":["Logy stažení"],"Export CSV":["Export CSV"],"Are you sure you want to delete ALL log items?":[""],"Delete Logs":["Smazat logy"],"Delete":[""],"Download Complete":["Download kompletní"],"%s ago":["před %s"]," (v%s)":[""]," (v%s no longer exists)":[""],"Download #%d (no longer exists)":["Download #%d (již neexistuje)"],"Non-member":["Nepřihlášený"],"User":["Uživatel"],"IP Address":["IP adresa"],"Log entries deleted":[""],"Any status":["Jakýkoliv status"],"Failed":["Selhal"],"Redirected":["Přesměrován"],"Completed":["Kompletní"],"Show all dates":["Zobrazit všechny datumy"],"%1$s %2$d":["%1$s %2$d"],"Select a User":[""],"25 per page":["25 na stránku"],"50 per page":["50 na stánku"],"100 per page":["100 na stránku"],"200 per page":["200 na stránku"],"Show All":["Zobrazit vše"],"Filter":["Filtr"],"All Downloads":["Všechny downloady"],"Downloads":["Downloady"],"Add New":["Přidat nový"],"Add Download":["Přidat download"],"Edit":["Upravit"],"Edit Download":["Upravit download"],"New Download":["Nový download"],"View Download":["Zobrazit download"],"Search Downloads":["Hledat downloady"],"No Downloads found":["Downloady nenalezeny"],"No Downloads found in trash":["Nic tu není"],"Parent Download":["Rodičovský download"],"This is where you can create and manage downloads for your site.":["Tady můžete vytvářet a spravovat downloady vašeho web."],"License successfully activated.":[""],"<a href=\"%s\">Register your copy</a> of the <strong>%s</strong> extension to receive access to automatic upgrades and support. Need a license key? <a href=\"%s\" target=\"_blank\">Purchase one now</a>.":[""],"Download not found":["Download nenalezen"],"Download Categories":[""],"Download Category":["Kategorie downloadů"],"Search Download Categories":["Pohledat kategorie"],"All Download Categories":["Všechny kategorie"],"Parent Download Category":["Rodičovská kategorie downloadů"],"Edit Download Category":["Upravit kategorii"],"Update Download Category":["Aktualizovat kategorii"],"Add New Download Category":["Přidat novou kategorii"],"New Download Category Name":["Název nové kategorie"],"Download Tags":[""],"Download Tag":["Štítek downloadu"],"Search Download Tags":["Prohledat štítky"],"All Download Tags":["Všechny štítky"],"Parent Download Tag":["Rodičovský štítek"],"Edit Download Tag":["Upravit štítek"],"Update Download Tag":["Aktualizovat štítek"],"Add New Download Tag":["Přidat nový štítek"],"New Download Tag Name":["Název nového štítku"],"Display a list of your downloads.":["Zobrazí sezbnam vašich downloadů."],"Downloads List":["Seznam downloadu"],"Featured Downloads":["Zvýrazněné downloady"],"Limit":[""],"Output template":[""],"Default template":["Výchozí šablona"],"Order by":[""],"Random":["Náhodně"],"Date added":["Datum přidání"],"Date modified":["Datum úpravy"],"Order":[""],"ASC":["Vzestupně"],"DESC":["Sestupně"],"Show only featured downloads":["Zobrazit pouze zvýrazněné downloady"],"Show only members only downloads":["Zobrazit downloady pouze pro přihlášené"],"1 download":["staženo 1×","staženo %d× ","staženo %d× ","staženo %d× "],"Version %s":["Verze %s"],"Download File":["Soubor downloadu"],"Download &ldquo;%s&rdquo;":["Download &ldquo;%s&rdquo;"],"Downloaded 1 time":["Staženo 1 ×","Staženo %d ×","Staženo %d ×","Staženo %d ×"],"Download Monitor":["Download Monitor"],"https://www.download-monitor.com":["https://www.download-monitor.com"],"A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.":["Plné řešení pro správu souborů ke stažení, sledování stahování a výstupy odkazů na stažení a informace o souborech ve vašem WordPress webu."],"Never5":[""],"https://www.never5.com":[""],"Drop file here *or* select file\u0004or":["nebo"]}}}
languages/download-monitor-cs_CZ.mo CHANGED
Binary file
languages/download-monitor-cs_CZ.po CHANGED
@@ -15,7 +15,7 @@ msgstr ""
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Language: cs_CZ\n"
18
- "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
19
  "X-Generator: grunt-wp-i18n 0.4.9\n"
20
 
21
  #: assets/views/meta-box/version.php:8
@@ -40,6 +40,7 @@ msgid_plural "Downloaded %s times"
40
  msgstr[0] "Staženo %s ×"
41
  msgstr[1] "Staženo %s ×"
42
  msgstr[2] "Staženo %s ×"
 
43
 
44
  #: assets/views/meta-box/version.php:22 src/Admin/CustomColumns.php:28
45
  #: src/Admin/MediaInsert.php:241
@@ -1172,6 +1173,7 @@ msgid_plural "%d downloads"
1172
  msgstr[0] "staženo 1×"
1173
  msgstr[1] "staženo %d× "
1174
  msgstr[2] "staženo %d× "
 
1175
 
1176
  #: templates/content-download-box.php:27
1177
  #: templates/content-download-filename.php:14
@@ -1194,6 +1196,7 @@ msgid_plural "Downloaded %d times"
1194
  msgstr[0] "Staženo 1 ×"
1195
  msgstr[1] "Staženo %d ×"
1196
  msgstr[2] "Staženo %d ×"
 
1197
 
1198
  #. Plugin Name of the plugin/theme
1199
  msgid "Download Monitor"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Language: cs_CZ\n"
18
+ "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
19
  "X-Generator: grunt-wp-i18n 0.4.9\n"
20
 
21
  #: assets/views/meta-box/version.php:8
40
  msgstr[0] "Staženo %s ×"
41
  msgstr[1] "Staženo %s ×"
42
  msgstr[2] "Staženo %s ×"
43
+ msgstr[3] "Staženo %s ×"
44
 
45
  #: assets/views/meta-box/version.php:22 src/Admin/CustomColumns.php:28
46
  #: src/Admin/MediaInsert.php:241
1173
  msgstr[0] "staženo 1×"
1174
  msgstr[1] "staženo %d× "
1175
  msgstr[2] "staženo %d× "
1176
+ msgstr[3] "staženo %d× "
1177
 
1178
  #: templates/content-download-box.php:27
1179
  #: templates/content-download-filename.php:14
1196
  msgstr[0] "Staženo 1 ×"
1197
  msgstr[1] "Staženo %d ×"
1198
  msgstr[2] "Staženo %d ×"
1199
+ msgstr[3] "Staženo %d ×"
1200
 
1201
  #. Plugin Name of the plugin/theme
1202
  msgid "Download Monitor"
languages/download-monitor-da_DK-dlm_gutenberg_blocks.json ADDED
@@ -0,0 +1 @@
 
1
+ {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"da_DK"},"Remove":["Fjern"],"Click to toggle":["Klik for at vise/skjule"],"Version <span class=\"version\">%s</span> (%s)":["Version <span class=\"version\">%s</span> (%s)"],"n/a":["&nbsp;‒&nbsp;"],"Downloaded %s time":["Downloadet %s gang","Downloadet %s gange"],"Version":["Version"],"File URL(s)":["Fil-URL(&#39;er)"],"Enter one file path/URL per line - multiple files will be used as mirrors (chosen at random).":["Indtast én filsti/URL per linje ‒ flere filer vil blive brugt som mirrors (tilfældigt valgt)."],"Upload file":["Upload fil"],"Choose a file":["Vælg en fil"],"Insert file URL":["Indsæt fil-URL"],"Browse for file":["Gennemse for fil"],"Download count":["Downloadantal"],"File Date":["Fildato"],"h":["h"],"m":["m"],"It looks like you upgraded to the latest version of Download Monitor from a legacy version (3.x)":[""],"Currently your downloads don't work like they should, we need to %s before they'll work again.":[""],"upgrade your downloads":[""],"We've created an upgrading tool that will do all the work for you. You can read more about this tool on %sour website (click here)%s or start the upgrade now.":[""],"Take me to the Upgrade Tool":[""],"hide notice":[""],"Download Monitor Extensions":["Download Monitor-udvidelser"],"Extensions":["Udvidelser"],"If you like %sDownload Monitor%s please leave us a %s★★★★★%s rating. A huge thank you from us in advance!":["Hvis du kan lide %sDownload Monitor%s, så giv os en %s★★★★★%s-bedømmelse. En kæmpetak fra os på forhånd!"],"Insert Download":["Indsæt download"],"Are you sure you want to delete this file ? ":["Er du sikker på, du vil slette denne fil? "],"Browse for a file":["Gennemse for fil"],"Select a category":["Vælg en kategori"],"Download Monitor Data":["Download Monitor-data"],"Featured download":["Fremhævet download"],"Members only":["Kun medlemmer"],"Redirect to file":["Redirigér til fil"],"Image":["Billede"],"Title":["Titel"],"ID":["ID"],"File":["Fil"],"Categories":["Kategorier"],"Tags":["Tags"],"Featured":["Fremhævet"],"Redirect only":["Kun redirect"],"Date posted":["Udgivelsesdato"],"Yes":["Ja"],"Download title":["Downloadtitel"],"Download updated.":["Download opdateret."],"Custom field updated.":["Brugerdefineret felt opdateret."],"Custom field deleted.":["Brugerdefineret felt slettet."],"Download restored to revision from %s":["Download gendannet til revision fra %s"],"Download published.":["Download udgivet."],"Download saved.":["Download gemt."],"Download submitted.":["Download indsendt."],"Download scheduled for: <strong>%1$s</strong>.":["Download planlagt til <strong>%1$s</strong>."],"M j, Y @ G:i":["j. F Y H.i"],"Download draft updated.":["Downloadkladde opdateret."],"Popular Downloads":["Populære downloads"],"There are no stats available yet!":["Der er endnu ikke nogen statistik!"],"Download":["Download"],"Extend Download Monitor with its powerful free and paid extensions. %sClick here to browse all extensions%s":["Udvid Download Monitor ‒ gratis eller mod betaling. %sKlik for at gennemse alle udvidelserne%s"],"No files found":["Ingen filer fundet"],"Insert Shortcode":["Indsæt shortcode"],"Quick-add download":["Lyntilføj download"],"Error: File was not created.":["Fejl: Fil blev ikke oprettet."],"Download successfully created.":["Download oprettet uden problemer."],"Error: Download was not created.":["Fejl: Download blev ikke oprettet."],"Search download":[""],"Choose a download":["Vælg en download"],"Template":["Skabelon"],"Template Name":["Skabelonnavn"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>image</code>, the <code>content-download-image.php</code> template will be used instead.":["Hvis uudfyldt bruges standardskabelonfilen <code>content-download.php</code>. Hvis du f.eks. indtaster <code>image</code>, bruges skabelonen <code>content-download-image.php</code> i stedet for."],"Drop file here":["Slip fil her"],"Select File":["Vælg fil"],"Enter URL manually":["Indtast URL manuelt"],"Download URL":["Download-URL"],"Required URL":["Påkrævet URL"],"Download Title":["Downloadtitel"],"Required title":["Påkrævet titel"],"Optional version number":["Valgfri versionsnummer"],"Save Download":["Gem download"],"Allowed Files":["Tilladte filer"],"Please wait...":["Vent venligst …"],"Reports":[""],"Switch to %s":[""],"Per Day":[""],"Month":[""],"Download Reports":[""],"Loading":[""],"Settings":["Indstillinger"],"Because your server is running on nginx, our .htaccess file can't protect your downloads.":["Fordi din server kører på nginx, kan din .htaccess-fil ikke beskytte dine downloads."],"Please add the following rules to your nginx config to disable direct file access: %s":["Tilføj venligst de følgende regler til din nginx-konfiguration for at deaktivere direkte filadgang: %s"],"Download Monitor Transients successfully cleared!":[""],"Settings successfully saved":["Indstillingerne gemt med succes"],"Save Changes":["Gem ændringer"],"General":["Generelt"],"Default Template":["Standardskabelon"],"Choose which template is used for <code>[download]</code> shortcodes by default (this can be overridden by the <code>format</code> argument).":["Vælg hvilken skabelon der bruges for <code>[download]</code>-shortcodes som standard (dette kan tilsidesættes af argumentet <code>format</code>)."],"Default - Title and count":["Standard - Titel og antal"],"Button - CSS styled button showing title and count":["Knap - CSS-stylet knap, der viser titel og antal"],"Box - Box showing thumbnail, title, count, filename and filesize.":["Boks - Boks, der viser miniature, titel, antal, filnavn og filstørrelse."],"Filename - Filename and download count":["Filnavn - Filnavn og antal downloads"],"Title - Shows download title only":["Titel ‒ Viser kun downloadtitel"],"Version list - Lists all download versions in an unordered list":["Versionsliste - Laver en liste med alle downloadversioner i uordnet rækkefølge"],"Custom template":["Brugerdefineret skabelon"],"Custom Template":["Brugerdefineret skabelon"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>button</code>, the <code>content-download-button.php</code> template will be used instead. You can add custom templates inside your theme folder.":[""],"X-Accel-Redirect / X-Sendfile":["X-Accel-Redirect / X-Sendfile"],"Enable":["Aktivér"],"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be used to serve downloads instead of PHP (server requires <code>mod_xsendfile</code>).":["Hvis understøttet, kan <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> bruges til at levere downloads i stedet for PHP (serveren skal have <code>mod_xsendfile</code>)."],"Prevent hotlinking":["Forhindr hotlinking"],"If enabled, the download handler will check the PHP referer to see if it originated from your site and if not, redirect them to the homepage.":["Hvis aktiveret, vil downloadhandleren tjekke PHP-referrer for at se, om den stammer fra dit site. Hvis ikke, viderestilles de til forsiden."],"Allow Proxy IP Override":[""],"If enabled, Download Monitor will use the X_FORWARDED_FOR HTTP header set by proxies as the IP address. Note that anyone can set this header, making it less secure.":[""],"Endpoint":["Slutpunkt"],"download":["download"],"Download Endpoint":["Downloadslutpunkt"],"Define what endpoint should be used for download links. By default this will be <code>%s</code>.":["Definér hvilket slutpunkt skal bruges for downloadlinks. Det vil som standard være <code>%s</code>."],"Endpoint Value":["Slutpunktsværdi"],"Define what unique value should be used on the end of your endpoint to identify the downloadable file. e.g. ID would give a link like <code>%s</code>":["Definér, hvilken unik værdi der skal bruges i slutningen af dit slutpunkt for at identficere filen, der kan downloades. Fx vil ID give et link som <code>%s</code>"],"Download ID":["Download‑ID"],"Download slug":["Downloadkorttitel"],"Hashes":["Hashfunktioner"],"MD5 hashes":["MD5-hashes"],"Generate MD5 hash for uploaded files":["Generér MD5-hash for uploadede filer"],"SHA1 hashes":["SHA1-hashes"],"Generate SHA1 hash for uploaded files":["Generér SHA1-hash for uploadede filer"],"SHA256 hashes":[""],"Generate SHA256 hash for uploaded files":[""],"Hashes can optionally be output via shortcodes, but may cause performance issues with large files.":["Hashes kan medtages, når du bruger kortkoder, hvis du ønsker det, men det kan medføre forsinkelser ved store filer."],"CRC32B hashes":["CRC32B-hashes"],"Generate CRC32B hash for uploaded files":["Generér CRC32B-hash for uploadede filer"],"Logging":["Logging"],"Download Log":["Downloadlog"],"Log download attempts, IP addresses and more.":["Log downloadforsøg, IP-adresser m.m."],"Count unique IPs only":["Tæl kun unikke IP'er"],"If enabled, the counter for each download will only increment and create a log entry once per IP address.":["Hvis aktiveret, forøges tælleren for hver downloadfil kun én gang for hver IP-adresse, og der logges kun én gang."],"Access":["Adgang"],"No Access Page":["Ingen adgang-side"],"Choose what page is displayed when the user has no access to a file. Don't forget to add the <code>[dlm_no_access]</code> shortcode to the page.":["Vælg, hvilken side der vises, når brugeren ikke har adgang til en fil. Husk at tilføje <code>[dlm_no_access]</code>-kortkoden på siden."],"You do not have permission to access this download. %sGo to homepage%s":["Du har ikke adgang til denne download. %sGå til hjemmeside%s"],"No access message":["Ingen adgang-besked"],"The message that will be displayed to visitors when they don't have access to a file.":["Den besked, der vil blive vist til besøgende, når de ikke har adgang til en fil."],"Blacklist IPs":["Blacklist IP-adresser"],"List IP Addresses to blacklist, 1 per line. Use IP/CIDR netmask format for ranges. IPv4 examples: <code>198.51.100.1</code> or <code>198.51.100.0/24</code>. IPv6 examples: <code>2001:db8::1</code> or <code>2001:db8::/32</code>.":["Anfør IP-adresser, der skal sortlistes, 1 per linje. Brug IP/CIDR-netmaskeformat for interval. IPv4-eksempler: <code>198.51.100.1</code> eller <code>198.51.100.0/24</code>. IPv6-eksempler: <code>2001:db8::1</code> eller <code>2001:db8::/32</code>."],"Blacklist user agents":["Blacklist brugeragenter"],"List browser user agents to blacklist, 1 per line. Partial matches are sufficient. Regex matching is allowed by surrounding the pattern with forward slashes, e.g. <code>/^Mozilla.+Googlebot/</code>":[""],"Misc":[""],"Remove Data on Uninstall?":[""],"Check this box if you would like to completely remove all Download Monitor data when the plugin is deleted.":[""],"Clear all transients":[""],"Remove all Download Monitor transients, this can solve version caching issues.":[""],"Select Page":["Vælg side"],"Download Information":["Downloadinformation"],"Download Options":["Downloadindstillinger"],"Downloadable Files/Versions":["Filer/Versioner, der kan downloades"],"Short Description":["Kort beskrivelse"],"URL":["URL"],"Shortcode":["Kortkode"],"No download information for new downloads.":[""],"Mark this download as featured. Used by shortcodes and widgets.":["Markér denne download som fremhævet. Bruges af shortcodes og widgets."],"Only logged in users will be able to access the file via a download link if this is enabled.":["Kun brugere, der er logget ind, vil få adgang til filen via et downloadlink, hvis dette aktiveres."],"Don't force download. If the <code>dlm_uploads</code> folder is protected you may need to move your file.":["Gennemtving ikke download. Hvis <code>dlm_uploads</code>-mappen er beskyttet, kan du blive nødt til at flytte filen."],"Add file":["Tilføj fil"],"Close all":["Luk alle"],"Expand all":["Udvid alle"],"Documentation":[""],"Password Required":["Adgangskode påkrævet"],"Download does not exist.":["Download eksisterer ikke."],"Go to homepage &rarr;":["Gå til forside &rarr;"],"Download Error":["Downloadfejl"],"No file paths defined.":["Ingen filstier defineret."],"Redirected to file":["Redirigeret til fil"],"Redirected to remote file.":["Redirigeret til fjernfil."],"File not found.":["Fil ikke fundet."],"No Access":["Ingen adgang"],"Legacy Upgrader":[""],"Download Monitor - Legacy Upgrade":[""],"Welcome to the Download Monitor Legacy Upgrader. On this page we will upgrade your old Download Monitor (legacy) data so it will work with the latest version. If you're on this page, it should mean that you updated to this version from Download Monitor %s. If you're unsure if this is correct, or you want to read more about the legacy upgrade, we've setup a page that will explain this process in a lot more detail. %sClick here%s if to view that page.":[""],"Version ID":["Version-ID"],"Filename":["Filnavn"],"User ID":["Bruger-ID"],"User Login":["Brugerlogin"],"User Email":["Bruger-e-mail"],"User IP":["Bruger-IP"],"User Agent":["Brugeragent"],"Date":["Dato"],"Status":["Status"],"Meta Data":[""],"Logs":["Logs"],"Download Logs":["Download-logs"],"Export CSV":["Eksportér CSV"],"Are you sure you want to delete ALL log items?":[""],"Delete Logs":["Slet logs"],"Delete":["Slet"],"Download Complete":["Download fuldført"],"%s ago":["%s siden"]," (v%s)":[""]," (v%s no longer exists)":[""],"Download #%d (no longer exists)":["Download #%d (eksisterer ikke længere)"],"Non-member":["Ikke-medlem"],"User":["Bruger"],"IP Address":["IP-adresse"],"Log entries deleted":["Logoptegnelser slettet"],"Any status":["Enhver status"],"Failed":["Mislykkede"],"Redirected":["Redirigeret"],"Completed":["Fuldført"],"Show all dates":["Vis alle datoer"],"%1$s %2$d":["%1$s %2$d"],"Select a User":[""],"25 per page":["25 per side"],"50 per page":["50 per side"],"100 per page":["100 per side"],"200 per page":["200 per side"],"Show All":["Vis alle"],"Filter":["Filtrér"],"All Downloads":["Alle downloads"],"Downloads":["Downloads"],"Add New":["Tilføj ny"],"Add Download":["Tilføj download"],"Edit":["Redigér"],"Edit Download":["Redigér download"],"New Download":["Ny download"],"View Download":["Se download"],"Search Downloads":["Søg i downloads"],"No Downloads found":["Ingen downloads fundet"],"No Downloads found in trash":["Ingen downloads fundet i Papirkurven"],"Parent Download":["Overdownload"],"This is where you can create and manage downloads for your site.":["Her kan du oprette og administrere downloads for dit site."],"License successfully activated.":["Licens aktiveret med succes."],"<a href=\"%s\">Register your copy</a> of the <strong>%s</strong> extension to receive access to automatic upgrades and support. Need a license key? <a href=\"%s\" target=\"_blank\">Purchase one now</a>.":[""],"Download not found":["Download ikke fundet"],"Download Categories":[""],"Download Category":["Downloadkategori"],"Search Download Categories":["Søg i downloadkategorier"],"All Download Categories":["Alle downloadkategorier"],"Parent Download Category":["Overkategori for download"],"Edit Download Category":["Redigér downloadkategori"],"Update Download Category":["Opdatér downloadkategori"],"Add New Download Category":["Tilføj ny downloadkategori"],"New Download Category Name":["Navn på ny downloadkategori"],"Download Tags":[""],"Download Tag":["Downloadtag"],"Search Download Tags":["Søg i downloadtags"],"All Download Tags":["Alle downloadtags"],"Parent Download Tag":["Overtag for download"],"Edit Download Tag":["Redigér downloadtag"],"Update Download Tag":["Opdatér downloadtag"],"Add New Download Tag":["Tilføj nyt downloadtag"],"New Download Tag Name":["Navn på nyt downloadtag"],"Display a list of your downloads.":["Vis en liste med dine downloads."],"Downloads List":["Downloadsliste"],"Featured Downloads":["Fremhævede downloads"],"Limit":["Begrænsning"],"Output template":["Outputskabelon"],"Default template":["Standardskabelon"],"Order by":["Sortér efter"],"Random":["Tilfældig"],"Date added":["Dato tilføjet"],"Date modified":["Dato ændret"],"Order":["Sorteringsrækkefølge"],"ASC":["STIG"],"DESC":["FALD"],"Show only featured downloads":["Vis kun fremhævede downloads"],"Show only members only downloads":["Vis kun medlemmer kun downloads"],"1 download":["1 download","%d downloads"],"Version %s":["Version %s"],"Download File":["Download fil"],"Download &ldquo;%s&rdquo;":["Download &ldquo;%s&rdquo;"],"Downloaded 1 time":["Downloadet 1 gang","Downloadet %d gange"],"Download Monitor":[""],"https://www.download-monitor.com":[""],"A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.":[""],"Never5":[""],"https://www.never5.com":[""],"Drop file here *or* select file\u0004or":[""]}}}
languages/download-monitor-de_DE-dlm_gutenberg_blocks.json ADDED
@@ -0,0 +1 @@
 
1
+ {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"de_DE"},"Remove":["Löschen"],"Click to toggle":["Zum Umschalten klicken"],"Version <span class=\"version\">%s</span> (%s)":["Version <span class=\"version\">%s</span> (%s)"],"n/a":["nicht verfügbar"],"Downloaded %s time":["%s-mal heruntergeladen","%s-mal heruntergeladen"],"Version":["Version"],"File URL(s)":["Datei-URL(s)"],"Enter one file path/URL per line - multiple files will be used as mirrors (chosen at random).":["Einen Pfad/URL pro Zeile eingeben - mehrere werden als Datei-Mirrors genutzt (zufällig ausgewählt)."],"Upload file":["Datei hochladen"],"Choose a file":["Datei auswählen"],"Insert file URL":["Datei-URL angeben"],"Browse for file":["Datei suchen"],"Download count":["Download-Anzahl"],"File Date":["Datei-Erstellungsdatum"],"h":["h"],"m":["min"],"It looks like you upgraded to the latest version of Download Monitor from a legacy version (3.x)":[""],"Currently your downloads don't work like they should, we need to %s before they'll work again.":[""],"upgrade your downloads":[""],"We've created an upgrading tool that will do all the work for you. You can read more about this tool on %sour website (click here)%s or start the upgrade now.":[""],"Take me to the Upgrade Tool":[""],"hide notice":[""],"Download Monitor Extensions":["Download Monitor Erweiterungen"],"Extensions":["Erweiterungen"],"If you like %sDownload Monitor%s please leave us a %s★★★★★%s rating. A huge thank you from us in advance!":["Wenn du %sDownload Monitor%s magst, hinterlasse uns doch eine %s★★★★★%s Bewertung. Ein großes Dankeschön von uns im Voraus!"],"Insert Download":["Download einfügen"],"Are you sure you want to delete this file ? ":["Soll die Datei wirklich gelöscht werden?"],"Browse for a file":["Nach Datei suchen"],"Select a category":["Kategorie auswählen"],"Download Monitor Data":["Download Monitor Data"],"Featured download":["Hervorgehobener Download"],"Members only":["Nur für Mitglieder"],"Redirect to file":["Zur Datei weiterleiten"],"Image":["Bild"],"Title":["Titel"],"ID":["ID"],"File":["Datei"],"Categories":["Kategorien"],"Tags":["Tags"],"Featured":["Hervorgehoben"],"Redirect only":["Nur weiterleiten"],"Date posted":["Veröffentlichungs-Datum"],"Yes":["Ja"],"Download title":["Titel des Downloads"],"Download updated.":["Download aktualisiert."],"Custom field updated.":["Sonderfeld aktualisiert."],"Custom field deleted.":["Sonderfeld gelöscht."],"Download restored to revision from %s":["Download-Version von Datum %s wiederhergestellt."],"Download published.":["Download veröffentlicht."],"Download saved.":["Download gespeichert."],"Download submitted.":["Download eingereicht."],"Download scheduled for: <strong>%1$s</strong>.":["Download geplant für: <strong>%1$s</strong>."],"M j, Y @ G:i":["j.m.Y @ G:i"],"Download draft updated.":["Download-Entwurf aktualisiert."],"Popular Downloads":["Beliebte Downloads"],"There are no stats available yet!":["Es liegen noch keine Statistiken vor."],"Download":["Download"],"Extend Download Monitor with its powerful free and paid extensions. %sClick here to browse all extensions%s":["Erweitere Download Monitor mit seinen leistungsstarken kostenlosen und kostenpflichtigen Erweiterungen. %sKlicke hier, um alle Erweiterungen zu durchsuchen%s"],"No files found":["Keine Dateien gefunden"],"Insert Shortcode":["Shortcode einfügen"],"Quick-add download":["Download schnell hinzufügen"],"Error: File was not created.":["Fehler: Datei nicht erstellt."],"Download successfully created.":["Download-Eintrag erfolgreich erstellt."],"Error: Download was not created.":["Fehler: Download-Eintrag nicht erstellt."],"Search download":[""],"Choose a download":["Download auswählen."],"Template":["Vorlage"],"Template Name":["Name der Vorlage"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>image</code>, the <code>content-download-image.php</code> template will be used instead.":["Wenn Sie dieses Feld freilassen, wird die Vorlage <code>content-download.php</code> verwendet. Wenn Sie zum Beispiel <code>image</code> eingeben, wird die Vorlage <code>content-download-image.php</code> verwendet."],"Drop file here":["Datei hier ablegen"],"Select File":["Datei auswählen"],"Enter URL manually":["URL selbst eintragen"],"Download URL":["Download-URL"],"Required URL":["URL erforderlich"],"Download Title":["Download Titel"],"Required title":["Titel erforderlich"],"Optional version number":["Optionale Versionsnummer"],"Save Download":["Download speichern"],"Allowed Files":["Erlaubte Dateitypen"],"Please wait...":["Bitte warten ..."],"Reports":[""],"Switch to %s":[""],"Per Day":[""],"Month":[""],"Download Reports":[""],"Loading":[""],"Settings":["Einstellungen"],"Because your server is running on nginx, our .htaccess file can't protect your downloads.":["Ihr Server läuft mit nginx, sodass unsere .htaccess Datei Ihre Downloads nicht schützen kann."],"Please add the following rules to your nginx config to disable direct file access: %s":["Um einen direkten Datei-Zugriff zu verbieten, fügen Sie bitte folgende Regeln zur nginx Konfiguration hinzu: %s"],"Download Monitor Transients successfully cleared!":[""],"Settings successfully saved":["Einstellungen gespeichert"],"Save Changes":["Änderungen speichern"],"General":["Allgemein"],"Default Template":["Standard-Vorlage"],"Choose which template is used for <code>[download]</code> shortcodes by default (this can be overridden by the <code>format</code> argument).":["Standard-Vorlage für <code>[download]</code> Shortcodes auswählen (kann mit dem <code>format</code> Parameter überschrieben werden)."],"Default - Title and count":["Default - Titel und Download-Anzahl."],"Button - CSS styled button showing title and count":["Button - CSS-Button mit Titel und Download-Anzahl."],"Box - Box showing thumbnail, title, count, filename and filesize.":["Box - Eine Box mit Vorschaubild, Titel, Download-Anzahl, Dateiname und -größe."],"Filename - Filename and download count":["Filename - Dateiname und Download-Anzahl."],"Title - Shows download title only":["Title - Zeigt nur den Titel des Downloads."],"Version list - Lists all download versions in an unordered list":["Version list - Zeigt alle Download-Versionen in einer ungeordneten Liste."],"Custom template":["Eigene Vorlage"],"Custom Template":["Eigene Vorlage"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>button</code>, the <code>content-download-button.php</code> template will be used instead. You can add custom templates inside your theme folder.":[""],"X-Accel-Redirect / X-Sendfile":["X-Accel-Redirect / X-Sendfile"],"Enable":["Aktivieren"],"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be used to serve downloads instead of PHP (server requires <code>mod_xsendfile</code>).":["Falls unterstützt, können <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> genutzt werden, anstelle von PHP (Server benötigt <code>mod_xsendfile</code>)."],"Prevent hotlinking":["Querverweise verhindern"],"If enabled, the download handler will check the PHP referer to see if it originated from your site and if not, redirect them to the homepage.":["Wenn dies aktiviert ist, leitet der Download-Handler alle Nutzeranfragen von externen Seiten auf die Startseite um."],"Allow Proxy IP Override":[""],"If enabled, Download Monitor will use the X_FORWARDED_FOR HTTP header set by proxies as the IP address. Note that anyone can set this header, making it less secure.":[""],"Endpoint":["Endpunkt"],"download":["Download"],"Download Endpoint":["Download-Endpunkt"],"Define what endpoint should be used for download links. By default this will be <code>%s</code>.":["Bestimme den Endpunkt für Download-Links. Standardmäßig: <code>%s</code>."],"Endpoint Value":["Endpunkt-Wert"],"Define what unique value should be used on the end of your endpoint to identify the downloadable file. e.g. ID would give a link like <code>%s</code>":["Bestimme, welche Werte am Ende ihres Endpunkts zur Identifikation ihrer Download-Datei stehen sollen. Zum Beispiel: ID ergibt den folgenden Link <code>%s</code>"],"Download ID":["Download-ID"],"Download slug":["Download-Slug"],"Hashes":["Prüfsummen"],"MD5 hashes":["MD5-Hashwerte"],"Generate MD5 hash for uploaded files":["MD5-Hash für hochgeladene Dateien erstellen"],"SHA1 hashes":["SHA1-Hashwerte"],"Generate SHA1 hash for uploaded files":["SHA1-Hash für hochgeladene Dateien erstellen"],"SHA256 hashes":[""],"Generate SHA256 hash for uploaded files":[""],"Hashes can optionally be output via shortcodes, but may cause performance issues with large files.":["Hashwerte können auch über Shortcodes ausgegeben werden, dies kann bei großen Dateien jedoch zu Performanceproblemen führen."],"CRC32B hashes":["CRC32B-Hashwerte"],"Generate CRC32B hash for uploaded files":["CRC32B-Hash für hochgeladene Dateien erstellen"],"Logging":["Log-Aufzeichung"],"Download Log":["Download-Log"],"Log download attempts, IP addresses and more.":["Download-Versuche, IP-Adressen und anderes aufzeichnen."],"Count unique IPs only":["Zähle nur eindeutige IP Adressen"],"If enabled, the counter for each download will only increment and create a log entry once per IP address.":["Wenn aktiviert, dann wird der Downloadzähler und die Logeinträge nur einmal pro IP Adresse gezählt und erstellt."],"Access":["Zugriff"],"No Access Page":["Kein Zugriff Seite"],"Choose what page is displayed when the user has no access to a file. Don't forget to add the <code>[dlm_no_access]</code> shortcode to the page.":["Wählen Sie die Seite aus, die angezeigt wird, wenn der User kein Zugriff auf die Datei hat. Vergessen Sie nicht den <code>[dlm_no_access]</code> shortcode auf die Seite hinzuzufügen."],"You do not have permission to access this download. %sGo to homepage%s":["Sie besitzen nicht die nötige Berechtigung, um auf diese Download-Datei zuzugreifen. %sGehe zur Homepage%s"],"No access message":["Kein Zugriff Nachricht"],"The message that will be displayed to visitors when they don't have access to a file.":["Die Nachricht die angezeigt wird, wenn Besucher keinen Zugriff auf eine Datei haben."],"Blacklist IPs":["IPs sperren (Blacklist)"],"List IP Addresses to blacklist, 1 per line. Use IP/CIDR netmask format for ranges. IPv4 examples: <code>198.51.100.1</code> or <code>198.51.100.0/24</code>. IPv6 examples: <code>2001:db8::1</code> or <code>2001:db8::/32</code>.":["Gesperrte IP Addressen, 1 pro Linie. Für IP-Bereiche nutzen Sie die IP/CIDR Netzmaske. IPv4 Beispiele: <code>198.51.100.1</code> oder <code>198.51.100.0/24</code>. IPv6 Beispiele: <code>2001:db8::1</code> oder <code>2001:db8::/32</code>."],"Blacklist user agents":["Benutzer-Umgebungen sperren"],"List browser user agents to blacklist, 1 per line. Partial matches are sufficient. Regex matching is allowed by surrounding the pattern with forward slashes, e.g. <code>/^Mozilla.+Googlebot/</code>":[""],"Misc":[""],"Remove Data on Uninstall?":[""],"Check this box if you would like to completely remove all Download Monitor data when the plugin is deleted.":[""],"Clear all transients":[""],"Remove all Download Monitor transients, this can solve version caching issues.":[""],"Select Page":["Wähle Seite"],"Download Information":["Download Informationen"],"Download Options":["Download-Optionen"],"Downloadable Files/Versions":["Dateien/Versionen"],"Short Description":["Kurzbeschreibung"],"URL":["URL"],"Shortcode":["Shortcode"],"No download information for new downloads.":[""],"Mark this download as featured. Used by shortcodes and widgets.":["Download als hervorgehoben markieren. Die Hervorhebung wird in shortcodes und widgets verwendet."],"Only logged in users will be able to access the file via a download link if this is enabled.":["Nur angemeldete Benutzer haben Zugriff auf die Datei, wenn dies ausgewählt ist."],"Don't force download. If the <code>dlm_uploads</code> folder is protected you may need to move your file.":["Download nicht erzwingen. Falls der <code>dlm_upload</code> Ordner geschützt ist, kann es sein, dass du die Datei verschieben musst."],"Add file":["Download hinzufügen"],"Close all":["Alle minimieren"],"Expand all":["Alle expandieren"],"Documentation":[""],"Password Required":["Passwort benötigt"],"Download does not exist.":["Download existiert nicht."],"Go to homepage &rarr;":["Zur Homepage &rarr;"],"Download Error":["Downloadfehler"],"No file paths defined.":["Dateipfad nicht definiert."],"Redirected to file":["Weitergeleitet zu Datei"],"Redirected to remote file.":["Weitergeleitet zu Datei auf anderem Server."],"File not found.":["Datei nicht gefunden."],"No Access":["Kein Zugriff"],"Legacy Upgrader":[""],"Download Monitor - Legacy Upgrade":[""],"Welcome to the Download Monitor Legacy Upgrader. On this page we will upgrade your old Download Monitor (legacy) data so it will work with the latest version. If you're on this page, it should mean that you updated to this version from Download Monitor %s. If you're unsure if this is correct, or you want to read more about the legacy upgrade, we've setup a page that will explain this process in a lot more detail. %sClick here%s if to view that page.":[""],"Version ID":["Versions-ID"],"Filename":["Dateiname"],"User ID":["Benutzer-ID"],"User Login":["Benutzer-Login"],"User Email":["Benutzer-E-Mail-Adresse"],"User IP":["Benutzer-IP"],"User Agent":["Benutzer-Umgebung"],"Date":["Datum"],"Status":["Status"],"Meta Data":[""],"Logs":["Logs"],"Download Logs":["Logs herunterladen"],"Export CSV":["CSV exportieren"],"Are you sure you want to delete ALL log items?":[""],"Delete Logs":["Logs leeren"],"Delete":["Lösche"],"Download Complete":["Download-Eintrag komplett"],"%s ago":["Zeit verstrichen: %s"]," (v%s)":[""]," (v%s no longer exists)":[""],"Download #%d (no longer exists)":["Download #%d (existiert nicht mehr)"],"Non-member":["Nicht-Mitglied"],"User":["Benutzer"],"IP Address":["IP Addresse"],"Log entries deleted":["Logeinträge gelöscht"],"Any status":["Jeder Status"],"Failed":["Fehlgeschlagen"],"Redirected":["Umgeleitet"],"Completed":["Abgeschlossen"],"Show all dates":["Alle Zeiträume zeigen"],"%1$s %2$d":["%1$s %2$d"],"Select a User":[""],"25 per page":["25 pro Seite"],"50 per page":["50 pro Seite"],"100 per page":["100 pro Seite"],"200 per page":["200 pro Seite"],"Show All":["Alle zeigen"],"Filter":["Filter"],"All Downloads":["Alle Downloads"],"Downloads":["Downloads"],"Add New":["Neuer Eintrag"],"Add Download":["Download hinzufügen"],"Edit":["Bearbeiten"],"Edit Download":["Download bearbeiten"],"New Download":["Neuer Download"],"View Download":["Download-Informationen ansehen"],"Search Downloads":["Downloads durchsuchen"],"No Downloads found":["Keine Downloads gefunden"],"No Downloads found in trash":["Keine Downloads im Papierkorb"],"Parent Download":["Übergeordneter Download-Eintrag"],"This is where you can create and manage downloads for your site.":["Hier können Sie die Downloads für ihre Seite verwalten"],"License successfully activated.":["Lizenz erfolgreich aktiviert."],"<a href=\"%s\">Register your copy</a> of the <strong>%s</strong> extension to receive access to automatic upgrades and support. Need a license key? <a href=\"%s\" target=\"_blank\">Purchase one now</a>.":[""],"Download not found":["Download nicht gefunden."],"Download Categories":[""],"Download Category":["Download-Kategorie"],"Search Download Categories":["Kategorien durchsuchen"],"All Download Categories":["Alle Download-Kategorien"],"Parent Download Category":["Übergeordnete Download-Kategorie"],"Edit Download Category":["Download-Kategorie bearbeiten"],"Update Download Category":["Download-Kategorie aktualisieren"],"Add New Download Category":["Download-Kategorie hinzufügen"],"New Download Category Name":["Neuer Name für Download-Kategorie"],"Download Tags":[""],"Download Tag":["Download-Tag"],"Search Download Tags":["Download-Tags durchsuchen"],"All Download Tags":["Alle Download-Tags"],"Parent Download Tag":["Übergeordneter Download-Tag"],"Edit Download Tag":["Download-Tag bearbeiten"],"Update Download Tag":["Download-Tag aktualisieren"],"Add New Download Tag":["Download-Tag hinzufügen"],"New Download Tag Name":["Neuer Name für Download-Tag"],"Display a list of your downloads.":["Liste der Downloads anzeigen."],"Downloads List":["Liste der Downloads"],"Featured Downloads":["Hervorgehobene Downloads"],"Limit":["Limit"],"Output template":["Vorlage für Ausgabe:"],"Default template":["Standard-Vorlage"],"Order by":["Geordnet nach:"],"Random":["Zufällig"],"Date added":["Erstellungs-Datum"],"Date modified":["Letzte Änderung"],"Order":["Reihenfolge"],"ASC":["Auf"],"DESC":["Ab"],"Show only featured downloads":["Nur hervorgehobene Downloads anzeigen"],"Show only members only downloads":["Nur Downloads für Mitglieder zeigen"],"1 download":["1 Download","%d Downloads"],"Version %s":["Version %s"],"Download File":["Datei herunterladen"],"Download &ldquo;%s&rdquo;":["Download &ldquo;%s&rdquo;"],"Downloaded 1 time":["Einmal heruntergeladen","%d-mal heruntergeladen"],"Download Monitor":["Download Monitor"],"https://www.download-monitor.com":["https://www.download-monitor.com"],"A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.":["Eine komplette Lösung für die Verwaltung von Downloads. Stellt ein Monitoring für die Downloads bereit und bietet die Möglichkeit, Download-Links und -Informationen auf der WordPress-Seite auszugeben."],"Never5":["Never5"],"https://www.never5.com":["https://www.never5.com"],"Drop file here *or* select file\u0004or":["oder"]}}}
languages/download-monitor-de_DE.po CHANGED
@@ -1,7 +1,7 @@
1
  # Copyright (C) 2017 Never5
2
  # This file is distributed under the GPL v3.
3
  # Translators:
4
- # Andre, 2015
5
  # Barry Kooij <mail@barrykooij.nl>, 2015
6
  # Marcel Pietschmann <inactive+maphy_psd@transifex.com>, 2015
7
  # Patrick Brückner, 2014
1
  # Copyright (C) 2017 Never5
2
  # This file is distributed under the GPL v3.
3
  # Translators:
4
+ # Andre Meyering, 2015
5
  # Barry Kooij <mail@barrykooij.nl>, 2015
6
  # Marcel Pietschmann <inactive+maphy_psd@transifex.com>, 2015
7
  # Patrick Brückner, 2014
languages/download-monitor-es_419-dlm_gutenberg_blocks.json ADDED
@@ -0,0 +1 @@
 
1
+ {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"es_419"},"Remove":[""],"Click to toggle":[""],"Version <span class=\"version\">%s</span> (%s)":[""],"n/a":[""],"Downloaded %s time":["","Downloaded %s times"],"Version":[""],"File URL(s)":[""],"Enter one file path/URL per line - multiple files will be used as mirrors (chosen at random).":[""],"Upload file":[""],"Choose a file":[""],"Insert file URL":[""],"Browse for file":[""],"Download count":[""],"File Date":[""],"h":[""],"m":[""],"It looks like you upgraded to the latest version of Download Monitor from a legacy version (3.x)":[""],"Currently your downloads don't work like they should, we need to %s before they'll work again.":[""],"upgrade your downloads":[""],"We've created an upgrading tool that will do all the work for you. You can read more about this tool on %sour website (click here)%s or start the upgrade now.":[""],"Take me to the Upgrade Tool":[""],"hide notice":[""],"Download Monitor Extensions":[""],"Extensions":[""],"If you like %sDownload Monitor%s please leave us a %s★★★★★%s rating. A huge thank you from us in advance!":[""],"Insert Download":[""],"Are you sure you want to delete this file ? ":[""],"Browse for a file":[""],"Select a category":[""],"Download Monitor Data":[""],"Featured download":[""],"Members only":[""],"Redirect to file":[""],"Image":[""],"Title":[""],"ID":[""],"File":[""],"Categories":[""],"Tags":[""],"Featured":[""],"Redirect only":[""],"Date posted":[""],"Yes":[""],"Download title":[""],"Download updated.":[""],"Custom field updated.":[""],"Custom field deleted.":[""],"Download restored to revision from %s":[""],"Download published.":[""],"Download saved.":[""],"Download submitted.":[""],"Download scheduled for: <strong>%1$s</strong>.":[""],"M j, Y @ G:i":[""],"Download draft updated.":[""],"Popular Downloads":[""],"There are no stats available yet!":[""],"Download":[""],"Extend Download Monitor with its powerful free and paid extensions. %sClick here to browse all extensions%s":[""],"No files found":[""],"Insert Shortcode":[""],"Quick-add download":[""],"Error: File was not created.":[""],"Download successfully created.":[""],"Error: Download was not created.":[""],"Search download":[""],"Choose a download":[""],"Template":[""],"Template Name":[""],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>image</code>, the <code>content-download-image.php</code> template will be used instead.":[""],"Drop file here":[""],"Select File":[""],"Enter URL manually":[""],"Download URL":[""],"Required URL":[""],"Download Title":[""],"Required title":[""],"Optional version number":[""],"Save Download":[""],"Allowed Files":[""],"Please wait...":[""],"Reports":[""],"Switch to %s":[""],"Per Day":[""],"Month":[""],"Download Reports":[""],"Loading":[""],"Settings":[""],"Because your server is running on nginx, our .htaccess file can't protect your downloads.":[""],"Please add the following rules to your nginx config to disable direct file access: %s":[""],"Download Monitor Transients successfully cleared!":[""],"Settings successfully saved":[""],"Save Changes":[""],"General":[""],"Default Template":[""],"Choose which template is used for <code>[download]</code> shortcodes by default (this can be overridden by the <code>format</code> argument).":[""],"Default - Title and count":[""],"Button - CSS styled button showing title and count":[""],"Box - Box showing thumbnail, title, count, filename and filesize.":[""],"Filename - Filename and download count":[""],"Title - Shows download title only":[""],"Version list - Lists all download versions in an unordered list":[""],"Custom template":[""],"Custom Template":[""],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>button</code>, the <code>content-download-button.php</code> template will be used instead. You can add custom templates inside your theme folder.":[""],"X-Accel-Redirect / X-Sendfile":[""],"Enable":[""],"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be used to serve downloads instead of PHP (server requires <code>mod_xsendfile</code>).":[""],"Prevent hotlinking":[""],"If enabled, the download handler will check the PHP referer to see if it originated from your site and if not, redirect them to the homepage.":[""],"Allow Proxy IP Override":[""],"If enabled, Download Monitor will use the X_FORWARDED_FOR HTTP header set by proxies as the IP address. Note that anyone can set this header, making it less secure.":[""],"Endpoint":[""],"download":[""],"Download Endpoint":[""],"Define what endpoint should be used for download links. By default this will be <code>%s</code>.":[""],"Endpoint Value":[""],"Define what unique value should be used on the end of your endpoint to identify the downloadable file. e.g. ID would give a link like <code>%s</code>":[""],"Download ID":[""],"Download slug":[""],"Hashes":[""],"MD5 hashes":[""],"Generate MD5 hash for uploaded files":[""],"SHA1 hashes":[""],"Generate SHA1 hash for uploaded files":[""],"SHA256 hashes":[""],"Generate SHA256 hash for uploaded files":[""],"Hashes can optionally be output via shortcodes, but may cause performance issues with large files.":[""],"CRC32B hashes":[""],"Generate CRC32B hash for uploaded files":[""],"Logging":[""],"Download Log":[""],"Log download attempts, IP addresses and more.":[""],"Count unique IPs only":[""],"If enabled, the counter for each download will only increment and create a log entry once per IP address.":[""],"Access":[""],"No Access Page":[""],"Choose what page is displayed when the user has no access to a file. Don't forget to add the <code>[dlm_no_access]</code> shortcode to the page.":[""],"You do not have permission to access this download. %sGo to homepage%s":[""],"No access message":[""],"The message that will be displayed to visitors when they don't have access to a file.":[""],"Blacklist IPs":[""],"List IP Addresses to blacklist, 1 per line. Use IP/CIDR netmask format for ranges. IPv4 examples: <code>198.51.100.1</code> or <code>198.51.100.0/24</code>. IPv6 examples: <code>2001:db8::1</code> or <code>2001:db8::/32</code>.":[""],"Blacklist user agents":[""],"List browser user agents to blacklist, 1 per line. Partial matches are sufficient. Regex matching is allowed by surrounding the pattern with forward slashes, e.g. <code>/^Mozilla.+Googlebot/</code>":[""],"Misc":[""],"Remove Data on Uninstall?":[""],"Check this box if you would like to completely remove all Download Monitor data when the plugin is deleted.":[""],"Clear all transients":[""],"Remove all Download Monitor transients, this can solve version caching issues.":[""],"Select Page":[""],"Download Information":[""],"Download Options":[""],"Downloadable Files/Versions":[""],"Short Description":[""],"URL":[""],"Shortcode":[""],"No download information for new downloads.":[""],"Mark this download as featured. Used by shortcodes and widgets.":[""],"Only logged in users will be able to access the file via a download link if this is enabled.":[""],"Don't force download. If the <code>dlm_uploads</code> folder is protected you may need to move your file.":[""],"Add file":[""],"Close all":[""],"Expand all":[""],"Documentation":[""],"Password Required":[""],"Download does not exist.":[""],"Go to homepage &rarr;":[""],"Download Error":[""],"No file paths defined.":[""],"Redirected to file":[""],"Redirected to remote file.":[""],"File not found.":[""],"No Access":[""],"Legacy Upgrader":[""],"Download Monitor - Legacy Upgrade":[""],"Welcome to the Download Monitor Legacy Upgrader. On this page we will upgrade your old Download Monitor (legacy) data so it will work with the latest version. If you're on this page, it should mean that you updated to this version from Download Monitor %s. If you're unsure if this is correct, or you want to read more about the legacy upgrade, we've setup a page that will explain this process in a lot more detail. %sClick here%s if to view that page.":[""],"Version ID":[""],"Filename":[""],"User ID":[""],"User Login":[""],"User Email":[""],"User IP":[""],"User Agent":[""],"Date":[""],"Status":[""],"Meta Data":[""],"Logs":[""],"Download Logs":[""],"Export CSV":[""],"Are you sure you want to delete ALL log items?":[""],"Delete Logs":[""],"Delete":[""],"Download Complete":[""],"%s ago":[""]," (v%s)":[""]," (v%s no longer exists)":[""],"Download #%d (no longer exists)":[""],"Non-member":[""],"User":[""],"IP Address":[""],"Log entries deleted":[""],"Any status":[""],"Failed":[""],"Redirected":[""],"Completed":[""],"Show all dates":[""],"%1$s %2$d":[""],"Select a User":[""],"25 per page":[""],"50 per page":[""],"100 per page":[""],"200 per page":[""],"Show All":[""],"Filter":[""],"All Downloads":[""],"Downloads":[""],"Add New":[""],"Add Download":[""],"Edit":[""],"Edit Download":[""],"New Download":[""],"View Download":[""],"Search Downloads":[""],"No Downloads found":[""],"No Downloads found in trash":[""],"Parent Download":[""],"This is where you can create and manage downloads for your site.":[""],"License successfully activated.":[""],"<a href=\"%s\">Register your copy</a> of the <strong>%s</strong> extension to receive access to automatic upgrades and support. Need a license key? <a href=\"%s\" target=\"_blank\">Purchase one now</a>.":[""],"Download not found":[""],"Download Categories":[""],"Download Category":[""],"Search Download Categories":[""],"All Download Categories":[""],"Parent Download Category":[""],"Edit Download Category":[""],"Update Download Category":[""],"Add New Download Category":[""],"New Download Category Name":[""],"Download Tags":[""],"Download Tag":[""],"Search Download Tags":[""],"All Download Tags":[""],"Parent Download Tag":[""],"Edit Download Tag":[""],"Update Download Tag":[""],"Add New Download Tag":[""],"New Download Tag Name":[""],"Display a list of your downloads.":[""],"Downloads List":[""],"Featured Downloads":[""],"Limit":[""],"Output template":[""],"Default template":[""],"Order by":[""],"Random":[""],"Date added":[""],"Date modified":[""],"Order":[""],"ASC":[""],"DESC":[""],"Show only featured downloads":[""],"Show only members only downloads":[""],"1 download":["","%d downloads"],"Version %s":[""],"Download File":[""],"Download &ldquo;%s&rdquo;":[""],"Downloaded 1 time":["","Downloaded %d times"],"Download Monitor":[""],"https://www.download-monitor.com":[""],"A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.":[""],"Never5":[""],"https://www.never5.com":[""],"Drop file here *or* select file\u0004or":[""]}}}
languages/download-monitor-es_419.mo ADDED
Binary file
languages/download-monitor-es_419.po ADDED
@@ -0,0 +1,1219 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2017 Never5
2
+ # This file is distributed under the GPL v3.
3
+ # Translators:
4
+ msgid ""
5
+ msgstr ""
6
+ "Project-Id-Version: Download Monitor\n"
7
+ "Report-Msgid-Bugs-To: https://github.com/download-monitor/download-monitor/issues\n"
8
+ "POT-Creation-Date: 2017-12-19 12:47:52+00:00\n"
9
+ "PO-Revision-Date: 2017-12-19 12:48+0000\n"
10
+ "Last-Translator: Barry Kooij <mail@barrykooij.nl>\n"
11
+ "Language-Team: Spanish (Latin America) (http://www.transifex.com/barrykooijplugins/download-monitor/language/es_419/)\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=UTF-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "Language: es_419\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "X-Generator: grunt-wp-i18n 0.4.9\n"
18
+
19
+ #: assets/views/meta-box/version.php:8
20
+ msgid "Remove"
21
+ msgstr ""
22
+
23
+ #: assets/views/meta-box/version.php:9
24
+ msgid "Click to toggle"
25
+ msgstr ""
26
+
27
+ #: assets/views/meta-box/version.php:10
28
+ msgid "Version <span class=\"version\">%s</span> (%s)"
29
+ msgstr ""
30
+
31
+ #: assets/views/meta-box/version.php:10 assets/views/meta-box/version.php:24
32
+ msgid "n/a"
33
+ msgstr ""
34
+
35
+ #: assets/views/meta-box/version.php:10
36
+ msgid "Downloaded %s time"
37
+ msgid_plural "Downloaded %s times"
38
+ msgstr[0] ""
39
+ msgstr[1] ""
40
+
41
+ #: assets/views/meta-box/version.php:22 src/Admin/CustomColumns.php:28
42
+ #: src/Admin/MediaInsert.php:241
43
+ msgid "Version"
44
+ msgstr ""
45
+
46
+ #: assets/views/meta-box/version.php:28
47
+ msgid "File URL(s)"
48
+ msgstr ""
49
+
50
+ #: assets/views/meta-box/version.php:31
51
+ msgid ""
52
+ "Enter one file path/URL per line - multiple files will be used as mirrors "
53
+ "(chosen at random)."
54
+ msgstr ""
55
+
56
+ #: assets/views/meta-box/version.php:37
57
+ msgid "Upload file"
58
+ msgstr ""
59
+
60
+ #: assets/views/meta-box/version.php:39
61
+ msgid "Choose a file"
62
+ msgstr ""
63
+
64
+ #: assets/views/meta-box/version.php:40
65
+ msgid "Insert file URL"
66
+ msgstr ""
67
+
68
+ #: assets/views/meta-box/version.php:44
69
+ msgid "Browse for file"
70
+ msgstr ""
71
+
72
+ #: assets/views/meta-box/version.php:64 src/Admin/CustomColumns.php:31
73
+ #: src/Admin/Dashboard.php:65 src/Widgets/class-dlm-widget-downloads.php:205
74
+ msgid "Download count"
75
+ msgstr ""
76
+
77
+ #: assets/views/meta-box/version.php:71
78
+ msgid "File Date"
79
+ msgstr ""
80
+
81
+ #: assets/views/meta-box/version.php:74
82
+ msgid "h"
83
+ msgstr ""
84
+
85
+ #: assets/views/meta-box/version.php:77
86
+ msgid "m"
87
+ msgstr ""
88
+
89
+ #: assets/views/notice-lu-upgrade.php:7
90
+ msgid ""
91
+ "It looks like you upgraded to the latest version of Download Monitor from a "
92
+ "legacy version (3.x)"
93
+ msgstr ""
94
+
95
+ #: assets/views/notice-lu-upgrade.php:8
96
+ msgid ""
97
+ "Currently your downloads don't work like they should, we need to %s before "
98
+ "they'll work again."
99
+ msgstr ""
100
+
101
+ #: assets/views/notice-lu-upgrade.php:8
102
+ msgid "upgrade your downloads"
103
+ msgstr ""
104
+
105
+ #: assets/views/notice-lu-upgrade.php:9
106
+ msgid ""
107
+ "We've created an upgrading tool that will do all the work for you. You can "
108
+ "read more about this tool on %sour website (click here)%s or start the "
109
+ "upgrade now."
110
+ msgstr ""
111
+
112
+ #: assets/views/notice-lu-upgrade.php:10
113
+ msgid "Take me to the Upgrade Tool"
114
+ msgstr ""
115
+
116
+ #: assets/views/notice-lu-upgrade.php:11
117
+ msgid "hide notice"
118
+ msgstr ""
119
+
120
+ #: src/Admin/Admin.php:224 src/Admin/Extensions.php:45
121
+ msgid "Download Monitor Extensions"
122
+ msgstr ""
123
+
124
+ #: src/Admin/Admin.php:224 src/DLM.php:225
125
+ msgid "Extensions"
126
+ msgstr ""
127
+
128
+ #: src/Admin/Admin.php:274
129
+ msgid ""
130
+ "If you like %sDownload Monitor%s please leave us a %s★★★★★%s rating. A huge "
131
+ "thank you from us in advance!"
132
+ msgstr ""
133
+
134
+ #: src/Admin/AdminScripts.php:167 src/Admin/MediaInsert.php:36
135
+ #: src/Admin/MediaInsert.php:55
136
+ msgid "Insert Download"
137
+ msgstr ""
138
+
139
+ #: src/Admin/AdminScripts.php:172
140
+ msgid "Are you sure you want to delete this file ? "
141
+ msgstr ""
142
+
143
+ #: src/Admin/AdminScripts.php:173 src/Admin/MediaBrowser.php:34
144
+ msgid "Browse for a file"
145
+ msgstr ""
146
+
147
+ #: src/Admin/CustomActions.php:61
148
+ msgid "Select a category"
149
+ msgstr ""
150
+
151
+ #: src/Admin/CustomActions.php:207
152
+ msgid "Download Monitor Data"
153
+ msgstr ""
154
+
155
+ #: src/Admin/CustomActions.php:209 src/Admin/WritePanels.php:126
156
+ msgid "Featured download"
157
+ msgstr ""
158
+
159
+ #: src/Admin/CustomActions.php:211 src/Admin/CustomColumns.php:33
160
+ #: src/Admin/WritePanels.php:132
161
+ msgid "Members only"
162
+ msgstr ""
163
+
164
+ #: src/Admin/CustomActions.php:213 src/Admin/WritePanels.php:138
165
+ msgid "Redirect to file"
166
+ msgstr ""
167
+
168
+ #: src/Admin/CustomColumns.php:24
169
+ msgid "Image"
170
+ msgstr ""
171
+
172
+ #: src/Admin/CustomColumns.php:25
173
+ #: src/Widgets/class-dlm-widget-downloads.php:169
174
+ #: src/Widgets/class-dlm-widget-downloads.php:195
175
+ msgid "Title"
176
+ msgstr ""
177
+
178
+ #: src/Admin/CustomColumns.php:26 src/Admin/WritePanels.php:79
179
+ #: src/Widgets/class-dlm-widget-downloads.php:199
180
+ msgid "ID"
181
+ msgstr ""
182
+
183
+ #: src/Admin/CustomColumns.php:27 src/Logs/LoggingListTable.php:196
184
+ msgid "File"
185
+ msgstr ""
186
+
187
+ #: src/Admin/CustomColumns.php:29 src/TaxonomyManager.php:27
188
+ #: src/TaxonomyManager.php:30
189
+ msgid "Categories"
190
+ msgstr ""
191
+
192
+ #: src/Admin/CustomColumns.php:30 src/TaxonomyManager.php:59
193
+ #: src/TaxonomyManager.php:62
194
+ msgid "Tags"
195
+ msgstr ""
196
+
197
+ #: src/Admin/CustomColumns.php:32
198
+ msgid "Featured"
199
+ msgstr ""
200
+
201
+ #: src/Admin/CustomColumns.php:34
202
+ msgid "Redirect only"
203
+ msgstr ""
204
+
205
+ #: src/Admin/CustomColumns.php:35
206
+ msgid "Date posted"
207
+ msgstr ""
208
+
209
+ #: src/Admin/CustomColumns.php:81 src/Admin/CustomColumns.php:88
210
+ #: src/Admin/CustomColumns.php:95
211
+ msgid "Yes"
212
+ msgstr ""
213
+
214
+ #: src/Admin/CustomLabels.php:24
215
+ msgid "Download title"
216
+ msgstr ""
217
+
218
+ #: src/Admin/CustomLabels.php:44 src/Admin/CustomLabels.php:47
219
+ msgid "Download updated."
220
+ msgstr ""
221
+
222
+ #: src/Admin/CustomLabels.php:45
223
+ msgid "Custom field updated."
224
+ msgstr ""
225
+
226
+ #: src/Admin/CustomLabels.php:46
227
+ msgid "Custom field deleted."
228
+ msgstr ""
229
+
230
+ #: src/Admin/CustomLabels.php:48
231
+ msgid "Download restored to revision from %s"
232
+ msgstr ""
233
+
234
+ #: src/Admin/CustomLabels.php:49
235
+ msgid "Download published."
236
+ msgstr ""
237
+
238
+ #: src/Admin/CustomLabels.php:50
239
+ msgid "Download saved."
240
+ msgstr ""
241
+
242
+ #: src/Admin/CustomLabels.php:51
243
+ msgid "Download submitted."
244
+ msgstr ""
245
+
246
+ #: src/Admin/CustomLabels.php:52
247
+ msgid "Download scheduled for: <strong>%1$s</strong>."
248
+ msgstr ""
249
+
250
+ #: src/Admin/CustomLabels.php:53
251
+ msgid "M j, Y @ G:i"
252
+ msgstr ""
253
+
254
+ #: src/Admin/CustomLabels.php:54
255
+ msgid "Download draft updated."
256
+ msgstr ""
257
+
258
+ #: src/Admin/Dashboard.php:23
259
+ msgid "Popular Downloads"
260
+ msgstr ""
261
+
262
+ #: src/Admin/Dashboard.php:54
263
+ msgid "There are no stats available yet!"
264
+ msgstr ""
265
+
266
+ #: src/Admin/Dashboard.php:64 src/Logs/LoggingListTable.php:195
267
+ #: src/PostTypeManager.php:23
268
+ msgid "Download"
269
+ msgstr ""
270
+
271
+ #: src/Admin/Extensions.php:76
272
+ msgid ""
273
+ "Extend Download Monitor with its powerful free and paid extensions. %sClick "
274
+ "here to browse all extensions%s"
275
+ msgstr ""
276
+
277
+ #: src/Admin/MediaBrowser.php:108
278
+ msgid "No files found"
279
+ msgstr ""
280
+
281
+ #: src/Admin/MediaInsert.php:66 src/Admin/MediaInsert.php:204
282
+ msgid "Insert Shortcode"
283
+ msgstr ""
284
+
285
+ #: src/Admin/MediaInsert.php:67
286
+ msgid "Quick-add download"
287
+ msgstr ""
288
+
289
+ #: src/Admin/MediaInsert.php:114
290
+ msgid "Error: File was not created."
291
+ msgstr ""
292
+
293
+ #: src/Admin/MediaInsert.php:134
294
+ msgid "Download successfully created."
295
+ msgstr ""
296
+
297
+ #: src/Admin/MediaInsert.php:137
298
+ msgid "Error: Download was not created."
299
+ msgstr ""
300
+
301
+ #: src/Admin/MediaInsert.php:161
302
+ msgid "Search download"
303
+ msgstr ""
304
+
305
+ #: src/Admin/MediaInsert.php:169
306
+ msgid "Choose a download"
307
+ msgstr ""
308
+
309
+ #: src/Admin/MediaInsert.php:194
310
+ msgid "Template"
311
+ msgstr ""
312
+
313
+ #: src/Admin/MediaInsert.php:196
314
+ msgid "Template Name"
315
+ msgstr ""
316
+
317
+ #: src/Admin/MediaInsert.php:198
318
+ msgid ""
319
+ "Leaving this blank will use the default <code>content-download.php</code> "
320
+ "template file. If you enter, for example, <code>image</code>, the <code"
321
+ ">content-download-image.php</code> template will be used instead."
322
+ msgstr ""
323
+
324
+ #: src/Admin/MediaInsert.php:215
325
+ msgid "Drop file here"
326
+ msgstr ""
327
+
328
+ #: src/Admin/MediaInsert.php:220
329
+ msgid "Select File"
330
+ msgstr ""
331
+
332
+ #: src/Admin/MediaInsert.php:224
333
+ msgid "Enter URL manually"
334
+ msgstr ""
335
+
336
+ #: src/Admin/MediaInsert.php:229
337
+ msgid "Download URL"
338
+ msgstr ""
339
+
340
+ #: src/Admin/MediaInsert.php:231
341
+ msgid "Required URL"
342
+ msgstr ""
343
+
344
+ #: src/Admin/MediaInsert.php:235 src/Logs/LogExportCSV.php:68
345
+ msgid "Download Title"
346
+ msgstr ""
347
+
348
+ #: src/Admin/MediaInsert.php:237
349
+ msgid "Required title"
350
+ msgstr ""
351
+
352
+ #: src/Admin/MediaInsert.php:243
353
+ msgid "Optional version number"
354
+ msgstr ""
355
+
356
+ #: src/Admin/MediaInsert.php:248
357
+ msgid "Save Download"
358
+ msgstr ""
359
+
360
+ #: src/Admin/MediaInsert.php:304
361
+ msgid "Allowed Files"
362
+ msgstr ""
363
+
364
+ #: src/Admin/MediaInsert.php:354
365
+ msgid "Please wait..."
366
+ msgstr ""
367
+
368
+ #: src/Admin/Reports/Page.php:23
369
+ msgid "Reports"
370
+ msgstr ""
371
+
372
+ #: src/Admin/Reports/Page.php:115
373
+ msgid "Switch to %s"
374
+ msgstr ""
375
+
376
+ #: src/Admin/Reports/Page.php:140
377
+ msgid "Per Day"
378
+ msgstr ""
379
+
380
+ #: src/Admin/Reports/Page.php:141
381
+ msgid "Month"
382
+ msgstr ""
383
+
384
+ #: src/Admin/Reports/Page.php:184
385
+ msgid "Download Reports"
386
+ msgstr ""
387
+
388
+ #: src/Admin/Settings/Fields/LazySelect.php:41
389
+ msgid "Loading"
390
+ msgstr ""
391
+
392
+ #: src/Admin/Settings/Page.php:22 src/DLM.php:224
393
+ msgid "Settings"
394
+ msgstr ""
395
+
396
+ #: src/Admin/Settings/Page.php:45
397
+ msgid ""
398
+ "Because your server is running on nginx, our .htaccess file can't protect "
399
+ "your downloads."
400
+ msgstr ""
401
+
402
+ #: src/Admin/Settings/Page.php:46
403
+ msgid ""
404
+ "Please add the following rules to your nginx config to disable direct file "
405
+ "access: %s"
406
+ msgstr ""
407
+
408
+ #: src/Admin/Settings/Page.php:92
409
+ msgid "Download Monitor Transients successfully cleared!"
410
+ msgstr ""
411
+
412
+ #: src/Admin/Settings/Page.php:135
413
+ msgid "Settings successfully saved"
414
+ msgstr ""
415
+
416
+ #: src/Admin/Settings/Page.php:178
417
+ msgid "Save Changes"
418
+ msgstr ""
419
+
420
+ #: src/Admin/Settings/Settings.php:51
421
+ msgid "General"
422
+ msgstr ""
423
+
424
+ #: src/Admin/Settings/Settings.php:56
425
+ msgid "Default Template"
426
+ msgstr ""
427
+
428
+ #: src/Admin/Settings/Settings.php:57
429
+ msgid ""
430
+ "Choose which template is used for <code>[download]</code> shortcodes by "
431
+ "default (this can be overridden by the <code>format</code> argument)."
432
+ msgstr ""
433
+
434
+ #: src/Admin/Settings/Settings.php:60
435
+ msgid "Default - Title and count"
436
+ msgstr ""
437
+
438
+ #: src/Admin/Settings/Settings.php:61
439
+ msgid "Button - CSS styled button showing title and count"
440
+ msgstr ""
441
+
442
+ #: src/Admin/Settings/Settings.php:62
443
+ msgid "Box - Box showing thumbnail, title, count, filename and filesize."
444
+ msgstr ""
445
+
446
+ #: src/Admin/Settings/Settings.php:63
447
+ msgid "Filename - Filename and download count"
448
+ msgstr ""
449
+
450
+ #: src/Admin/Settings/Settings.php:64
451
+ msgid "Title - Shows download title only"
452
+ msgstr ""
453
+
454
+ #: src/Admin/Settings/Settings.php:65
455
+ msgid "Version list - Lists all download versions in an unordered list"
456
+ msgstr ""
457
+
458
+ #: src/Admin/Settings/Settings.php:66
459
+ msgid "Custom template"
460
+ msgstr ""
461
+
462
+ #: src/Admin/Settings/Settings.php:73
463
+ msgid "Custom Template"
464
+ msgstr ""
465
+
466
+ #: src/Admin/Settings/Settings.php:74
467
+ msgid ""
468
+ "Leaving this blank will use the default <code>content-download.php</code> "
469
+ "template file. If you enter, for example, <code>button</code>, the <code"
470
+ ">content-download-button.php</code> template will be used instead. You can "
471
+ "add custom templates inside your theme folder."
472
+ msgstr ""
473
+
474
+ #: src/Admin/Settings/Settings.php:79
475
+ msgid "X-Accel-Redirect / X-Sendfile"
476
+ msgstr ""
477
+
478
+ #: src/Admin/Settings/Settings.php:80 src/Admin/Settings/Settings.php:88
479
+ #: src/Admin/Settings/Settings.php:96 src/Admin/Settings/Settings.php:168
480
+ #: src/Admin/Settings/Settings.php:178 src/Admin/Settings/Settings.php:228
481
+ msgid "Enable"
482
+ msgstr ""
483
+
484
+ #: src/Admin/Settings/Settings.php:81
485
+ msgid ""
486
+ "If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be"
487
+ " used to serve downloads instead of PHP (server requires "
488
+ "<code>mod_xsendfile</code>)."
489
+ msgstr ""
490
+
491
+ #: src/Admin/Settings/Settings.php:87
492
+ msgid "Prevent hotlinking"
493
+ msgstr ""
494
+
495
+ #: src/Admin/Settings/Settings.php:89
496
+ msgid ""
497
+ "If enabled, the download handler will check the PHP referer to see if it "
498
+ "originated from your site and if not, redirect them to the homepage."
499
+ msgstr ""
500
+
501
+ #: src/Admin/Settings/Settings.php:95
502
+ msgid "Allow Proxy IP Override"
503
+ msgstr ""
504
+
505
+ #: src/Admin/Settings/Settings.php:97
506
+ msgid ""
507
+ "If enabled, Download Monitor will use the X_FORWARDED_FOR HTTP header set by"
508
+ " proxies as the IP address. Note that anyone can set this header, making it "
509
+ "less secure."
510
+ msgstr ""
511
+
512
+ #: src/Admin/Settings/Settings.php:103
513
+ msgid "Endpoint"
514
+ msgstr ""
515
+
516
+ #: src/Admin/Settings/Settings.php:109
517
+ msgid "download"
518
+ msgstr ""
519
+
520
+ #: src/Admin/Settings/Settings.php:110
521
+ msgid "Download Endpoint"
522
+ msgstr ""
523
+
524
+ #: src/Admin/Settings/Settings.php:111
525
+ msgid ""
526
+ "Define what endpoint should be used for download links. By default this will"
527
+ " be <code>%s</code>."
528
+ msgstr ""
529
+
530
+ #: src/Admin/Settings/Settings.php:116
531
+ msgid "Endpoint Value"
532
+ msgstr ""
533
+
534
+ #: src/Admin/Settings/Settings.php:117
535
+ msgid ""
536
+ "Define what unique value should be used on the end of your endpoint to "
537
+ "identify the downloadable file. e.g. ID would give a link like "
538
+ "<code>%s</code>"
539
+ msgstr ""
540
+
541
+ #: src/Admin/Settings/Settings.php:120 src/Logs/LogExportCSV.php:67
542
+ msgid "Download ID"
543
+ msgstr ""
544
+
545
+ #: src/Admin/Settings/Settings.php:121
546
+ msgid "Download slug"
547
+ msgstr ""
548
+
549
+ #: src/Admin/Settings/Settings.php:127
550
+ msgid "Hashes"
551
+ msgstr ""
552
+
553
+ #: src/Admin/Settings/Settings.php:132
554
+ msgid "MD5 hashes"
555
+ msgstr ""
556
+
557
+ #: src/Admin/Settings/Settings.php:133
558
+ msgid "Generate MD5 hash for uploaded files"
559
+ msgstr ""
560
+
561
+ #: src/Admin/Settings/Settings.php:140
562
+ msgid "SHA1 hashes"
563
+ msgstr ""
564
+
565
+ #: src/Admin/Settings/Settings.php:141
566
+ msgid "Generate SHA1 hash for uploaded files"
567
+ msgstr ""
568
+
569
+ #: src/Admin/Settings/Settings.php:148
570
+ msgid "SHA256 hashes"
571
+ msgstr ""
572
+
573
+ #: src/Admin/Settings/Settings.php:149
574
+ msgid "Generate SHA256 hash for uploaded files"
575
+ msgstr ""
576
+
577
+ #: src/Admin/Settings/Settings.php:150 src/Admin/Settings/Settings.php:158
578
+ msgid ""
579
+ "Hashes can optionally be output via shortcodes, but may cause performance "
580
+ "issues with large files."
581
+ msgstr ""
582
+
583
+ #: src/Admin/Settings/Settings.php:156
584
+ msgid "CRC32B hashes"
585
+ msgstr ""
586
+
587
+ #: src/Admin/Settings/Settings.php:157
588
+ msgid "Generate CRC32B hash for uploaded files"
589
+ msgstr ""
590
+
591
+ #: src/Admin/Settings/Settings.php:164
592
+ msgid "Logging"
593
+ msgstr ""
594
+
595
+ #: src/Admin/Settings/Settings.php:170
596
+ msgid "Download Log"
597
+ msgstr ""
598
+
599
+ #: src/Admin/Settings/Settings.php:171
600
+ msgid "Log download attempts, IP addresses and more."
601
+ msgstr ""
602
+
603
+ #: src/Admin/Settings/Settings.php:177
604
+ msgid "Count unique IPs only"
605
+ msgstr ""
606
+
607
+ #: src/Admin/Settings/Settings.php:179
608
+ msgid ""
609
+ "If enabled, the counter for each download will only increment and create a "
610
+ "log entry once per IP address."
611
+ msgstr ""
612
+
613
+ #: src/Admin/Settings/Settings.php:185
614
+ msgid "Access"
615
+ msgstr ""
616
+
617
+ #: src/Admin/Settings/Settings.php:190
618
+ msgid "No Access Page"
619
+ msgstr ""
620
+
621
+ #: src/Admin/Settings/Settings.php:191
622
+ msgid ""
623
+ "Choose what page is displayed when the user has no access to a file. Don't "
624
+ "forget to add the <code>[dlm_no_access]</code> shortcode to the page."
625
+ msgstr ""
626
+
627
+ #: src/Admin/Settings/Settings.php:197 src/Installer.php:38
628
+ #: src/UpgradeManager.php:55
629
+ msgid "You do not have permission to access this download. %sGo to homepage%s"
630
+ msgstr ""
631
+
632
+ #: src/Admin/Settings/Settings.php:199
633
+ msgid "No access message"
634
+ msgstr ""
635
+
636
+ #: src/Admin/Settings/Settings.php:200
637
+ msgid ""
638
+ "The message that will be displayed to visitors when they don't have access "
639
+ "to a file."
640
+ msgstr ""
641
+
642
+ #: src/Admin/Settings/Settings.php:206
643
+ msgid "Blacklist IPs"
644
+ msgstr ""
645
+
646
+ #: src/Admin/Settings/Settings.php:207
647
+ msgid ""
648
+ "List IP Addresses to blacklist, 1 per line. Use IP/CIDR netmask format for "
649
+ "ranges. IPv4 examples: <code>198.51.100.1</code> or "
650
+ "<code>198.51.100.0/24</code>. IPv6 examples: <code>2001:db8::1</code> or "
651
+ "<code>2001:db8::/32</code>."
652
+ msgstr ""
653
+
654
+ #: src/Admin/Settings/Settings.php:214
655
+ msgid "Blacklist user agents"
656
+ msgstr ""
657
+
658
+ #: src/Admin/Settings/Settings.php:215
659
+ msgid ""
660
+ "List browser user agents to blacklist, 1 per line. Partial matches are "
661
+ "sufficient. Regex matching is allowed by surrounding the pattern with "
662
+ "forward slashes, e.g. <code>/^Mozilla.+Googlebot/</code>"
663
+ msgstr ""
664
+
665
+ #: src/Admin/Settings/Settings.php:222
666
+ msgid "Misc"
667
+ msgstr ""
668
+
669
+ #: src/Admin/Settings/Settings.php:227
670
+ msgid "Remove Data on Uninstall?"
671
+ msgstr ""
672
+
673
+ #: src/Admin/Settings/Settings.php:229
674
+ msgid ""
675
+ "Check this box if you would like to completely remove all Download Monitor "
676
+ "data when the plugin is deleted."
677
+ msgstr ""
678
+
679
+ #: src/Admin/Settings/Settings.php:235
680
+ msgid "Clear all transients"
681
+ msgstr ""
682
+
683
+ #: src/Admin/Settings/Settings.php:236
684
+ msgid ""
685
+ "Remove all Download Monitor transients, this can solve version caching "
686
+ "issues."
687
+ msgstr ""
688
+
689
+ #: src/Admin/Settings/Settings.php:272
690
+ msgid "Select Page"
691
+ msgstr ""
692
+
693
+ #: src/Admin/WritePanels.php:32
694
+ msgid "Download Information"
695
+ msgstr ""
696
+
697
+ #: src/Admin/WritePanels.php:38
698
+ msgid "Download Options"
699
+ msgstr ""
700
+
701
+ #: src/Admin/WritePanels.php:44
702
+ msgid "Downloadable Files/Versions"
703
+ msgstr ""
704
+
705
+ #: src/Admin/WritePanels.php:52
706
+ msgid "Short Description"
707
+ msgstr ""
708
+
709
+ #: src/Admin/WritePanels.php:84
710
+ msgid "URL"
711
+ msgstr ""
712
+
713
+ #: src/Admin/WritePanels.php:89
714
+ msgid "Shortcode"
715
+ msgstr ""
716
+
717
+ #: src/Admin/WritePanels.php:96
718
+ msgid "No download information for new downloads."
719
+ msgstr ""
720
+
721
+ #: src/Admin/WritePanels.php:127
722
+ msgid "Mark this download as featured. Used by shortcodes and widgets."
723
+ msgstr ""
724
+
725
+ #: src/Admin/WritePanels.php:133
726
+ msgid ""
727
+ "Only logged in users will be able to access the file via a download link if "
728
+ "this is enabled."
729
+ msgstr ""
730
+
731
+ #: src/Admin/WritePanels.php:139
732
+ msgid ""
733
+ "Don't force download. If the <code>dlm_uploads</code> folder is protected "
734
+ "you may need to move your file."
735
+ msgstr ""
736
+
737
+ #: src/Admin/WritePanels.php:175
738
+ msgid "Add file"
739
+ msgstr ""
740
+
741
+ #: src/Admin/WritePanels.php:176
742
+ msgid "Close all"
743
+ msgstr ""
744
+
745
+ #: src/Admin/WritePanels.php:177
746
+ msgid "Expand all"
747
+ msgstr ""
748
+
749
+ #: src/DLM.php:226
750
+ msgid "Documentation"
751
+ msgstr ""
752
+
753
+ #: src/DownloadHandler.php:309
754
+ msgid "Password Required"
755
+ msgstr ""
756
+
757
+ #: src/DownloadHandler.php:315
758
+ msgid "Download does not exist."
759
+ msgstr ""
760
+
761
+ #: src/DownloadHandler.php:315 src/DownloadHandler.php:392
762
+ #: src/DownloadHandler.php:400 src/DownloadHandler.php:549
763
+ msgid "Go to homepage &rarr;"
764
+ msgstr ""
765
+
766
+ #: src/DownloadHandler.php:315 src/DownloadHandler.php:392
767
+ #: src/DownloadHandler.php:400 src/DownloadHandler.php:436
768
+ #: src/DownloadHandler.php:549
769
+ msgid "Download Error"
770
+ msgstr ""
771
+
772
+ #: src/DownloadHandler.php:392 src/DownloadHandler.php:400
773
+ msgid "No file paths defined."
774
+ msgstr ""
775
+
776
+ #: src/DownloadHandler.php:472 src/DownloadHandler.php:489
777
+ #: src/DownloadHandler.php:496 src/DownloadHandler.php:503
778
+ msgid "Redirected to file"
779
+ msgstr ""
780
+
781
+ #: src/DownloadHandler.php:542
782
+ msgid "Redirected to remote file."
783
+ msgstr ""
784
+
785
+ #: src/DownloadHandler.php:547 src/DownloadHandler.php:549
786
+ msgid "File not found."
787
+ msgstr ""
788
+
789
+ #: src/Installer.php:172 src/Installer.php:181
790
+ msgid "No Access"
791
+ msgstr ""
792
+
793
+ #: src/LegacyUpgrader/Page.php:17
794
+ msgid "Legacy Upgrader"
795
+ msgstr ""
796
+
797
+ #: src/LegacyUpgrader/Page.php:29
798
+ msgid "Download Monitor - Legacy Upgrade"
799
+ msgstr ""
800
+
801
+ #: src/LegacyUpgrader/Page.php:30
802
+ msgid ""
803
+ "Welcome to the Download Monitor Legacy Upgrader. On this page we will "
804
+ "upgrade your old Download Monitor (legacy) data so it will work with the "
805
+ "latest version. If you're on this page, it should mean that you updated to "
806
+ "this version from Download Monitor %s. If you're unsure if this is correct, "
807
+ "or you want to read more about the legacy upgrade, we've setup a page that "
808
+ "will explain this process in a lot more detail. %sClick here%s if to view "
809
+ "that page."
810
+ msgstr ""
811
+
812
+ #: src/Logs/LogExportCSV.php:69
813
+ msgid "Version ID"
814
+ msgstr ""
815
+
816
+ #: src/Logs/LogExportCSV.php:70
817
+ msgid "Filename"
818
+ msgstr ""
819
+
820
+ #: src/Logs/LogExportCSV.php:71
821
+ msgid "User ID"
822
+ msgstr ""
823
+
824
+ #: src/Logs/LogExportCSV.php:72
825
+ msgid "User Login"
826
+ msgstr ""
827
+
828
+ #: src/Logs/LogExportCSV.php:73
829
+ msgid "User Email"
830
+ msgstr ""
831
+
832
+ #: src/Logs/LogExportCSV.php:74
833
+ msgid "User IP"
834
+ msgstr ""
835
+
836
+ #: src/Logs/LogExportCSV.php:75 src/Logs/LoggingListTable.php:199
837
+ msgid "User Agent"
838
+ msgstr ""
839
+
840
+ #: src/Logs/LogExportCSV.php:76 src/Logs/LoggingListTable.php:200
841
+ msgid "Date"
842
+ msgstr ""
843
+
844
+ #: src/Logs/LogExportCSV.php:77
845
+ msgid "Status"
846
+ msgstr ""
847
+
848
+ #: src/Logs/LogExportCSV.php:78
849
+ msgid "Meta Data"
850
+ msgstr ""
851
+
852
+ #: src/Logs/LogPage.php:23
853
+ msgid "Logs"
854
+ msgstr ""
855
+
856
+ #: src/Logs/LogPage.php:80
857
+ msgid "Download Logs"
858
+ msgstr ""
859
+
860
+ #: src/Logs/LogPage.php:82
861
+ msgid "Export CSV"
862
+ msgstr ""
863
+
864
+ #: src/Logs/LogPage.php:83
865
+ msgid "Are you sure you want to delete ALL log items?"
866
+ msgstr ""
867
+
868
+ #: src/Logs/LogPage.php:84
869
+ msgid "Delete Logs"
870
+ msgstr ""
871
+
872
+ #: src/Logs/LoggingListTable.php:67
873
+ msgid "Delete"
874
+ msgstr ""
875
+
876
+ #: src/Logs/LoggingListTable.php:94
877
+ msgid "Download Complete"
878
+ msgstr ""
879
+
880
+ #: src/Logs/LoggingListTable.php:102
881
+ msgid "%s ago"
882
+ msgstr ""
883
+
884
+ #: src/Logs/LoggingListTable.php:123
885
+ msgid " (v%s)"
886
+ msgstr ""
887
+
888
+ #: src/Logs/LoggingListTable.php:125
889
+ msgid " (v%s no longer exists)"
890
+ msgstr ""
891
+
892
+ #: src/Logs/LoggingListTable.php:129
893
+ msgid "Download #%d (no longer exists)"
894
+ msgstr ""
895
+
896
+ #: src/Logs/LoggingListTable.php:163
897
+ msgid "Non-member"
898
+ msgstr ""
899
+
900
+ #: src/Logs/LoggingListTable.php:197
901
+ msgid "User"
902
+ msgstr ""
903
+
904
+ #: src/Logs/LoggingListTable.php:198
905
+ msgid "IP Address"
906
+ msgstr ""
907
+
908
+ #: src/Logs/LoggingListTable.php:236
909
+ msgid "Log entries deleted"
910
+ msgstr ""
911
+
912
+ #: src/Logs/LoggingListTable.php:253
913
+ msgid "Any status"
914
+ msgstr ""
915
+
916
+ #: src/Logs/LoggingListTable.php:255
917
+ msgid "Failed"
918
+ msgstr ""
919
+
920
+ #: src/Logs/LoggingListTable.php:257
921
+ msgid "Redirected"
922
+ msgstr ""
923
+
924
+ #: src/Logs/LoggingListTable.php:259
925
+ msgid "Completed"
926
+ msgstr ""
927
+
928
+ #: src/Logs/LoggingListTable.php:277
929
+ msgid "Show all dates"
930
+ msgstr ""
931
+
932
+ #: src/Logs/LoggingListTable.php:291
933
+ msgid "%1$s %2$d"
934
+ msgstr ""
935
+
936
+ #: src/Logs/LoggingListTable.php:298
937
+ msgid "Select a User"
938
+ msgstr ""
939
+
940
+ #: src/Logs/LoggingListTable.php:317
941
+ msgid "25 per page"
942
+ msgstr ""
943
+
944
+ #: src/Logs/LoggingListTable.php:319
945
+ msgid "50 per page"
946
+ msgstr ""
947
+
948
+ #: src/Logs/LoggingListTable.php:321
949
+ msgid "100 per page"
950
+ msgstr ""
951
+
952
+ #: src/Logs/LoggingListTable.php:323
953
+ msgid "200 per page"
954
+ msgstr ""
955
+
956
+ #: src/Logs/LoggingListTable.php:325
957
+ msgid "Show All"
958
+ msgstr ""
959
+
960
+ #: src/Logs/LoggingListTable.php:329
961
+ msgid "Filter"
962
+ msgstr ""
963
+
964
+ #: src/PostTypeManager.php:21
965
+ msgid "All Downloads"
966
+ msgstr ""
967
+
968
+ #: src/PostTypeManager.php:22
969
+ msgid "Downloads"
970
+ msgstr ""
971
+
972
+ #: src/PostTypeManager.php:24
973
+ msgid "Add New"
974
+ msgstr ""
975
+
976
+ #: src/PostTypeManager.php:25
977
+ msgid "Add Download"
978
+ msgstr ""
979
+
980
+ #: src/PostTypeManager.php:26
981
+ msgid "Edit"
982
+ msgstr ""
983
+
984
+ #: src/PostTypeManager.php:27
985
+ msgid "Edit Download"
986
+ msgstr ""
987
+
988
+ #: src/PostTypeManager.php:28
989
+ msgid "New Download"
990
+ msgstr ""
991
+
992
+ #: src/PostTypeManager.php:29 src/PostTypeManager.php:30
993
+ msgid "View Download"
994
+ msgstr ""
995
+
996
+ #: src/PostTypeManager.php:31
997
+ msgid "Search Downloads"
998
+ msgstr ""
999
+
1000
+ #: src/PostTypeManager.php:32
1001
+ msgid "No Downloads found"
1002
+ msgstr ""
1003
+
1004
+ #: src/PostTypeManager.php:33
1005
+ msgid "No Downloads found in trash"
1006
+ msgstr ""
1007
+
1008
+ #: src/PostTypeManager.php:34
1009
+ msgid "Parent Download"
1010
+ msgstr ""
1011
+
1012
+ #: src/PostTypeManager.php:36
1013
+ msgid "This is where you can create and manage downloads for your site."
1014
+ msgstr ""
1015
+
1016
+ #: src/Product/Product.php:188
1017
+ msgid "License successfully activated."
1018
+ msgstr ""
1019
+
1020
+ #: src/Product/Product.php:430
1021
+ msgid ""
1022
+ "<a href=\"%s\">Register your copy</a> of the <strong>%s</strong> extension "
1023
+ "to receive access to automatic upgrades and support. Need a license key? <a "
1024
+ "href=\"%s\" target=\"_blank\">Purchase one now</a>."
1025
+ msgstr ""
1026
+
1027
+ #: src/Shortcodes.php:141 src/Shortcodes.php:260
1028
+ msgid "Download not found"
1029
+ msgstr ""
1030
+
1031
+ #: src/TaxonomyManager.php:29
1032
+ msgid "Download Categories"
1033
+ msgstr ""
1034
+
1035
+ #: src/TaxonomyManager.php:31
1036
+ msgid "Download Category"
1037
+ msgstr ""
1038
+
1039
+ #: src/TaxonomyManager.php:32
1040
+ msgid "Search Download Categories"
1041
+ msgstr ""
1042
+
1043
+ #: src/TaxonomyManager.php:33
1044
+ msgid "All Download Categories"
1045
+ msgstr ""
1046
+
1047
+ #: src/TaxonomyManager.php:34 src/TaxonomyManager.php:35
1048
+ msgid "Parent Download Category"
1049
+ msgstr ""
1050
+
1051
+ #: src/TaxonomyManager.php:36
1052
+ msgid "Edit Download Category"
1053
+ msgstr ""
1054
+
1055
+ #: src/TaxonomyManager.php:37
1056
+ msgid "Update Download Category"
1057
+ msgstr ""
1058
+
1059
+ #: src/TaxonomyManager.php:38
1060
+ msgid "Add New Download Category"
1061
+ msgstr ""
1062
+
1063
+ #: src/TaxonomyManager.php:39
1064
+ msgid "New Download Category Name"
1065
+ msgstr ""
1066
+
1067
+ #: src/TaxonomyManager.php:61
1068
+ msgid "Download Tags"
1069
+ msgstr ""
1070
+
1071
+ #: src/TaxonomyManager.php:63
1072
+ msgid "Download Tag"
1073
+ msgstr ""
1074
+
1075
+ #: src/TaxonomyManager.php:64
1076
+ msgid "Search Download Tags"
1077
+ msgstr ""
1078
+
1079
+ #: src/TaxonomyManager.php:65
1080
+ msgid "All Download Tags"
1081
+ msgstr ""
1082
+
1083
+ #: src/TaxonomyManager.php:66 src/TaxonomyManager.php:67
1084
+ msgid "Parent Download Tag"
1085
+ msgstr ""
1086
+
1087
+ #: src/TaxonomyManager.php:68
1088
+ msgid "Edit Download Tag"
1089
+ msgstr ""
1090
+
1091
+ #: src/TaxonomyManager.php:69
1092
+ msgid "Update Download Tag"
1093
+ msgstr ""
1094
+
1095
+ #: src/TaxonomyManager.php:70
1096
+ msgid "Add New Download Tag"
1097
+ msgstr ""
1098
+
1099
+ #: src/TaxonomyManager.php:71
1100
+ msgid "New Download Tag Name"
1101
+ msgstr ""
1102
+
1103
+ #: src/Widgets/class-dlm-widget-downloads.php:28
1104
+ msgid "Display a list of your downloads."
1105
+ msgstr ""
1106
+
1107
+ #: src/Widgets/class-dlm-widget-downloads.php:30
1108
+ msgid "Downloads List"
1109
+ msgstr ""
1110
+
1111
+ #: src/Widgets/class-dlm-widget-downloads.php:55
1112
+ #: src/Widgets/class-dlm-widget-downloads.php:159
1113
+ msgid "Featured Downloads"
1114
+ msgstr ""
1115
+
1116
+ #: src/Widgets/class-dlm-widget-downloads.php:176
1117
+ msgid "Limit"
1118
+ msgstr ""
1119
+
1120
+ #: src/Widgets/class-dlm-widget-downloads.php:183
1121
+ msgid "Output template"
1122
+ msgstr ""
1123
+
1124
+ #: src/Widgets/class-dlm-widget-downloads.php:187
1125
+ msgid "Default template"
1126
+ msgstr ""
1127
+
1128
+ #: src/Widgets/class-dlm-widget-downloads.php:191
1129
+ msgid "Order by"
1130
+ msgstr ""
1131
+
1132
+ #: src/Widgets/class-dlm-widget-downloads.php:197
1133
+ msgid "Random"
1134
+ msgstr ""
1135
+
1136
+ #: src/Widgets/class-dlm-widget-downloads.php:201
1137
+ msgid "Date added"
1138
+ msgstr ""
1139
+
1140
+ #: src/Widgets/class-dlm-widget-downloads.php:203
1141
+ msgid "Date modified"
1142
+ msgstr ""
1143
+
1144
+ #: src/Widgets/class-dlm-widget-downloads.php:210
1145
+ msgid "Order"
1146
+ msgstr ""
1147
+
1148
+ #: src/Widgets/class-dlm-widget-downloads.php:214
1149
+ msgid "ASC"
1150
+ msgstr ""
1151
+
1152
+ #: src/Widgets/class-dlm-widget-downloads.php:216
1153
+ msgid "DESC"
1154
+ msgstr ""
1155
+
1156
+ #: src/Widgets/class-dlm-widget-downloads.php:224
1157
+ msgid "Show only featured downloads"
1158
+ msgstr ""
1159
+
1160
+ #: src/Widgets/class-dlm-widget-downloads.php:231
1161
+ msgid "Show only members only downloads"
1162
+ msgstr ""
1163
+
1164
+ #: templates/content-download-box.php:18
1165
+ #: templates/content-download-filename.php:17
1166
+ #: templates/content-download.php:16
1167
+ msgid "1 download"
1168
+ msgid_plural "%d downloads"
1169
+ msgstr[0] ""
1170
+ msgstr[1] ""
1171
+
1172
+ #: templates/content-download-box.php:27
1173
+ #: templates/content-download-filename.php:14
1174
+ #: templates/content-download-title.php:13 templates/content-download.php:13
1175
+ msgid "Version %s"
1176
+ msgstr ""
1177
+
1178
+ #: templates/content-download-box.php:29
1179
+ msgid "Download File"
1180
+ msgstr ""
1181
+
1182
+ #: templates/content-download-button.php:13
1183
+ msgid "Download &ldquo;%s&rdquo;"
1184
+ msgstr ""
1185
+
1186
+ #: templates/content-download-button.php:14
1187
+ #: templates/content-download-version-list.php:21
1188
+ msgid "Downloaded 1 time"
1189
+ msgid_plural "Downloaded %d times"
1190
+ msgstr[0] ""
1191
+ msgstr[1] ""
1192
+
1193
+ #. Plugin Name of the plugin/theme
1194
+ msgid "Download Monitor"
1195
+ msgstr ""
1196
+
1197
+ #. Plugin URI of the plugin/theme
1198
+ msgid "https://www.download-monitor.com"
1199
+ msgstr ""
1200
+
1201
+ #. Description of the plugin/theme
1202
+ msgid ""
1203
+ "A full solution for managing downloadable files, monitoring downloads and "
1204
+ "outputting download links and file information on your WordPress powered "
1205
+ "site."
1206
+ msgstr ""
1207
+
1208
+ #. Author of the plugin/theme
1209
+ msgid "Never5"
1210
+ msgstr ""
1211
+
1212
+ #. Author URI of the plugin/theme
1213
+ msgid "https://www.never5.com"
1214
+ msgstr ""
1215
+
1216
+ #: src/Admin/MediaInsert.php:217
1217
+ msgctxt "Drop file here *or* select file"
1218
+ msgid "or"
1219
+ msgstr ""
languages/download-monitor-es_ES-dlm_gutenberg_blocks.json ADDED
@@ -0,0 +1 @@
 
1
+ {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"es_ES"},"Remove":["Eliminar"],"Click to toggle":["Pulsa para alternar"],"Version <span class=\"version\">%s</span> (%s)":["Versión <span class=\"version\">%s</span> (%s)"],"n/a":["No disponible"],"Downloaded %s time":["Descargado %s vez","Descargado %s veces"],"Version":["Versión"],"File URL(s)":["Dirección(es) URL del archivo"],"Enter one file path/URL per line - multiple files will be used as mirrors (chosen at random).":["Introduce una dirección a archivo/dirección URL por línea; si hay varios archivos se utilizarán como descargas alternativas (elegidas al azar)."],"Upload file":["Subir archivo"],"Choose a file":["Selecciona un archivo"],"Insert file URL":["Introduce la dirección URL del archivo"],"Browse for file":["Buscar archivo"],"Download count":["Cantidad de descargas"],"File Date":["Fecha del archivo"],"h":["h"],"m":["m"],"It looks like you upgraded to the latest version of Download Monitor from a legacy version (3.x)":[""],"Currently your downloads don't work like they should, we need to %s before they'll work again.":[""],"upgrade your downloads":[""],"We've created an upgrading tool that will do all the work for you. You can read more about this tool on %sour website (click here)%s or start the upgrade now.":[""],"Take me to the Upgrade Tool":[""],"hide notice":[""],"Download Monitor Extensions":["Extensiones de Download Monitor"],"Extensions":["Extensiones"],"If you like %sDownload Monitor%s please leave us a %s★★★★★%s rating. A huge thank you from us in advance!":["Si te gusta %sDownload Monitor%s, por favor, envíanos una valoración de %s★★★★★%s. ¡Gracias por adelantado!"],"Insert Download":["Insertar descarga"],"Are you sure you want to delete this file ? ":["¿Seguro que quieres eliminar este archivo?"],"Browse for a file":["Buscar un archivo"],"Select a category":["Selecciona una categoría"],"Download Monitor Data":[""],"Featured download":["Descarga destacada"],"Members only":["Solo para miembros"],"Redirect to file":["Redirigir al archivo"],"Image":["Imagen"],"Title":["Título"],"ID":["ID"],"File":["Archivo"],"Categories":["Categorías"],"Tags":["Etiquetas"],"Featured":["Destacado"],"Redirect only":["Solo redirigir"],"Date posted":["Publicación"],"Yes":["Sí"],"Download title":["Título de la descarga"],"Download updated.":["Descarga actualizada."],"Custom field updated.":["Apartado personalizado actualizado."],"Custom field deleted.":["Apartado personalizado eliminado."],"Download restored to revision from %s":["Descarga recuperada desde la revisión %s"],"Download published.":["Descarga publicada."],"Download saved.":["Descarga guardada."],"Download submitted.":["Descarga enviada."],"Download scheduled for: <strong>%1$s</strong>.":["Descarga prevista para: <strong>%1$s</strong>."],"M j, Y @ G:i":["j \"\"d\"\"e F \"\"d\"\"e Y, G:i"],"Download draft updated.":["Borrador de descarga actualizado."],"Popular Downloads":["Descargas más populares"],"There are no stats available yet!":["¡Aún no hay estadísticas disponibles!"],"Download":["Descarga"],"Extend Download Monitor with its powerful free and paid extensions. %sClick here to browse all extensions%s":["Amplía Download Monitor con sus extensiones, tanto gratuitas como de pago. %sPulsa aquí para ver todas las extensiones%s"],"No files found":["No se han encontrado archivos"],"Insert Shortcode":["Insertar código rápido"],"Quick-add download":["Añadir descarga rápidamente"],"Error: File was not created.":["Error: No se ha creado el archivo."],"Download successfully created.":["Descarga creada correctamente."],"Error: Download was not created.":["Error: No se ha creado la descarga."],"Search download":[""],"Choose a download":["Selecciona una descarga"],"Template":["Plantilla"],"Template Name":["Nombre de la plantilla"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>image</code>, the <code>content-download-image.php</code> template will be used instead.":["Si dejas este cuadro en blanco, se utilizará el archivo de plantilla predeterminado <code>content-download.php</code>. Si, por ejemplo, escribes <code>image</code>, se utilizará en su lugar la plantilla <code>content-download-image.php</code>."],"Drop file here":["suelta aquí el archivo"],"Select File":["Seleccionar archivo"],"Enter URL manually":["Introducir la dirección URL manualmente"],"Download URL":["URL de descarga"],"Required URL":["URL necesaria"],"Download Title":["Título de la descarga"],"Required title":["Título necesario"],"Optional version number":["Número de versión opcional"],"Save Download":["Guardar descarga"],"Allowed Files":["Archivos permitidos"],"Please wait...":["Espera, por favor..."],"Reports":[""],"Switch to %s":[""],"Per Day":[""],"Month":[""],"Download Reports":[""],"Loading":[""],"Settings":["Ajustes"],"Because your server is running on nginx, our .htaccess file can't protect your downloads.":[""],"Please add the following rules to your nginx config to disable direct file access: %s":[""],"Download Monitor Transients successfully cleared!":[""],"Settings successfully saved":["Los ajustes se han guardado correctamente"],"Save Changes":["Guardar cambios"],"General":["General"],"Default Template":["Plantilla predeterminada"],"Choose which template is used for <code>[download]</code> shortcodes by default (this can be overridden by the <code>format</code> argument).":["Selecciona que plantilla utilizarán los códigos rápidos <code>[download]</code> de forma predeterminada (puede anularse con la cadena <code>format</code>)."],"Default - Title and count":["Predeterminado: Título y cantidad de descargas"],"Button - CSS styled button showing title and count":["Botón: Botón con estilo CSS que muestra el título y la cantidad de descargas."],"Box - Box showing thumbnail, title, count, filename and filesize.":["Caja: Caja que muestra una miniatura, el título, la cantidad de descargas, el nombre del archivo y su tamaño."],"Filename - Filename and download count":["Nombre de archivo: Nombre de archivo y cantidad de descargas."],"Title - Shows download title only":["Título: Solo muestra el título de la descarga."],"Version list - Lists all download versions in an unordered list":["Lista de versiones: Muestra todas las versiones de descarga en una lista sin ordenar."],"Custom template":["Plantilla personalizada"],"Custom Template":["Plantilla personalizada"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>button</code>, the <code>content-download-button.php</code> template will be used instead. You can add custom templates inside your theme folder.":[""],"X-Accel-Redirect / X-Sendfile":["X-Accel-Redirect / X-Sendfile"],"Enable":["Activar"],"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be used to serve downloads instead of PHP (server requires <code>mod_xsendfile</code>).":["Si el servidor lo permite, se pueden distribuir las descargas a través de <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> en vez de usar PHP (el servidor necesita <code>mod_xsendfile</code>)."],"Prevent hotlinking":["Evitar hotlinking"],"If enabled, the download handler will check the PHP referer to see if it originated from your site and if not, redirect them to the homepage.":["Si activas esta opción, el gestor de descargas comprobará si la referencia PHP se ha originado desde tu página web, y en caso contrario la redirigirá a la misma."],"Allow Proxy IP Override":[""],"If enabled, Download Monitor will use the X_FORWARDED_FOR HTTP header set by proxies as the IP address. Note that anyone can set this header, making it less secure.":[""],"Endpoint":["Término"],"download":["descarga"],"Download Endpoint":["Término de la descarga"],"Define what endpoint should be used for download links. By default this will be <code>%s</code>.":["Define qué término se utilizará para los enlaces de descarga. Por defecto se utilizará <code>%s</code>."],"Endpoint Value":["Valor del término"],"Define what unique value should be used on the end of your endpoint to identify the downloadable file. e.g. ID would give a link like <code>%s</code>":["Define qué valor único debería utilizarse al final de tu término para identificar el archivo descargable. Por ejemplo, una ID mostraría un enlace similar a <code>%s</code>."],"Download ID":["ID de descarga"],"Download slug":["Slug de descarga"],"Hashes":["Hashes"],"MD5 hashes":["Hash MD5"],"Generate MD5 hash for uploaded files":["Genera un hash MD5 para los archivos guardados"],"SHA1 hashes":["Hash SHA1"],"Generate SHA1 hash for uploaded files":["Genera un hash SHA1 para los archivos guardados"],"SHA256 hashes":[""],"Generate SHA256 hash for uploaded files":[""],"Hashes can optionally be output via shortcodes, but may cause performance issues with large files.":["Los hashes pueden exportarse de forma opcional a través de códigos cortos, pero podrían provocar problemas de rendimiento con archivos grandes."],"CRC32B hashes":["Hash CRC32B"],"Generate CRC32B hash for uploaded files":["Genera un hash CRC32B para los archivos guardados"],"Logging":["Registros"],"Download Log":["Registro de descargas"],"Log download attempts, IP addresses and more.":["Registrar los intentos de descargas, las direcciones IP y más."],"Count unique IPs only":[""],"If enabled, the counter for each download will only increment and create a log entry once per IP address.":[""],"Access":[""],"No Access Page":[""],"Choose what page is displayed when the user has no access to a file. Don't forget to add the <code>[dlm_no_access]</code> shortcode to the page.":[""],"You do not have permission to access this download. %sGo to homepage%s":["No tienes permisos para acceder a esta descarga. %sIr a la página principal%s"],"No access message":["Mensaje de falta de acceso"],"The message that will be displayed to visitors when they don't have access to a file.":["Este será el mensaje que verán aquellos visitantes que no puedan acceder a un archivo."],"Blacklist IPs":["IPs en lista negra"],"List IP Addresses to blacklist, 1 per line. Use IP/CIDR netmask format for ranges. IPv4 examples: <code>198.51.100.1</code> or <code>198.51.100.0/24</code>. IPv6 examples: <code>2001:db8::1</code> or <code>2001:db8::/32</code>.":[""],"Blacklist user agents":["Agentes de usuario en lista negra"],"List browser user agents to blacklist, 1 per line. Partial matches are sufficient. Regex matching is allowed by surrounding the pattern with forward slashes, e.g. <code>/^Mozilla.+Googlebot/</code>":[""],"Misc":[""],"Remove Data on Uninstall?":[""],"Check this box if you would like to completely remove all Download Monitor data when the plugin is deleted.":[""],"Clear all transients":[""],"Remove all Download Monitor transients, this can solve version caching issues.":[""],"Select Page":[""],"Download Information":["Información de la descarga"],"Download Options":["Opciones de descarga"],"Downloadable Files/Versions":["Archivos descargables/Versiones"],"Short Description":["Descripción breve"],"URL":["URL"],"Shortcode":["Código rápido"],"No download information for new downloads.":[""],"Mark this download as featured. Used by shortcodes and widgets.":["Marcar esta descarga como destacada. Utilizado por los códigos rápidos y los widgets."],"Only logged in users will be able to access the file via a download link if this is enabled.":["Al activar esta opción solo podrán acceder al archivo los usuarios que hayan iniciado sesión y tengan acceso al enlace de descarga."],"Don't force download. If the <code>dlm_uploads</code> folder is protected you may need to move your file.":[""],"Add file":["Añadir archivo"],"Close all":["Cerrar todo"],"Expand all":["Abrir todo"],"Documentation":[""],"Password Required":["Necesaria contraseña"],"Download does not exist.":["La descarga no existe."],"Go to homepage &rarr;":["Ir a la página web &rarr;"],"Download Error":["Error en la descarga"],"No file paths defined.":["No se ha definido una dirección de archivo."],"Redirected to file":["Redirigido al archivo"],"Redirected to remote file.":["Redirigido al archivo remoto."],"File not found.":["Archivo no encontrado."],"No Access":[""],"Legacy Upgrader":[""],"Download Monitor - Legacy Upgrade":[""],"Welcome to the Download Monitor Legacy Upgrader. On this page we will upgrade your old Download Monitor (legacy) data so it will work with the latest version. If you're on this page, it should mean that you updated to this version from Download Monitor %s. If you're unsure if this is correct, or you want to read more about the legacy upgrade, we've setup a page that will explain this process in a lot more detail. %sClick here%s if to view that page.":[""],"Version ID":["ID de la versión"],"Filename":["Nombre del archivo"],"User ID":["ID del usuario"],"User Login":["Nombre del usuario"],"User Email":["Email del usuario"],"User IP":["IP del usuario"],"User Agent":["Agente del usuario"],"Date":["Fecha"],"Status":["Estado"],"Meta Data":[""],"Logs":["Registros"],"Download Logs":["Registros de descarga"],"Export CSV":["Exportar CSV"],"Are you sure you want to delete ALL log items?":[""],"Delete Logs":["Registros de eliminación"],"Delete":[""],"Download Complete":["Descarga completada"],"%s ago":["Hace %s"]," (v%s)":[""]," (v%s no longer exists)":[""],"Download #%d (no longer exists)":["Descarga #%d (ya no existe)"],"Non-member":["Externo"],"User":["Usuario"],"IP Address":["Dirección IP"],"Log entries deleted":[""],"Any status":["Cualquier estado"],"Failed":["Fallido"],"Redirected":["Redirigido"],"Completed":["Completada"],"Show all dates":["Mostrar todas las fechas"],"%1$s %2$d":["%1$s %2$d"],"Select a User":[""],"25 per page":["25 por página"],"50 per page":["50 por página"],"100 per page":["100 por página"],"200 per page":["200 por página"],"Show All":["Mostrar todo"],"Filter":["Filtro"],"All Downloads":["Todas las descargas"],"Downloads":["Descargas"],"Add New":["Añadir nueva"],"Add Download":["Añadir descarga"],"Edit":["Editar"],"Edit Download":["Editar descarga"],"New Download":["Descarga nueva"],"View Download":["Ver descarga"],"Search Downloads":["Buscar descargas"],"No Downloads found":["No se han encontrado descargas"],"No Downloads found in trash":["No se han encontrado descargas en la papelera"],"Parent Download":["Descarga superior"],"This is where you can create and manage downloads for your site.":["Aquí puedes crear y gestionar las descargas de tu página web."],"License successfully activated.":["La licencia se ha activado correctamente."],"<a href=\"%s\">Register your copy</a> of the <strong>%s</strong> extension to receive access to automatic upgrades and support. Need a license key? <a href=\"%s\" target=\"_blank\">Purchase one now</a>.":[""],"Download not found":["Descarga no encontrada"],"Download Categories":[""],"Download Category":["Categoría de descarga"],"Search Download Categories":["Buscar categorías de descarga"],"All Download Categories":["Todas las categorías de descarga"],"Parent Download Category":["Categoría de descarga superior"],"Edit Download Category":["Editar categoría de descarga"],"Update Download Category":["Actualizar categoría de descarga"],"Add New Download Category":["Añadir una categoría de descarga nueva"],"New Download Category Name":["Nombre de la nueva categoría de descarga"],"Download Tags":[""],"Download Tag":["Etiqueta de descarga"],"Search Download Tags":["Buscar etiquetas de descarga"],"All Download Tags":["Todas las etiquetas de descarga"],"Parent Download Tag":["Etiqueta de descarga superior"],"Edit Download Tag":["Editar etiqueta de descarga"],"Update Download Tag":["Actualizar etiqueta de descarga"],"Add New Download Tag":["Añadir una etiqueta de descarga nueva"],"New Download Tag Name":["Nombre de la nueva etiqueta de descarga"],"Display a list of your downloads.":["Muestra una lista de tus descargas."],"Downloads List":["Lista de descargas"],"Featured Downloads":["Descargas destacadas"],"Limit":["Límite"],"Output template":["Plantilla de salida"],"Default template":["Plantilla predeterminada"],"Order by":["Ordenar por"],"Random":["Al azar"],"Date added":["Fecha de creación"],"Date modified":["Fecha de modificación"],"Order":["Orden"],"ASC":["ASCENDENTE"],"DESC":["DESCENDENTE"],"Show only featured downloads":["Solo mostrar las descargas destacadas"],"Show only members only downloads":["Solo mostrar las descargas a los miembros"],"1 download":["1 descarga","%d descargas"],"Version %s":["Versión %s"],"Download File":["Descargar archivo"],"Download &ldquo;%s&rdquo;":["Descargar &ldquo;%s&rdquo;"],"Downloaded 1 time":["Descargado 1 vez","Descargado %d veces"],"Download Monitor":["Download Monitor"],"https://www.download-monitor.com":["https://www.download-monitor.com"],"A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.":["Una solución completa para gestionar archivos descargables, monitorizar descargas y exportar enlaces de descarga e información de archivos en tu web WordPress."],"Never5":[""],"https://www.never5.com":[""],"Drop file here *or* select file\u0004or":["o"]}}}
languages/download-monitor-fa_IR-dlm_gutenberg_blocks.json ADDED
@@ -0,0 +1 @@
 
1
+ {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n > 1);","lang":"fa_IR"},"Remove":["حذف"],"Click to toggle":["برای تغییر حالت کلیک کنید"],"Version <span class=\"version\">%s</span> (%s)":["نسخه <span class=\"version\">%s</span> (%s)"],"n/a":["n/a"],"Downloaded %s time":["","Downloaded %s times"],"Version":["نسخه"],"File URL(s)":["آدرس فایل(ها)"],"Enter one file path/URL per line - multiple files will be used as mirrors (chosen at random).":["آدرس هر فایل در یک خط - فایل های چنتایی به عنوان لینک میرور استفاده میشوند (chosen at random)."],"Upload file":["آپلود فایل"],"Choose a file":["یک فایل را انتخاب کنید"],"Insert file URL":["آدرس فایل را وارد کنید"],"Browse for file":["جستجوی فایل"],"Download count":["تعداد دانلود"],"File Date":["تاریخ فایل"],"h":["h"],"m":["m"],"It looks like you upgraded to the latest version of Download Monitor from a legacy version (3.x)":[""],"Currently your downloads don't work like they should, we need to %s before they'll work again.":[""],"upgrade your downloads":[""],"We've created an upgrading tool that will do all the work for you. You can read more about this tool on %sour website (click here)%s or start the upgrade now.":[""],"Take me to the Upgrade Tool":[""],"hide notice":[""],"Download Monitor Extensions":[""],"Extensions":[""],"If you like %sDownload Monitor%s please leave us a %s★★★★★%s rating. A huge thank you from us in advance!":[""],"Insert Download":["وارد کردن دانلود"],"Are you sure you want to delete this file ? ":[""],"Browse for a file":["جستجو برای یک فایل"],"Select a category":["یک موضوع انتخاب کنید"],"Download Monitor Data":[""],"Featured download":["دانلود ویژه"],"Members only":["فقط اعضا"],"Redirect to file":[""],"Image":["تصویر"],"Title":["عنوان"],"ID":["شناسه"],"File":["فایل"],"Categories":["موضوعات"],"Tags":["برچسب ها"],"Featured":["ویژه"],"Redirect only":[""],"Date posted":["تاریخ ارسال"],"Yes":[""],"Download title":["عنوان دانلود"],"Download updated.":["دانلود بروز رسانی شد."],"Custom field updated.":["فیلد دلخواه بروز رسانی شد."],"Custom field deleted.":["فیلد دلخواه حذف شد."],"Download restored to revision from %s":["دانلود به نسخه %s بازنگری شد"],"Download published.":["دانلود منتشر شد."],"Download saved.":["دانلود ذخیره شد."],"Download submitted.":["دانلود ثبت شد."],"Download scheduled for: <strong>%1$s</strong>.":["دانلود برای <strong>%1$s</strong> زمانبندی شد."],"M j, Y @ G:i":["M j Y @ G:i"],"Download draft updated.":["پیشنویس دانلود بروزرسانی شد."],"Popular Downloads":["دانلود های محبوب"],"There are no stats available yet!":["هنوز هیچ آماری در دسترس نیست!"],"Download":["دانلود"],"Extend Download Monitor with its powerful free and paid extensions. %sClick here to browse all extensions%s":[""],"No files found":["هیچ فایلی یافت نشد"],"Insert Shortcode":["وارد کردن شورت کد"],"Quick-add download":["اضافه کردن سریع دانلود"],"Error: File was not created.":["خطا: فایل ایجاد نشد."],"Download successfully created.":["دانلود با موفقیت ایجاد شد."],"Error: Download was not created.":["خطا: دانلود ایجاد نشد"],"Search download":[""],"Choose a download":["یک دانلود را انتخاب کنید"],"Template":["قالب"],"Template Name":["نام قالب"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>image</code>, the <code>content-download-image.php</code> template will be used instead.":["در صورتی که فیلد را خالی بگذارین به صورت پیشفرض از قالب <code>content-download.php</code> استفاده خواهد شد. برای مثال در صورت وارد کردن <code>image</code>، قالب دانلود به صورت <code>content-download-image.php</code> در خواهد آمد."],"Drop file here":["فایل را اینجا بندازید"],"Select File":["انتخاب فایل"],"Enter URL manually":["بصورت دستی آدرس فایل را وارد کنید"],"Download URL":["آدرس دانلود"],"Required URL":["آدرس مورد نیاز"],"Download Title":["عنوان دانلود"],"Required title":["عنوان مورد نیاز"],"Optional version number":["شماره نسخه اختیاری"],"Save Download":["ذخیره دانلود"],"Allowed Files":["فایل های مجاز"],"Please wait...":["لطفا صبر کنید"],"Reports":[""],"Switch to %s":[""],"Per Day":[""],"Month":[""],"Download Reports":[""],"Loading":[""],"Settings":["تنظیمات"],"Because your server is running on nginx, our .htaccess file can't protect your downloads.":[""],"Please add the following rules to your nginx config to disable direct file access: %s":[""],"Download Monitor Transients successfully cleared!":[""],"Settings successfully saved":["تنظیمات با موفقیت ذخیره شد"],"Save Changes":["ذخیره تنظیمات"],"General":["عمومی"],"Default Template":["قالب پیشفرض"],"Choose which template is used for <code>[download]</code> shortcodes by default (this can be overridden by the <code>format</code> argument).":["انتخاب کنید کدام قالب برای شرت کد <code>[download]</code> بصورت پیشفرض استفاده شده است (می تواد با استفاده از <code>format</code> بازنویسی شود)."],"Default - Title and count":[""],"Button - CSS styled button showing title and count":[""],"Box - Box showing thumbnail, title, count, filename and filesize.":[""],"Filename - Filename and download count":[""],"Title - Shows download title only":[""],"Version list - Lists all download versions in an unordered list":[""],"Custom template":[""],"Custom Template":[""],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>button</code>, the <code>content-download-button.php</code> template will be used instead. You can add custom templates inside your theme folder.":[""],"X-Accel-Redirect / X-Sendfile":["X-Accel-Redirect / X-Sendfile"],"Enable":["فعال"],"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be used to serve downloads instead of PHP (server requires <code>mod_xsendfile</code>).":["در صورتی که از <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> پشتیبانی شود، can be used to serve downloads instead of PHP (server requires <code>mod_xsendfile</code>)."],"Prevent hotlinking":[""],"If enabled, the download handler will check the PHP referer to see if it originated from your site and if not, redirect them to the homepage.":[""],"Allow Proxy IP Override":[""],"If enabled, Download Monitor will use the X_FORWARDED_FOR HTTP header set by proxies as the IP address. Note that anyone can set this header, making it less secure.":[""],"Endpoint":["نقطه پایانی"],"download":["دانلود"],"Download Endpoint":["نقطه پایانی دانلود"],"Define what endpoint should be used for download links. By default this will be <code>%s</code>.":[""],"Endpoint Value":["مقدار نقطه پایانی"],"Define what unique value should be used on the end of your endpoint to identify the downloadable file. e.g. ID would give a link like <code>%s</code>":[""],"Download ID":["شناسه دانلود"],"Download slug":["اسلاگ دانلود"],"Hashes":[""],"MD5 hashes":[""],"Generate MD5 hash for uploaded files":[""],"SHA1 hashes":[""],"Generate SHA1 hash for uploaded files":[""],"SHA256 hashes":[""],"Generate SHA256 hash for uploaded files":[""],"Hashes can optionally be output via shortcodes, but may cause performance issues with large files.":[""],"CRC32B hashes":[""],"Generate CRC32B hash for uploaded files":[""],"Logging":["در حال ثبت وقایع"],"Download Log":["ثبت وقایع دانلود"],"Log download attempts, IP addresses and more.":["وقایع اقدام به دانلود، آی پی آدرس ها و بیشتر."],"Count unique IPs only":[""],"If enabled, the counter for each download will only increment and create a log entry once per IP address.":[""],"Access":[""],"No Access Page":[""],"Choose what page is displayed when the user has no access to a file. Don't forget to add the <code>[dlm_no_access]</code> shortcode to the page.":[""],"You do not have permission to access this download. %sGo to homepage%s":[""],"No access message":[""],"The message that will be displayed to visitors when they don't have access to a file.":[""],"Blacklist IPs":["لیست سیاه آی پی ها"],"List IP Addresses to blacklist, 1 per line. Use IP/CIDR netmask format for ranges. IPv4 examples: <code>198.51.100.1</code> or <code>198.51.100.0/24</code>. IPv6 examples: <code>2001:db8::1</code> or <code>2001:db8::/32</code>.":[""],"Blacklist user agents":["لیست سیاه نوع کاربران"],"List browser user agents to blacklist, 1 per line. Partial matches are sufficient. Regex matching is allowed by surrounding the pattern with forward slashes, e.g. <code>/^Mozilla.+Googlebot/</code>":[""],"Misc":[""],"Remove Data on Uninstall?":[""],"Check this box if you would like to completely remove all Download Monitor data when the plugin is deleted.":[""],"Clear all transients":[""],"Remove all Download Monitor transients, this can solve version caching issues.":[""],"Select Page":[""],"Download Information":[""],"Download Options":["تنظیمات دانلود"],"Downloadable Files/Versions":[""],"Short Description":["توضیحات کوتاه"],"URL":[""],"Shortcode":[""],"No download information for new downloads.":[""],"Mark this download as featured. Used by shortcodes and widgets.":["این دانلود را ویژه کنید! استفاده شده توسط شورت کدها و ابزارک ها."],"Only logged in users will be able to access the file via a download link if this is enabled.":["در صورت انتخاب تنها کاربران وارد شده به سایت قادر به دسترسی به فایل از طریق لینک دانلود هستند."],"Don't force download. If the <code>dlm_uploads</code> folder is protected you may need to move your file.":[""],"Add file":[""],"Close all":["بستن همه"],"Expand all":["باز کردن همه"],"Documentation":[""],"Password Required":[""],"Download does not exist.":["دانلود موجود نیست."],"Go to homepage &rarr;":["برو به صفحه اصلی &larr;"],"Download Error":["خطای دانلود"],"No file paths defined.":["هیچ آدرس فایلی تعریف نشده است."],"Redirected to file":["هدایت به فایل"],"Redirected to remote file.":["هدایت به فایل"],"File not found.":["فایل یافت نشد."],"No Access":[""],"Legacy Upgrader":[""],"Download Monitor - Legacy Upgrade":[""],"Welcome to the Download Monitor Legacy Upgrader. On this page we will upgrade your old Download Monitor (legacy) data so it will work with the latest version. If you're on this page, it should mean that you updated to this version from Download Monitor %s. If you're unsure if this is correct, or you want to read more about the legacy upgrade, we've setup a page that will explain this process in a lot more detail. %sClick here%s if to view that page.":[""],"Version ID":["شناسه نسخه"],"Filename":[""],"User ID":["شناسه کاربر"],"User Login":[""],"User Email":[""],"User IP":["آی پی کاربر"],"User Agent":["نوع کاربر"],"Date":["تاریخ"],"Status":["وضعیت"],"Meta Data":[""],"Logs":["وقایع"],"Download Logs":["دانلود وقایع"],"Export CSV":["خروجی CSV"],"Are you sure you want to delete ALL log items?":[""],"Delete Logs":[""],"Delete":[""],"Download Complete":["دانلود کامل شد"],"%s ago":["%s پیش"]," (v%s)":[""]," (v%s no longer exists)":[""],"Download #%d (no longer exists)":["دانلود #%d (دیگر وجود ندارد)"],"Non-member":["عضو نیست"],"User":["کاربر"],"IP Address":["آی پی آدرس"],"Log entries deleted":[""],"Any status":[""],"Failed":[""],"Redirected":[""],"Completed":[""],"Show all dates":[""],"%1$s %2$d":[""],"Select a User":[""],"25 per page":[""],"50 per page":[""],"100 per page":[""],"200 per page":[""],"Show All":[""],"Filter":[""],"All Downloads":[""],"Downloads":["دانلود"],"Add New":["اضافه کردن"],"Add Download":["اضافه کردن دانلود"],"Edit":["ویرایش"],"Edit Download":["ویرایش دانلود"],"New Download":["دانلود جدید"],"View Download":["مشاهده دانلود"],"Search Downloads":["جستجوی دانلود ها"],"No Downloads found":["هیچ دانلودی یافت نشد"],"No Downloads found in trash":["هیچ دانلودی در سطل زباله یافت نشد"],"Parent Download":["دانلود مادر"],"This is where you can create and manage downloads for your site.":["اینجا جاییست که شما میتوانید برای سایتتان دانلود جدید بسازید یا آنها را مدیریت کنید."],"License successfully activated.":[""],"<a href=\"%s\">Register your copy</a> of the <strong>%s</strong> extension to receive access to automatic upgrades and support. Need a license key? <a href=\"%s\" target=\"_blank\">Purchase one now</a>.":[""],"Download not found":["دانلود یافت نشد"],"Download Categories":[""],"Download Category":["موضوعات دانلود"],"Search Download Categories":["جستجوی موضوعات دانلود"],"All Download Categories":["همه ی موضوعات دانلود"],"Parent Download Category":["موضوع دانلود مادر"],"Edit Download Category":["ویرایش موضوع دانلود"],"Update Download Category":["بروز رسانی موضوع دانلود"],"Add New Download Category":["اضافه کردن موضوع دانلود"],"New Download Category Name":["نام موضوع دانلود جدید"],"Download Tags":[""],"Download Tag":["برچسب دانلود"],"Search Download Tags":["جستجوی برچسب های دانلود"],"All Download Tags":["همه ی تگ های دانلود"],"Parent Download Tag":["برچسب دانلود مادر"],"Edit Download Tag":["ویرایش برچسب دانلود"],"Update Download Tag":["بروز رسانی برچسب دانلود"],"Add New Download Tag":["اضافه کردن برچسب دانلود"],"New Download Tag Name":["نام برچسب دانلود جدید"],"Display a list of your downloads.":["نمایش یک لیست از دانلودهای شما"],"Downloads List":["لیست دانلودها"],"Featured Downloads":["دانلود های ویژه"],"Limit":[""],"Output template":[""],"Default template":["قالب پیشفرض"],"Order by":[""],"Random":["تصادفی"],"Date added":["تاریخ ارسال"],"Date modified":["تاریخ ویرایش"],"Order":[""],"ASC":["صعودی"],"DESC":["نزولی"],"Show only featured downloads":["فقط دانلود های ویژه را نشان بده"],"Show only members only downloads":["فقط دانلود های مخصوص اعضا را نشان بده"],"1 download":["","%d downloads"],"Version %s":["نسخه %s"],"Download File":["دانلود فایل"],"Download &ldquo;%s&rdquo;":["دانلود &ldquo;%s&rdquo;"],"Downloaded 1 time":["","Downloaded %d times"],"Download Monitor":["Download Monitor"],"https://www.download-monitor.com":["https://www.download-monitor.com"],"A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.":["A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site."],"Never5":[""],"https://www.never5.com":[""],"Drop file here *or* select file\u0004or":[""]}}}
languages/download-monitor-fa_IR.mo CHANGED
Binary file
languages/download-monitor-fa_IR.po CHANGED
@@ -14,7 +14,7 @@ msgstr ""
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Language: fa_IR\n"
17
- "Plural-Forms: nplurals=1; plural=0;\n"
18
  "X-Generator: grunt-wp-i18n 0.4.9\n"
19
 
20
  #: assets/views/meta-box/version.php:8
@@ -37,6 +37,7 @@ msgstr "n/a"
37
  msgid "Downloaded %s time"
38
  msgid_plural "Downloaded %s times"
39
  msgstr[0] ""
 
40
 
41
  #: assets/views/meta-box/version.php:22 src/Admin/CustomColumns.php:28
42
  #: src/Admin/MediaInsert.php:241
@@ -1167,6 +1168,7 @@ msgstr "فقط دانلود های مخصوص اعضا را نشان بده"
1167
  msgid "1 download"
1168
  msgid_plural "%d downloads"
1169
  msgstr[0] ""
 
1170
 
1171
  #: templates/content-download-box.php:27
1172
  #: templates/content-download-filename.php:14
@@ -1187,6 +1189,7 @@ msgstr "دانلود &ldquo;%s&rdquo;"
1187
  msgid "Downloaded 1 time"
1188
  msgid_plural "Downloaded %d times"
1189
  msgstr[0] ""
 
1190
 
1191
  #. Plugin Name of the plugin/theme
1192
  msgid "Download Monitor"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Language: fa_IR\n"
17
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
  "X-Generator: grunt-wp-i18n 0.4.9\n"
19
 
20
  #: assets/views/meta-box/version.php:8
37
  msgid "Downloaded %s time"
38
  msgid_plural "Downloaded %s times"
39
  msgstr[0] ""
40
+ msgstr[1] ""
41
 
42
  #: assets/views/meta-box/version.php:22 src/Admin/CustomColumns.php:28
43
  #: src/Admin/MediaInsert.php:241
1168
  msgid "1 download"
1169
  msgid_plural "%d downloads"
1170
  msgstr[0] ""
1171
+ msgstr[1] ""
1172
 
1173
  #: templates/content-download-box.php:27
1174
  #: templates/content-download-filename.php:14
1189
  msgid "Downloaded 1 time"
1190
  msgid_plural "Downloaded %d times"
1191
  msgstr[0] ""
1192
+ msgstr[1] ""
1193
 
1194
  #. Plugin Name of the plugin/theme
1195
  msgid "Download Monitor"
languages/download-monitor-fr_FR-dlm_gutenberg_blocks.json ADDED
@@ -0,0 +1 @@
 
1
+ {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n > 1);","lang":"fr_FR"},"Remove":["Retirer"],"Click to toggle":["Cliquer pour déplier"],"Version <span class=\"version\">%s</span> (%s)":["Version <span class=\"version\">%s</span> (%s)"],"n/a":["n/a"],"Downloaded %s time":["Téléchargé %s fois","Téléchargé %s fois"],"Version":["Version"],"File URL(s)":["URL(s) de fichier"],"Enter one file path/URL per line - multiple files will be used as mirrors (chosen at random).":["Entrez un chemin de fichier/une URL par ligne - les fichiers multiples seront utilisés comme miroirs (choisis au hasard)."],"Upload file":["Uploader un fichier"],"Choose a file":["Choisir un fichier"],"Insert file URL":["Insérer l'URL de fichier"],"Browse for file":["Parcourir à la recherche d'un fichier"],"Download count":["Décompte téléchargement"],"File Date":["Date de fichier"],"h":["h"],"m":["m"],"It looks like you upgraded to the latest version of Download Monitor from a legacy version (3.x)":[""],"Currently your downloads don't work like they should, we need to %s before they'll work again.":[""],"upgrade your downloads":[""],"We've created an upgrading tool that will do all the work for you. You can read more about this tool on %sour website (click here)%s or start the upgrade now.":[""],"Take me to the Upgrade Tool":[""],"hide notice":[""],"Download Monitor Extensions":[""],"Extensions":[""],"If you like %sDownload Monitor%s please leave us a %s★★★★★%s rating. A huge thank you from us in advance!":[""],"Insert Download":["Insérer téléchargement"],"Are you sure you want to delete this file ? ":[""],"Browse for a file":["Parcourir à la recherche d'un fichier"],"Select a category":["Sélectionner une catégorie"],"Download Monitor Data":[""],"Featured download":["Téléchargement à la une"],"Members only":["Membres uniquement"],"Redirect to file":["Redirection vers le fichier"],"Image":["Image"],"Title":["Titre"],"ID":["ID de "],"File":["Fichier"],"Categories":["Catégories"],"Tags":["Mots-clef"],"Featured":["À la une"],"Redirect only":["Uniquement redirection"],"Date posted":["Date de publication"],"Yes":["Oui"],"Download title":["Titre de téléchargement"],"Download updated.":["Téléchargement mis à jour."],"Custom field updated.":["Champ personnalisé mis à jour."],"Custom field deleted.":["Champ personnalisé supprimé."],"Download restored to revision from %s":["Téléchargement restauré à partir de la révision %s"],"Download published.":["Téléchargement publié."],"Download saved.":["Téléchargement sauvegardé."],"Download submitted.":["Téléchargement soumis."],"Download scheduled for: <strong>%1$s</strong>.":["Téléchargement programmé pour: <strong>%1$s</strong>."],"M j, Y @ G:i":["j F Y @ G:i"],"Download draft updated.":["Brouillon de téléchargement mis à jour."],"Popular Downloads":["Téléchargements populaires"],"There are no stats available yet!":["Il n'y a pas de stats disponibles actuellement !"],"Download":["Téléchargement"],"Extend Download Monitor with its powerful free and paid extensions. %sClick here to browse all extensions%s":[""],"No files found":["Aucun fichier de trouvé"],"Insert Shortcode":["Insérer shortcode"],"Quick-add download":["Ajouter rapidement un téléchargement"],"Error: File was not created.":["Erreur: le fichier n'a pas été créé."],"Download successfully created.":["Téléchargement créé avec succès."],"Error: Download was not created.":["Erreur: téléchargement non créé."],"Search download":[""],"Choose a download":["Choisir un téléchargement"],"Template":["Template"],"Template Name":["Nom de template"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>image</code>, the <code>content-download-image.php</code> template will be used instead.":["Laisser ce champ vide fera utiliser le fichier template par défaut <code>content-download.php</code>. Si vous entrez par exemple <code>image</code>, le template <code>content-download-image.php</code> sera utilisé à la place. "],"Drop file here":["Déposer le fichier ici"],"Select File":["Sélectionner fichier"],"Enter URL manually":["Entrer URL manuellement"],"Download URL":["URL de téléchargement"],"Required URL":["URL requis"],"Download Title":["Titre de téléchargement"],"Required title":["Titre requis"],"Optional version number":["Numéro de version optionnel"],"Save Download":["Sauvegarder téléchargement"],"Allowed Files":["Fichiers autorisés"],"Please wait...":["Veuillez patienter..."],"Reports":[""],"Switch to %s":[""],"Per Day":[""],"Month":[""],"Download Reports":[""],"Loading":[""],"Settings":["Réglages"],"Because your server is running on nginx, our .htaccess file can't protect your downloads.":[""],"Please add the following rules to your nginx config to disable direct file access: %s":[""],"Download Monitor Transients successfully cleared!":[""],"Settings successfully saved":["Réglages sauvegardés avec succès"],"Save Changes":["Sauvegarder les modifications"],"General":["Général"],"Default Template":["Template par défaut"],"Choose which template is used for <code>[download]</code> shortcodes by default (this can be overridden by the <code>format</code> argument).":["Veuillez choisir quel template sera utilisé pour les shortcodes <code>[download]</code> par défaut (vous pouvez passer outre avec l'argument <code>format</code>)."],"Default - Title and count":["Par défaut - Titre et nombre"],"Button - CSS styled button showing title and count":["Bouton - bouton stylisé par CSS montrant le titre et le nombre"],"Box - Box showing thumbnail, title, count, filename and filesize.":["Boîte - boîte montrant la miniature, le titre, le nombre, le nom de fichier et la taille de fichier."],"Filename - Filename and download count":["Nom de fichier - Nom de fichier et nombre de téléchargements"],"Title - Shows download title only":["Titre - affiche uniquement le titre du téléchargement"],"Version list - Lists all download versions in an unordered list":["Liste de versions - liste toutes les versions à télécharger dans une liste non ordonnée"],"Custom template":["Template personnalisé"],"Custom Template":["Template personnalisé"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>button</code>, the <code>content-download-button.php</code> template will be used instead. You can add custom templates inside your theme folder.":[""],"X-Accel-Redirect / X-Sendfile":["X-Accel-Redirect / X-Sendfile"],"Enable":["Activé"],"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be used to serve downloads instead of PHP (server requires <code>mod_xsendfile</code>).":["Si supporté, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> peut être utilisé pour servir les téléchargements plutôt que par PHP (le serveur nécessite <code>mod_xsendfile</code>)."],"Prevent hotlinking":["Empêcher le hotlinking"],"If enabled, the download handler will check the PHP referer to see if it originated from your site and if not, redirect them to the homepage.":["Si activé, le handler de téléchargement vérifiera le referer PHP pour voir s'il est originaire de votre site et si non, il le redirigera vers la page d'accueil."],"Allow Proxy IP Override":[""],"If enabled, Download Monitor will use the X_FORWARDED_FOR HTTP header set by proxies as the IP address. Note that anyone can set this header, making it less secure.":[""],"Endpoint":["Endpoint"],"download":["download"],"Download Endpoint":["Endpoint de téléchargement"],"Define what endpoint should be used for download links. By default this will be <code>%s</code>.":["Définit quet endpoint doit être utilisé pour les liens de téléchargement. Par défaut, ce sera <code>%s</code>."],"Endpoint Value":["Valeur de endpoint"],"Define what unique value should be used on the end of your endpoint to identify the downloadable file. e.g. ID would give a link like <code>%s</code>":["Définit quelle unique valeur doit être utilisée à la fin de votre endpoint pour identifier le fichier téléchargeable, c' à d l'ID donnerait un lien du genre <code>%s</code>"],"Download ID":["ID de téléchargement"],"Download slug":["Identifiant de téléchargement"],"Hashes":[""],"MD5 hashes":["Hashes MD5"],"Generate MD5 hash for uploaded files":["Généner un hash MD5 pour les fichiers uploadés"],"SHA1 hashes":["Hashes SHA1 "],"Generate SHA1 hash for uploaded files":["Générer un hash SHA1 pour les fichiers uploadés"],"SHA256 hashes":[""],"Generate SHA256 hash for uploaded files":[""],"Hashes can optionally be output via shortcodes, but may cause performance issues with large files.":["Les hashes peuvent être affichés de manière optionnelle via des shortcodes mais peuvent être source de problèmes de performance pour les gros fichiers. "],"CRC32B hashes":["Hashes CRC32B"],"Generate CRC32B hash for uploaded files":["Générer un hash CRC32B pour les fichiers uploadés"],"Logging":["Connexion"],"Download Log":["Log de téléchargement"],"Log download attempts, IP addresses and more.":["Log de tentatives de téléchargement, adresses IP et plus. "],"Count unique IPs only":[""],"If enabled, the counter for each download will only increment and create a log entry once per IP address.":[""],"Access":[""],"No Access Page":[""],"Choose what page is displayed when the user has no access to a file. Don't forget to add the <code>[dlm_no_access]</code> shortcode to the page.":[""],"You do not have permission to access this download. %sGo to homepage%s":[""],"No access message":[""],"The message that will be displayed to visitors when they don't have access to a file.":[""],"Blacklist IPs":["Liste noire d'IP"],"List IP Addresses to blacklist, 1 per line. Use IP/CIDR netmask format for ranges. IPv4 examples: <code>198.51.100.1</code> or <code>198.51.100.0/24</code>. IPv6 examples: <code>2001:db8::1</code> or <code>2001:db8::/32</code>.":[""],"Blacklist user agents":["Liste noire d'user agents"],"List browser user agents to blacklist, 1 per line. Partial matches are sufficient. Regex matching is allowed by surrounding the pattern with forward slashes, e.g. <code>/^Mozilla.+Googlebot/</code>":[""],"Misc":[""],"Remove Data on Uninstall?":[""],"Check this box if you would like to completely remove all Download Monitor data when the plugin is deleted.":[""],"Clear all transients":[""],"Remove all Download Monitor transients, this can solve version caching issues.":[""],"Select Page":[""],"Download Information":[""],"Download Options":["Options de téléchargement"],"Downloadable Files/Versions":["Fichiers téléchargeables/Versions"],"Short Description":["Description rapide"],"URL":[""],"Shortcode":[""],"No download information for new downloads.":[""],"Mark this download as featured. Used by shortcodes and widgets.":["Marque ce téléchargement comme étant à la une. Utilisé par les shortcodes et les widgets."],"Only logged in users will be able to access the file via a download link if this is enabled.":["Seuls les utilisateurs connectés auront accès au fichier via un lien de téléchargement si il est disponible."],"Don't force download. If the <code>dlm_uploads</code> folder is protected you may need to move your file.":[""],"Add file":["Ajouter un fichier"],"Close all":["Fermer tout"],"Expand all":["Développer tout"],"Documentation":[""],"Password Required":["Mot de passe requis"],"Download does not exist.":["Le téléchargment n'existe pas."],"Go to homepage &rarr;":["Aller à la page d'accueil &rarr;"],"Download Error":["Erreur de téléchargement"],"No file paths defined.":["Aucun chemin de fichier n'est spécifié."],"Redirected to file":["Rediriger vers le fichier"],"Redirected to remote file.":["Rediriger vers le fichier distant."],"File not found.":["Fichier non trouvé."],"No Access":[""],"Legacy Upgrader":[""],"Download Monitor - Legacy Upgrade":[""],"Welcome to the Download Monitor Legacy Upgrader. On this page we will upgrade your old Download Monitor (legacy) data so it will work with the latest version. If you're on this page, it should mean that you updated to this version from Download Monitor %s. If you're unsure if this is correct, or you want to read more about the legacy upgrade, we've setup a page that will explain this process in a lot more detail. %sClick here%s if to view that page.":[""],"Version ID":["ID de version"],"Filename":["Nom de fichier"],"User ID":["ID d'utilisateur"],"User Login":["Login utilisateur"],"User Email":["Email utilisateur"],"User IP":["IP d'utilisateur"],"User Agent":["User Agent"],"Date":["Date"],"Status":["Status"],"Meta Data":[""],"Logs":["Logs"],"Download Logs":["Télécharger les logs"],"Export CSV":["Exporter au format CSV"],"Are you sure you want to delete ALL log items?":[""],"Delete Logs":["Supprimer les logs"],"Delete":[""],"Download Complete":["Téléchargement complété"],"%s ago":["il y a %s"]," (v%s)":[""]," (v%s no longer exists)":[""],"Download #%d (no longer exists)":["Le téléchargement #%d (il n'existe plus)"],"Non-member":["Non membre"],"User":["Utilisateur"],"IP Address":["Adresse IP"],"Log entries deleted":[""],"Any status":["Quel que soit le statut"],"Failed":["Échoué"],"Redirected":["Redirigé"],"Completed":["Complété"],"Show all dates":["Montrer toutes les dates"],"%1$s %2$d":["%1$s %2$d"],"Select a User":[""],"25 per page":["25 par page"],"50 per page":["50 par page"],"100 per page":["100 par page"],"200 per page":["200 par page"],"Show All":["Montrer tout"],"Filter":["Filtrer"],"All Downloads":["Tous les téléchargements"],"Downloads":["Téléchargements"],"Add New":["Ajouter nouveau"],"Add Download":["Ajouter téléchargement"],"Edit":["Éditer"],"Edit Download":["Éditer téléchargement"],"New Download":["Nouveau téléchargement"],"View Download":["Voir téléchargement"],"Search Downloads":["Rechercher dans les téléchargements"],"No Downloads found":["Aucun téléchargement de trouvé"],"No Downloads found in trash":["Aucun téléchargement de trouvé dans la poubelle"],"Parent Download":["Téléchargement parent"],"This is where you can create and manage downloads for your site.":["Vous pouvez créer et gérer les téléchargements pour votre site ici."],"License successfully activated.":[""],"<a href=\"%s\">Register your copy</a> of the <strong>%s</strong> extension to receive access to automatic upgrades and support. Need a license key? <a href=\"%s\" target=\"_blank\">Purchase one now</a>.":[""],"Download not found":["Téléchargement non trouvé"],"Download Categories":[""],"Download Category":["Catégorie de téléchargement"],"Search Download Categories":["Recherche dans les catégories de téléchargement"],"All Download Categories":["Toutes les catégories de téléchargement"],"Parent Download Category":["Catégorie parent de téléchargement"],"Edit Download Category":["Editer la catégorie de téléchargement"],"Update Download Category":["Mise à jour de la catégorie de téléchargement"],"Add New Download Category":["Ajouter une nouvelle catégorie de téléchargement"],"New Download Category Name":["Nouveau nom de catégorie de téléchargement"],"Download Tags":[""],"Download Tag":["Mot-clef de téléchargement"],"Search Download Tags":["Rechercher dans les mots-clef de téléchargement"],"All Download Tags":["Tous les mots-clef de téléchargement"],"Parent Download Tag":["Mot-clef parent de téléchargement"],"Edit Download Tag":["Éditer mot-clef de téléchargement"],"Update Download Tag":["Mise à jour mot-clef de téléchargement"],"Add New Download Tag":["Ajouter mot-clef de téléchargement"],"New Download Tag Name":["Nouveau nom de mot-clef de téléchargement"],"Display a list of your downloads.":["Afficher une liste de vos téléchartements."],"Downloads List":["Liste de téléchargements"],"Featured Downloads":["Téléchargements à la une"],"Limit":[""],"Output template":[""],"Default template":["Template par défaut"],"Order by":[""],"Random":["au hasard"],"Date added":["date d'ajout"],"Date modified":["date de modification"],"Order":[""],"ASC":["ASC"],"DESC":["DESC"],"Show only featured downloads":["Ne montrer que les téléchargements à la une"],"Show only members only downloads":["Ne montrer que les téléchargements réservés aux membres"],"1 download":["un téléchargement","%d téléchargements"],"Version %s":["Version %s"],"Download File":["Télécharger le fichier"],"Download &ldquo;%s&rdquo;":["Télécharger &ldquo;%s&rdquo;"],"Downloaded 1 time":["Téléchargé une fois","Téléchargé %d fois"],"Download Monitor":["Download Monitor"],"https://www.download-monitor.com":["https://www.download-monitor.com"],"A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.":["Une solution complète pour gérer des fichiers téléchargeables, surveiller les téléchargements, afficher les liens de téléchargement et les informations relatives aux fichiers dans votre site propulsé par Wordpress."],"Never5":[""],"https://www.never5.com":[""],"Drop file here *or* select file\u0004or":["ou"]}}}
languages/download-monitor-hr_HR-dlm_gutenberg_blocks.json ADDED
@@ -0,0 +1 @@
 
1
+ {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;","lang":"hr_HR"},"Remove":["Ukloni"],"Click to toggle":["Kliknite za prebacivanje"],"Version <span class=\"version\">%s</span> (%s)":["Verzija <span class=\"version\">%s</span> (%s)"],"n/a":["n/a"],"Downloaded %s time":["Preuzeto %s put","Preuzeto %s puta","Preuzeto %s puta"],"Version":["Verzija"],"File URL(s)":["URL datoteke/a"],"Enter one file path/URL per line - multiple files will be used as mirrors (chosen at random).":[""],"Upload file":["Postavi datoteku"],"Choose a file":["Odaberi datoteku"],"Insert file URL":["Umetni URL datoteke"],"Browse for file":["Pronađi datoteku"],"Download count":["Broj preuzimanja"],"File Date":["Datum"],"h":["h"],"m":["m"],"It looks like you upgraded to the latest version of Download Monitor from a legacy version (3.x)":[""],"Currently your downloads don't work like they should, we need to %s before they'll work again.":[""],"upgrade your downloads":[""],"We've created an upgrading tool that will do all the work for you. You can read more about this tool on %sour website (click here)%s or start the upgrade now.":[""],"Take me to the Upgrade Tool":[""],"hide notice":[""],"Download Monitor Extensions":["Dodaci za Download Monitor"],"Extensions":["Dodaci"],"If you like %sDownload Monitor%s please leave us a %s★★★★★%s rating. A huge thank you from us in advance!":[""],"Insert Download":["Unesi datoteku"],"Are you sure you want to delete this file ? ":["Jeste li sigurni da želite izbrisati ovu datoteku?"],"Browse for a file":["Pronađi datoteku"],"Select a category":["Odaberi kategoriju"],"Download Monitor Data":[""],"Featured download":["Istaknuti dokument"],"Members only":["Samo za registrirane korisnike"],"Redirect to file":["Preusmjeri na datoteku"],"Image":["Slika"],"Title":["Naslov"],"ID":["ID"],"File":["Datoteka"],"Categories":["Kategorije"],"Tags":["Tagovi"],"Featured":["Istaknuti"],"Redirect only":["Samo preusmjeri"],"Date posted":["Datum objave"],"Yes":["Da"],"Download title":["Naslov dokumenta"],"Download updated.":["Arhiva je obnovljena."],"Custom field updated.":["Dodatno polje obnovljeno."],"Custom field deleted.":["Dodatno polje obrisano."],"Download restored to revision from %s":["Vraćena je %s verzija arhive"],"Download published.":["Dokumentacija objavljena."],"Download saved.":["Dokumentacija spremljena."],"Download submitted.":["Dokumentacija poslana."],"Download scheduled for: <strong>%1$s</strong>.":["Objava zakazana za: <strong>%1$s</strong>."],"M j, Y @ G:i":["%d.%m.%Y"],"Download draft updated.":["Skica preuzimanja je ažurirana."],"Popular Downloads":["Popularna preuzimanja"],"There are no stats available yet!":["Statistika još nije dostupna!"],"Download":["Preuzmi"],"Extend Download Monitor with its powerful free and paid extensions. %sClick here to browse all extensions%s":["Proširite Download Monitor sa moćnim besplatnim i komercijalnim dodacima. %sPogledajte sve dodatke%s"],"No files found":["Nije pronađena niti jedna datoteka"],"Insert Shortcode":["Unesi Shortcode"],"Quick-add download":["Brzo dodavanje datoteke"],"Error: File was not created.":["Greška: Datoteka nije kreirana."],"Download successfully created.":["Preuzimanje je uspješno kreirano."],"Error: Download was not created.":["Greška: Arhiva nije kreirana."],"Search download":[""],"Choose a download":["Odaberi datoteku"],"Template":["Predložak"],"Template Name":["Naziv predloška"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>image</code>, the <code>content-download-image.php</code> template will be used instead.":[""],"Drop file here":["Ispusti datoteku ovdje"],"Select File":["Odaberi datoteku"],"Enter URL manually":["Unesi URL ručno"],"Download URL":["URL datoteke"],"Required URL":["Obavezan URL"],"Download Title":["Naslov datoteke"],"Required title":["Naslov obavezan"],"Optional version number":["Neobavezan broj verzije"],"Save Download":["Spremi preuzimanje"],"Allowed Files":["Dopuštene datoteke"],"Please wait...":["Pričekajte…"],"Reports":[""],"Switch to %s":[""],"Per Day":[""],"Month":[""],"Download Reports":[""],"Loading":[""],"Settings":["Postavke"],"Because your server is running on nginx, our .htaccess file can't protect your downloads.":[""],"Please add the following rules to your nginx config to disable direct file access: %s":[""],"Download Monitor Transients successfully cleared!":[""],"Settings successfully saved":["Postavke uspješno spremljene"],"Save Changes":["Spremi promjene"],"General":["Općenito"],"Default Template":["Zadani predložak"],"Choose which template is used for <code>[download]</code> shortcodes by default (this can be overridden by the <code>format</code> argument).":["Odaberite predložak koji se koristi za <code>[download]</code> shortcode po defaultu (može biti izmjenjeno <code>format</code> argumentima)."],"Default - Title and count":["Zadano - Naslov i broj"],"Button - CSS styled button showing title and count":["Dugme - CSS stilizirano dugme koje prikazuej naslov i broj"],"Box - Box showing thumbnail, title, count, filename and filesize.":["Okvir - Okvir koji prikazuje sliku, naslov, broj, daototeku i veličinu."],"Filename - Filename and download count":["Naziv datoteke - Naziv datoteke i broj preuzimanja"],"Title - Shows download title only":["Naslov - Prikazuje samo naslov datoteke"],"Version list - Lists all download versions in an unordered list":["Popis verzija - Popis svih verzija dokumentaciju na (ul) listi"],"Custom template":["Prilagođeni predložak"],"Custom Template":["Prilagođeni predložak"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>button</code>, the <code>content-download-button.php</code> template will be used instead. You can add custom templates inside your theme folder.":[""],"X-Accel-Redirect / X-Sendfile":["X-Accel-Redirect / X-Sendfile"],"Enable":["Omogući"],"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be used to serve downloads instead of PHP (server requires <code>mod_xsendfile</code>).":[""],"Prevent hotlinking":["Spriječi direktno povezivanje na datoteku"],"If enabled, the download handler will check the PHP referer to see if it originated from your site and if not, redirect them to the homepage.":[""],"Allow Proxy IP Override":[""],"If enabled, Download Monitor will use the X_FORWARDED_FOR HTTP header set by proxies as the IP address. Note that anyone can set this header, making it less secure.":[""],"Endpoint":["Endpoint"],"download":["preuzimanje"],"Download Endpoint":[""],"Define what endpoint should be used for download links. By default this will be <code>%s</code>.":[""],"Endpoint Value":[""],"Define what unique value should be used on the end of your endpoint to identify the downloadable file. e.g. ID would give a link like <code>%s</code>":[""],"Download ID":["ID datoteke"],"Download slug":[""],"Hashes":[""],"MD5 hashes":[""],"Generate MD5 hash for uploaded files":[""],"SHA1 hashes":[""],"Generate SHA1 hash for uploaded files":[""],"SHA256 hashes":[""],"Generate SHA256 hash for uploaded files":[""],"Hashes can optionally be output via shortcodes, but may cause performance issues with large files.":[""],"CRC32B hashes":[""],"Generate CRC32B hash for uploaded files":[""],"Logging":["Bilježenje"],"Download Log":["Log preuzimanja"],"Log download attempts, IP addresses and more.":["Zabilježi pokušaje preuzimanja, IP adrese i ostalo."],"Count unique IPs only":[""],"If enabled, the counter for each download will only increment and create a log entry once per IP address.":[""],"Access":[""],"No Access Page":[""],"Choose what page is displayed when the user has no access to a file. Don't forget to add the <code>[dlm_no_access]</code> shortcode to the page.":[""],"You do not have permission to access this download. %sGo to homepage%s":["Nemate ovlasti za pristup ovoj datoteci. %sVrati se na naslovnicu%s"],"No access message":["Poruka kada pristup nije omogućen"],"The message that will be displayed to visitors when they don't have access to a file.":["Ova poruka prikazati će se posjetiteljima kada nemaju pristup datoteci."],"Blacklist IPs":["Dodaj IP na crnu listu"],"List IP Addresses to blacklist, 1 per line. Use IP/CIDR netmask format for ranges. IPv4 examples: <code>198.51.100.1</code> or <code>198.51.100.0/24</code>. IPv6 examples: <code>2001:db8::1</code> or <code>2001:db8::/32</code>.":[""],"Blacklist user agents":[""],"List browser user agents to blacklist, 1 per line. Partial matches are sufficient. Regex matching is allowed by surrounding the pattern with forward slashes, e.g. <code>/^Mozilla.+Googlebot/</code>":[""],"Misc":[""],"Remove Data on Uninstall?":[""],"Check this box if you would like to completely remove all Download Monitor data when the plugin is deleted.":[""],"Clear all transients":[""],"Remove all Download Monitor transients, this can solve version caching issues.":[""],"Select Page":[""],"Download Information":["Informacije o datoteci"],"Download Options":["Opcije preuzimanja"],"Downloadable Files/Versions":["Datoteke/verzije za preuzimanje"],"Short Description":["Kratki opis"],"URL":["URL"],"Shortcode":["Shortcode"],"No download information for new downloads.":[""],"Mark this download as featured. Used by shortcodes and widgets.":["Istakni ovaj dokument. Mogućnost se koristi u shortcodeima i widgetima."],"Only logged in users will be able to access the file via a download link if this is enabled.":["Samo prijavljeni korisnici moći će pristupiti datotekama putem linka za download ako je ovo omogućeno."],"Don't force download. If the <code>dlm_uploads</code> folder is protected you may need to move your file.":[""],"Add file":["Dodaj datoteku"],"Close all":["Zatvori sve"],"Expand all":["Proširi sve"],"Documentation":[""],"Password Required":["Potrebna je lozinka"],"Download does not exist.":["Datoteka ne postoji"],"Go to homepage &rarr;":["Idi na početnu stranicu &rarr;"],"Download Error":["Greška kod preuzimanja"],"No file paths defined.":["Put datoteke nije definiran."],"Redirected to file":["Preusmjereno na datoteku"],"Redirected to remote file.":["Preusmjereno da udaljenu datoteku."],"File not found.":["Datoteka nije pronađena."],"No Access":[""],"Legacy Upgrader":[""],"Download Monitor - Legacy Upgrade":[""],"Welcome to the Download Monitor Legacy Upgrader. On this page we will upgrade your old Download Monitor (legacy) data so it will work with the latest version. If you're on this page, it should mean that you updated to this version from Download Monitor %s. If you're unsure if this is correct, or you want to read more about the legacy upgrade, we've setup a page that will explain this process in a lot more detail. %sClick here%s if to view that page.":[""],"Version ID":["ID verzije"],"Filename":["Naziv datoteke"],"User ID":["ID korisnika"],"User Login":["Prijava korisnika"],"User Email":["Email korisnika"],"User IP":["IP korisnika"],"User Agent":[""],"Date":["Datum"],"Status":["Status"],"Meta Data":[""],"Logs":["Logovi"],"Download Logs":["Log - zapisi preuzimanja"],"Export CSV":["Preuzmi CSV"],"Are you sure you want to delete ALL log items?":[""],"Delete Logs":["Obriši logove"],"Delete":[""],"Download Complete":["Preuzimanje dovršeno"],"%s ago":[""]," (v%s)":[""]," (v%s no longer exists)":[""],"Download #%d (no longer exists)":["Preuzimanje #% d (više ne postoji)"],"Non-member":[""],"User":["Korisnik"],"IP Address":["IP adresa"],"Log entries deleted":[""],"Any status":["Svi statusti"],"Failed":["Neuspješno"],"Redirected":["Preusmjereno"],"Completed":["Završeno"],"Show all dates":["Prikaži sve datume"],"%1$s %2$d":[""],"Select a User":[""],"25 per page":["25 po stranici"],"50 per page":["50 po stranici"],"100 per page":["100 po stranici"],"200 per page":["200 po stranici"],"Show All":["Prikaži sve"],"Filter":["Filter"],"All Downloads":["Sva preuzimanja"],"Downloads":["Preuzimanja"],"Add New":["Dodaj novo"],"Add Download":["Dodaj dokument"],"Edit":["Uredi"],"Edit Download":["Uredi preuzimanje"],"New Download":["Novo preuzimanje"],"View Download":["Pogledaj preuzimanje"],"Search Downloads":["Pretraži preuzimanja"],"No Downloads found":["Preuzimanja nisu pronađena"],"No Downloads found in trash":["U smeću nema datoteka"],"Parent Download":[""],"This is where you can create and manage downloads for your site.":["Ovdje kreirate i upravljate datotekama za preuzimanje sa svog weba."],"License successfully activated.":["Licenca uspješno aktiviran."],"<a href=\"%s\">Register your copy</a> of the <strong>%s</strong> extension to receive access to automatic upgrades and support. Need a license key? <a href=\"%s\" target=\"_blank\">Purchase one now</a>.":[""],"Download not found":["Datoteka nije pronađena"],"Download Categories":[""],"Download Category":["Kategorija"],"Search Download Categories":["Pretraži kategorije preuzimanja"],"All Download Categories":["Sve kategorije"],"Parent Download Category":["Matična kategorija"],"Edit Download Category":["Uredi kategoriju"],"Update Download Category":["Ažuriraj kategoriju"],"Add New Download Category":["Dodaj novu kategoriju"],"New Download Category Name":["Naziv nove kategorije"],"Download Tags":[""],"Download Tag":[""],"Search Download Tags":[""],"All Download Tags":[""],"Parent Download Tag":[""],"Edit Download Tag":[""],"Update Download Tag":[""],"Add New Download Tag":[""],"New Download Tag Name":[""],"Display a list of your downloads.":["Prikaz popisa vaših preuzimanja."],"Downloads List":["Lista preuzimanja"],"Featured Downloads":["Istaknuta preuzimanja"],"Limit":["Ograničenje"],"Output template":["Izlazni predložak"],"Default template":["Zadani predložak"],"Order by":["Poredak prema…"],"Random":["Nasumično"],"Date added":["Datum postavljanja"],"Date modified":["Datum promjene"],"Order":["Redoslijed"],"ASC":["Uzlazno"],"DESC":["Silazno"],"Show only featured downloads":["Prikaži samo istaknuta preuzimanja"],"Show only members only downloads":["Prikaži samo preuzimanja za registrirane članove"],"1 download":["%d preuzimanje","%d preuzimanja","%d preuzimanja"],"Version %s":["Verzija %s"],"Download File":["Preuzmi datoteku"],"Download &ldquo;%s&rdquo;":["Preuzmi &ldquo;%s&rdquo;"],"Downloaded 1 time":["Preuzeto %d put","Preuzeto %d puta","Preuzeto %d puta"],"Download Monitor":[""],"https://www.download-monitor.com":[""],"A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.":["Potpuno rješenje za upravljanje datotekama za preuzimenja, nadzor preuzimanja i postavljanje linkova i informacija o datotekama na vašem Wordpress pogonjenom webu."],"Never5":[""],"https://www.never5.com":[""],"Drop file here *or* select file\u0004or":["ili"]}}}
languages/download-monitor-hu_HU-dlm_gutenberg_blocks.json ADDED
@@ -0,0 +1 @@
 
1
+ {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"hu_HU"},"Remove":["Eltávolítás"],"Click to toggle":["Összezárás"],"Version <span class=\"version\">%s</span> (%s)":["<span class=\"version\">%s</span> (%s) verzió"],"n/a":["n/a"],"Downloaded %s time":["Letöltve %s alkalommal","Letöltve %s alkalommal"],"Version":["verzió"],"File URL(s)":["Fájl URL cím(ek)"],"Enter one file path/URL per line - multiple files will be used as mirrors (chosen at random).":["Soronként egy fájl elérési utat/URL címet adjunk meg - a többes fájlok tükrözéshez kerülnek használatra (a választás véletlenszerű)."],"Upload file":["Fájlfeltöltés"],"Choose a file":["Válasszunk egy fájlt"],"Insert file URL":["Fájl URL címének beillesztése"],"Browse for file":["Tallózás"],"Download count":["Letöltés számlálás"],"File Date":["Fájl dátuma"],"h":["ó"],"m":["p"],"It looks like you upgraded to the latest version of Download Monitor from a legacy version (3.x)":[""],"Currently your downloads don't work like they should, we need to %s before they'll work again.":[""],"upgrade your downloads":[""],"We've created an upgrading tool that will do all the work for you. You can read more about this tool on %sour website (click here)%s or start the upgrade now.":[""],"Take me to the Upgrade Tool":[""],"hide notice":[""],"Download Monitor Extensions":[""],"Extensions":[""],"If you like %sDownload Monitor%s please leave us a %s★★★★★%s rating. A huge thank you from us in advance!":[""],"Insert Download":["Letöltés beillesztése"],"Are you sure you want to delete this file ? ":[""],"Browse for a file":["Tallózás.."],"Select a category":["Kategória választása"],"Download Monitor Data":[""],"Featured download":["Kiemelt letöltés"],"Members only":["Csak regisztrált felhasználóknak"],"Redirect to file":["Átirányítás fájlba"],"Image":["Kép"],"Title":["Cím"],"ID":["ID"],"File":["Fájl"],"Categories":["Letöltési kategória"],"Tags":["Letöltés címke"],"Featured":["Kiemelt"],"Redirect only":["Csak átirányítás"],"Date posted":["Dátum elküldve"],"Yes":["Igen"],"Download title":["Letöltés elnevezése"],"Download updated.":["Letöltés frissítve"],"Custom field updated.":["Egyedi mező frissítve."],"Custom field deleted.":["Egyedi mező törölve."],"Download restored to revision from %s":["%s változatból a letöltés helyreállítva"],"Download published.":["Letöltés közzétéve."],"Download saved.":["Letöltés elmentve."],"Download submitted.":["Letöltés elküldve"],"Download scheduled for: <strong>%1$s</strong>.":["<strong>%1$s</strong> letöltés ütemezve."],"M j, Y @ G:i":["Y-m-d H:i"],"Download draft updated.":["Letöltés vázlat frissítve."],"Popular Downloads":["Népszerű letöltések"],"There are no stats available yet!":["Még nem érhető el statisztikai adat."],"Download":["Letöltés"],"Extend Download Monitor with its powerful free and paid extensions. %sClick here to browse all extensions%s":[""],"No files found":["Nem található fájl"],"Insert Shortcode":["Rövidkód beillesztése"],"Quick-add download":["Gyors letöltés hozzáadás"],"Error: File was not created.":["Hiba: Nem hozható létre a fájl."],"Download successfully created.":["A letöltés sikeresen létrehozva."],"Error: Download was not created.":["Hiba: A letöltés nem hozható létre."],"Search download":[""],"Choose a download":["Válasszunk ki egy letöltést"],"Template":["Sablonminta"],"Template Name":["Sablonminta neve"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>image</code>, the <code>content-download-image.php</code> template will be used instead.":["Alapértelmezetként hagyjuk üresen a <code>content-download.php</code> mintasablon fájl használatához. Amennyiben pl. az <code>image</code> kerül megadásra, akkor a <code>content-download-image.php</code> mintasablon fog helyette használatba kerülni."],"Drop file here":["Húzzuk ide a fájlt"],"Select File":["Válasszunk egy fájlt"],"Enter URL manually":["URL megadása kézzel"],"Download URL":["Letöltési URL"],"Required URL":["Kötelező URL"],"Download Title":["Letöltés neve"],"Required title":["Kötelező cím"],"Optional version number":["Verziószám (opcionális)"],"Save Download":["Letöltés mentése"],"Allowed Files":["Engedélyezett fájlok"],"Please wait...":["Kis türelmet kérünk..."],"Reports":[""],"Switch to %s":[""],"Per Day":[""],"Month":[""],"Download Reports":[""],"Loading":[""],"Settings":["Beállítások"],"Because your server is running on nginx, our .htaccess file can't protect your downloads.":[""],"Please add the following rules to your nginx config to disable direct file access: %s":[""],"Download Monitor Transients successfully cleared!":[""],"Settings successfully saved":["A beállítások sikeresen mentésre kerültek."],"Save Changes":["Módosítások mentlése"],"General":["Általános"],"Default Template":["Alapértelmezett mintasablon"],"Choose which template is used for <code>[download]</code> shortcodes by default (this can be overridden by the <code>format</code> argument).":["Válasszuk ki, hogy az alapértelmezett <code>[download]</code> rövidkód esetén melyik mintasablon legyen az alapértelmezett (ez a <code>format</code> argumentummal felülírható)."],"Default - Title and count":["Alapértelmezett - Cím és számláló"],"Button - CSS styled button showing title and count":["Gomb - CSS-sel formázott gomb, amely mutatja a címet és a számlálót"],"Box - Box showing thumbnail, title, count, filename and filesize.":["Doboz - A bélyegkép, cím, letöltés-szám, fájlnév és fájlméret doboz bemutatása"],"Filename - Filename and download count":["Fájlnév - Fájlnév és letöltés-szám"],"Title - Shows download title only":["Cím - Csak a letöltés címét mutassa"],"Version list - Lists all download versions in an unordered list":["Változások listája - Valamennyi letöltési verzió mutatása egy rendezetlen listában"],"Custom template":["Egyedi sablonminta"],"Custom Template":["Egyedi sablonminta"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>button</code>, the <code>content-download-button.php</code> template will be used instead. You can add custom templates inside your theme folder.":[""],"X-Accel-Redirect / X-Sendfile":["X-Accel-Redirect / X-Sendfile"],"Enable":["Bekapcsol"],"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be used to serve downloads instead of PHP (server requires <code>mod_xsendfile</code>).":["Amennyiben az <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> támogatott, a PHP letöltés helyett használhatjuk (szerverkövetelmény: <code>mod_xsendfile</code>)."],"Prevent hotlinking":["Közvetlen elérés megakadályozása"],"If enabled, the download handler will check the PHP referer to see if it originated from your site and if not, redirect them to the homepage.":["Amennyiben be van kapcsolva, a letöltés kiszolgálója ellenőrzi a PHP hivatkozást. Ha az nem az eredeti helyről származik, akkor a kezdőlapra lesz átirányítva."],"Allow Proxy IP Override":[""],"If enabled, Download Monitor will use the X_FORWARDED_FOR HTTP header set by proxies as the IP address. Note that anyone can set this header, making it less secure.":[""],"Endpoint":["Kimenet"],"download":["letöltés"],"Download Endpoint":["Letöltés kimeneti formátum"],"Define what endpoint should be used for download links. By default this will be <code>%s</code>.":["Határozzuk meg, hogy milyen kimeneti formát szeretnénk használni a letöltési hivatkozáshoz. Alapértelmezettkén ez használjuk: <code>%s</code>."],"Endpoint Value":["Végső kimenet értéke"],"Define what unique value should be used on the end of your endpoint to identify the downloadable file. e.g. ID would give a link like <code>%s</code>":["Határozzuk meg, hogy milyen egyedi értéket szeretnénk használni a letöltési hivatkozáshoz. Alapértelmezettkén ez használjuk: <code>%s</code>."],"Download ID":["Letöltés ID"],"Download slug":["Letöltés slug"],"Hashes":[""],"MD5 hashes":["MD5 ellenőrzőszám"],"Generate MD5 hash for uploaded files":["MD5 ellenőrzőszám létrehozása a feltöltött fájlok számára"],"SHA1 hashes":["SHA1 ellenőrzőszám"],"Generate SHA1 hash for uploaded files":["SHA1 ellenőrzőszám létrehozása a feltöltött fájlok számára"],"SHA256 hashes":[""],"Generate SHA256 hash for uploaded files":[""],"Hashes can optionally be output via shortcodes, but may cause performance issues with large files.":["Az ellenőrzőszámot opcionálisan a rövidkódokon keresztül is elő lehet állítani, de a hosszú fájlok teljesítményproblémákat is okozhatnak."],"CRC32B hashes":["CRC32B ellenőrzőszám"],"Generate CRC32B hash for uploaded files":["CRC32B ellenőrzőszám létrehozása a feltöltött fájlok számára"],"Logging":["Naplózás"],"Download Log":["Letöltési napló"],"Log download attempts, IP addresses and more.":["Naplózzuk a letöltési próbálkozásokat, IP címeket és egyéb dolgokat."],"Count unique IPs only":[""],"If enabled, the counter for each download will only increment and create a log entry once per IP address.":[""],"Access":[""],"No Access Page":[""],"Choose what page is displayed when the user has no access to a file. Don't forget to add the <code>[dlm_no_access]</code> shortcode to the page.":[""],"You do not have permission to access this download. %sGo to homepage%s":[""],"No access message":[""],"The message that will be displayed to visitors when they don't have access to a file.":[""],"Blacklist IPs":["Feketelistás IP címek"],"List IP Addresses to blacklist, 1 per line. Use IP/CIDR netmask format for ranges. IPv4 examples: <code>198.51.100.1</code> or <code>198.51.100.0/24</code>. IPv6 examples: <code>2001:db8::1</code> or <code>2001:db8::/32</code>.":[""],"Blacklist user agents":["Feketelistás felhasználói ügynökök"],"List browser user agents to blacklist, 1 per line. Partial matches are sufficient. Regex matching is allowed by surrounding the pattern with forward slashes, e.g. <code>/^Mozilla.+Googlebot/</code>":[""],"Misc":[""],"Remove Data on Uninstall?":[""],"Check this box if you would like to completely remove all Download Monitor data when the plugin is deleted.":[""],"Clear all transients":[""],"Remove all Download Monitor transients, this can solve version caching issues.":[""],"Select Page":[""],"Download Information":[""],"Download Options":["Letöltési lehetőségek"],"Downloadable Files/Versions":["Letölthető fájlok/Verziók"],"Short Description":["Rövid leírás"],"URL":[""],"Shortcode":[""],"No download information for new downloads.":[""],"Mark this download as featured. Used by shortcodes and widgets.":["Jelöljük meg ezt a letöltést kiemeltként. Rövidkódokhoz és widgethez használva."],"Only logged in users will be able to access the file via a download link if this is enabled.":["Csak bejelentkezett felhasználók kapcsolódhatnak a letöltési fájloh, amennyiben ez bekapcsolt állapotú."],"Don't force download. If the <code>dlm_uploads</code> folder is protected you may need to move your file.":[""],"Add file":["Fájl hozzáadása"],"Close all":["Összes bezárása"],"Expand all":["Összes kinyitása"],"Documentation":[""],"Password Required":["Jelszó kötelező"],"Download does not exist.":["Nem létező letöltés."],"Go to homepage &rarr;":["Kezdőlap &rarr;"],"Download Error":["Letöltési hiba"],"No file paths defined.":["Nincs megadva a fájl elérési útvonala"],"Redirected to file":["Átirányítás a fájlhoz"],"Redirected to remote file.":["Átirányítás a távoli fájlhoz"],"File not found.":["Nem található a fájl"],"No Access":[""],"Legacy Upgrader":[""],"Download Monitor - Legacy Upgrade":[""],"Welcome to the Download Monitor Legacy Upgrader. On this page we will upgrade your old Download Monitor (legacy) data so it will work with the latest version. If you're on this page, it should mean that you updated to this version from Download Monitor %s. If you're unsure if this is correct, or you want to read more about the legacy upgrade, we've setup a page that will explain this process in a lot more detail. %sClick here%s if to view that page.":[""],"Version ID":["Verzió-ID"],"Filename":["Fájlnév"],"User ID":["Felhasználó ID"],"User Login":["Bejelentkezés"],"User Email":["Email"],"User IP":["Felhasználó IP"],"User Agent":["Felhasználói azonosító ügynök"],"Date":["Dátum"],"Status":["Állapot"],"Meta Data":[""],"Logs":["Napló"],"Download Logs":["Letöltési napló"],"Export CSV":["Exprt CSV formában"],"Are you sure you want to delete ALL log items?":[""],"Delete Logs":["Naplófájl törlése"],"Delete":[""],"Download Complete":["A letöltés befejeződött"],"%s ago":["%s telt el a letöltés óta"]," (v%s)":[""]," (v%s no longer exists)":[""],"Download #%d (no longer exists)":["Letöltés #%d (már nem létezik)"],"Non-member":["Nem regisztrált"],"User":["Felhasználó"],"IP Address":["IP cím"],"Log entries deleted":[""],"Any status":["Minden állapot"],"Failed":["Hibás"],"Redirected":["Átirányított"],"Completed":["Komplett"],"Show all dates":["Összes dátum mutatása"],"%1$s %2$d":["%1$s %2$d"],"Select a User":[""],"25 per page":["25/oldal"],"50 per page":["50/oldal"],"100 per page":["100/oldal"],"200 per page":["200/oldal"],"Show All":["Összes mutatása"],"Filter":["Szűrés"],"All Downloads":["Összes letöltés"],"Downloads":["Letöltés"],"Add New":["Új létrehozása"],"Add Download":["Letöltés hozzáadása"],"Edit":["Szerkesztés"],"Edit Download":["Letöltés szerkesztése"],"New Download":["Új letöltés"],"View Download":["Letöltés megtekintése"],"Search Downloads":["Letöltés keresése"],"No Downloads found":["Nem található letöltés"],"No Downloads found in trash":["Nem található letöltés a lomtárban"],"Parent Download":["Letöltés szülő"],"This is where you can create and manage downloads for your site.":["Ez az a rész, ahol a honlapunkhoz létrehozhatunk és kezelhetünk letöltéseket."],"License successfully activated.":[""],"<a href=\"%s\">Register your copy</a> of the <strong>%s</strong> extension to receive access to automatic upgrades and support. Need a license key? <a href=\"%s\" target=\"_blank\">Purchase one now</a>.":[""],"Download not found":["Nem található a letöltés"],"Download Categories":[""],"Download Category":["Letöltési kategória"],"Search Download Categories":["Keresés a letöltési kategóriákban"],"All Download Categories":["Összes letöltési kategória"],"Parent Download Category":["Szülő letöltési kategória"],"Edit Download Category":["Letöltési kategória szerkesztés"],"Update Download Category":["Letöltési kategória frissítés"],"Add New Download Category":["Új letöltési kategória"],"New Download Category Name":["Új letöltési kategória neve"],"Download Tags":[""],"Download Tag":["Letöltés címke"],"Search Download Tags":["Keresés a letöltési címkék között"],"All Download Tags":["Összes letöltés-címke"],"Parent Download Tag":["Szülő letöltési címke"],"Edit Download Tag":["Letöltési címke szerkesztése"],"Update Download Tag":["Letöltési címke frissítése"],"Add New Download Tag":["Új letöltési címke"],"New Download Tag Name":["Új letöltési címke neve:"],"Display a list of your downloads.":["Jelenítsük meg a letöltéseink listáját."],"Downloads List":["Letöltési lista"],"Featured Downloads":["Kiemelt letöltések"],"Limit":[""],"Output template":[""],"Default template":["Alapértelmezett sablonminta"],"Order by":[""],"Random":["Véletlenszerűen"],"Date added":["Hozzáadás dátuma"],"Date modified":["Dátum módosítva"],"Order":[""],"ASC":["ASC"],"DESC":["DESC"],"Show only featured downloads":["Csak a kiemelt letöltések mutatása"],"Show only members only downloads":["Csak a regisztráltaknak szóló letöltés mutatása"],"1 download":["1 letöltés","%d letöltés"],"Version %s":["%s verzió"],"Download File":["Letöltés fájl"],"Download &ldquo;%s&rdquo;":["Letöltés &ldquo;%s&rdquo;"],"Downloaded 1 time":["Letöltve 1 alkalommal","Letöltve %d alkalommal"],"Download Monitor":["Download Monitor"],"https://www.download-monitor.com":["https://www.download-monitor.com"],"A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.":["Teljes megoldás a letölthető fájlok kezeléséhez, a letöltések folyamatos ellenőrzése, letöltési hivatkozások és ~ fájlinformációk a WordPress alapú honlapokhoz."],"Never5":[""],"https://www.never5.com":[""],"Drop file here *or* select file\u0004or":["vagy"]}}}
languages/download-monitor-it_IT-dlm_gutenberg_blocks.json ADDED
@@ -0,0 +1 @@
 
1
+ {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"it_IT"},"Remove":["Rimuovi"],"Click to toggle":["Clicca per aprire/chiudere"],"Version <span class=\"version\">%s</span> (%s)":["Versione <span class=\"version\">%s</span> (%s)"],"n/a":["n/a"],"Downloaded %s time":["Scaricato %s volta","Scaricato %s volte"],"Version":["Versione"],"File URL(s)":["URL File"],"Enter one file path/URL per line - multiple files will be used as mirrors (chosen at random).":["Inserisci un percorso/URL per riga - file multipli verranno utilizzati come mirror (scelti a caso)."],"Upload file":["Carica file"],"Choose a file":["Scegli un file"],"Insert file URL":["Inserisci URL File"],"Browse for file":["Scegli un file"],"Download count":["Conteggio Download"],"File Date":["Data File"],"h":["h"],"m":["m"],"It looks like you upgraded to the latest version of Download Monitor from a legacy version (3.x)":[""],"Currently your downloads don't work like they should, we need to %s before they'll work again.":[""],"upgrade your downloads":[""],"We've created an upgrading tool that will do all the work for you. You can read more about this tool on %sour website (click here)%s or start the upgrade now.":[""],"Take me to the Upgrade Tool":[""],"hide notice":[""],"Download Monitor Extensions":[""],"Extensions":[""],"If you like %sDownload Monitor%s please leave us a %s★★★★★%s rating. A huge thank you from us in advance!":[""],"Insert Download":["Inserisci Download"],"Are you sure you want to delete this file ? ":[""],"Browse for a file":["Scegli un file"],"Select a category":["Seleziona una categoria"],"Download Monitor Data":[""],"Featured download":["Download in evidenza"],"Members only":["Solo membri"],"Redirect to file":["Reindirizza al file"],"Image":["Immagine"],"Title":["Titolo"],"ID":["ID"],"File":["File"],"Categories":["Categorie"],"Tags":["Tag"],"Featured":["In Evidenza"],"Redirect only":["Solo reindirizzamento"],"Date posted":["Data pubblicazione"],"Yes":["Si"],"Download title":["Titolo Download"],"Download updated.":["Download aggiornato."],"Custom field updated.":["Campo personalizzato aggiornato."],"Custom field deleted.":["Campo personalizzato cancellato."],"Download restored to revision from %s":["Download ripristinato alla revisione dal %s"],"Download published.":["Download pubblicato."],"Download saved.":["Download salvato."],"Download submitted.":["Download inserito."],"Download scheduled for: <strong>%1$s</strong>.":["Download programmato per: <strong>%1$s</strong>."],"M j, Y @ G:i":["d/m/Y @ H:i"],"Download draft updated.":["Bozza Download aggiornata."],"Popular Downloads":["Downloads Popolari"],"There are no stats available yet!":["Non ci sono ancora statistiche disponibili."],"Download":["Download"],"Extend Download Monitor with its powerful free and paid extensions. %sClick here to browse all extensions%s":[""],"No files found":["Nessun file trovato"],"Insert Shortcode":["Inserisci Shortcode"],"Quick-add download":["Aggiungi Download velocemente"],"Error: File was not created.":["Errore: File non creato."],"Download successfully created.":["Download creato con successo."],"Error: Download was not created.":["Errore: Download non creato."],"Search download":[""],"Choose a download":["Scegli un download:"],"Template":["Modello"],"Template Name":["Nome Modello"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>image</code>, the <code>content-download-image.php</code> template will be used instead.":["Se lasciato vuoto, verrà utilizzato il modello di default <code>content-download.php</code>. Se inserisci, per esempio, <code>image</code>, verrà utilizzato il modello <code>content-download-image.php</code>."],"Drop file here":["Trascina qui il file"],"Select File":["Seleziona File"],"Enter URL manually":["Inserisci l'URL manualmente"],"Download URL":["URL Download"],"Required URL":["URL richiesto"],"Download Title":["Titolo Download"],"Required title":["Titolo richiesto"],"Optional version number":["Numero di versione opzionale"],"Save Download":["Salva Download"],"Allowed Files":["File Consentiti"],"Please wait...":["Attendere..."],"Reports":[""],"Switch to %s":[""],"Per Day":[""],"Month":[""],"Download Reports":[""],"Loading":[""],"Settings":["Impostazioni"],"Because your server is running on nginx, our .htaccess file can't protect your downloads.":[""],"Please add the following rules to your nginx config to disable direct file access: %s":[""],"Download Monitor Transients successfully cleared!":[""],"Settings successfully saved":["Impostazioni salvate con successo"],"Save Changes":["Salva Modifiche"],"General":["Generale"],"Default Template":["Modello di Default"],"Choose which template is used for <code>[download]</code> shortcodes by default (this can be overridden by the <code>format</code> argument).":["Scegli quale modello di default usare per gli shortcode <code>[download]</code> (può essere modificato dall'argomento <code>format</code>)."],"Default - Title and count":["Default - Titolo e contatore"],"Button - CSS styled button showing title and count":["Bottone - bottone con stile CSS che mostra titolo e contatore"],"Box - Box showing thumbnail, title, count, filename and filesize.":["Box - Box che mostra thumbnail, titolo, contatore, nome del file e dimensione del file."],"Filename - Filename and download count":["Nome del file - Nome del file e contatore di download"],"Title - Shows download title only":["Titolo - Mostra solo il titolo del download"],"Version list - Lists all download versions in an unordered list":["Lista versione - Lista non ordinata di tutte le versioni di download"],"Custom template":["Template personalizzato"],"Custom Template":["Template personalizzato"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>button</code>, the <code>content-download-button.php</code> template will be used instead. You can add custom templates inside your theme folder.":[""],"X-Accel-Redirect / X-Sendfile":["X-Accel-Redirect / X-Sendfile"],"Enable":["Abilita"],"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be used to serve downloads instead of PHP (server requires <code>mod_xsendfile</code>).":["Se supportato, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> può essere usato per fornire download al posto di PHP (il server necessita di <code>mod_xsendfile</code>)."],"Prevent hotlinking":["Previeni hotlinking"],"If enabled, the download handler will check the PHP referer to see if it originated from your site and if not, redirect them to the homepage.":["Se abilitato, il gestore dei download controller&agrave; la referenza PHP per controllare se ha avuto origine dal tuo sito o no, reindirizzandoli alla pagina principale."],"Allow Proxy IP Override":[""],"If enabled, Download Monitor will use the X_FORWARDED_FOR HTTP header set by proxies as the IP address. Note that anyone can set this header, making it less secure.":[""],"Endpoint":["Endpoint"],"download":["download"],"Download Endpoint":["Endpoint Download"],"Define what endpoint should be used for download links. By default this will be <code>%s</code>.":["Definisce quale endpoint deve essere usato per i link di download. Di default sarà <code>%s</code>."],"Endpoint Value":["Valore Endpoint"],"Define what unique value should be used on the end of your endpoint to identify the downloadable file. e.g. ID would give a link like <code>%s</code>":["Definisce quale valore unico deve essere usato alla fine dell'endpoint per identificare il file per il download. Ad esempio ID creerebbe un link come <code>%s</code>"],"Download ID":["ID Download"],"Download slug":["Abbreviazione Download"],"Hashes":[""],"MD5 hashes":["Hash MD5"],"Generate MD5 hash for uploaded files":["Genera hash MD5 per i file caricati"],"SHA1 hashes":["Hash SHA1"],"Generate SHA1 hash for uploaded files":["Genera hash SA1 per i file caricati"],"SHA256 hashes":[""],"Generate SHA256 hash for uploaded files":[""],"Hashes can optionally be output via shortcodes, but may cause performance issues with large files.":["Gli hash possono essere stampati opzionalmente con gli shortcode, ma possono causare problemi di performance con file grandi."],"CRC32B hashes":["Hash CRC32B"],"Generate CRC32B hash for uploaded files":["Genera has CRC32B per i file caricati"],"Logging":["Registrazione"],"Download Log":["Registrazione Download"],"Log download attempts, IP addresses and more.":["Registra i tentativi di download, indirizzi IP e altro"],"Count unique IPs only":[""],"If enabled, the counter for each download will only increment and create a log entry once per IP address.":[""],"Access":[""],"No Access Page":[""],"Choose what page is displayed when the user has no access to a file. Don't forget to add the <code>[dlm_no_access]</code> shortcode to the page.":[""],"You do not have permission to access this download. %sGo to homepage%s":[""],"No access message":[""],"The message that will be displayed to visitors when they don't have access to a file.":[""],"Blacklist IPs":["Lista Nera IP"],"List IP Addresses to blacklist, 1 per line. Use IP/CIDR netmask format for ranges. IPv4 examples: <code>198.51.100.1</code> or <code>198.51.100.0/24</code>. IPv6 examples: <code>2001:db8::1</code> or <code>2001:db8::/32</code>.":[""],"Blacklist user agents":["Lista Nera User Agent"],"List browser user agents to blacklist, 1 per line. Partial matches are sufficient. Regex matching is allowed by surrounding the pattern with forward slashes, e.g. <code>/^Mozilla.+Googlebot/</code>":[""],"Misc":[""],"Remove Data on Uninstall?":[""],"Check this box if you would like to completely remove all Download Monitor data when the plugin is deleted.":[""],"Clear all transients":[""],"Remove all Download Monitor transients, this can solve version caching issues.":[""],"Select Page":[""],"Download Information":[""],"Download Options":["Opzioni Download"],"Downloadable Files/Versions":["File/Versioni Scaricabili"],"Short Description":["Descrizione Breve"],"URL":[""],"Shortcode":[""],"No download information for new downloads.":[""],"Mark this download as featured. Used by shortcodes and widgets.":["Metti in evidenza questo download. Utilizzato da shortcode e widget."],"Only logged in users will be able to access the file via a download link if this is enabled.":["Se abilitato, solo utenti registrati avranno accesso al file tramite il link."],"Don't force download. If the <code>dlm_uploads</code> folder is protected you may need to move your file.":[""],"Add file":["Aggiungi file"],"Close all":["Chiudi tutto"],"Expand all":["Espandi tutto"],"Documentation":[""],"Password Required":["Password Obbligatoria"],"Download does not exist.":["Il download non esiste"],"Go to homepage &rarr;":["Vai alla pagina principale &rarr;"],"Download Error":["Errore Download"],"No file paths defined.":["Nessun percorso definito."],"Redirected to file":["Reindirizzato al file"],"Redirected to remote file.":["Reindirizzato al file remoto."],"File not found.":["File non trovato."],"No Access":[""],"Legacy Upgrader":[""],"Download Monitor - Legacy Upgrade":[""],"Welcome to the Download Monitor Legacy Upgrader. On this page we will upgrade your old Download Monitor (legacy) data so it will work with the latest version. If you're on this page, it should mean that you updated to this version from Download Monitor %s. If you're unsure if this is correct, or you want to read more about the legacy upgrade, we've setup a page that will explain this process in a lot more detail. %sClick here%s if to view that page.":[""],"Version ID":["ID Versione"],"Filename":["Nome File"],"User ID":["ID Utente"],"User Login":["Login Utente"],"User Email":["Email Utente"],"User IP":["IP Utente"],"User Agent":["User Agent"],"Date":["Data"],"Status":["Stato"],"Meta Data":[""],"Logs":["Log"],"Download Logs":["Log Download"],"Export CSV":["Esporta CSV"],"Are you sure you want to delete ALL log items?":[""],"Delete Logs":["Cancella Log"],"Delete":[""],"Download Complete":["Download Completato"],"%s ago":["%s fa"]," (v%s)":[""]," (v%s no longer exists)":[""],"Download #%d (no longer exists)":["Download #%d (non esiste più)"],"Non-member":["Non-registrato"],"User":["Utente"],"IP Address":["Indirizzo IP"],"Log entries deleted":[""],"Any status":["Qualsiasi stato"],"Failed":["Fallito"],"Redirected":["Reindirizzato"],"Completed":["Completato"],"Show all dates":["Mostra tutte le date"],"%1$s %2$d":["%1$s %2$d"],"Select a User":[""],"25 per page":["25 per pagina"],"50 per page":["50 per pagina"],"100 per page":["100 per pagina"],"200 per page":["200 per pagina"],"Show All":["Mostra Tutti"],"Filter":["Filtra"],"All Downloads":["Tutti i Download"],"Downloads":["Download"],"Add New":["Aggiungi Nuovo"],"Add Download":["Aggiungi Download"],"Edit":["Modifica"],"Edit Download":["Modifica Download"],"New Download":["Nuovo Download"],"View Download":["Visualizza Download"],"Search Downloads":["Cerca Download"],"No Downloads found":["Nessun Download trovato"],"No Downloads found in trash":["Nessun Download trovato nel cestino"],"Parent Download":["Download Genitore"],"This is where you can create and manage downloads for your site.":["Qui potete creare e gestire i download del vostro sito."],"License successfully activated.":[""],"<a href=\"%s\">Register your copy</a> of the <strong>%s</strong> extension to receive access to automatic upgrades and support. Need a license key? <a href=\"%s\" target=\"_blank\">Purchase one now</a>.":[""],"Download not found":["Download non trovato"],"Download Categories":[""],"Download Category":["Categoria Download"],"Search Download Categories":["Cerca Categorie Download"],"All Download Categories":["Tutte le Categorie Download"],"Parent Download Category":["Categoria Download Genitore"],"Edit Download Category":["Modifica Categoria Download"],"Update Download Category":["Aggiorna Categoria Download"],"Add New Download Category":["Aggiungi Nuova Categoria Download"],"New Download Category Name":["Nome Nuova Categoria Download"],"Download Tags":[""],"Download Tag":["Tag Download"],"Search Download Tags":["Cerca Tag Download"],"All Download Tags":["Tulle i Tag Download"],"Parent Download Tag":["Tag Download Genitore"],"Edit Download Tag":["Modifica Tag Download"],"Update Download Tag":["Aggiorna Tag Download"],"Add New Download Tag":["Aggiungi Nuovo Tag Download"],"New Download Tag Name":["Nome Nuovo Tag Download"],"Display a list of your downloads.":["Mostra una lista dei tuoi download."],"Downloads List":["Lista Download"],"Featured Downloads":["Download in evidenza"],"Limit":[""],"Output template":[""],"Default template":["Modello di default:"],"Order by":[""],"Random":["A caso"],"Date added":["Data di aggiunta"],"Date modified":["Data di modifica"],"Order":[""],"ASC":["ASC"],"DESC":["DISC"],"Show only featured downloads":["Mostra solo download in evidenza"],"Show only members only downloads":["Mostra solo download per soli membri"],"1 download":["1 download","%d download"],"Version %s":["Versione %s"],"Download File":["File Download"],"Download &ldquo;%s&rdquo;":["Download &ldquo;%s&rdquo;"],"Downloaded 1 time":["Scaricato 1 volta","Scaricato %d volte"],"Download Monitor":["Download Monitor"],"https://www.download-monitor.com":["https://www.download-monitor.com"],"A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.":["Una soluzione completa per gestire i file scaricabili, monitorare i download e stampare i link di download e informazioni del file sul tuo sito in WordPress."],"Never5":[""],"https://www.never5.com":[""],"Drop file here *or* select file\u0004or":["o"]}}}
languages/download-monitor-ja-dlm_gutenberg_blocks.json ADDED
@@ -0,0 +1 @@
 
1
+ {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"ja"},"Remove":["削除"],"Click to toggle":["切り替えるにはクリック"],"Version <span class=\"version\">%s</span> (%s)":["Version <span class=\"version\">%s</span> (%s)"],"n/a":["n/a"],"Downloaded %s time":[""],"Version":["バージョン"],"File URL(s)":["ファイルのURL"],"Enter one file path/URL per line - multiple files will be used as mirrors (chosen at random).":["1行に1つのファイルパス、もしくはURLを入力してください。複数ファイルがある場合はミラーとして使われます。(ランダムで選択)"],"Upload file":["ファイルをアップロード"],"Choose a file":["ファイルを選択"],"Insert file URL":["URLを挿入"],"Browse for file":["ファイルを参照"],"Download count":["ダウンロードカウント"],"File Date":["ファイル日時"],"h":["時"],"m":["分"],"It looks like you upgraded to the latest version of Download Monitor from a legacy version (3.x)":[""],"Currently your downloads don't work like they should, we need to %s before they'll work again.":[""],"upgrade your downloads":[""],"We've created an upgrading tool that will do all the work for you. You can read more about this tool on %sour website (click here)%s or start the upgrade now.":[""],"Take me to the Upgrade Tool":[""],"hide notice":[""],"Download Monitor Extensions":[""],"Extensions":[""],"If you like %sDownload Monitor%s please leave us a %s★★★★★%s rating. A huge thank you from us in advance!":[""],"Insert Download":["ダウンロードを挿入"],"Are you sure you want to delete this file ? ":[""],"Browse for a file":["ファイルを参照"],"Select a category":["カテゴリを選択"],"Download Monitor Data":[""],"Featured download":["注目のダウンロード"],"Members only":["メンバーズオンリー"],"Redirect to file":[""],"Image":["画像"],"Title":["タイトル"],"ID":["ID"],"File":["ファイル"],"Categories":["カテゴリ"],"Tags":["タグ"],"Featured":["注目"],"Redirect only":[""],"Date posted":["投稿日時"],"Yes":[""],"Download title":["タイトル"],"Download updated.":["ダウンロードを更新しました。"],"Custom field updated.":["カスタムフィールドを更新しました。"],"Custom field deleted.":["カスタムフィールドを削除しました。"],"Download restored to revision from %s":["リビジョン %s へダウンロードを復元しました。"],"Download published.":["ダウンロードを共有しました。"],"Download saved.":["ダウンロードを保存しました。"],"Download submitted.":["ダウンロードを投稿しました。"],"Download scheduled for: <strong>%1$s</strong>.":["ダウンロードスケジュール: <strong>%1$s</strong>."],"M j, Y @ G:i":["j F Y @ G:i"],"Download draft updated.":["ダウンロード案を更新しました。"],"Popular Downloads":["トップダウンロード"],"There are no stats available yet!":["まだ統計がありません!"],"Download":["ダウンロード"],"Extend Download Monitor with its powerful free and paid extensions. %sClick here to browse all extensions%s":[""],"No files found":["ファイルが見つかりません。"],"Insert Shortcode":["ショートコードを挿入"],"Quick-add download":["ダウンロードを即時挿入"],"Error: File was not created.":["エラー:ファイルが作成されませんでした。"],"Download successfully created.":["ダウンロードが作成されました。"],"Error: Download was not created.":["エラー:ダウンロードは作成されていません。"],"Search download":[""],"Choose a download":["ダウンロードを選択"],"Template":["テンプレート"],"Template Name":["テンプレート名"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>image</code>, the <code>content-download-image.php</code> template will be used instead.":["空白にするとデフォルトのテンプレート <code>content-download.php</code> が使用されます。例えば、<code>image</code>と入力すると、<code>content-download-image.php</code>のテンプレートが使用されます。"],"Drop file here":["ファイルをここにドロップ"],"Select File":["ファイルを選択"],"Enter URL manually":["手動でURLを入力"],"Download URL":["ダウンロードURL"],"Required URL":["URLが必要です。"],"Download Title":["タイトル"],"Required title":["タイトルが必要です。"],"Optional version number":["任意のバージョン番号"],"Save Download":["ダウンロードを保存しました。"],"Allowed Files":["許可されたファイル"],"Please wait...":["お待ちください..."],"Reports":[""],"Switch to %s":[""],"Per Day":[""],"Month":[""],"Download Reports":[""],"Loading":[""],"Settings":["設定"],"Because your server is running on nginx, our .htaccess file can't protect your downloads.":[""],"Please add the following rules to your nginx config to disable direct file access: %s":[""],"Download Monitor Transients successfully cleared!":[""],"Settings successfully saved":["設定を保存しました。"],"Save Changes":["設定を保存"],"General":["一般"],"Default Template":["デフォルトテンプレート"],"Choose which template is used for <code>[download]</code> shortcodes by default (this can be overridden by the <code>format</code> argument).":["デフォルトの<code>[download]</code>ショートコードで使われるテンプレートを選択してください。(この設定は <code>format</code> 引数で上書きできます。)"],"Default - Title and count":[""],"Button - CSS styled button showing title and count":[""],"Box - Box showing thumbnail, title, count, filename and filesize.":[""],"Filename - Filename and download count":[""],"Title - Shows download title only":[""],"Version list - Lists all download versions in an unordered list":[""],"Custom template":[""],"Custom Template":[""],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>button</code>, the <code>content-download-button.php</code> template will be used instead. You can add custom templates inside your theme folder.":[""],"X-Accel-Redirect / X-Sendfile":["X-Accel-Redirect / X-Sendfile"],"Enable":["有効"],"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be used to serve downloads instead of PHP (server requires <code>mod_xsendfile</code>).":["もし有効ならば、<code>X-Accel-Redirect</code> / <code>X-Sendfile</code> をPHPの代わりにダウンロードサービスを使えます。(サーバー側での <code>mod_xsendfile</code> の設定が必要です。)"],"Prevent hotlinking":[""],"If enabled, the download handler will check the PHP referer to see if it originated from your site and if not, redirect them to the homepage.":[""],"Allow Proxy IP Override":[""],"If enabled, Download Monitor will use the X_FORWARDED_FOR HTTP header set by proxies as the IP address. Note that anyone can set this header, making it less secure.":[""],"Endpoint":["エンドポイント"],"download":["download"],"Download Endpoint":["ダウンロードエンドポイント"],"Define what endpoint should be used for download links. By default this will be <code>%s</code>.":["どのエンドポイントがダウンロードリンクに使われるかを定義します。デフォルトでは <code>%s</code> が使われます。"],"Endpoint Value":["エンドポイント値"],"Define what unique value should be used on the end of your endpoint to identify the downloadable file. e.g. ID would give a link like <code>%s</code>":["どの任意の値がダウンロード可能なファイルを識別するためにエンドポイントの最後に使われるかを定義します。例えば、IDは <code>%s</code> のようなリンクを与えます。"],"Download ID":["ダウンロードID"],"Download slug":["ダウンロードスラグ"],"Hashes":[""],"MD5 hashes":[""],"Generate MD5 hash for uploaded files":[""],"SHA1 hashes":[""],"Generate SHA1 hash for uploaded files":[""],"SHA256 hashes":[""],"Generate SHA256 hash for uploaded files":[""],"Hashes can optionally be output via shortcodes, but may cause performance issues with large files.":[""],"CRC32B hashes":[""],"Generate CRC32B hash for uploaded files":[""],"Logging":["ロギング"],"Download Log":["ダウンロードログ"],"Log download attempts, IP addresses and more.":["ダウンロードを試みたIPアドレスなどを記録します。"],"Count unique IPs only":[""],"If enabled, the counter for each download will only increment and create a log entry once per IP address.":[""],"Access":[""],"No Access Page":[""],"Choose what page is displayed when the user has no access to a file. Don't forget to add the <code>[dlm_no_access]</code> shortcode to the page.":[""],"You do not have permission to access this download. %sGo to homepage%s":[""],"No access message":[""],"The message that will be displayed to visitors when they don't have access to a file.":[""],"Blacklist IPs":["IPブラックリスト"],"List IP Addresses to blacklist, 1 per line. Use IP/CIDR netmask format for ranges. IPv4 examples: <code>198.51.100.1</code> or <code>198.51.100.0/24</code>. IPv6 examples: <code>2001:db8::1</code> or <code>2001:db8::/32</code>.":[""],"Blacklist user agents":["ユーザーエージェントブラックリスト"],"List browser user agents to blacklist, 1 per line. Partial matches are sufficient. Regex matching is allowed by surrounding the pattern with forward slashes, e.g. <code>/^Mozilla.+Googlebot/</code>":[""],"Misc":[""],"Remove Data on Uninstall?":[""],"Check this box if you would like to completely remove all Download Monitor data when the plugin is deleted.":[""],"Clear all transients":[""],"Remove all Download Monitor transients, this can solve version caching issues.":[""],"Select Page":[""],"Download Information":[""],"Download Options":["ダウンロードオプション"],"Downloadable Files/Versions":[""],"Short Description":["短い説明"],"URL":[""],"Shortcode":[""],"No download information for new downloads.":[""],"Mark this download as featured. Used by shortcodes and widgets.":["このダウンロードを注目のダウンロードとしてマークします。ショートコードとウィジェットで使用されます。"],"Only logged in users will be able to access the file via a download link if this is enabled.":["ユーザーがログインし、これが有効になっている場合のみ、ダウンロードリンクを介してファイルにアクセスすることができるようになります。"],"Don't force download. If the <code>dlm_uploads</code> folder is protected you may need to move your file.":[""],"Add file":[""],"Close all":["すべて閉じる"],"Expand all":["すべて展開"],"Documentation":[""],"Password Required":[""],"Download does not exist.":["ダウンロードが存在しません。"],"Go to homepage &rarr;":["&rarr のホームページへ行きます。"],"Download Error":["ダウンロードエラー"],"No file paths defined.":["ファイルパスが指定されていません。"],"Redirected to file":["ファイルへリダイレクトします。"],"Redirected to remote file.":["外部ファイルへリダイレクトします。"],"File not found.":["ファイルが見つかりません。"],"No Access":[""],"Legacy Upgrader":[""],"Download Monitor - Legacy Upgrade":[""],"Welcome to the Download Monitor Legacy Upgrader. On this page we will upgrade your old Download Monitor (legacy) data so it will work with the latest version. If you're on this page, it should mean that you updated to this version from Download Monitor %s. If you're unsure if this is correct, or you want to read more about the legacy upgrade, we've setup a page that will explain this process in a lot more detail. %sClick here%s if to view that page.":[""],"Version ID":["バージョンID"],"Filename":[""],"User ID":["ユーザーID"],"User Login":[""],"User Email":[""],"User IP":["IPアドレス"],"User Agent":["ユーザーエージェント"],"Date":["日時"],"Status":["ステータス"],"Meta Data":[""],"Logs":["ログ"],"Download Logs":["ダウンロードログ"],"Export CSV":["CSVで出力"],"Are you sure you want to delete ALL log items?":[""],"Delete Logs":[""],"Delete":[""],"Download Complete":["ダウンロードしました。"],"%s ago":["%s 前"]," (v%s)":[""]," (v%s no longer exists)":[""],"Download #%d (no longer exists)":["#%d をダウンロード (存在しません)"],"Non-member":["非メンバー"],"User":["ユーザー"],"IP Address":["IPアドレス"],"Log entries deleted":[""],"Any status":[""],"Failed":[""],"Redirected":[""],"Completed":[""],"Show all dates":[""],"%1$s %2$d":[""],"Select a User":[""],"25 per page":[""],"50 per page":[""],"100 per page":[""],"200 per page":[""],"Show All":[""],"Filter":[""],"All Downloads":["全てのダウンロード"],"Downloads":["ダウンロード"],"Add New":["新規作成"],"Add Download":["ダウンロードを追加"],"Edit":["編集"],"Edit Download":["ダウンロードを編集"],"New Download":["新しいダウンロード"],"View Download":["ダウンロードを表示"],"Search Downloads":["ダウンロードを検索"],"No Downloads found":["ダウンロードはありません。"],"No Downloads found in trash":["ゴミ箱にダウンロードはありません。"],"Parent Download":["親のダウンロード"],"This is where you can create and manage downloads for your site.":["あなたのサイトのためのダウンロードの作成及び管理ができます。"],"License successfully activated.":[""],"<a href=\"%s\">Register your copy</a> of the <strong>%s</strong> extension to receive access to automatic upgrades and support. Need a license key? <a href=\"%s\" target=\"_blank\">Purchase one now</a>.":[""],"Download not found":["ダウンロードが見つかりません"],"Download Categories":[""],"Download Category":["ダウンロードカテゴリ"],"Search Download Categories":["ダウンロードカテゴリを検索"],"All Download Categories":["全てのダウンロードカテゴリ"],"Parent Download Category":["親のダウンロードカテゴリ"],"Edit Download Category":["ダウンロードカテゴリを編集"],"Update Download Category":["ダウンロードカテゴリを更新"],"Add New Download Category":["新しいダウンロードカテゴリを追加"],"New Download Category Name":["新しいダウンロードカテゴリの名前"],"Download Tags":[""],"Download Tag":["ダウンロードタグ"],"Search Download Tags":["ダウンロードタグを検索"],"All Download Tags":["全てのダウンロードタグ"],"Parent Download Tag":["親のダウンロードタグ"],"Edit Download Tag":["ダウンロードタグを編集"],"Update Download Tag":["ダウンロードタグを更新"],"Add New Download Tag":["新しいダウンロードタグを追加"],"New Download Tag Name":["新しいダウンロードタグの名前"],"Display a list of your downloads.":["ダウンロードリストを表示します。"],"Downloads List":["ダウンロードリスト"],"Featured Downloads":["注目のダウンロード"],"Limit":[""],"Output template":[""],"Default template":["デフォルトテンプレート"],"Order by":[""],"Random":["ランダム"],"Date added":["追加日時"],"Date modified":["変更日時"],"Order":[""],"ASC":["昇順"],"DESC":["降順"],"Show only featured downloads":["注目のダウンロードのみに表示されます。"],"Show only members only downloads":["メンバーズオンリーのダウンロードのみに表示されます。"],"1 download":[""],"Version %s":["バージョン %s"],"Download File":["ファイルをダウンロード"],"Download &ldquo;%s&rdquo;":["&ldquo;%s&rdquo; をダウンロード"],"Downloaded 1 time":["%d回のダウンロード"],"Download Monitor":["Download Monitor"],"https://www.download-monitor.com":["https://www.download-monitor.com"],"A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.":["A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site."],"Never5":[""],"https://www.never5.com":[""],"Drop file here *or* select file\u0004or":[""]}}}
languages/download-monitor-ku-dlm_gutenberg_blocks.json ADDED
@@ -0,0 +1 @@
 
1
+ {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"ku"},"Remove":[""],"Click to toggle":[""],"Version <span class=\"version\">%s</span> (%s)":[""],"n/a":[""],"Downloaded %s time":["","Downloaded %s times"],"Version":[""],"File URL(s)":[""],"Enter one file path/URL per line - multiple files will be used as mirrors (chosen at random).":[""],"Upload file":[""],"Choose a file":[""],"Insert file URL":[""],"Browse for file":[""],"Download count":[""],"File Date":[""],"h":[""],"m":[""],"It looks like you upgraded to the latest version of Download Monitor from a legacy version (3.x)":[""],"Currently your downloads don't work like they should, we need to %s before they'll work again.":[""],"upgrade your downloads":[""],"We've created an upgrading tool that will do all the work for you. You can read more about this tool on %sour website (click here)%s or start the upgrade now.":[""],"Take me to the Upgrade Tool":[""],"hide notice":[""],"Download Monitor Extensions":[""],"Extensions":[""],"If you like %sDownload Monitor%s please leave us a %s★★★★★%s rating. A huge thank you from us in advance!":[""],"Insert Download":[""],"Are you sure you want to delete this file ? ":[""],"Browse for a file":[""],"Select a category":[""],"Download Monitor Data":[""],"Featured download":[""],"Members only":[""],"Redirect to file":[""],"Image":[""],"Title":[""],"ID":[""],"File":[""],"Categories":[""],"Tags":[""],"Featured":[""],"Redirect only":[""],"Date posted":[""],"Yes":[""],"Download title":[""],"Download updated.":[""],"Custom field updated.":[""],"Custom field deleted.":[""],"Download restored to revision from %s":[""],"Download published.":[""],"Download saved.":[""],"Download submitted.":[""],"Download scheduled for: <strong>%1$s</strong>.":[""],"M j, Y @ G:i":[""],"Download draft updated.":[""],"Popular Downloads":[""],"There are no stats available yet!":[""],"Download":[""],"Extend Download Monitor with its powerful free and paid extensions. %sClick here to browse all extensions%s":[""],"No files found":[""],"Insert Shortcode":[""],"Quick-add download":[""],"Error: File was not created.":[""],"Download successfully created.":[""],"Error: Download was not created.":[""],"Search download":[""],"Choose a download":[""],"Template":[""],"Template Name":[""],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>image</code>, the <code>content-download-image.php</code> template will be used instead.":[""],"Drop file here":[""],"Select File":[""],"Enter URL manually":[""],"Download URL":[""],"Required URL":[""],"Download Title":[""],"Required title":[""],"Optional version number":[""],"Save Download":[""],"Allowed Files":[""],"Please wait...":[""],"Reports":[""],"Switch to %s":[""],"Per Day":[""],"Month":[""],"Download Reports":[""],"Loading":[""],"Settings":[""],"Because your server is running on nginx, our .htaccess file can't protect your downloads.":[""],"Please add the following rules to your nginx config to disable direct file access: %s":[""],"Download Monitor Transients successfully cleared!":[""],"Settings successfully saved":[""],"Save Changes":[""],"General":[""],"Default Template":[""],"Choose which template is used for <code>[download]</code> shortcodes by default (this can be overridden by the <code>format</code> argument).":[""],"Default - Title and count":[""],"Button - CSS styled button showing title and count":[""],"Box - Box showing thumbnail, title, count, filename and filesize.":[""],"Filename - Filename and download count":[""],"Title - Shows download title only":[""],"Version list - Lists all download versions in an unordered list":[""],"Custom template":[""],"Custom Template":[""],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>button</code>, the <code>content-download-button.php</code> template will be used instead. You can add custom templates inside your theme folder.":[""],"X-Accel-Redirect / X-Sendfile":[""],"Enable":[""],"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be used to serve downloads instead of PHP (server requires <code>mod_xsendfile</code>).":[""],"Prevent hotlinking":[""],"If enabled, the download handler will check the PHP referer to see if it originated from your site and if not, redirect them to the homepage.":[""],"Allow Proxy IP Override":[""],"If enabled, Download Monitor will use the X_FORWARDED_FOR HTTP header set by proxies as the IP address. Note that anyone can set this header, making it less secure.":[""],"Endpoint":[""],"download":[""],"Download Endpoint":[""],"Define what endpoint should be used for download links. By default this will be <code>%s</code>.":[""],"Endpoint Value":[""],"Define what unique value should be used on the end of your endpoint to identify the downloadable file. e.g. ID would give a link like <code>%s</code>":[""],"Download ID":[""],"Download slug":[""],"Hashes":[""],"MD5 hashes":[""],"Generate MD5 hash for uploaded files":[""],"SHA1 hashes":[""],"Generate SHA1 hash for uploaded files":[""],"SHA256 hashes":[""],"Generate SHA256 hash for uploaded files":[""],"Hashes can optionally be output via shortcodes, but may cause performance issues with large files.":[""],"CRC32B hashes":[""],"Generate CRC32B hash for uploaded files":[""],"Logging":[""],"Download Log":[""],"Log download attempts, IP addresses and more.":[""],"Count unique IPs only":[""],"If enabled, the counter for each download will only increment and create a log entry once per IP address.":[""],"Access":[""],"No Access Page":[""],"Choose what page is displayed when the user has no access to a file. Don't forget to add the <code>[dlm_no_access]</code> shortcode to the page.":[""],"You do not have permission to access this download. %sGo to homepage%s":[""],"No access message":[""],"The message that will be displayed to visitors when they don't have access to a file.":[""],"Blacklist IPs":[""],"List IP Addresses to blacklist, 1 per line. Use IP/CIDR netmask format for ranges. IPv4 examples: <code>198.51.100.1</code> or <code>198.51.100.0/24</code>. IPv6 examples: <code>2001:db8::1</code> or <code>2001:db8::/32</code>.":[""],"Blacklist user agents":[""],"List browser user agents to blacklist, 1 per line. Partial matches are sufficient. Regex matching is allowed by surrounding the pattern with forward slashes, e.g. <code>/^Mozilla.+Googlebot/</code>":[""],"Misc":[""],"Remove Data on Uninstall?":[""],"Check this box if you would like to completely remove all Download Monitor data when the plugin is deleted.":[""],"Clear all transients":[""],"Remove all Download Monitor transients, this can solve version caching issues.":[""],"Select Page":[""],"Download Information":[""],"Download Options":[""],"Downloadable Files/Versions":[""],"Short Description":[""],"URL":[""],"Shortcode":[""],"No download information for new downloads.":[""],"Mark this download as featured. Used by shortcodes and widgets.":[""],"Only logged in users will be able to access the file via a download link if this is enabled.":[""],"Don't force download. If the <code>dlm_uploads</code> folder is protected you may need to move your file.":[""],"Add file":[""],"Close all":[""],"Expand all":[""],"Documentation":[""],"Password Required":[""],"Download does not exist.":[""],"Go to homepage &rarr;":[""],"Download Error":[""],"No file paths defined.":[""],"Redirected to file":[""],"Redirected to remote file.":[""],"File not found.":[""],"No Access":[""],"Legacy Upgrader":[""],"Download Monitor - Legacy Upgrade":[""],"Welcome to the Download Monitor Legacy Upgrader. On this page we will upgrade your old Download Monitor (legacy) data so it will work with the latest version. If you're on this page, it should mean that you updated to this version from Download Monitor %s. If you're unsure if this is correct, or you want to read more about the legacy upgrade, we've setup a page that will explain this process in a lot more detail. %sClick here%s if to view that page.":[""],"Version ID":[""],"Filename":[""],"User ID":[""],"User Login":[""],"User Email":[""],"User IP":[""],"User Agent":[""],"Date":[""],"Status":[""],"Meta Data":[""],"Logs":[""],"Download Logs":[""],"Export CSV":[""],"Are you sure you want to delete ALL log items?":[""],"Delete Logs":[""],"Delete":[""],"Download Complete":[""],"%s ago":[""]," (v%s)":[""]," (v%s no longer exists)":[""],"Download #%d (no longer exists)":[""],"Non-member":[""],"User":[""],"IP Address":[""],"Log entries deleted":[""],"Any status":[""],"Failed":[""],"Redirected":[""],"Completed":[""],"Show all dates":[""],"%1$s %2$d":[""],"Select a User":[""],"25 per page":[""],"50 per page":[""],"100 per page":[""],"200 per page":[""],"Show All":[""],"Filter":[""],"All Downloads":[""],"Downloads":[""],"Add New":[""],"Add Download":[""],"Edit":[""],"Edit Download":[""],"New Download":[""],"View Download":[""],"Search Downloads":[""],"No Downloads found":[""],"No Downloads found in trash":[""],"Parent Download":[""],"This is where you can create and manage downloads for your site.":[""],"License successfully activated.":[""],"<a href=\"%s\">Register your copy</a> of the <strong>%s</strong> extension to receive access to automatic upgrades and support. Need a license key? <a href=\"%s\" target=\"_blank\">Purchase one now</a>.":[""],"Download not found":[""],"Download Categories":[""],"Download Category":[""],"Search Download Categories":[""],"All Download Categories":[""],"Parent Download Category":[""],"Edit Download Category":[""],"Update Download Category":[""],"Add New Download Category":[""],"New Download Category Name":[""],"Download Tags":[""],"Download Tag":[""],"Search Download Tags":[""],"All Download Tags":[""],"Parent Download Tag":[""],"Edit Download Tag":[""],"Update Download Tag":[""],"Add New Download Tag":[""],"New Download Tag Name":[""],"Display a list of your downloads.":[""],"Downloads List":[""],"Featured Downloads":[""],"Limit":[""],"Output template":[""],"Default template":[""],"Order by":[""],"Random":[""],"Date added":[""],"Date modified":[""],"Order":[""],"ASC":[""],"DESC":[""],"Show only featured downloads":[""],"Show only members only downloads":[""],"1 download":["","%d downloads"],"Version %s":[""],"Download File":[""],"Download &ldquo;%s&rdquo;":[""],"Downloaded 1 time":["","Downloaded %d times"],"Download Monitor":[""],"https://www.download-monitor.com":[""],"A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.":[""],"Never5":[""],"https://www.never5.com":[""],"Drop file here *or* select file\u0004or":[""]}}}
languages/download-monitor-nl_NL-dlm_gutenberg_blocks.json ADDED
@@ -0,0 +1 @@
 
1
+ {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"nl_NL"},"Remove":["Verwijder"],"Click to toggle":["Klik om te wisselen"],"Version <span class=\"version\">%s</span> (%s)":["Versie <span class=\"version\">%s</span> (%s)"],"n/a":["n/a"],"Downloaded %s time":["%s keer gedownload","%s keer gedownload"],"Version":["Versie"],"File URL(s)":["Bestand URL(s)"],"Enter one file path/URL per line - multiple files will be used as mirrors (chosen at random).":["Vul 1 bestandspad/URL per lijn in - meerdere bestanden zullen gebruikt worden als mirrors (willekeurig gekozen)."],"Upload file":["Upload bestand"],"Choose a file":["Kies een bestand"],"Insert file URL":["Vul bestand URL in"],"Browse for file":["Blader naar bestand"],"Download count":["Downloads aantal"],"File Date":["Bestandsdatum"],"h":["h"],"m":["m"],"It looks like you upgraded to the latest version of Download Monitor from a legacy version (3.x)":["Het lijkt of je van een oude versie (3.x) van Download Monitor hebt geügrade naar de nieuwste versie"],"Currently your downloads don't work like they should, we need to %s before they'll work again.":[""],"upgrade your downloads":["Upgrade je downloads"],"We've created an upgrading tool that will do all the work for you. You can read more about this tool on %sour website (click here)%s or start the upgrade now.":[""],"Take me to the Upgrade Tool":["Bren me naar de Upgrade Tool"],"hide notice":["Verberg de melding"],"Download Monitor Extensions":["Download Monitor Extensies"],"Extensions":["Extensies"],"If you like %sDownload Monitor%s please leave us a %s★★★★★%s rating. A huge thank you from us in advance!":["Als u %sDownload Monitor%s met plezier gebruikt, geef ons dan een %s★★★★★%s review! Alvast enorm bedankt van ons!"],"Insert Download":["Voeg download in"],"Are you sure you want to delete this file ? ":["Weet u zeker dat u dit bestand wilt verwijderen?"],"Browse for a file":["Bladeren naar bestand"],"Select a category":["Kies een categorie"],"Download Monitor Data":["Download Monitor Data"],"Featured download":["Uitgelichte Download"],"Members only":["Enkel leden"],"Redirect to file":["Redirect naar bestand"],"Image":["Afbeelding"],"Title":["Titel"],"ID":["ID"],"File":["Bestand"],"Categories":["Categorieën"],"Tags":["Tags"],"Featured":["Uitgelicht"],"Redirect only":["Enkel redirect"],"Date posted":["Datum geplaatst"],"Yes":["Ja"],"Download title":["Download titel"],"Download updated.":["Download geüpdatet."],"Custom field updated.":["Custom field geüpdatet."],"Custom field deleted.":["Custom field verwijderd."],"Download restored to revision from %s":["Download hersteld naar revisie van %s"],"Download published.":["Download gepubliceerd."],"Download saved.":["Download opgeslagen."],"Download submitted.":["Download verstuurd."],"Download scheduled for: <strong>%1$s</strong>.":["Download geplandt voor: <strong>%1$s</strong>."],"M j, Y @ G:i":["j M Y @ G:i"],"Download draft updated.":["Download concept geüpdatet."],"Popular Downloads":["Populaire downloads"],"There are no stats available yet!":["Er zijn nog geen statistieken beschikbaar!"],"Download":["Download"],"Extend Download Monitor with its powerful free and paid extensions. %sClick here to browse all extensions%s":["Breid Download Monitor uit met haar krachtige gratis en betaalde extensies. %sKlik hier om alle extensies te zien%s."],"No files found":["Geen bestanden gevonden"],"Insert Shortcode":["Voeg shortcode in"],"Quick-add download":["Voor download snel toe"],"Error: File was not created.":["Foutmelding: Bestand is niet aangemaakt"],"Download successfully created.":["Download succesvol aangemaakt"],"Error: Download was not created.":["Foutmelding: Download is niet aangemaakt"],"Search download":["Search download"],"Choose a download":["Kies een download"],"Template":["Template"],"Template Name":["Template Naam"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>image</code>, the <code>content-download-image.php</code> template will be used instead.":["Het standaard bestand <code>content-download.php</code> wordt gebruikt als u dit leeg laat. Als u bijvoorbeeld <code>image</code> invult dan wordt <code>content-download-image.php</code> gebruikt."],"Drop file here":["Sleep bestand hier"],"Select File":["Selecteer bestand"],"Enter URL manually":["Voeg URL handmatig in"],"Download URL":["Download URL"],"Required URL":["Verplicht URL"],"Download Title":["Download Titel"],"Required title":["Verplicht titel"],"Optional version number":["Optioneel versie nummer"],"Save Download":["Bewaar Download"],"Allowed Files":["Toegestane Bestanden"],"Please wait...":["Even wachten..."],"Reports":["Rapporten"],"Switch to %s":["Switch naar %s"],"Per Day":["Per dag"],"Month":["Maand"],"Download Reports":["Download rapporten"],"Loading":["Laden"],"Settings":["Instellingen"],"Because your server is running on nginx, our .htaccess file can't protect your downloads.":["Omdat uw server op nginx draait kan ons .htaccess bestand uw bestanden niet beveiligen."],"Please add the following rules to your nginx config to disable direct file access: %s":["Voeg a.u.b. de volgende regels toe aan uw nginx configuratie om directe toegang tot uw bestanden te voorkomen: %s"],"Download Monitor Transients successfully cleared!":[""],"Settings successfully saved":["Instellingen succesvol opgeslagen"],"Save Changes":["Wijzingen Opslaan"],"General":["Algemeen"],"Default Template":["Standaad Template"],"Choose which template is used for <code>[download]</code> shortcodes by default (this can be overridden by the <code>format</code> argument).":["Kies welke template standaard gebruikt wordt voor <code>download</code> shortcodes (dit kan overschreven worden door het <code>format</code> argument)."],"Default - Title and count":["Standaard - Titel en aantal"],"Button - CSS styled button showing title and count":["Knop - CSS opgemaakte knop welke titel en aantal toont. "],"Box - Box showing thumbnail, title, count, filename and filesize.":["Box - Box welke de afbeelding, titel, aantal, bestandsnaam en bestandsgrootte toont."],"Filename - Filename and download count":["Bestandsnaam - Bestandsnaam en download aantal"],"Title - Shows download title only":["Titel - Toont enkel download titel"],"Version list - Lists all download versions in an unordered list":["Versie lijst - Lijst met alle download versies"],"Custom template":["Afwijkende template"],"Custom Template":["Afwijkende template"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>button</code>, the <code>content-download-button.php</code> template will be used instead. You can add custom templates inside your theme folder.":[""],"X-Accel-Redirect / X-Sendfile":["X-Accel-Redirect / X-Sendfile"],"Enable":["Aanzetten"],"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be used to serve downloads instead of PHP (server requires <code>mod_xsendfile</code>).":["Wanneer ondersteund kan <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> gebruikt worden om downloads te verzenden in plaats van PHP (server vereist <code>mod_xsendfile</code>)."],"Prevent hotlinking":["Voorkom hotlinking"],"If enabled, the download handler will check the PHP referer to see if it originated from your site and if not, redirect them to the homepage.":["Wanneer aangezet zal de download handler checken of in PHP de referer gelijk is aan uw website and wanneer dit niet het geval is de gebruiker doorsturen naar uw homepage."],"Allow Proxy IP Override":[""],"If enabled, Download Monitor will use the X_FORWARDED_FOR HTTP header set by proxies as the IP address. Note that anyone can set this header, making it less secure.":[""],"Endpoint":["Endpoint"],"download":["download"],"Download Endpoint":["Download Endpoint"],"Define what endpoint should be used for download links. By default this will be <code>%s</code>.":["Kies welk endpoint gebruikt moet worden voor download links. Standaar is dit <code>%s</code>."],"Endpoint Value":["Endpoint Waarde"],"Define what unique value should be used on the end of your endpoint to identify the downloadable file. e.g. ID would give a link like <code>%s</code>":["Kies welke unieke waarde gebruikt moet worden achter het endpoint of de download te identificeren. ID geeft bijvoorbeeld een link zoals <code>%s</code>"],"Download ID":["Download ID"],"Download slug":["Download slug"],"Hashes":["Hashes"],"MD5 hashes":["MD5 hashes"],"Generate MD5 hash for uploaded files":["Genereer een MD5 hash voor bestanden"],"SHA1 hashes":["SHA1 hashes"],"Generate SHA1 hash for uploaded files":["Genereer een SHA1 hash voor bestanden"],"SHA256 hashes":[""],"Generate SHA256 hash for uploaded files":[""],"Hashes can optionally be output via shortcodes, but may cause performance issues with large files.":["Hashes kunnen optioneel getoond worden via shortcodes maar kunnen performance problemen geven bij grote bestanden."],"CRC32B hashes":["CRC32B hashes"],"Generate CRC32B hash for uploaded files":["Genereer een CRC32B hash voor bestanden"],"Logging":["Logging"],"Download Log":["Download Log"],"Log download attempts, IP addresses and more.":["Log download pogingen, IP addressen en meer."],"Count unique IPs only":["Tel enkel unieke IP adressen"],"If enabled, the counter for each download will only increment and create a log entry once per IP address.":["Wanneer geactiveerd zal de teller per download alleen verhogen en een log aanmaken voor een uniek IP adres."],"Access":["Toegang"],"No Access Page":["Geen Toegang Pagina"],"Choose what page is displayed when the user has no access to a file. Don't forget to add the <code>[dlm_no_access]</code> shortcode to the page.":["Kies op welke pagina getoond wordt wanneer een gebruiker geen toegang tot een download heeft. Vergeet niet de <code>[dlm_no_access]</code> shortcode aan deze pagina toe te voegen."],"You do not have permission to access this download. %sGo to homepage%s":["U heeft geen toegang tot deze download. %sGa naar homepage%s"],"No access message":["Geen toegang melding"],"The message that will be displayed to visitors when they don't have access to a file.":["De melding die getoond wordt wanneer de bezoeker geen toegang heeft tot een bestand."],"Blacklist IPs":["Blacklist IPs"],"List IP Addresses to blacklist, 1 per line. Use IP/CIDR netmask format for ranges. IPv4 examples: <code>198.51.100.1</code> or <code>198.51.100.0/24</code>. IPv6 examples: <code>2001:db8::1</code> or <code>2001:db8::/32</code>.":["Vul IP adressen in welke u wilt blacklisten, 1 per regel. Gebruik het IP/CIDR network format voor ranges. IPv4 voorbeelden: <code>198.51.100.1</code> or <code>198.51.100.0/24</code>. IPv6 voorbeelden: <code>2001:db8::1</code> or <code>2001:db8::/32</code>."],"Blacklist user agents":["Blacklist user agents"],"List browser user agents to blacklist, 1 per line. Partial matches are sufficient. Regex matching is allowed by surrounding the pattern with forward slashes, e.g. <code>/^Mozilla.+Googlebot/</code>":[""],"Misc":[""],"Remove Data on Uninstall?":[""],"Check this box if you would like to completely remove all Download Monitor data when the plugin is deleted.":[""],"Clear all transients":[""],"Remove all Download Monitor transients, this can solve version caching issues.":[""],"Select Page":["Kies Pagina"],"Download Information":["Download Informatie"],"Download Options":["Download Opties"],"Downloadable Files/Versions":["Downloadbare Bestanden/Versies"],"Short Description":["Korte Omschrijving"],"URL":["URL"],"Shortcode":["Shortcode"],"No download information for new downloads.":[""],"Mark this download as featured. Used by shortcodes and widgets.":["Markeer deze download as uitgelicht. Gebruikt door shortcodes en widgets."],"Only logged in users will be able to access the file via a download link if this is enabled.":["Alleen ingelogde gebruikers hebben toegang tot het bestand wanneer ingeschakeld."],"Don't force download. If the <code>dlm_uploads</code> folder is protected you may need to move your file.":["Het downloaden van bestand niet forceren. Als de <code>dlm_upload</code> map beveiligd kan het zijn dat je het bestand moet verplaatsen."],"Add file":["Bestand toevoegen"],"Close all":["Sluit allen"],"Expand all":["Open allen"],"Documentation":[""],"Password Required":["Wachtwoord Verplicht"],"Download does not exist.":["Download bestaat niet."],"Go to homepage &rarr;":["Ga naar de homepage &rarr;"],"Download Error":["Download Fout"],"No file paths defined.":["Geen bestandspad gedefinieerd."],"Redirected to file":["Doorgestuurd naar bestand"],"Redirected to remote file.":["Doorgestuurd naar extern bestand."],"File not found.":[" Bestand niet gevonden."],"No Access":["Geen Toegang"],"Legacy Upgrader":[""],"Download Monitor - Legacy Upgrade":[""],"Welcome to the Download Monitor Legacy Upgrader. On this page we will upgrade your old Download Monitor (legacy) data so it will work with the latest version. If you're on this page, it should mean that you updated to this version from Download Monitor %s. If you're unsure if this is correct, or you want to read more about the legacy upgrade, we've setup a page that will explain this process in a lot more detail. %sClick here%s if to view that page.":[""],"Version ID":["Versie ID"],"Filename":["Bestandsnaam"],"User ID":["Gebruiker ID"],"User Login":["Gebruiker Login"],"User Email":["Gebruiker Emai"],"User IP":["Gebruiker IP"],"User Agent":["Gebruiker Agent"],"Date":["Datum"],"Status":["Status"],"Meta Data":[""],"Logs":["Logs"],"Download Logs":["Download Logs"],"Export CSV":["Exporteer CSV"],"Are you sure you want to delete ALL log items?":[""],"Delete Logs":["Verwijder Logs"],"Delete":["Verwijderen"],"Download Complete":["Download Compleet"],"%s ago":["%s geleden"]," (v%s)":[""]," (v%s no longer exists)":[""],"Download #%d (no longer exists)":["Download #%d (bestaat niet meer)"],"Non-member":["Geen lid"],"User":["Gebruiker"],"IP Address":["IP Adres"],"Log entries deleted":["Log regels verwijderd"],"Any status":["Allen statussen"],"Failed":["Mislukt"],"Redirected":["Redirected"],"Completed":["Compleet"],"Show all dates":["Toon alle datums"],"%1$s %2$d":["%1$s %2$d"],"Select a User":[""],"25 per page":["25 per pagina"],"50 per page":["50 per pagina"],"100 per page":["100 per pagina"],"200 per page":["200 per pagina"],"Show All":["Toon allen"],"Filter":["Filter"],"All Downloads":["Alle Downloads"],"Downloads":["Downloads"],"Add New":["Nieuwe toevoegen"],"Add Download":["Download toevoegen"],"Edit":["Bewerken"],"Edit Download":["Bewerk Download"],"New Download":["Nieuwe Download"],"View Download":["Bekijk Download"],"Search Downloads":["Zoek Downloads"],"No Downloads found":["Geen Downloads gevonden"],"No Downloads found in trash":["Geen Downloads gevonden in prullenbak"],"Parent Download":["Parent Download"],"This is where you can create and manage downloads for your site.":["Dit is waar u downloads kunt aanmaken en beheren voor uw website."],"License successfully activated.":["Licentie succesvol geactiveerd."],"<a href=\"%s\">Register your copy</a> of the <strong>%s</strong> extension to receive access to automatic upgrades and support. Need a license key? <a href=\"%s\" target=\"_blank\">Purchase one now</a>.":[""],"Download not found":["Download niet gevonden"],"Download Categories":[""],"Download Category":["Download Categorie"],"Search Download Categories":["Zoek Download Categoriën "],"All Download Categories":["Alle Download Categoriën"],"Parent Download Category":["Parent Download Categorie"],"Edit Download Category":["Bewerk Download Categorie"],"Update Download Category":["Download Categorie Opslaan"],"Add New Download Category":["Nieuwe Download Categorie Toevoegen"],"New Download Category Name":["Nieuwe Download Categorie Naam"],"Download Tags":[""],"Download Tag":["Download Tag"],"Search Download Tags":["Zoek Download Tags"],"All Download Tags":["Alle Download Tags"],"Parent Download Tag":["Parent Download Tag"],"Edit Download Tag":["Bewerk Download Tag"],"Update Download Tag":["Download Tag Opslaan"],"Add New Download Tag":["Nieuwe Download Tag Toevoegen"],"New Download Tag Name":["Nieuwe Download Tag Naam"],"Display a list of your downloads.":["Toon een lijst met uw downloads."],"Downloads List":["Download Lijst"],"Featured Downloads":["Uitgelichte Downloads"],"Limit":["Limiet"],"Output template":["Output template"],"Default template":["Standaard template"],"Order by":["Sorteren o"],"Random":["Willekeurig"],"Date added":["Datum toegevoegd"],"Date modified":["Datum aangepast"],"Order":["Sorteren"],"ASC":["Oplopend"],"DESC":["Aflopend"],"Show only featured downloads":["Toon enkel uitgelichte downloads"],"Show only members only downloads":["Toon enkel 'Enkel leden' downloads"],"1 download":["1 download","%d downloads"],"Version %s":["Versie %s"],"Download File":["Download Bestand"],"Download &ldquo;%s&rdquo;":["Download &ldquo;%s&rdquo;"],"Downloaded 1 time":["% keer gedownload","%d keer gedownload"],"Download Monitor":["Download Monitor"],"https://www.download-monitor.com":["https://www.download-monitor.com"],"A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.":["A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site."],"Never5":["Never5"],"https://www.never5.com":["https://www.never5.com"],"Drop file here *or* select file\u0004or":["of"]}}}
languages/download-monitor-nl_NL.mo CHANGED
Binary file
languages/download-monitor-nl_NL.po CHANGED
@@ -2,13 +2,14 @@
2
  # This file is distributed under the GPL v3.
3
  # Translators:
4
  # Barry Kooij <mail@barrykooij.nl>, 2015-2016
 
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: Download Monitor\n"
8
  "Report-Msgid-Bugs-To: https://github.com/download-monitor/download-monitor/issues\n"
9
  "POT-Creation-Date: 2017-12-19 12:47:52+00:00\n"
10
- "PO-Revision-Date: 2017-12-19 12:48+0000\n"
11
- "Last-Translator: Barry Kooij <mail@barrykooij.nl>\n"
12
  "Language-Team: Dutch (Netherlands) (http://www.transifex.com/barrykooijplugins/download-monitor/language/nl_NL/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -91,7 +92,7 @@ msgstr "m"
91
  msgid ""
92
  "It looks like you upgraded to the latest version of Download Monitor from a "
93
  "legacy version (3.x)"
94
- msgstr ""
95
 
96
  #: assets/views/notice-lu-upgrade.php:8
97
  msgid ""
@@ -101,7 +102,7 @@ msgstr ""
101
 
102
  #: assets/views/notice-lu-upgrade.php:8
103
  msgid "upgrade your downloads"
104
- msgstr ""
105
 
106
  #: assets/views/notice-lu-upgrade.php:9
107
  msgid ""
@@ -112,11 +113,11 @@ msgstr ""
112
 
113
  #: assets/views/notice-lu-upgrade.php:10
114
  msgid "Take me to the Upgrade Tool"
115
- msgstr ""
116
 
117
  #: assets/views/notice-lu-upgrade.php:11
118
  msgid "hide notice"
119
- msgstr ""
120
 
121
  #: src/Admin/Admin.php:224 src/Admin/Extensions.php:45
122
  msgid "Download Monitor Extensions"
@@ -301,7 +302,7 @@ msgstr "Foutmelding: Download is niet aangemaakt"
301
 
302
  #: src/Admin/MediaInsert.php:161
303
  msgid "Search download"
304
- msgstr ""
305
 
306
  #: src/Admin/MediaInsert.php:169
307
  msgid "Choose a download"
@@ -368,27 +369,27 @@ msgstr "Even wachten..."
368
 
369
  #: src/Admin/Reports/Page.php:23
370
  msgid "Reports"
371
- msgstr ""
372
 
373
  #: src/Admin/Reports/Page.php:115
374
  msgid "Switch to %s"
375
- msgstr ""
376
 
377
  #: src/Admin/Reports/Page.php:140
378
  msgid "Per Day"
379
- msgstr ""
380
 
381
  #: src/Admin/Reports/Page.php:141
382
  msgid "Month"
383
- msgstr ""
384
 
385
  #: src/Admin/Reports/Page.php:184
386
  msgid "Download Reports"
387
- msgstr ""
388
 
389
  #: src/Admin/Settings/Fields/LazySelect.php:41
390
  msgid "Loading"
391
- msgstr ""
392
 
393
  #: src/Admin/Settings/Page.php:22 src/DLM.php:224
394
  msgid "Settings"
2
  # This file is distributed under the GPL v3.
3
  # Translators:
4
  # Barry Kooij <mail@barrykooij.nl>, 2015-2016
5
+ # Jan de Boer <golf1025@gmail.com>, 2017
6
  msgid ""
7
  msgstr ""
8
  "Project-Id-Version: Download Monitor\n"
9
  "Report-Msgid-Bugs-To: https://github.com/download-monitor/download-monitor/issues\n"
10
  "POT-Creation-Date: 2017-12-19 12:47:52+00:00\n"
11
+ "PO-Revision-Date: 2017-12-20 14:18+0000\n"
12
+ "Last-Translator: Jan de Boer <golf1025@gmail.com>\n"
13
  "Language-Team: Dutch (Netherlands) (http://www.transifex.com/barrykooijplugins/download-monitor/language/nl_NL/)\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
92
  msgid ""
93
  "It looks like you upgraded to the latest version of Download Monitor from a "
94
  "legacy version (3.x)"
95
+ msgstr "Het lijkt of je van een oude versie (3.x) van Download Monitor hebt geügrade naar de nieuwste versie"
96
 
97
  #: assets/views/notice-lu-upgrade.php:8
98
  msgid ""
102
 
103
  #: assets/views/notice-lu-upgrade.php:8
104
  msgid "upgrade your downloads"
105
+ msgstr "Upgrade je downloads"
106
 
107
  #: assets/views/notice-lu-upgrade.php:9
108
  msgid ""
113
 
114
  #: assets/views/notice-lu-upgrade.php:10
115
  msgid "Take me to the Upgrade Tool"
116
+ msgstr "Bren me naar de Upgrade Tool"
117
 
118
  #: assets/views/notice-lu-upgrade.php:11
119
  msgid "hide notice"
120
+ msgstr "Verberg de melding"
121
 
122
  #: src/Admin/Admin.php:224 src/Admin/Extensions.php:45
123
  msgid "Download Monitor Extensions"
302
 
303
  #: src/Admin/MediaInsert.php:161
304
  msgid "Search download"
305
+ msgstr "Search download"
306
 
307
  #: src/Admin/MediaInsert.php:169
308
  msgid "Choose a download"
369
 
370
  #: src/Admin/Reports/Page.php:23
371
  msgid "Reports"
372
+ msgstr "Rapporten"
373
 
374
  #: src/Admin/Reports/Page.php:115
375
  msgid "Switch to %s"
376
+ msgstr "Switch naar %s"
377
 
378
  #: src/Admin/Reports/Page.php:140
379
  msgid "Per Day"
380
+ msgstr "Per dag"
381
 
382
  #: src/Admin/Reports/Page.php:141
383
  msgid "Month"
384
+ msgstr "Maand"
385
 
386
  #: src/Admin/Reports/Page.php:184
387
  msgid "Download Reports"
388
+ msgstr "Download rapporten"
389
 
390
  #: src/Admin/Settings/Fields/LazySelect.php:41
391
  msgid "Loading"
392
+ msgstr "Laden"
393
 
394
  #: src/Admin/Settings/Page.php:22 src/DLM.php:224
395
  msgid "Settings"
languages/download-monitor-pl_PL-dlm_gutenberg_blocks.json ADDED
@@ -0,0 +1 @@
 
1
+ {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","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);","lang":"pl_PL"},"Remove":["Usuń"],"Click to toggle":["Kliknij by zmienić"],"Version <span class=\"version\">%s</span> (%s)":["Wersja <span class=\"version\">%s</span> (%s)"],"n/a":["Nie dotyczy"],"Downloaded %s time":["Pobrano %s raz","Pobrano %s razy","Pobrano %s razy","Pobrano %s razy"],"Version":["Wersja"],"File URL(s)":["URL pliku lub plików"],"Enter one file path/URL per line - multiple files will be used as mirrors (chosen at random).":["Podaj jedną ścieżkę/URL na linię. Więcej linii będzie traktowane jako tzw. lustra, alternatywne źródła (będą wybierane losowo)."],"Upload file":["Wgraj plik"],"Choose a file":["Wybierz plik"],"Insert file URL":["Wklej tutaj URL do pliku"],"Browse for file":["Przeglądaj w poszukiwaniu pliku"],"Download count":["Licznik plików"],"File Date":["Data pliku"],"h":["h"],"m":["m"],"It looks like you upgraded to the latest version of Download Monitor from a legacy version (3.x)":[""],"Currently your downloads don't work like they should, we need to %s before they'll work again.":[""],"upgrade your downloads":[""],"We've created an upgrading tool that will do all the work for you. You can read more about this tool on %sour website (click here)%s or start the upgrade now.":[""],"Take me to the Upgrade Tool":[""],"hide notice":[""],"Download Monitor Extensions":["Rozszerzenia Monitora Pobieania"],"Extensions":["Rozszerzenia"],"If you like %sDownload Monitor%s please leave us a %s★★★★★%s rating. A huge thank you from us in advance!":["Jeśli podoba Ci się %sMonitor Pobierania%s proszę zostaw nam %s★★★★★%s gwiazdek. Z góry wielkie dzięki!"],"Insert Download":["Wstaw plik"],"Are you sure you want to delete this file ? ":["Czy na pewno chcesz usunąć ten plik?"],"Browse for a file":["Wyszukaj plik"],"Select a category":["Wybierz kategorię"],"Download Monitor Data":["Dane Monitora Pobierania"],"Featured download":["Polecany plik"],"Members only":["Tylko dla zarejestrowanych"],"Redirect to file":["Przekieruj do pliku"],"Image":["Obraz"],"Title":["Tytuł"],"ID":["ID"],"File":["Plik"],"Categories":["Kategorie"],"Tags":["Tagi"],"Featured":["Polecane"],"Redirect only":["Tylko przekierowanie"],"Date posted":["Data publikacji"],"Yes":["Tak"],"Download title":["Tytuł pliku"],"Download updated.":["Pobranie zaktualizowano."],"Custom field updated.":["Pole spersonalizowane zostało zaktualizowane."],"Custom field deleted.":["Pole spersonalizowane zostało skasowane."],"Download restored to revision from %s":["Strona pobierania przywrócona do wesji z %s"],"Download published.":["Strona pobierania została opublikowana."],"Download saved.":["Strona pobierania zapisana."],"Download submitted.":["Strona pobierania wysłana."],"Download scheduled for: <strong>%1$s</strong>.":["Zaplanowano na: <strong>%1$s</strong>."],"M j, Y @ G:i":["d–n–Y o H:i"],"Download draft updated.":["Szkic strony pobierania zaktualizowany."],"Popular Downloads":["Najpopularniejsze pliki"],"There are no stats available yet!":["Nie ma jeszcze żadnych statystyk."],"Download":["Plik"],"Extend Download Monitor with its powerful free and paid extensions. %sClick here to browse all extensions%s":["Rozszerz Monitor Pobierania darmowymi i płatnymi rozszerzeniami. %sKliknij tutaj by przeglądać rozszerzenia%s"],"No files found":["Nic nie znaleziono"],"Insert Shortcode":["Wstaw shortcode"],"Quick-add download":["Szybkie dodawanie plików"],"Error: File was not created.":["Błąd: plik nie został utworzony."],"Download successfully created.":["Pobranie udało się utworzyć."],"Error: Download was not created.":["Błąd: nie udało się utworzyć pliku."],"Search download":[""],"Choose a download":["Wybierz plik"],"Template":["Szablon"],"Template Name":["Nazwa szablonu"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>image</code>, the <code>content-download-image.php</code> template will be used instead.":["Jeśli pole pozostanie puste, wtyczka użyje domyślnego szablonu <code>content-download.php</code>. Jeśli wpiszesz na przykład <code>image</code>, wtyczka użyje zamiast tego szablonu <code>content-download-image.php</code>."],"Drop file here":["Upuść plik tutaj"],"Select File":["Wybierz plik"],"Enter URL manually":["Wybierz URL ręcznie"],"Download URL":["URL pliku"],"Required URL":["URL jest wymagany"],"Download Title":["Tytuł pliku"],"Required title":["Tytuł jest wymagany"],"Optional version number":["Opcjonalny numer wersji"],"Save Download":["Zapisz plik"],"Allowed Files":["Dozwolone typy plików"],"Please wait...":["Proszę czekać..."],"Reports":[""],"Switch to %s":[""],"Per Day":[""],"Month":[""],"Download Reports":[""],"Loading":[""],"Settings":["Ustawienia"],"Because your server is running on nginx, our .htaccess file can't protect your downloads.":["Ponieważ Twój serwer używa nginx, nasz .htaccess nie będzie chronił pobrań."],"Please add the following rules to your nginx config to disable direct file access: %s":["Dodaj proszę następujące instrukcje do konfiguracji nginx, aby zabronić bezpośredniemu dostępowi do plików: %s"],"Download Monitor Transients successfully cleared!":[""],"Settings successfully saved":["Ustawienia zostały zapisane"],"Save Changes":["Zapisz zmiany"],"General":["Ogólne"],"Default Template":["Szablon domyślny"],"Choose which template is used for <code>[download]</code> shortcodes by default (this can be overridden by the <code>format</code> argument).":["Wybierz który szablon ma być użyty do wyświetlania kodów <code>[download]</code> (ustawienie można zmienić również poprzez użycie argumentu <code>format</code>)."],"Default - Title and count":["Domyślne - Tytuł i licznik"],"Button - CSS styled button showing title and count":["Przycisk - CSS button pokazujący tytuł i licznik"],"Box - Box showing thumbnail, title, count, filename and filesize.":["Pudełko - ramka pokazująca miniaturkę, tytuł, licznik, nazwę pliku i jego rozmiar."],"Filename - Filename and download count":["Nazwa pliku - Nazwa i licznik plików"],"Title - Shows download title only":["Tytuł - Pokazuje jedynie nazwę pliku do pliku"],"Version list - Lists all download versions in an unordered list":["Lista wersji - Wylicza wszystkie wersje pliku do pliku w postaci nieuporządkowanej listy"],"Custom template":["Własny szablon"],"Custom Template":["Własny szablon"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>button</code>, the <code>content-download-button.php</code> template will be used instead. You can add custom templates inside your theme folder.":["Jeśli pozostawisz to puste, użyty zostanie domyślny plik szablonu <code>content-download.php</code>. Jeśli wprowadzisz, np. <code>przycisk</code>, zostanie użyty plik <code>content-download-przycisk.php</code>. Własne szablony możesz dodawać w folderze ze skórką."],"X-Accel-Redirect / X-Sendfile":["X-Accel-Redirect / X-Sendfile"],"Enable":["Włącz"],"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be used to serve downloads instead of PHP (server requires <code>mod_xsendfile</code>).":["Jeśli ta opcja jest wspierana, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> mogą napędzać pobieranie plików zamiast zwykłego PHP (server musi mieć zainstalowany <code>mod_xsendfile</code>)."],"Prevent hotlinking":["Unikaj odnośników hotlink"],"If enabled, the download handler will check the PHP referer to see if it originated from your site and if not, redirect them to the homepage.":["Jeśli opcja jest włączone, mechanizm pobierania będzie sprawdzał nagłówek PHP referer dla sprawdzenia czy plik pochodzi z własnego źródła, jeśli nie to spowoduje przekierowanie na stronę główną."],"Allow Proxy IP Override":[""],"If enabled, Download Monitor will use the X_FORWARDED_FOR HTTP header set by proxies as the IP address. Note that anyone can set this header, making it less secure.":[""],"Endpoint":["Miejsce docelowe"],"download":["plik"],"Download Endpoint":["Miejsce docelowe plików"],"Define what endpoint should be used for download links. By default this will be <code>%s</code>.":["Zdefiniuj dokąd docelowo będą prowadzić linki do plików. Domyślnie jest to strona <code>%s</code>."],"Endpoint Value":["Wartość miejsca docelowego"],"Define what unique value should be used on the end of your endpoint to identify the downloadable file. e.g. ID would give a link like <code>%s</code>":["Zdefiniuj jaka wartość ma zostać użyta na końcu drogi pliku by zidentyfikować pobieralny plik. Na przykład ID stworzy link wyglądający tak: <code>%s</code>"],"Download ID":["ID pliku"],"Download slug":["Krótki opis pliku"],"Hashes":["Hash"],"MD5 hashes":["skróty MD5"],"Generate MD5 hash for uploaded files":["Generuj skrót MD5"],"SHA1 hashes":["skróty SHA1"],"Generate SHA1 hash for uploaded files":["Generuj skrót SHA1"],"SHA256 hashes":[""],"Generate SHA256 hash for uploaded files":[""],"Hashes can optionally be output via shortcodes, but may cause performance issues with large files.":["Skróty mogą być opcjonalnie prezentowane za pomocą kodów (shortcode), jednak w przypadku dużych plików może to spowodować problemy z wydajnością."],"CRC32B hashes":["skróty CRC32B"],"Generate CRC32B hash for uploaded files":["Generuj skrót CRC32B"],"Logging":["Rejestrowanie"],"Download Log":["Rejestr plików"],"Log download attempts, IP addresses and more.":["Rejestruj próby pobrania plików, adresy IP i więcej."],"Count unique IPs only":["Licz tylko unikalne IP"],"If enabled, the counter for each download will only increment and create a log entry once per IP address.":["Jeśli włączone, licznik pobrań będzie zwiększał się tylko raz na dany komputer."],"Access":["Dostęp"],"No Access Page":["Brak dostępu"],"Choose what page is displayed when the user has no access to a file. Don't forget to add the <code>[dlm_no_access]</code> shortcode to the page.":["Wybierz, która strona ma się wyświetlać gdy użytkownik nie ma dostępu do pliku. Nie zapomnij dodać skróconego kodu <code>[dlm_no_access]</code> na stronie."],"You do not have permission to access this download. %sGo to homepage%s":["Nie masz uprawnień by pobrać ten plik. %sPrzejdź do strony głównej%s"],"No access message":["Wiadomość o braku dostępu"],"The message that will be displayed to visitors when they don't have access to a file.":["Ta wiadomość pojawi się odwiedzającym, którzy nie mają dostępu do plików."],"Blacklist IPs":["Czarna lista IP"],"List IP Addresses to blacklist, 1 per line. Use IP/CIDR netmask format for ranges. IPv4 examples: <code>198.51.100.1</code> or <code>198.51.100.0/24</code>. IPv6 examples: <code>2001:db8::1</code> or <code>2001:db8::/32</code>.":["Lista IP do zablokowania, 1 w każdej linii. Użyj maski IP/CIDR żeby zablokować zakres adresów. Przykłady IPv4: <code>198.51.100.1</code> lub <code>198.51.100.0/24</code>. Przykłady IPv6: <code>2001:db8::1</code> lub <code>2001:db8::/32</code>."],"Blacklist user agents":["Roboty na czarnej liście"],"List browser user agents to blacklist, 1 per line. Partial matches are sufficient. Regex matching is allowed by surrounding the pattern with forward slashes, e.g. <code>/^Mozilla.+Googlebot/</code>":[""],"Misc":[""],"Remove Data on Uninstall?":[""],"Check this box if you would like to completely remove all Download Monitor data when the plugin is deleted.":[""],"Clear all transients":[""],"Remove all Download Monitor transients, this can solve version caching issues.":[""],"Select Page":["Wybierz stronę"],"Download Information":["Informacja o pobieraniu"],"Download Options":["Opcje pobierania"],"Downloadable Files/Versions":["Pliki/Wersje do pobrania"],"Short Description":["Krótki opis"],"URL":["URL"],"Shortcode":["Krótki kod WP"],"No download information for new downloads.":[""],"Mark this download as featured. Used by shortcodes and widgets.":["Oznacz ten plik jako polecany. Wykorzystują to kody shortcode i widgety."],"Only logged in users will be able to access the file via a download link if this is enabled.":["Tylko zalogowani użytkownicy będą mogli pobrać ten plik."],"Don't force download. If the <code>dlm_uploads</code> folder is protected you may need to move your file.":["Nie wymuszaj pobierania. Jeśli folder <code>dlm_uploads</code> jest zabezpieczony, przeniesienie pliku może być konieczne."],"Add file":["Dodaj plik"],"Close all":["Zamknij wszystko"],"Expand all":["Rozszerz wszystko"],"Documentation":[""],"Password Required":["Wymagane hasło"],"Download does not exist.":["Plik nie istnieje."],"Go to homepage &rarr;":["Przejdź na stronę główną &rarr;"],"Download Error":["Błąd pobierania"],"No file paths defined.":["Nie ustawiono ścieżek."],"Redirected to file":["Przekierowano do pliku"],"Redirected to remote file.":["Przekierowano do zdalnego pliku."],"File not found.":["Nie znaleziono pliku."],"No Access":["Brak dostępu"],"Legacy Upgrader":[""],"Download Monitor - Legacy Upgrade":[""],"Welcome to the Download Monitor Legacy Upgrader. On this page we will upgrade your old Download Monitor (legacy) data so it will work with the latest version. If you're on this page, it should mean that you updated to this version from Download Monitor %s. If you're unsure if this is correct, or you want to read more about the legacy upgrade, we've setup a page that will explain this process in a lot more detail. %sClick here%s if to view that page.":[""],"Version ID":["ID wersji"],"Filename":["Nazwa pliku"],"User ID":["ID użytkownika"],"User Login":["Login użytkownika"],"User Email":["E-mail użytkownika"],"User IP":["IP użytkownika"],"User Agent":["Agent użytkownika"],"Date":["Data"],"Status":["Status"],"Meta Data":[""],"Logs":["Rejestry"],"Download Logs":["Rejestry pobierań"],"Export CSV":["Eksportuj CSV"],"Are you sure you want to delete ALL log items?":[""],"Delete Logs":["Skasuj rejestry"],"Delete":["Usuń"],"Download Complete":["Pobieranie zakończone"],"%s ago":["%s temu"]," (v%s)":[" (v%s)"]," (v%s no longer exists)":[" (v%s już nie istnieje)"],"Download #%d (no longer exists)":["Plik #%d (już nie istnieje)"],"Non-member":["Zewnętrzny"],"User":["Użytkownik"],"IP Address":["Adres IP"],"Log entries deleted":["Wpisy w logu usunięte"],"Any status":["Dowolny status"],"Failed":["Nieudany"],"Redirected":["Przekierowany"],"Completed":["Zakończony"],"Show all dates":["Pokaż wszystkie"],"%1$s %2$d":["%1$s %2$d"],"Select a User":[""],"25 per page":["25 na stronę"],"50 per page":["50 na stronę"],"100 per page":["100 na stronę"],"200 per page":["200 na stronę"],"Show All":["Pokaż wszystkie"],"Filter":["Filtr"],"All Downloads":["Wszystkie pliki"],"Downloads":["Pliki do pobrania"],"Add New":["Dodaj nowy plik"],"Add Download":["Dodaj plik"],"Edit":["Edytuj"],"Edit Download":["Edytuj plik"],"New Download":["Nowe plik"],"View Download":["Obejrzyj plik"],"Search Downloads":["Szukaj plików"],"No Downloads found":["Nie znaleziono plików"],"No Downloads found in trash":["W koszu też nie znalazłem plików"],"Parent Download":["Pobranie nadrzędne"],"This is where you can create and manage downloads for your site.":["Tu możesz tworzyć i zarządzać plikami dla swojej strony."],"License successfully activated.":["Licencja aktywowana."],"<a href=\"%s\">Register your copy</a> of the <strong>%s</strong> extension to receive access to automatic upgrades and support. Need a license key? <a href=\"%s\" target=\"_blank\">Purchase one now</a>.":[""],"Download not found":["Nie znaleziono pliku"],"Download Categories":[""],"Download Category":["Kategoria plików"],"Search Download Categories":["Przeszukaj kategorie plików"],"All Download Categories":["Wszystkie kategorie plików"],"Parent Download Category":["Nadrzędna kategoria plików"],"Edit Download Category":["Edytuj kategorię plików"],"Update Download Category":["Aktualizuj kategorię plików"],"Add New Download Category":["Dodaj nową kategorię"],"New Download Category Name":["Nazwa nowej kategorii"],"Download Tags":[""],"Download Tag":["Tag pliku"],"Search Download Tags":["Przeszukaj tagi"],"All Download Tags":["Wszystkie tagi"],"Parent Download Tag":["Tag nadrzędny"],"Edit Download Tag":["Edytuj tag"],"Update Download Tag":["Aktualizuj tag"],"Add New Download Tag":["Dodaj nowy tag"],"New Download Tag Name":["Nazwa nowego tagu"],"Display a list of your downloads.":["Wyświetl listę plików do pliku."],"Downloads List":["Listy pobierania"],"Featured Downloads":["Wyróżnione pliki"],"Limit":["Limit"],"Output template":["Szablon wyjściowy"],"Default template":["Szablon domyślny:"],"Order by":["Sortuj wg"],"Random":["Losowo"],"Date added":["Daty dodania"],"Date modified":["Daty modyfikacji"],"Order":["Sortuj"],"ASC":["wstępująco"],"DESC":["zstępująco"],"Show only featured downloads":["Pokaż jedynie wyróżnione pliki"],"Show only members only downloads":["Pokaż jedynie pliki do pliku przez zalogowanych"],"1 download":["1 pobranie","%d pobrania","%d pobrań","%d pobrań"],"Version %s":["Wersja %s"],"Download File":["Pobierz plik"],"Download &ldquo;%s&rdquo;":["Pobierz &ldquo;%s&rdquo;"],"Downloaded 1 time":["Pobrano 1 raz","Pobrano %d razy","Pobrano %d razy","Pobrano %d razy"],"Download Monitor":["Monitor Pobierania"],"https://www.download-monitor.com":["https://www.download-monitor.com"],"A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.":["Kompletne rozwiązanie do zarządznia pobieraniem plików, monitorowaniem pobierania oraz udostępnianiem odnośników, a także informacjami o udostępnianych zasobach na Twojej stronie WordPress'a."],"Never5":["Never5"],"https://www.never5.com":["https://www.never5.com"],"Drop file here *or* select file\u0004or":["lub [ Upuść plik tutaj \"lub\" wskaż plik ]"]}}}
languages/download-monitor-pt_BR-dlm_gutenberg_blocks.json ADDED
@@ -0,0 +1 @@
 
1
+ {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n > 1);","lang":"pt_BR"},"Remove":["Apagar"],"Click to toggle":["Clique para alternar"],"Version <span class=\"version\">%s</span> (%s)":["Versão <span class=\"version\">%s</span> (%s)"],"n/a":["n/a"],"Downloaded %s time":["Baixado %s vez","Baixado %s vezes"],"Version":["Versão"],"File URL(s)":["URL(s) do Arquivo"],"Enter one file path/URL per line - multiple files will be used as mirrors (chosen at random).":["Insira um caminho/URL de arquivo por linha - vários arquivos serão usados como espelhos (escolhidos aleatoriamente)."],"Upload file":["Enviar Arquivo"],"Choose a file":["Escolher arquivo"],"Insert file URL":["Inserir URL do arquivo"],"Browse for file":["Pesquisar por um arquivo"],"Download count":["Contador do Download"],"File Date":["Data do Arquivo"],"h":["h"],"m":["m"],"It looks like you upgraded to the latest version of Download Monitor from a legacy version (3.x)":[""],"Currently your downloads don't work like they should, we need to %s before they'll work again.":[""],"upgrade your downloads":[""],"We've created an upgrading tool that will do all the work for you. You can read more about this tool on %sour website (click here)%s or start the upgrade now.":[""],"Take me to the Upgrade Tool":[""],"hide notice":[""],"Download Monitor Extensions":["Extensões do Download Monitor"],"Extensions":["Extensões"],"If you like %sDownload Monitor%s please leave us a %s★★★★★%s rating. A huge thank you from us in advance!":["Se você gosta do %sDownload Monitor%s por favor avalie-nos %scom cinco estrelas%s. Muito obrigado, antecipadamente!"],"Insert Download":["Inserir Download"],"Are you sure you want to delete this file ? ":["Tem certeza de que deseja excluir este arquivo?"],"Browse for a file":["Procurar por um arquivo"],"Select a category":["Selecione uma categoria"],"Download Monitor Data":["Dados do Monitor de Download"],"Featured download":["Download em destaque"],"Members only":["Somente membros"],"Redirect to file":["Redirecionar para arquivo"],"Image":["Imagem"],"Title":["Título"],"ID":["ID"],"File":["Arquivo"],"Categories":["Categorias de Download"],"Tags":["Tags de Download"],"Featured":["Destaque"],"Redirect only":["Somente redirecionar"],"Date posted":["Adicionado em"],"Yes":["Sim"],"Download title":["Título do download"],"Download updated.":["Download atualizado."],"Custom field updated.":["Campo personalizado atualizado."],"Custom field deleted.":["Campo personalizado apagado."],"Download restored to revision from %s":["Download restaurado da revisão %s"],"Download published.":["Download publicado."],"Download saved.":["Download salvo."],"Download submitted.":["Download enviado."],"Download scheduled for: <strong>%1$s</strong>.":["Download agendado para: <strong>%1$s</strong>."],"M j, Y @ G:i":["D, d/M/Y @ G:i"],"Download draft updated.":["Rascunho do download atualizado."],"Popular Downloads":["Downloads Populares"],"There are no stats available yet!":["Ainda não há estatísticas disponíveis!"],"Download":["Download"],"Extend Download Monitor with its powerful free and paid extensions. %sClick here to browse all extensions%s":["Melhore o Download Monitor com as suas extensões gratuitas ou pagas. %sClique aqui para ver todas as extensões%s"],"No files found":["Nenhum arquivo encontrado"],"Insert Shortcode":["Inserir Shortcode"],"Quick-add download":["Adicionar Download Rápido"],"Error: File was not created.":["Erro: O arquivo não foi criado."],"Download successfully created.":["Download criado com sucesso"],"Error: Download was not created.":["Erro: O download não foi criado."],"Search download":[""],"Choose a download":["Escolha um download"],"Template":["Modelo"],"Template Name":["Nome do Modelo"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>image</code>, the <code>content-download-image.php</code> template will be used instead.":["Deixando em branco será usado o arquivo padrão de template: <code>content-download.php</code>. Se você, por exemplo, inserir <code>image</code>, será usado o template <code>content-download-image.php</code>."],"Drop file here":["Solte o arquivo aqui"],"Select File":["Selecione o arquivo"],"Enter URL manually":["Insira a URL manualmente"],"Download URL":["URL de download:"],"Required URL":["URL Obrigatória"],"Download Title":["Título do Download"],"Required title":["Título Obrigatório"],"Optional version number":["Número da versão (opcional)"],"Save Download":["Salvar Download"],"Allowed Files":["Arquivos Permitidos"],"Please wait...":["Por favor, aguarde..."],"Reports":[""],"Switch to %s":[""],"Per Day":[""],"Month":[""],"Download Reports":[""],"Loading":[""],"Settings":["Configurações"],"Because your server is running on nginx, our .htaccess file can't protect your downloads.":["Porque o servidor está sendo executado em nginx, o arquivo. htaccess criado não pode proteger seus downloads."],"Please add the following rules to your nginx config to disable direct file access: %s":["Por favor, adicione as seguintes regras para a sua configuração do nginx para desabilitar o acesso direto a arquivos: %s"],"Download Monitor Transients successfully cleared!":[""],"Settings successfully saved":["Configurações salvas com sucesso"],"Save Changes":["Salvar Alterações"],"General":["Geral"],"Default Template":["Modelo padrão"],"Choose which template is used for <code>[download]</code> shortcodes by default (this can be overridden by the <code>format</code> argument).":["Escolha qual modelo será usado para shortcodes de <code>[download]</code> por padrão (isso pode ser substituído pelo argumento <code>format</code>)."],"Default - Title and count":["Padrão - Título e contador"],"Button - CSS styled button showing title and count":["Botão - Botão estilizado em CSS com título e contador"],"Box - Box showing thumbnail, title, count, filename and filesize.":["Caixa - Caixa com miniatura, título, contagem, nome e tamanho do arquivo."],"Filename - Filename and download count":["Nome do arquivo - Nome do arquivo e contador de download"],"Title - Shows download title only":["Título - Mostra apenas o título do download"],"Version list - Lists all download versions in an unordered list":["Lista de versões - Lista todas as versões de download numa lista não ordenada"],"Custom template":["Modelo personalizado"],"Custom Template":["Modelo Personalizado"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>button</code>, the <code>content-download-button.php</code> template will be used instead. You can add custom templates inside your theme folder.":[""],"X-Accel-Redirect / X-Sendfile":["X-Accel-Redirect / X-Sendfile"],"Enable":["Habilitar"],"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be used to serve downloads instead of PHP (server requires <code>mod_xsendfile</code>).":["Se suportado, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> pode ser usado para fornecer downloads ao invés do PHP (requer <code>mod_xsendfile</code> no servidor)."],"Prevent hotlinking":["Impedir hotlinking"],"If enabled, the download handler will check the PHP referer to see if it originated from your site and if not, redirect them to the homepage.":["Se habilitado, o gerenciador de download irá verificar o referer do PHP para ver se ele foi originado do seu site e, se não, irá redirecioná-los para a homepage."],"Allow Proxy IP Override":[""],"If enabled, Download Monitor will use the X_FORWARDED_FOR HTTP header set by proxies as the IP address. Note that anyone can set this header, making it less secure.":[""],"Endpoint":["Final de Links"],"download":["download"],"Download Endpoint":["Final de link do Download"],"Define what endpoint should be used for download links. By default this will be <code>%s</code>.":["Definirá qual será a extremidade final do link de download. Por padrão é usado como final: <code>download</code>, assim teremos como resultado: <code>%s</code>."],"Endpoint Value":["Valor do final de link"],"Define what unique value should be used on the end of your endpoint to identify the downloadable file. e.g. ID would give a link like <code>%s</code>":["Definirá qual valor exclusivo será usado na extremidade final para identificar o arquivo no link de download. Ex.: Usando o <code>ID do Download</code> teremos: <code>%s</code>"],"Download ID":["ID do Download"],"Download slug":["Slug do download"],"Hashes":["Hashes"],"MD5 hashes":["Hashes MD5"],"Generate MD5 hash for uploaded files":["Gerar hash MD5 para arquivos carregados"],"SHA1 hashes":["Hashes SHA1"],"Generate SHA1 hash for uploaded files":["Gerar hash SHA1 dos arquivos enviados"],"SHA256 hashes":[""],"Generate SHA256 hash for uploaded files":[""],"Hashes can optionally be output via shortcodes, but may cause performance issues with large files.":["Os hashes podem opcionalmente ser gerados via shortcodes, porém podem causar problemas de desempenho em arquivos grandes."],"CRC32B hashes":["Hashes CRC32B"],"Generate CRC32B hash for uploaded files":["Gerar hash CRC32B dos arquivos enviados"],"Logging":["Registro em Log"],"Download Log":["Log de Dowload"],"Log download attempts, IP addresses and more.":["Log com as tentativas de download, endereços de IP, data e outros."],"Count unique IPs only":["Conta apenas IPs únicos"],"If enabled, the counter for each download will only increment and create a log entry once per IP address.":["Se ativado, o contador de download só será incrementado e criará a respectiva entrada no registo uma vez para cada endereço de IP."],"Access":["Acesso"],"No Access Page":["Página Sem Acesso"],"Choose what page is displayed when the user has no access to a file. Don't forget to add the <code>[dlm_no_access]</code> shortcode to the page.":["Escolha a página que será exibida quando o usuário não tem acesso a um arquivo. Não se esqueça de adicionar o shortcode <code>[dlm_no_access]</code> para a página."],"You do not have permission to access this download. %sGo to homepage%s":["Você não tem permissão para acessar este download. %sVolte para homepage%s"],"No access message":["Mensagem Sem Acesso"],"The message that will be displayed to visitors when they don't have access to a file.":["Mensagem que será exibida para os visitantes quando eles não têm acesso a um arquivo."],"Blacklist IPs":["Lista Negra de IPs"],"List IP Addresses to blacklist, 1 per line. Use IP/CIDR netmask format for ranges. IPv4 examples: <code>198.51.100.1</code> or <code>198.51.100.0/24</code>. IPv6 examples: <code>2001:db8::1</code> or <code>2001:db8::/32</code>.":["Adiciona endereços IP na Lista Negra, um por linha. Use o formato de máscara de rede IP/CIDR para intervalos. Exemplos IPv4: <code>198.51.100.1</code> ou <code>198.51.100.0/24</code> . Exemplos IPv6: <code>2001:db8::1</code> ou <code>2001:db8::/32</code> ."],"Blacklist user agents":["Lista Negra dos agentes de usuário"],"List browser user agents to blacklist, 1 per line. Partial matches are sufficient. Regex matching is allowed by surrounding the pattern with forward slashes, e.g. <code>/^Mozilla.+Googlebot/</code>":[""],"Misc":[""],"Remove Data on Uninstall?":[""],"Check this box if you would like to completely remove all Download Monitor data when the plugin is deleted.":[""],"Clear all transients":[""],"Remove all Download Monitor transients, this can solve version caching issues.":[""],"Select Page":["Selecionar Página"],"Download Information":["Informações do download"],"Download Options":["Opções do Download"],"Downloadable Files/Versions":["Versões Disponível do Arquivo"],"Short Description":["Descrição Resumida"],"URL":["URL"],"Shortcode":["Shortcode"],"No download information for new downloads.":[""],"Mark this download as featured. Used by shortcodes and widgets.":["Marcará este download como em destaque. Usado por shortcodes e widgets."],"Only logged in users will be able to access the file via a download link if this is enabled.":["Apenas usuários registrados serão capazes de acessar o arquivo através de um link de download se a opção estiver habilitada."],"Don't force download. If the <code>dlm_uploads</code> folder is protected you may need to move your file.":["Não forçar download. Se a pasta <code>dlm_upload</code> estiver protegida, pode ser necessário mover seu arquivo."],"Add file":["Adicionar arquivo"],"Close all":["Fechar tudo"],"Expand all":["Expandir tudo"],"Documentation":[""],"Password Required":["Senha Obrigatória"],"Download does not exist.":["Download não existe."],"Go to homepage &rarr;":["Ir para página inicial &rarr;"],"Download Error":["Erro no Download"],"No file paths defined.":["Não há caminhos de arquivo definidos."],"Redirected to file":["Redirecionado para arquivo"],"Redirected to remote file.":["Redirecionado para arquivo remoto."],"File not found.":["Arquivo não encontrado."],"No Access":["Sem acesso"],"Legacy Upgrader":[""],"Download Monitor - Legacy Upgrade":[""],"Welcome to the Download Monitor Legacy Upgrader. On this page we will upgrade your old Download Monitor (legacy) data so it will work with the latest version. If you're on this page, it should mean that you updated to this version from Download Monitor %s. If you're unsure if this is correct, or you want to read more about the legacy upgrade, we've setup a page that will explain this process in a lot more detail. %sClick here%s if to view that page.":[""],"Version ID":["ID da Versão"],"Filename":["Nome do arquivo"],"User ID":["ID do Usuário"],"User Login":["Login do Usuário"],"User Email":["Email do Usuário"],"User IP":["IP do Usuário"],"User Agent":["Agente do Usuário"],"Date":["Data"],"Status":["Estado"],"Meta Data":[""],"Logs":["Logs de Download"],"Download Logs":["Baixar Logs"],"Export CSV":["Exportar para CSV"],"Are you sure you want to delete ALL log items?":[""],"Delete Logs":["Excluir os Logs"],"Delete":["Excluir"],"Download Complete":["Download Finalizado"],"%s ago":["%s atrás"]," (v%s)":[""]," (v%s no longer exists)":[""],"Download #%d (no longer exists)":["Download #%d (não existe mais)"],"Non-member":["Não-membro"],"User":["Usuário"],"IP Address":["Endereço IP"],"Log entries deleted":["Entradas de log eliminadas"],"Any status":["Qualquer estado"],"Failed":["Falhou"],"Redirected":["Redirecionado"],"Completed":["Concluído"],"Show all dates":["Mostrar todas as datas"],"%1$s %2$d":["%1$s %2$d"],"Select a User":[""],"25 per page":["25 por página"],"50 per page":["50 por página"],"100 per page":["100 por página"],"200 per page":["200 por página"],"Show All":["Mostrar Tudo"],"Filter":["Filtrar"],"All Downloads":["Todos os Downloads"],"Downloads":["Downloads"],"Add New":["Adicionar Novo"],"Add Download":["Adicionar Download"],"Edit":["Editar"],"Edit Download":["Editar Download"],"New Download":["Novo Download"],"View Download":["Visualizar Download"],"Search Downloads":["Procurar Downloads"],"No Downloads found":["Nenhum download encontrado"],"No Downloads found in trash":["Nenhum download encontrado na lixeira"],"Parent Download":["Download Pai"],"This is where you can create and manage downloads for your site.":["Aqui é onde você pode criar e gerenciar downloads para o seu site."],"License successfully activated.":["Licença ativada com sucesso."],"<a href=\"%s\">Register your copy</a> of the <strong>%s</strong> extension to receive access to automatic upgrades and support. Need a license key? <a href=\"%s\" target=\"_blank\">Purchase one now</a>.":[""],"Download not found":["Download não encontrado."],"Download Categories":[""],"Download Category":["Categoria de Download"],"Search Download Categories":["Procurar as Categorias de Download"],"All Download Categories":["Todas as Categorias"],"Parent Download Category":["Pai da Categoria de Download"],"Edit Download Category":["Editar a Categoria de Download"],"Update Download Category":["Atualizar as Categorias de Download"],"Add New Download Category":["Nova Categoria de Download"],"New Download Category Name":["Nome da Nova Categoria de Download"],"Download Tags":[""],"Download Tag":["Tag de Download"],"Search Download Tags":["Procurar Tags de Download"],"All Download Tags":["Todas as Tags de Download"],"Parent Download Tag":["Pai da Tag de Download"],"Edit Download Tag":["Editar Tag de Download"],"Update Download Tag":["Atualizar Tag de Download"],"Add New Download Tag":["Adicionar Nova Tag de Download"],"New Download Tag Name":["Nome da Nova Tag de Download"],"Display a list of your downloads.":["Mostra uma lista dos seus downloads."],"Downloads List":["Lista de Downloads"],"Featured Downloads":["Downloads em Destaque"],"Limit":["Limite"],"Output template":["Modelo de saída"],"Default template":["Modelo padrão"],"Order by":["Ordenar por"],"Random":["Aleatório"],"Date added":["Data de upload"],"Date modified":["Data de modificação"],"Order":["Ordenar"],"ASC":["ASC"],"DESC":["DESC"],"Show only featured downloads":["Mostrar apenas os downloads em destaque"],"Show only members only downloads":["Mostrar apenas os downloads dos membros"],"1 download":["1 download","%d downloads"],"Version %s":["Versão %s"],"Download File":["Baixar Arquivo"],"Download &ldquo;%s&rdquo;":["Download &ldquo;%s&rdquo;"],"Downloaded 1 time":["Baixado uma vez","Baixado %d vezes"],"Download Monitor":["Download Monitor"],"https://www.download-monitor.com":["https://www.download-monitor.com"],"A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.":["Uma solução completa para o gerenciamento, monitoramento dos downloads, dos links de saída e informações do arquivo fornecido em seu site WordPress."],"Never5":["Never5"],"https://www.never5.com":["https://www.never5.com"],"Drop file here *or* select file\u0004or":["ou"]}}}
languages/download-monitor-pt_BR.po CHANGED
@@ -1,7 +1,7 @@
1
  # Copyright (C) 2017 Never5
2
  # This file is distributed under the GPL v3.
3
  # Translators:
4
- # Anderson Silva <contato.winamp.br@gmail.com>, 2014
5
  # Barry Kooij <mail@barrykooij.nl>, 2015
6
  msgid ""
7
  msgstr ""
1
  # Copyright (C) 2017 Never5
2
  # This file is distributed under the GPL v3.
3
  # Translators:
4
+ # Anderson Silva <inactive+AndersonSilva@transifex.com>, 2014
5
  # Barry Kooij <mail@barrykooij.nl>, 2015
6
  msgid ""
7
  msgstr ""
languages/download-monitor-pt_PT-dlm_gutenberg_blocks.json ADDED
@@ -0,0 +1 @@
 
1
+ {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"pt_PT"},"Remove":["Remover"],"Click to toggle":["Clique para alternar"],"Version <span class=\"version\">%s</span> (%s)":["Versão <span class=\"version\">%s</span> (%s)"],"n/a":["n/d"],"Downloaded %s time":["Descarregado %s vez","Descarregado %s vezes"],"Version":["Versão"],"File URL(s)":["URL do(s) ficheiro(s)"],"Enter one file path/URL per line - multiple files will be used as mirrors (chosen at random).":["Introduza um ficheiro/URL por linha - múltiplos ficheiros serão utilizados como mirrors (escolhidos aleatoriamente)"],"Upload file":["Carregar ficheiro"],"Choose a file":["Escolher um ficheiro"],"Insert file URL":["Inserir URL do ficheiro"],"Browse for file":["Pesquisar por ficheiro"],"Download count":["Contagem de descarregamentos"],"File Date":["Data do ficheiro"],"h":["h"],"m":["m"],"It looks like you upgraded to the latest version of Download Monitor from a legacy version (3.x)":[""],"Currently your downloads don't work like they should, we need to %s before they'll work again.":[""],"upgrade your downloads":[""],"We've created an upgrading tool that will do all the work for you. You can read more about this tool on %sour website (click here)%s or start the upgrade now.":[""],"Take me to the Upgrade Tool":[""],"hide notice":[""],"Download Monitor Extensions":["Extensões do Download Monitor"],"Extensions":["Extensões"],"If you like %sDownload Monitor%s please leave us a %s★★★★★%s rating. A huge thank you from us in advance!":["Se gosta do %sDownload Monitor%s por favor avalie-nos com %s★★★★★%s. Desde já, muito obrigado!"],"Insert Download":["Inserir descarregamento"],"Are you sure you want to delete this file ? ":["Tem a certeza que quer eliminar este ficheiro?"],"Browse for a file":["Pesquisar por um ficheiro"],"Select a category":["Seleccionar uma categoria"],"Download Monitor Data":["Dados do Download Monitor"],"Featured download":["Descarregamento em destaque"],"Members only":["Apenas para membros"],"Redirect to file":["Redireccionar para ficheiro"],"Image":["Imagem"],"Title":["Título"],"ID":["ID"],"File":["Ficheiro"],"Categories":["Categorias"],"Tags":["Etiquetas"],"Featured":["Em destaque"],"Redirect only":["Apenas para redireccionamento"],"Date posted":["Publicado em"],"Yes":["Sim"],"Download title":["Título do descarregamento"],"Download updated.":["Descarregamento actualizado."],"Custom field updated.":["Campo personalizado actualizado."],"Custom field deleted.":["Campo personalizado eliminado."],"Download restored to revision from %s":["Descarregamento restaurado para a revisão %s"],"Download published.":["Descarregamento publicado."],"Download saved.":["Descarregamento guardado."],"Download submitted.":["Descarregamento submetido."],"Download scheduled for: <strong>%1$s</strong>.":["Descarregamento agendado para: <strong>%1$s</strong>."],"M j, Y @ G:i":["j de F de Y @ G:i"],"Download draft updated.":["Rascunho do descarregamento actualizado."],"Popular Downloads":["Descarregamentos populares"],"There are no stats available yet!":["Ainda não há estatísticas disponíveis!"],"Download":["Descarregamento"],"Extend Download Monitor with its powerful free and paid extensions. %sClick here to browse all extensions%s":["Melhore o Download Monitor com as suas poderosas extensões gratuitas e pagas. %sClique aqui para ver todas as extensões%s"],"No files found":["Nenhum ficheiro encontrado"],"Insert Shortcode":["Inserir shortcode"],"Quick-add download":["Adicionar descarregamento rapidamente"],"Error: File was not created.":["Erro: o ficheiro não foi criado."],"Download successfully created.":["Descarregamento criado com sucesso."],"Error: Download was not created.":["Erro: o descarregamento não foi criado."],"Search download":[""],"Choose a download":["Escolher um descarregamento"],"Template":["Modelo"],"Template Name":["Nome do modelo"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>image</code>, the <code>content-download-image.php</code> template will be used instead.":["Ao deixar isto em branco, será usado o ficheiro de modelo por omissão <code>content-download.php</code>. Se inserir, por exemplo, <code>image</code>, será usado o modelo <code>content-download-image.php</code>."],"Drop file here":["Largue o ficheiro aqui"],"Select File":["Seleccione ficheiro"],"Enter URL manually":["Introduza o URL manualmente"],"Download URL":["URL do descarregamento"],"Required URL":["URL obrigatório"],"Download Title":["Título do descarregamento"],"Required title":["Título obrigatório"],"Optional version number":["Número de versão opcional"],"Save Download":["Guardar descarregamento"],"Allowed Files":["Ficheiros permitidos"],"Please wait...":["Por favor aguarde..."],"Reports":[""],"Switch to %s":[""],"Per Day":[""],"Month":[""],"Download Reports":[""],"Loading":[""],"Settings":["Definições"],"Because your server is running on nginx, our .htaccess file can't protect your downloads.":["Como o seu servidor está funcionar em ngix, o nosso ficheiro .htaccess não pode proteger os seus descarregamentos."],"Please add the following rules to your nginx config to disable direct file access: %s":["Por favor adicione as seguintes regras à sua configuração do ngix para desactivar o acesso directo aos ficheiros: %s"],"Download Monitor Transients successfully cleared!":[""],"Settings successfully saved":["Definições guardadas com sucesso"],"Save Changes":["Guardar alterações"],"General":["Geral"],"Default Template":["Modelo por omissão"],"Choose which template is used for <code>[download]</code> shortcodes by default (this can be overridden by the <code>format</code> argument).":["Escolha o modelo a utilizar por omissão nos shortcodes <code>[download]</code> (isto pode ser sobreposto pelo argumento <code>format</code>)."],"Default - Title and count":["Por omissão - Título e contagem"],"Button - CSS styled button showing title and count":["Botão - Botão com título e contagem com estilo CSS"],"Box - Box showing thumbnail, title, count, filename and filesize.":["Caixa - Caixa com miniatura, título, contagem, nome e tamanho do ficheiro."],"Filename - Filename and download count":["Nome do ficheiro - Nome do ficheiro e contagem de descarregamentos"],"Title - Shows download title only":["Título - Mostra apenas o título do descarregamento"],"Version list - Lists all download versions in an unordered list":["Lista de versões - Lista todas as versões do descarregamento numa lista não ordenada"],"Custom template":["Modelo personalizado"],"Custom Template":["Modelo personalizado"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>button</code>, the <code>content-download-button.php</code> template will be used instead. You can add custom templates inside your theme folder.":[""],"X-Accel-Redirect / X-Sendfile":["X-Accel-Redirect / X-Sendfile"],"Enable":["Activar"],"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be used to serve downloads instead of PHP (server requires <code>mod_xsendfile</code>).":["Se suportado, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> pode ser usado para servir descarregamentos em vez do PHP (o servidor precisa de <code>mod_xsendfile</code>)."],"Prevent hotlinking":["Impedir hotlinking"],"If enabled, the download handler will check the PHP referer to see if it originated from your site and if not, redirect them to the homepage.":["Se activado, o gestor do descarregamento verifica se a referência PHP é originada no seu site ou não, redireccionando para a página inicial."],"Allow Proxy IP Override":[""],"If enabled, Download Monitor will use the X_FORWARDED_FOR HTTP header set by proxies as the IP address. Note that anyone can set this header, making it less secure.":[""],"Endpoint":["Endpoint"],"download":["descarregamento"],"Download Endpoint":["Endpoint de descarregamentos"],"Define what endpoint should be used for download links. By default this will be <code>%s</code>.":["Define que endpoint deverá ser utilizado em ligações para descarregar. Por omissão será <code>%s</code>."],"Endpoint Value":["Valor do endpoint"],"Define what unique value should be used on the end of your endpoint to identify the downloadable file. e.g. ID would give a link like <code>%s</code>":["Defina que valor único deverá ser usado na terminação do seu endpoint para identificar o ficheiro para descarregar. Por exemplo: ID gera uma ligação <code>%s</code>"],"Download ID":["ID do descarregamento"],"Download slug":["Slug do descarregamento"],"Hashes":["Hashes"],"MD5 hashes":["Hashes MD5"],"Generate MD5 hash for uploaded files":["Gera hash MD5 para ficheiros carregados"],"SHA1 hashes":["Hashes SHA1"],"Generate SHA1 hash for uploaded files":["Gera hash SHA1 para ficheiros carregados"],"SHA256 hashes":[""],"Generate SHA256 hash for uploaded files":[""],"Hashes can optionally be output via shortcodes, but may cause performance issues with large files.":["Opcionalmente pode mostrar as hashes através de shortcodes, mas pode causar problemas de performance com ficheiros de grande dimensão."],"CRC32B hashes":["Hashes CRC32B"],"Generate CRC32B hash for uploaded files":["Gera hash CRC32B para ficheiros carregados"],"Logging":["Registo"],"Download Log":["Registo de descarregamentos"],"Log download attempts, IP addresses and more.":["Regista tentativas de descarregar, endereços de IP e mais informações."],"Count unique IPs only":["Contar apenas IPs únicos"],"If enabled, the counter for each download will only increment and create a log entry once per IP address.":["Se activado, o contador de cada descarregamento só será incrementado e criada a respectiva entrada de registo, uma vez para cada endereço de IP."],"Access":["Acesso"],"No Access Page":["Página para acesso negado"],"Choose what page is displayed when the user has no access to a file. Don't forget to add the <code>[dlm_no_access]</code> shortcode to the page.":["Escolha a página a mostrar quando um utilizador não tem acesso a um ficheiro. Não se esqueça de adicionar o shortcode <code>[dlm_no_access]</code> na página."],"You do not have permission to access this download. %sGo to homepage%s":["Não tem permissão para aceder a este descarregamento. %sVoltar para a página inicial%s"],"No access message":["Mensagem para acesso negado"],"The message that will be displayed to visitors when they don't have access to a file.":["A mensagem que será mostrada aos visitantes quando estes não têm acesso a um ficheiro."],"Blacklist IPs":["Lista negra de IPs"],"List IP Addresses to blacklist, 1 per line. Use IP/CIDR netmask format for ranges. IPv4 examples: <code>198.51.100.1</code> or <code>198.51.100.0/24</code>. IPv6 examples: <code>2001:db8::1</code> or <code>2001:db8::/32</code>.":["Adicione endereços IP à lista negra, 1 por linha. Use formato de máscara IP/CIDR para agregar. Exemplos IPv4: <code>198.51.100.1</code> ou <code>198.51.100.0/24</code>. Exemplos IPv6: <code>2001:db8::1</code> ou <code>2001:db8::/32</code>."],"Blacklist user agents":["Lista negra de agentes do utilizador"],"List browser user agents to blacklist, 1 per line. Partial matches are sufficient. Regex matching is allowed by surrounding the pattern with forward slashes, e.g. <code>/^Mozilla.+Googlebot/</code>":[""],"Misc":[""],"Remove Data on Uninstall?":[""],"Check this box if you would like to completely remove all Download Monitor data when the plugin is deleted.":[""],"Clear all transients":[""],"Remove all Download Monitor transients, this can solve version caching issues.":[""],"Select Page":["Seleccionar página"],"Download Information":["Informações do descarregamento"],"Download Options":["Opções do descarregamento"],"Downloadable Files/Versions":["Ficheiros/versões disponíveis para descarregar"],"Short Description":["Descrição breve"],"URL":["URL"],"Shortcode":["Shortcode"],"No download information for new downloads.":[""],"Mark this download as featured. Used by shortcodes and widgets.":["Marque este descarregamento como destaque. Utilizado por shortcodes e widgets."],"Only logged in users will be able to access the file via a download link if this is enabled.":["Se esta opção estiver activa, apenas utilizadores com sessão iniciada terão acesso ao ficheiro através da ligação para descarregar."],"Don't force download. If the <code>dlm_uploads</code> folder is protected you may need to move your file.":["Não forçar o descarregamento. Se a pasta <code>dlm_uploads</code> estiver protegida, poderá ter que mover o seu ficheiro."],"Add file":["Adicionar ficheiro"],"Close all":["Fechar todas"],"Expand all":["Expandir todas"],"Documentation":[""],"Password Required":["Senha necessária"],"Download does not exist.":["Descarregamento não existe."],"Go to homepage &rarr;":["Ir para página inicial &rarr;"],"Download Error":["Erro ao descarregar"],"No file paths defined.":["Nenhum caminho de ficheiros definido."],"Redirected to file":["Redireccionado para ficheiro"],"Redirected to remote file.":["Redireccionado para ficheiro remoto."],"File not found.":["Ficheiro não encontrado."],"No Access":["Sem acesso"],"Legacy Upgrader":[""],"Download Monitor - Legacy Upgrade":[""],"Welcome to the Download Monitor Legacy Upgrader. On this page we will upgrade your old Download Monitor (legacy) data so it will work with the latest version. If you're on this page, it should mean that you updated to this version from Download Monitor %s. If you're unsure if this is correct, or you want to read more about the legacy upgrade, we've setup a page that will explain this process in a lot more detail. %sClick here%s if to view that page.":[""],"Version ID":["ID da versão"],"Filename":["Nome do ficheiro"],"User ID":["ID do utilizador"],"User Login":["Nome do utilizador"],"User Email":["Email do utilizador"],"User IP":["IP do utilizador"],"User Agent":["Agente do utilizador"],"Date":["Data"],"Status":["Estado"],"Meta Data":[""],"Logs":["Registos"],"Download Logs":["Registos dos descarregamentos"],"Export CSV":["Exportar CSV"],"Are you sure you want to delete ALL log items?":[""],"Delete Logs":["Eliminar registos"],"Delete":["Eliminar"],"Download Complete":["Descarregamento concluído"],"%s ago":["Há %s"]," (v%s)":[" (v%s)"]," (v%s no longer exists)":[" (v%s já não existe)"],"Download #%d (no longer exists)":["Descarregamento #%d (já não existe)"],"Non-member":["Não membro"],"User":["Utilizador"],"IP Address":["Endereço de IP"],"Log entries deleted":["Entradas de registo eliminadas"],"Any status":["Qualquer estado"],"Failed":["Falhado"],"Redirected":["Redireccionado"],"Completed":["Concluído"],"Show all dates":["Mostrar todas as datas"],"%1$s %2$d":["%1$s %2$d"],"Select a User":[""],"25 per page":["25 por página"],"50 per page":["50 por página"],"100 per page":["100 por página"],"200 per page":["200 por página"],"Show All":["Mostrar tudo"],"Filter":["Filtrar"],"All Downloads":["Todos os descarregamentos"],"Downloads":["Descarregamentos"],"Add New":["Adicionar novo"],"Add Download":["Adicionar descarregamento"],"Edit":["Editar"],"Edit Download":["Editar descarregamento"],"New Download":["Novo descarregamento"],"View Download":["Ver descarregamento"],"Search Downloads":["Pesquisar descarregamentos"],"No Downloads found":["Nenhum descarregamento encontrado"],"No Downloads found in trash":["Nenhum descarregamento encontrado no lixo"],"Parent Download":["Descarregamento superior"],"This is where you can create and manage downloads for your site.":["Aqui é onde poderá criar e gerir descarregamentos para o seu site."],"License successfully activated.":["A licença foi activada com sucesso."],"<a href=\"%s\">Register your copy</a> of the <strong>%s</strong> extension to receive access to automatic upgrades and support. Need a license key? <a href=\"%s\" target=\"_blank\">Purchase one now</a>.":[""],"Download not found":["Descarregamento não encontrado"],"Download Categories":[""],"Download Category":["Categoria de descarregamento"],"Search Download Categories":["Pesquisar categorias de descarregamentos"],"All Download Categories":["Todas as categorias de descarregamentos"],"Parent Download Category":["Categoria de descarregamento superior"],"Edit Download Category":["Editar categoria de descarregamento"],"Update Download Category":["Actualizar categoria de descarregamento"],"Add New Download Category":["Adicionar nova categoria de descarregamento"],"New Download Category Name":["Nome da nova categoria de descarregamento"],"Download Tags":[""],"Download Tag":["Etiqueta de descarregamento"],"Search Download Tags":["Pesquisar etiquetas de descarregamentos"],"All Download Tags":["Todas as etiquetas de descarregamentos"],"Parent Download Tag":["Etiqueta de descarregamento superior"],"Edit Download Tag":["Editar etiqueta de descarregamento"],"Update Download Tag":["Actualizar etiqueta de descarregamento"],"Add New Download Tag":["Adicionar nova etiqueta de descarregamento"],"New Download Tag Name":["Nome da nova etiqueta de descarregamento"],"Display a list of your downloads.":["Mostra uma lista dos seus descarregamentos."],"Downloads List":["Lista de descarregamentos"],"Featured Downloads":["Descarregamentos em destaque"],"Limit":["Limite"],"Output template":["Modelo de apresentação"],"Default template":["Modelo por omissão"],"Order by":["Ordenar por"],"Random":["Aleatório"],"Date added":["Adicionado em"],"Date modified":["Modificado em"],"Order":["Ordem"],"ASC":["Ascendente"],"DESC":["Descendente"],"Show only featured downloads":["Mostrar apenas descarregamentos em destaque"],"Show only members only downloads":["Mostrar apenas descarregamentos para membros"],"1 download":["1 descarregamento","%d descarregamentos"],"Version %s":["Versão %s"],"Download File":["Descarregar ficheiro"],"Download &ldquo;%s&rdquo;":["Descarregar &ldquo;%s&rdquo;"],"Downloaded 1 time":["Descarregado 1 vez","Descarregado %d vezes"],"Download Monitor":["Download Monitor"],"https://www.download-monitor.com":["https://www.download-monitor.com"],"A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.":["Uma solução completa para a gestão das descarregamentos de ficheiros, informações dos ficheiros, monitorização das ligações e descarregamentos do seu site WordPress."],"Never5":["Never5"],"https://www.never5.com":["https://www.never5.com"],"Drop file here *or* select file\u0004or":["ou"]}}}
languages/download-monitor-ru_RU-dlm_gutenberg_blocks.json ADDED
@@ -0,0 +1 @@
 
1
+ {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);","lang":"ru_RU"},"Remove":[""],"Click to toggle":[""],"Version <span class=\"version\">%s</span> (%s)":[""],"n/a":[""],"Downloaded %s time":["","Downloaded %s times","Downloaded %s times","Downloaded %s times"],"Version":[""],"File URL(s)":[""],"Enter one file path/URL per line - multiple files will be used as mirrors (chosen at random).":[""],"Upload file":[""],"Choose a file":[""],"Insert file URL":[""],"Browse for file":[""],"Download count":[""],"File Date":[""],"h":[""],"m":[""],"It looks like you upgraded to the latest version of Download Monitor from a legacy version (3.x)":[""],"Currently your downloads don't work like they should, we need to %s before they'll work again.":[""],"upgrade your downloads":[""],"We've created an upgrading tool that will do all the work for you. You can read more about this tool on %sour website (click here)%s or start the upgrade now.":[""],"Take me to the Upgrade Tool":[""],"hide notice":[""],"Download Monitor Extensions":[""],"Extensions":[""],"If you like %sDownload Monitor%s please leave us a %s★★★★★%s rating. A huge thank you from us in advance!":[""],"Insert Download":[""],"Are you sure you want to delete this file ? ":[""],"Browse for a file":[""],"Select a category":[""],"Download Monitor Data":[""],"Featured download":[""],"Members only":[""],"Redirect to file":[""],"Image":[""],"Title":[""],"ID":[""],"File":[""],"Categories":[""],"Tags":[""],"Featured":[""],"Redirect only":[""],"Date posted":[""],"Yes":[""],"Download title":[""],"Download updated.":[""],"Custom field updated.":[""],"Custom field deleted.":[""],"Download restored to revision from %s":[""],"Download published.":[""],"Download saved.":[""],"Download submitted.":[""],"Download scheduled for: <strong>%1$s</strong>.":[""],"M j, Y @ G:i":[""],"Download draft updated.":[""],"Popular Downloads":[""],"There are no stats available yet!":[""],"Download":[""],"Extend Download Monitor with its powerful free and paid extensions. %sClick here to browse all extensions%s":[""],"No files found":[""],"Insert Shortcode":[""],"Quick-add download":[""],"Error: File was not created.":[""],"Download successfully created.":[""],"Error: Download was not created.":[""],"Search download":[""],"Choose a download":[""],"Template":[""],"Template Name":[""],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>image</code>, the <code>content-download-image.php</code> template will be used instead.":[""],"Drop file here":[""],"Select File":[""],"Enter URL manually":[""],"Download URL":[""],"Required URL":[""],"Download Title":[""],"Required title":[""],"Optional version number":[""],"Save Download":[""],"Allowed Files":[""],"Please wait...":[""],"Reports":[""],"Switch to %s":[""],"Per Day":[""],"Month":[""],"Download Reports":[""],"Loading":[""],"Settings":[""],"Because your server is running on nginx, our .htaccess file can't protect your downloads.":[""],"Please add the following rules to your nginx config to disable direct file access: %s":[""],"Download Monitor Transients successfully cleared!":[""],"Settings successfully saved":[""],"Save Changes":[""],"General":[""],"Default Template":[""],"Choose which template is used for <code>[download]</code> shortcodes by default (this can be overridden by the <code>format</code> argument).":[""],"Default - Title and count":[""],"Button - CSS styled button showing title and count":[""],"Box - Box showing thumbnail, title, count, filename and filesize.":[""],"Filename - Filename and download count":[""],"Title - Shows download title only":[""],"Version list - Lists all download versions in an unordered list":[""],"Custom template":[""],"Custom Template":[""],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>button</code>, the <code>content-download-button.php</code> template will be used instead. You can add custom templates inside your theme folder.":[""],"X-Accel-Redirect / X-Sendfile":[""],"Enable":[""],"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be used to serve downloads instead of PHP (server requires <code>mod_xsendfile</code>).":[""],"Prevent hotlinking":[""],"If enabled, the download handler will check the PHP referer to see if it originated from your site and if not, redirect them to the homepage.":[""],"Allow Proxy IP Override":[""],"If enabled, Download Monitor will use the X_FORWARDED_FOR HTTP header set by proxies as the IP address. Note that anyone can set this header, making it less secure.":[""],"Endpoint":[""],"download":[""],"Download Endpoint":[""],"Define what endpoint should be used for download links. By default this will be <code>%s</code>.":[""],"Endpoint Value":[""],"Define what unique value should be used on the end of your endpoint to identify the downloadable file. e.g. ID would give a link like <code>%s</code>":[""],"Download ID":[""],"Download slug":[""],"Hashes":[""],"MD5 hashes":[""],"Generate MD5 hash for uploaded files":[""],"SHA1 hashes":[""],"Generate SHA1 hash for uploaded files":[""],"SHA256 hashes":[""],"Generate SHA256 hash for uploaded files":[""],"Hashes can optionally be output via shortcodes, but may cause performance issues with large files.":[""],"CRC32B hashes":[""],"Generate CRC32B hash for uploaded files":[""],"Logging":[""],"Download Log":[""],"Log download attempts, IP addresses and more.":[""],"Count unique IPs only":[""],"If enabled, the counter for each download will only increment and create a log entry once per IP address.":[""],"Access":[""],"No Access Page":[""],"Choose what page is displayed when the user has no access to a file. Don't forget to add the <code>[dlm_no_access]</code> shortcode to the page.":[""],"You do not have permission to access this download. %sGo to homepage%s":[""],"No access message":[""],"The message that will be displayed to visitors when they don't have access to a file.":[""],"Blacklist IPs":[""],"List IP Addresses to blacklist, 1 per line. Use IP/CIDR netmask format for ranges. IPv4 examples: <code>198.51.100.1</code> or <code>198.51.100.0/24</code>. IPv6 examples: <code>2001:db8::1</code> or <code>2001:db8::/32</code>.":[""],"Blacklist user agents":[""],"List browser user agents to blacklist, 1 per line. Partial matches are sufficient. Regex matching is allowed by surrounding the pattern with forward slashes, e.g. <code>/^Mozilla.+Googlebot/</code>":[""],"Misc":[""],"Remove Data on Uninstall?":[""],"Check this box if you would like to completely remove all Download Monitor data when the plugin is deleted.":[""],"Clear all transients":[""],"Remove all Download Monitor transients, this can solve version caching issues.":[""],"Select Page":[""],"Download Information":[""],"Download Options":[""],"Downloadable Files/Versions":[""],"Short Description":[""],"URL":[""],"Shortcode":[""],"No download information for new downloads.":[""],"Mark this download as featured. Used by shortcodes and widgets.":[""],"Only logged in users will be able to access the file via a download link if this is enabled.":[""],"Don't force download. If the <code>dlm_uploads</code> folder is protected you may need to move your file.":[""],"Add file":[""],"Close all":[""],"Expand all":[""],"Documentation":[""],"Password Required":[""],"Download does not exist.":[""],"Go to homepage &rarr;":[""],"Download Error":[""],"No file paths defined.":[""],"Redirected to file":[""],"Redirected to remote file.":[""],"File not found.":[""],"No Access":[""],"Legacy Upgrader":[""],"Download Monitor - Legacy Upgrade":[""],"Welcome to the Download Monitor Legacy Upgrader. On this page we will upgrade your old Download Monitor (legacy) data so it will work with the latest version. If you're on this page, it should mean that you updated to this version from Download Monitor %s. If you're unsure if this is correct, or you want to read more about the legacy upgrade, we've setup a page that will explain this process in a lot more detail. %sClick here%s if to view that page.":[""],"Version ID":[""],"Filename":[""],"User ID":[""],"User Login":[""],"User Email":[""],"User IP":[""],"User Agent":[""],"Date":[""],"Status":[""],"Meta Data":[""],"Logs":[""],"Download Logs":[""],"Export CSV":[""],"Are you sure you want to delete ALL log items?":[""],"Delete Logs":[""],"Delete":[""],"Download Complete":[""],"%s ago":[""]," (v%s)":[""]," (v%s no longer exists)":[""],"Download #%d (no longer exists)":[""],"Non-member":[""],"User":[""],"IP Address":[""],"Log entries deleted":[""],"Any status":[""],"Failed":[""],"Redirected":[""],"Completed":[""],"Show all dates":[""],"%1$s %2$d":[""],"Select a User":[""],"25 per page":[""],"50 per page":[""],"100 per page":[""],"200 per page":[""],"Show All":[""],"Filter":[""],"All Downloads":[""],"Downloads":[""],"Add New":[""],"Add Download":[""],"Edit":[""],"Edit Download":[""],"New Download":[""],"View Download":[""],"Search Downloads":[""],"No Downloads found":[""],"No Downloads found in trash":[""],"Parent Download":[""],"This is where you can create and manage downloads for your site.":[""],"License successfully activated.":[""],"<a href=\"%s\">Register your copy</a> of the <strong>%s</strong> extension to receive access to automatic upgrades and support. Need a license key? <a href=\"%s\" target=\"_blank\">Purchase one now</a>.":[""],"Download not found":[""],"Download Categories":[""],"Download Category":[""],"Search Download Categories":[""],"All Download Categories":[""],"Parent Download Category":[""],"Edit Download Category":[""],"Update Download Category":[""],"Add New Download Category":[""],"New Download Category Name":[""],"Download Tags":[""],"Download Tag":[""],"Search Download Tags":[""],"All Download Tags":[""],"Parent Download Tag":[""],"Edit Download Tag":[""],"Update Download Tag":[""],"Add New Download Tag":[""],"New Download Tag Name":[""],"Display a list of your downloads.":[""],"Downloads List":[""],"Featured Downloads":[""],"Limit":[""],"Output template":[""],"Default template":[""],"Order by":[""],"Random":[""],"Date added":[""],"Date modified":[""],"Order":[""],"ASC":[""],"DESC":[""],"Show only featured downloads":[""],"Show only members only downloads":[""],"1 download":["","%d downloads","%d downloads","%d downloads"],"Version %s":[""],"Download File":[""],"Download &ldquo;%s&rdquo;":[""],"Downloaded 1 time":["","Downloaded %d times","Downloaded %d times","Downloaded %d times"],"Download Monitor":[""],"https://www.download-monitor.com":[""],"A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.":[""],"Never5":[""],"https://www.never5.com":[""],"Drop file here *or* select file\u0004or":[""]}}}
languages/download-monitor-sk_SK-dlm_gutenberg_blocks.json ADDED
@@ -0,0 +1 @@
 
1
+ {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);","lang":"sk_SK"},"Remove":["Odstrániť"],"Click to toggle":["Klikom prepnúť"],"Version <span class=\"version\">%s</span> (%s)":["Verzia <span class=\"version\">%s</span> (%s)"],"n/a":["nezadané"],"Downloaded %s time":["Stiahnuté raz","Stiahnuté %s razy","Stiahnuté %s krát","Stiahnuté %s krát"],"Version":["Verzia"],"File URL(s)":["URL odkaz/-y súboru"],"Enter one file path/URL per line - multiple files will be used as mirrors (chosen at random).":["Na každý riadok vložte po jednom odkaze – viac súborov sa použijú ako ďalšie zdroje (náhodným výberom)."],"Upload file":["Nahrať súbor"],"Choose a file":["Vyberte súbor"],"Insert file URL":["Zadajte URL adresu k súboru"],"Browse for file":["Súbor z disku"],"Download count":["Počet stiahnutí"],"File Date":["Dátum súboru"],"h":["H"],"m":["n"],"It looks like you upgraded to the latest version of Download Monitor from a legacy version (3.x)":[""],"Currently your downloads don't work like they should, we need to %s before they'll work again.":[""],"upgrade your downloads":[""],"We've created an upgrading tool that will do all the work for you. You can read more about this tool on %sour website (click here)%s or start the upgrade now.":[""],"Take me to the Upgrade Tool":[""],"hide notice":[""],"Download Monitor Extensions":["Rozšírenia pre Download Monitor"],"Extensions":["Rozšírenia"],"If you like %sDownload Monitor%s please leave us a %s★★★★★%s rating. A huge thank you from us in advance!":["Ak sa vám páči %sDownload Monitor%s, dajte nám hodnotenie %s★★★★★%s. Vopred veľká vďak od každého z nás!"],"Insert Download":["Vložiť na stiahnutie"],"Are you sure you want to delete this file ? ":["Naozaj chcete tento súbor zmazať ?"],"Browse for a file":["Súbor z disku"],"Select a category":["Vyberte kategóriu"],"Download Monitor Data":[""],"Featured download":["Vybrané sťahovania"],"Members only":["Iba pre členov"],"Redirect to file":["Presmerovať na súbor"],"Image":["Obrázok"],"Title":["Názov"],"ID":["ID"],"File":["Súbor"],"Categories":["Kategórie"],"Tags":["Značky"],"Featured":["Vybrané"],"Redirect only":["Iba presmerovať"],"Date posted":["Dátum zverejnenia"],"Yes":["Áno"],"Download title":["Názov sťahovania"],"Download updated.":["Sťahovanie aktualizované."],"Custom field updated.":["Vlastné pole upravené."],"Custom field deleted.":["Vlastné pole zmazané."],"Download restored to revision from %s":["Sťahovanie znovuobnovené na revíziu z %s"],"Download published.":["Sťahovanie publikované."],"Download saved.":["Sťahovanie uložené."],"Download submitted.":["Sťahovanie odoslané."],"Download scheduled for: <strong>%1$s</strong>.":["Sťahovanie naplánované na: <strong>%1$s</strong>."],"M j, Y @ G:i":["j. n. Y \\o H:i"],"Download draft updated.":["Koncept na stiahnutie aktualizovaný."],"Popular Downloads":["Populárne na stiahnutie"],"There are no stats available yet!":["Zatiaľ nie sú k dispozícii žiadne štatistiky!"],"Download":["Stiahnúť"],"Extend Download Monitor with its powerful free and paid extensions. %sClick here to browse all extensions%s":["Vylepšite svoj Download Monitor voľne dostupnými aj platenými rozšíreniami. %sPrejdite na zoznam všetkých rozšírení%s"],"No files found":["Žiadne súbory sa nenašli"],"Insert Shortcode":["Vložiť shortcode"],"Quick-add download":["Skratka na pridanie sťahovania"],"Error: File was not created.":["Chyba: súbor nebol vytvorený."],"Download successfully created.":["Sťahovanie bolo úspešne vytvorené."],"Error: Download was not created.":["Chyba: Sťahovanie nebolo vytvorené"],"Search download":[""],"Choose a download":["Vyberte z ponuky na stiahnutie"],"Template":["Šablóna"],"Template Name":["Názov šablóny"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>image</code>, the <code>content-download-image.php</code> template will be used instead.":["Ak chcete použiť štandardnú šablónu <code>content-download.php</code>, toto nevypĺňajte. Ak zadáte, napr. <code>image</code>, použije sa šablóna <code>content-download-image.php</code>."],"Drop file here":["Sem pustite súbor"],"Select File":["Vyberte súbor"],"Enter URL manually":["Zadajte URL adresu ručne"],"Download URL":["URL adresa sťahovania"],"Required URL":["Povinná URL adresa"],"Download Title":["Názov sťahovania"],"Required title":["Povinný názov"],"Optional version number":["Voliteľné číslo verzie"],"Save Download":["Uložiť sťahovanie"],"Allowed Files":["Povolené súbory"],"Please wait...":["Prosím čakajte..."],"Reports":[""],"Switch to %s":[""],"Per Day":[""],"Month":[""],"Download Reports":[""],"Loading":[""],"Settings":["Nastavenia"],"Because your server is running on nginx, our .htaccess file can't protect your downloads.":[""],"Please add the following rules to your nginx config to disable direct file access: %s":[""],"Download Monitor Transients successfully cleared!":[""],"Settings successfully saved":["Nastavenia úspešne uložené"],"Save Changes":["Uložiť zmeny"],"General":["Všeobecné"],"Default Template":["Predvolená šablóna"],"Choose which template is used for <code>[download]</code> shortcodes by default (this can be overridden by the <code>format</code> argument).":["Vyberte, ktorú šablónu použiť štandardne pre <code>[download]</code> shortcode (toto sa dá individuálne nastaviť pomocou argumentu <code>format</code>)."],"Default - Title and count":["Predvolené – Názov a počet"],"Button - CSS styled button showing title and count":["Tlačidlo – Tlačidlo upraviteľné pomocou CSS zobrazujúce názov a počet"],"Box - Box showing thumbnail, title, count, filename and filesize.":["Box – Box s náhľadovým obrázkom, názom, počtom stiahnutí, názvom súboru a veľkosťou"],"Filename - Filename and download count":["Názov súboru – Názov súboru a počet stiahnutí"],"Title - Shows download title only":["Nadpis – Zobrazí iba názov sťahovania"],"Version list - Lists all download versions in an unordered list":["Zoznam verzií – Zobraziť všetky verzie v odrážkach"],"Custom template":["Vlastná šablóna"],"Custom Template":["Vlastná šablóna"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>button</code>, the <code>content-download-button.php</code> template will be used instead. You can add custom templates inside your theme folder.":[""],"X-Accel-Redirect / X-Sendfile":["X-Accel-Redirect / X-Sendfile"],"Enable":["Aktivovať"],"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be used to serve downloads instead of PHP (server requires <code>mod_xsendfile</code>).":["Ak váš server podporuje <code>X-Accel-Redirect</code> / <code>X-Sendfile</code>, môže miesto PHP posielať súbory server (vyžaduje modul <code>mod_xsendfile</code>)."],"Prevent hotlinking":["Zabrániť priamym odkazom"],"If enabled, the download handler will check the PHP referer to see if it originated from your site and if not, redirect them to the homepage.":["Po aktivácii bude modul kontrovať, kto odkazuje na súbor a v prípade, že nepochádza z vašej stránky, bude presmerovaný na hlavnú stránku."],"Allow Proxy IP Override":[""],"If enabled, Download Monitor will use the X_FORWARDED_FOR HTTP header set by proxies as the IP address. Note that anyone can set this header, making it less secure.":[""],"Endpoint":["Koncový bod"],"download":["sťahovanie"],"Download Endpoint":["Koncový bod na stiahnutie"],"Define what endpoint should be used for download links. By default this will be <code>%s</code>.":["Definujte koncový bod, ktorý sa má použiť na odkazy na stiahnutie. Predvolene sa používa <code>%s</code>."],"Endpoint Value":["Hodnota koncového bodu"],"Define what unique value should be used on the end of your endpoint to identify the downloadable file. e.g. ID would give a link like <code>%s</code>":["Definujte jedinečnú hodnotu, ktorá sa má použiť za koncovým bodom na identifikáciu súboru na stiahnutie, napr. odkaz s použitím ID by vyzeral takto: <code>%s</code>"],"Download ID":["ID sťahovania"],"Download slug":["Slug sťahovania"],"Hashes":["Hashe"],"MD5 hashes":["Rátať MD5 hash"],"Generate MD5 hash for uploaded files":["Generovať MD5 hash pre nahrané súbory"],"SHA1 hashes":["Rátať SHA1 hash"],"Generate SHA1 hash for uploaded files":["Generovať SHA1 hash pre nahrané súbory"],"SHA256 hashes":[""],"Generate SHA256 hash for uploaded files":[""],"Hashes can optionally be output via shortcodes, but may cause performance issues with large files.":["Hash je možné zobraziť vrámci shortcode, čo však môže mať za následok zníženie výkonu pri generovaní z väčších súborov."],"CRC32B hashes":["Rátať CRC32B hash"],"Generate CRC32B hash for uploaded files":["Generovať CRC32B hash pre nahrané súbory"],"Logging":["Logovanie"],"Download Log":["Log sťahovania"],"Log download attempts, IP addresses and more.":["Logovať pokusy o stiahnutie, IP adresy a ostatné."],"Count unique IPs only":[""],"If enabled, the counter for each download will only increment and create a log entry once per IP address.":[""],"Access":[""],"No Access Page":[""],"Choose what page is displayed when the user has no access to a file. Don't forget to add the <code>[dlm_no_access]</code> shortcode to the page.":[""],"You do not have permission to access this download. %sGo to homepage%s":["Nemáte prístupové práva k týmto súborom. %sPokračujte na úvodnú stránku%s"],"No access message":["Oznam o nedovolenom prístupe"],"The message that will be displayed to visitors when they don't have access to a file.":["Oznam, ktorý sa zobrazí návštevníkom, ktorým nebol povolený prístup k súboru."],"Blacklist IPs":["Zakázané IP adresy"],"List IP Addresses to blacklist, 1 per line. Use IP/CIDR netmask format for ranges. IPv4 examples: <code>198.51.100.1</code> or <code>198.51.100.0/24</code>. IPv6 examples: <code>2001:db8::1</code> or <code>2001:db8::/32</code>.":[""],"Blacklist user agents":["Zakázané hodnoty User-Agent prehliadačov"],"List browser user agents to blacklist, 1 per line. Partial matches are sufficient. Regex matching is allowed by surrounding the pattern with forward slashes, e.g. <code>/^Mozilla.+Googlebot/</code>":[""],"Misc":[""],"Remove Data on Uninstall?":[""],"Check this box if you would like to completely remove all Download Monitor data when the plugin is deleted.":[""],"Clear all transients":[""],"Remove all Download Monitor transients, this can solve version caching issues.":[""],"Select Page":[""],"Download Information":["Informácie o sťahovaní"],"Download Options":["Možnosti sťahovania"],"Downloadable Files/Versions":["Stiahnuteľné súbory/verzie"],"Short Description":["Krátky popis"],"URL":["Odkaz"],"Shortcode":["Shortcode"],"No download information for new downloads.":[""],"Mark this download as featured. Used by shortcodes and widgets.":["Označiť toto sťahovanie ako vybrané. Využívajú sa vo widgetoch a shortcodoch."],"Only logged in users will be able to access the file via a download link if this is enabled.":["Pri aktivovaní budú mať prístup k týmto súborom iba prihlásení užívatelia."],"Don't force download. If the <code>dlm_uploads</code> folder is protected you may need to move your file.":[""],"Add file":["Pridať súbor"],"Close all":["Zavrieť všetky"],"Expand all":["Rozbaliť všetky"],"Documentation":[""],"Password Required":["Potrebné heslo"],"Download does not exist.":["Sťahovanie neexistuje."],"Go to homepage &rarr;":["Späť na hlavnú stránku &rarr;"],"Download Error":["Chyba sťahovania"],"No file paths defined.":["Cesta k súboru nedefinovaná."],"Redirected to file":["Presmerované na súbor"],"Redirected to remote file.":["Presmerované na vzdialený súbor."],"File not found.":["Súbor sa nenašiel."],"No Access":[""],"Legacy Upgrader":[""],"Download Monitor - Legacy Upgrade":[""],"Welcome to the Download Monitor Legacy Upgrader. On this page we will upgrade your old Download Monitor (legacy) data so it will work with the latest version. If you're on this page, it should mean that you updated to this version from Download Monitor %s. If you're unsure if this is correct, or you want to read more about the legacy upgrade, we've setup a page that will explain this process in a lot more detail. %sClick here%s if to view that page.":[""],"Version ID":["ID verzie"],"Filename":["Názov súboru"],"User ID":["ID užívateľa"],"User Login":["Login užívateľa"],"User Email":["E-mail užívateľa"],"User IP":["IP užívateľa"],"User Agent":["User Agent"],"Date":["Dátum"],"Status":["Stav"],"Meta Data":[""],"Logs":["Logy"],"Download Logs":["Logy sťahovania"],"Export CSV":["Export CSV"],"Are you sure you want to delete ALL log items?":[""],"Delete Logs":["Zmazať logy"],"Delete":[""],"Download Complete":["Sťahovanie dokončené"],"%s ago":["pred %s"]," (v%s)":[""]," (v%s no longer exists)":[""],"Download #%d (no longer exists)":["Sťahovanie č. %d (už neexistujúce)"],"Non-member":["Nečlen"],"User":["Užívateľ"],"IP Address":["IP adresa"],"Log entries deleted":[""],"Any status":["Akýkoľvek stav"],"Failed":["Zlyhalo"],"Redirected":["Presmerované"],"Completed":["Dokončené"],"Show all dates":["Zobraziť všetky dátumy"],"%1$s %2$d":["%1$s %2$d"],"Select a User":[""],"25 per page":["25 na stránku"],"50 per page":["50 na stránku"],"100 per page":["100 na stránku"],"200 per page":["200 na stránku"],"Show All":["Zobraziť všetko"],"Filter":["Filter"],"All Downloads":["Všetko na stiahnutie"],"Downloads":["Na stiahnutie"],"Add New":["Pridať nové"],"Add Download":["Pridať na sťahovanie"],"Edit":["Upraviť"],"Edit Download":["Upraviť sťahovanie"],"New Download":["Nové sťahovanie"],"View Download":["Zobraziť sťahovanie"],"Search Downloads":["Vyhľadať na stiahnutie"],"No Downloads found":["Nenašlo sa nič na stiahnutie"],"No Downloads found in trash":["V koši sa nenašlo nič na stiahnutie"],"Parent Download":["Nadradené sťahovanie"],"This is where you can create and manage downloads for your site.":["Na tomto mieste môžete vytvárať a spravovať na stiahnutie pre túto stránku."],"License successfully activated.":["Licencia úspešne aktivovaná."],"<a href=\"%s\">Register your copy</a> of the <strong>%s</strong> extension to receive access to automatic upgrades and support. Need a license key? <a href=\"%s\" target=\"_blank\">Purchase one now</a>.":[""],"Download not found":["Sťahovanie sa nenašlo"],"Download Categories":[""],"Download Category":["Kategória sťahovania"],"Search Download Categories":["Vyhľadať v kategórii sťahovania"],"All Download Categories":["Všetky kategórie sťahovaní"],"Parent Download Category":["Nadradená kategória sťahovania"],"Edit Download Category":["Upraviť kategóriu sťahovania"],"Update Download Category":["Aktualizovať kategóriu sťahovania"],"Add New Download Category":["Pridať novú kategóriu na sťahnutie"],"New Download Category Name":["Meno novej kategórie sťahovania"],"Download Tags":[""],"Download Tag":["Značka pre sťahovanie"],"Search Download Tags":["Vyhľadať v značkách sťahovania"],"All Download Tags":["Všetky značky na sťahovanie"],"Parent Download Tag":["Nadradená značka sťahovania"],"Edit Download Tag":["Upraviť značku sťahovania"],"Update Download Tag":["Aktualizovať značky sťahovania"],"Add New Download Tag":["Pridať novú značku sťahovania"],"New Download Tag Name":["Meno novej značky sťahovania"],"Display a list of your downloads.":["Zobraziť zoznam na stiahnutie."],"Downloads List":["Zoznam na stiahnutie"],"Featured Downloads":["Vybrané na stiahnutie"],"Limit":["Obmedzenie"],"Output template":["Zobraziť šablónu"],"Default template":["Predvolená šablóna"],"Order by":["Zoradiť podľa"],"Random":["Náhodne"],"Date added":["Dátum pridania"],"Date modified":["Dátum úpravy"],"Order":["Poradie"],"ASC":["Vzostupne"],"DESC":["Zostupne"],"Show only featured downloads":["Zobraziť iba vybrané na stiahnutie"],"Show only members only downloads":["Zobraziť na stiahnutie iba pre členov"],"1 download":["1 stiahnutie","%d stiahnutia","%d stiahnutí","%d stiahnutí"],"Version %s":["Verzia %s"],"Download File":["Stiahnúť súbor"],"Download &ldquo;%s&rdquo;":["Stiahnúť &ldquo;%s&rdquo;"],"Downloaded 1 time":["Stiahnuté raz","Stiahnuté %d razy","Stiahnuté %d krát","Stiahnuté %d krát"],"Download Monitor":["Download Monitor"],"https://www.download-monitor.com":["https://www.download-monitor.com"],"A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.":["A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site."],"Never5":[""],"https://www.never5.com":[""],"Drop file here *or* select file\u0004or":["alebo"]}}}
languages/download-monitor-sk_SK.mo CHANGED
Binary file
languages/download-monitor-sk_SK.po CHANGED
@@ -15,7 +15,7 @@ msgstr ""
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Language: sk_SK\n"
18
- "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
19
  "X-Generator: grunt-wp-i18n 0.4.9\n"
20
 
21
  #: assets/views/meta-box/version.php:8
@@ -40,6 +40,7 @@ msgid_plural "Downloaded %s times"
40
  msgstr[0] "Stiahnuté raz"
41
  msgstr[1] "Stiahnuté %s razy"
42
  msgstr[2] "Stiahnuté %s krát"
 
43
 
44
  #: assets/views/meta-box/version.php:22 src/Admin/CustomColumns.php:28
45
  #: src/Admin/MediaInsert.php:241
@@ -1172,6 +1173,7 @@ msgid_plural "%d downloads"
1172
  msgstr[0] "1 stiahnutie"
1173
  msgstr[1] "%d stiahnutia"
1174
  msgstr[2] "%d stiahnutí"
 
1175
 
1176
  #: templates/content-download-box.php:27
1177
  #: templates/content-download-filename.php:14
@@ -1194,6 +1196,7 @@ msgid_plural "Downloaded %d times"
1194
  msgstr[0] "Stiahnuté raz"
1195
  msgstr[1] "Stiahnuté %d razy"
1196
  msgstr[2] "Stiahnuté %d krát"
 
1197
 
1198
  #. Plugin Name of the plugin/theme
1199
  msgid "Download Monitor"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Language: sk_SK\n"
18
+ "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
19
  "X-Generator: grunt-wp-i18n 0.4.9\n"
20
 
21
  #: assets/views/meta-box/version.php:8
40
  msgstr[0] "Stiahnuté raz"
41
  msgstr[1] "Stiahnuté %s razy"
42
  msgstr[2] "Stiahnuté %s krát"
43
+ msgstr[3] "Stiahnuté %s krát"
44
 
45
  #: assets/views/meta-box/version.php:22 src/Admin/CustomColumns.php:28
46
  #: src/Admin/MediaInsert.php:241
1173
  msgstr[0] "1 stiahnutie"
1174
  msgstr[1] "%d stiahnutia"
1175
  msgstr[2] "%d stiahnutí"
1176
+ msgstr[3] "%d stiahnutí"
1177
 
1178
  #: templates/content-download-box.php:27
1179
  #: templates/content-download-filename.php:14
1196
  msgstr[0] "Stiahnuté raz"
1197
  msgstr[1] "Stiahnuté %d razy"
1198
  msgstr[2] "Stiahnuté %d krát"
1199
+ msgstr[3] "Stiahnuté %d krát"
1200
 
1201
  #. Plugin Name of the plugin/theme
1202
  msgid "Download Monitor"
languages/download-monitor-sl_SI-dlm_gutenberg_blocks.json ADDED
@@ -0,0 +1 @@
 
1
+ {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);","lang":"sl_SI"},"Remove":[""],"Click to toggle":[""],"Version <span class=\"version\">%s</span> (%s)":[""],"n/a":[""],"Downloaded %s time":["","Downloaded %s times","Downloaded %s times","Downloaded %s times"],"Version":[""],"File URL(s)":[""],"Enter one file path/URL per line - multiple files will be used as mirrors (chosen at random).":[""],"Upload file":[""],"Choose a file":[""],"Insert file URL":[""],"Browse for file":[""],"Download count":[""],"File Date":[""],"h":[""],"m":[""],"It looks like you upgraded to the latest version of Download Monitor from a legacy version (3.x)":[""],"Currently your downloads don't work like they should, we need to %s before they'll work again.":[""],"upgrade your downloads":[""],"We've created an upgrading tool that will do all the work for you. You can read more about this tool on %sour website (click here)%s or start the upgrade now.":[""],"Take me to the Upgrade Tool":[""],"hide notice":[""],"Download Monitor Extensions":[""],"Extensions":[""],"If you like %sDownload Monitor%s please leave us a %s★★★★★%s rating. A huge thank you from us in advance!":[""],"Insert Download":[""],"Are you sure you want to delete this file ? ":[""],"Browse for a file":[""],"Select a category":[""],"Download Monitor Data":[""],"Featured download":[""],"Members only":[""],"Redirect to file":[""],"Image":[""],"Title":[""],"ID":[""],"File":[""],"Categories":[""],"Tags":[""],"Featured":[""],"Redirect only":[""],"Date posted":[""],"Yes":[""],"Download title":[""],"Download updated.":[""],"Custom field updated.":[""],"Custom field deleted.":[""],"Download restored to revision from %s":[""],"Download published.":[""],"Download saved.":[""],"Download submitted.":[""],"Download scheduled for: <strong>%1$s</strong>.":[""],"M j, Y @ G:i":[""],"Download draft updated.":[""],"Popular Downloads":[""],"There are no stats available yet!":[""],"Download":[""],"Extend Download Monitor with its powerful free and paid extensions. %sClick here to browse all extensions%s":[""],"No files found":[""],"Insert Shortcode":[""],"Quick-add download":[""],"Error: File was not created.":[""],"Download successfully created.":[""],"Error: Download was not created.":[""],"Search download":[""],"Choose a download":[""],"Template":[""],"Template Name":[""],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>image</code>, the <code>content-download-image.php</code> template will be used instead.":[""],"Drop file here":[""],"Select File":[""],"Enter URL manually":[""],"Download URL":[""],"Required URL":[""],"Download Title":[""],"Required title":[""],"Optional version number":[""],"Save Download":[""],"Allowed Files":[""],"Please wait...":[""],"Reports":[""],"Switch to %s":[""],"Per Day":[""],"Month":[""],"Download Reports":[""],"Loading":[""],"Settings":[""],"Because your server is running on nginx, our .htaccess file can't protect your downloads.":[""],"Please add the following rules to your nginx config to disable direct file access: %s":[""],"Download Monitor Transients successfully cleared!":[""],"Settings successfully saved":[""],"Save Changes":[""],"General":[""],"Default Template":[""],"Choose which template is used for <code>[download]</code> shortcodes by default (this can be overridden by the <code>format</code> argument).":[""],"Default - Title and count":[""],"Button - CSS styled button showing title and count":[""],"Box - Box showing thumbnail, title, count, filename and filesize.":[""],"Filename - Filename and download count":[""],"Title - Shows download title only":[""],"Version list - Lists all download versions in an unordered list":[""],"Custom template":[""],"Custom Template":[""],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>button</code>, the <code>content-download-button.php</code> template will be used instead. You can add custom templates inside your theme folder.":[""],"X-Accel-Redirect / X-Sendfile":[""],"Enable":[""],"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be used to serve downloads instead of PHP (server requires <code>mod_xsendfile</code>).":[""],"Prevent hotlinking":[""],"If enabled, the download handler will check the PHP referer to see if it originated from your site and if not, redirect them to the homepage.":[""],"Allow Proxy IP Override":[""],"If enabled, Download Monitor will use the X_FORWARDED_FOR HTTP header set by proxies as the IP address. Note that anyone can set this header, making it less secure.":[""],"Endpoint":[""],"download":[""],"Download Endpoint":[""],"Define what endpoint should be used for download links. By default this will be <code>%s</code>.":[""],"Endpoint Value":[""],"Define what unique value should be used on the end of your endpoint to identify the downloadable file. e.g. ID would give a link like <code>%s</code>":[""],"Download ID":[""],"Download slug":[""],"Hashes":[""],"MD5 hashes":[""],"Generate MD5 hash for uploaded files":[""],"SHA1 hashes":[""],"Generate SHA1 hash for uploaded files":[""],"SHA256 hashes":[""],"Generate SHA256 hash for uploaded files":[""],"Hashes can optionally be output via shortcodes, but may cause performance issues with large files.":[""],"CRC32B hashes":[""],"Generate CRC32B hash for uploaded files":[""],"Logging":[""],"Download Log":[""],"Log download attempts, IP addresses and more.":[""],"Count unique IPs only":[""],"If enabled, the counter for each download will only increment and create a log entry once per IP address.":[""],"Access":[""],"No Access Page":[""],"Choose what page is displayed when the user has no access to a file. Don't forget to add the <code>[dlm_no_access]</code> shortcode to the page.":[""],"You do not have permission to access this download. %sGo to homepage%s":[""],"No access message":[""],"The message that will be displayed to visitors when they don't have access to a file.":[""],"Blacklist IPs":[""],"List IP Addresses to blacklist, 1 per line. Use IP/CIDR netmask format for ranges. IPv4 examples: <code>198.51.100.1</code> or <code>198.51.100.0/24</code>. IPv6 examples: <code>2001:db8::1</code> or <code>2001:db8::/32</code>.":[""],"Blacklist user agents":[""],"List browser user agents to blacklist, 1 per line. Partial matches are sufficient. Regex matching is allowed by surrounding the pattern with forward slashes, e.g. <code>/^Mozilla.+Googlebot/</code>":[""],"Misc":[""],"Remove Data on Uninstall?":[""],"Check this box if you would like to completely remove all Download Monitor data when the plugin is deleted.":[""],"Clear all transients":[""],"Remove all Download Monitor transients, this can solve version caching issues.":[""],"Select Page":[""],"Download Information":[""],"Download Options":[""],"Downloadable Files/Versions":[""],"Short Description":[""],"URL":[""],"Shortcode":[""],"No download information for new downloads.":[""],"Mark this download as featured. Used by shortcodes and widgets.":[""],"Only logged in users will be able to access the file via a download link if this is enabled.":[""],"Don't force download. If the <code>dlm_uploads</code> folder is protected you may need to move your file.":[""],"Add file":[""],"Close all":[""],"Expand all":[""],"Documentation":[""],"Password Required":[""],"Download does not exist.":[""],"Go to homepage &rarr;":[""],"Download Error":[""],"No file paths defined.":[""],"Redirected to file":[""],"Redirected to remote file.":[""],"File not found.":[""],"No Access":[""],"Legacy Upgrader":[""],"Download Monitor - Legacy Upgrade":[""],"Welcome to the Download Monitor Legacy Upgrader. On this page we will upgrade your old Download Monitor (legacy) data so it will work with the latest version. If you're on this page, it should mean that you updated to this version from Download Monitor %s. If you're unsure if this is correct, or you want to read more about the legacy upgrade, we've setup a page that will explain this process in a lot more detail. %sClick here%s if to view that page.":[""],"Version ID":[""],"Filename":[""],"User ID":[""],"User Login":[""],"User Email":[""],"User IP":[""],"User Agent":[""],"Date":[""],"Status":[""],"Meta Data":[""],"Logs":[""],"Download Logs":[""],"Export CSV":[""],"Are you sure you want to delete ALL log items?":[""],"Delete Logs":[""],"Delete":[""],"Download Complete":[""],"%s ago":[""]," (v%s)":[""]," (v%s no longer exists)":[""],"Download #%d (no longer exists)":[""],"Non-member":[""],"User":[""],"IP Address":[""],"Log entries deleted":[""],"Any status":[""],"Failed":[""],"Redirected":[""],"Completed":[""],"Show all dates":[""],"%1$s %2$d":[""],"Select a User":[""],"25 per page":[""],"50 per page":[""],"100 per page":[""],"200 per page":[""],"Show All":[""],"Filter":[""],"All Downloads":[""],"Downloads":[""],"Add New":[""],"Add Download":[""],"Edit":[""],"Edit Download":[""],"New Download":[""],"View Download":[""],"Search Downloads":[""],"No Downloads found":[""],"No Downloads found in trash":[""],"Parent Download":[""],"This is where you can create and manage downloads for your site.":[""],"License successfully activated.":[""],"<a href=\"%s\">Register your copy</a> of the <strong>%s</strong> extension to receive access to automatic upgrades and support. Need a license key? <a href=\"%s\" target=\"_blank\">Purchase one now</a>.":[""],"Download not found":[""],"Download Categories":[""],"Download Category":[""],"Search Download Categories":[""],"All Download Categories":[""],"Parent Download Category":[""],"Edit Download Category":[""],"Update Download Category":[""],"Add New Download Category":[""],"New Download Category Name":[""],"Download Tags":[""],"Download Tag":[""],"Search Download Tags":[""],"All Download Tags":[""],"Parent Download Tag":[""],"Edit Download Tag":[""],"Update Download Tag":[""],"Add New Download Tag":[""],"New Download Tag Name":[""],"Display a list of your downloads.":[""],"Downloads List":[""],"Featured Downloads":[""],"Limit":[""],"Output template":[""],"Default template":[""],"Order by":[""],"Random":[""],"Date added":[""],"Date modified":[""],"Order":[""],"ASC":[""],"DESC":[""],"Show only featured downloads":[""],"Show only members only downloads":[""],"1 download":["","%d downloads","%d downloads","%d downloads"],"Version %s":[""],"Download File":[""],"Download &ldquo;%s&rdquo;":[""],"Downloaded 1 time":["","Downloaded %d times","Downloaded %d times","Downloaded %d times"],"Download Monitor":[""],"https://www.download-monitor.com":[""],"A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.":[""],"Never5":[""],"https://www.never5.com":[""],"Drop file here *or* select file\u0004or":[""]}}}
languages/download-monitor-sr_RS-dlm_gutenberg_blocks.json ADDED
@@ -0,0 +1 @@
 
1
+ {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);","lang":"sr_RS"},"Remove":["Ukloniti"],"Click to toggle":["Klika za toggle"],"Version <span class=\"version\">%s</span> (%s)":["Verzija<span class=\"version\">%s</span> (%s)"],"n/a":["n/a"],"Downloaded %s time":["","Downloaded %s times","Downloaded %s times"],"Version":["Verzija"],"File URL(s)":["File URL(s)"],"Enter one file path/URL per line - multiple files will be used as mirrors (chosen at random).":["Unesite jedanu putanju fajla-URL po rečenici brojni fajlovi će biti korišćeni kao ogledala (izabrano nasumično)."],"Upload file":["Upload fajl"],"Choose a file":["Izaberite fajl"],"Insert file URL":["Unesite fajl u URL"],"Browse for file":["Traži fajl"],"Download count":["Računanje download-a"],"File Date":["Datum fajla"],"h":["h"],"m":["m"],"It looks like you upgraded to the latest version of Download Monitor from a legacy version (3.x)":[""],"Currently your downloads don't work like they should, we need to %s before they'll work again.":[""],"upgrade your downloads":[""],"We've created an upgrading tool that will do all the work for you. You can read more about this tool on %sour website (click here)%s or start the upgrade now.":[""],"Take me to the Upgrade Tool":[""],"hide notice":[""],"Download Monitor Extensions":[""],"Extensions":[""],"If you like %sDownload Monitor%s please leave us a %s★★★★★%s rating. A huge thank you from us in advance!":[""],"Insert Download":["Unesite download"],"Are you sure you want to delete this file ? ":[""],"Browse for a file":["Pretraga za fajlom"],"Select a category":["Izaberite kategoriju"],"Download Monitor Data":[""],"Featured download":["Trenutni download"],"Members only":["Samo članovi"],"Redirect to file":["Preusmeravanje na fajl"],"Image":["Slika"],"Title":["Naslov"],"ID":["ID"],"File":["Fajl"],"Categories":["Kategorije"],"Tags":["Tagovi"],"Featured":["Istaknuto"],"Redirect only":["Samo preusmeri"],"Date posted":["Datum postovan"],"Yes":[""],"Download title":["Download-ujte naslov"],"Download updated.":["Download updatedovana."],"Custom field updated.":["Custom field updateovan."],"Custom field deleted.":["Custom field obrisan."],"Download restored to revision from %s":["Download povraćen revizijom iz %s"],"Download published.":["Download objavljen."],"Download saved.":["Download sačuvan."],"Download submitted.":["Download podnešen."],"Download scheduled for: <strong>%1$s</strong>.":["Download zakazan za:<strong>%1$s</strong>."],"M j, Y @ G:i":["M j, Y @ G:i"],"Download draft updated.":["Download draft updateovan."],"Popular Downloads":["Popular Download-ovi"],"There are no stats available yet!":["Još uvek nema dostupnih rezultata."],"Download":["Download"],"Extend Download Monitor with its powerful free and paid extensions. %sClick here to browse all extensions%s":[""],"No files found":["Fajl nije pronadjen"],"Insert Shortcode":["Unesite shortcode"],"Quick-add download":["Quick-add download"],"Error: File was not created.":["Error: Fajl nije stvoren."],"Download successfully created.":["Download uspešno stvoren."],"Error: Download was not created.":["Error: Download nije stvoren."],"Search download":[""],"Choose a download":["Izaberite download"],"Template":["Template"],"Template Name":["Ime template"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>image</code>, the <code>content-download-image.php</code> template will be used instead.":["Ako ostavite ovo prazno biće korišćen default <code>content-download.php</code> template fajl. Ako uneste npr<code>image</code>, the <code>content-download-image.php</code> template će biti korišćena."],"Drop file here":["Ubacite fajl ovde"],"Select File":["Izaberi fajl"],"Enter URL manually":["Unesite URL ručno"],"Download URL":["Download URL"],"Required URL":["Zahtevani URL"],"Download Title":["Download-ovani naslov"],"Required title":["Zahtevani naslov"],"Optional version number":["Broj opcionalne verzije"],"Save Download":["Sačuvaj download"],"Allowed Files":["Dozvoljeni fajlovi"],"Please wait...":["Molimo sačekajte..."],"Reports":[""],"Switch to %s":[""],"Per Day":[""],"Month":[""],"Download Reports":[""],"Loading":[""],"Settings":["Postavke"],"Because your server is running on nginx, our .htaccess file can't protect your downloads.":[""],"Please add the following rules to your nginx config to disable direct file access: %s":[""],"Download Monitor Transients successfully cleared!":[""],"Settings successfully saved":["Postavke sačuvane uspešno"],"Save Changes":["Sačuvaj promene"],"General":["Opšte"],"Default Template":["Default Template"],"Choose which template is used for <code>[download]</code> shortcodes by default (this can be overridden by the <code>format</code> argument).":["Izaberite koju ćete template da koristite za <code>[download]</code> shortcode-ove po default-u (ovo može biti prepisano kodom <code>format</code> argument)."],"Default - Title and count":[""],"Button - CSS styled button showing title and count":[""],"Box - Box showing thumbnail, title, count, filename and filesize.":[""],"Filename - Filename and download count":[""],"Title - Shows download title only":[""],"Version list - Lists all download versions in an unordered list":[""],"Custom template":[""],"Custom Template":[""],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>button</code>, the <code>content-download-button.php</code> template will be used instead. You can add custom templates inside your theme folder.":[""],"X-Accel-Redirect / X-Sendfile":["X-Accel-Redirect / X-Sendfile"],"Enable":["Omogući"],"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be used to serve downloads instead of PHP (server requires <code>mod_xsendfile</code>).":["Ako je podržano<code>X-Accel-Redirect</code> / <code>X-Sendfile</code> može biti korišćen za služenje download-ovima umesto PHP (serveri traže <code>mod_xsendfile</code>)."],"Prevent hotlinking":[""],"If enabled, the download handler will check the PHP referer to see if it originated from your site and if not, redirect them to the homepage.":[""],"Allow Proxy IP Override":[""],"If enabled, Download Monitor will use the X_FORWARDED_FOR HTTP header set by proxies as the IP address. Note that anyone can set this header, making it less secure.":[""],"Endpoint":["Krajnja tačka"],"download":["download"],"Download Endpoint":["Download Endpoint"],"Define what endpoint should be used for download links. By default this will be <code>%s</code>.":["Definišite koja krajnja tačka će biti korišćena za download linkova. Po defaultu ovo će biti<code>%s</code>."],"Endpoint Value":["Vrednost krajnje tačke"],"Define what unique value should be used on the end of your endpoint to identify the downloadable file. e.g. ID would give a link like <code>%s</code>":["Definišite koja jedinstvena vrednost treba da bude korišćena na kraju vaše krajnje tačke za identifikaciju dowload-ujućeg fajla npr ID će dati link <code>%s</code>"],"Download ID":["Download ID"],"Download slug":["Download slug"],"Hashes":[""],"MD5 hashes":[""],"Generate MD5 hash for uploaded files":[""],"SHA1 hashes":[""],"Generate SHA1 hash for uploaded files":[""],"SHA256 hashes":[""],"Generate SHA256 hash for uploaded files":[""],"Hashes can optionally be output via shortcodes, but may cause performance issues with large files.":[""],"CRC32B hashes":[""],"Generate CRC32B hash for uploaded files":[""],"Logging":["Logging"],"Download Log":["Download Log"],"Log download attempts, IP addresses and more.":["Pokušaj log downloada, IP adresea i još toga."],"Count unique IPs only":[""],"If enabled, the counter for each download will only increment and create a log entry once per IP address.":[""],"Access":[""],"No Access Page":[""],"Choose what page is displayed when the user has no access to a file. Don't forget to add the <code>[dlm_no_access]</code> shortcode to the page.":[""],"You do not have permission to access this download. %sGo to homepage%s":[""],"No access message":[""],"The message that will be displayed to visitors when they don't have access to a file.":[""],"Blacklist IPs":["IP crna lista"],"List IP Addresses to blacklist, 1 per line. Use IP/CIDR netmask format for ranges. IPv4 examples: <code>198.51.100.1</code> or <code>198.51.100.0/24</code>. IPv6 examples: <code>2001:db8::1</code> or <code>2001:db8::/32</code>.":[""],"Blacklist user agents":["Crna lista agenta korisnika "],"List browser user agents to blacklist, 1 per line. Partial matches are sufficient. Regex matching is allowed by surrounding the pattern with forward slashes, e.g. <code>/^Mozilla.+Googlebot/</code>":[""],"Misc":[""],"Remove Data on Uninstall?":[""],"Check this box if you would like to completely remove all Download Monitor data when the plugin is deleted.":[""],"Clear all transients":[""],"Remove all Download Monitor transients, this can solve version caching issues.":[""],"Select Page":[""],"Download Information":[""],"Download Options":["Download opcije"],"Downloadable Files/Versions":[""],"Short Description":["Kratak opis"],"URL":[""],"Shortcode":[""],"No download information for new downloads.":[""],"Mark this download as featured. Used by shortcodes and widgets.":["Označite ovaj download. Koristite shortcodeove i widgete."],"Only logged in users will be able to access the file via a download link if this is enabled.":["Samo ulogovani korisnici će biti u mogućnost da pristupe fajlu via download linka ako je ovo omogućeno."],"Don't force download. If the <code>dlm_uploads</code> folder is protected you may need to move your file.":[""],"Add file":[""],"Close all":["Zatvorite sve"],"Expand all":["Proširite sve"],"Documentation":[""],"Password Required":[""],"Download does not exist.":["Ne postoji download."],"Go to homepage &rarr;":["Idi na početnu stranicu &rarr;"],"Download Error":["Download Error"],"No file paths defined.":["Putanja fajla nije definisana."],"Redirected to file":["Preusmereno na fajl"],"Redirected to remote file.":["Preusmereno na upravljački fajl."],"File not found.":["Fajl nije pronadjen."],"No Access":[""],"Legacy Upgrader":[""],"Download Monitor - Legacy Upgrade":[""],"Welcome to the Download Monitor Legacy Upgrader. On this page we will upgrade your old Download Monitor (legacy) data so it will work with the latest version. If you're on this page, it should mean that you updated to this version from Download Monitor %s. If you're unsure if this is correct, or you want to read more about the legacy upgrade, we've setup a page that will explain this process in a lot more detail. %sClick here%s if to view that page.":[""],"Version ID":["ID verzija"],"Filename":["Ime fajla"],"User ID":["ID korisnika"],"User Login":["Login korisnika"],"User Email":["Email korisnika"],"User IP":["IP korisnika"],"User Agent":["Agent korisnik"],"Date":["Date"],"Status":["Status"],"Meta Data":[""],"Logs":["Logs"],"Download Logs":["Download Logs"],"Export CSV":["Export CSV"],"Are you sure you want to delete ALL log items?":[""],"Delete Logs":[""],"Delete":[""],"Download Complete":["Download završen"],"%s ago":["%s ago"]," (v%s)":[""]," (v%s no longer exists)":[""],"Download #%d (no longer exists)":["Download #%d (ne postoji više)"],"Non-member":["Nije član"],"User":["Korisnik"],"IP Address":["IP adresa"],"Log entries deleted":[""],"Any status":["Bilo kakav status"],"Failed":["Nije uspelo"],"Redirected":["Preusmereno"],"Completed":["Završeno"],"Show all dates":["Prikazati sve datume"],"%1$s %2$d":["%1$s %2$d"],"Select a User":[""],"25 per page":["25 po stranici"],"50 per page":["50 po stranici"],"100 per page":["100 po stranici"],"200 per page":["200 po stranici"],"Show All":["Prikaži sve"],"Filter":["Filter"],"All Downloads":[""],"Downloads":["Downloads"],"Add New":["Dodaj novi"],"Add Download":["Dodaj download"],"Edit":["Edit"],"Edit Download":["Edit Download"],"New Download":["Novi Download"],"View Download":["Pregledaj Download"],"Search Downloads":["Pretraga Download-ova"],"No Downloads found":["Nijedan download nije pronadjen"],"No Downloads found in trash":["Nijedan download nije pronadjen u djubretu"],"Parent Download":["Parent Download"],"This is where you can create and manage downloads for your site.":["Ovde možete da napravite i upravljate download-ove za vaš sajt"],"License successfully activated.":[""],"<a href=\"%s\">Register your copy</a> of the <strong>%s</strong> extension to receive access to automatic upgrades and support. Need a license key? <a href=\"%s\" target=\"_blank\">Purchase one now</a>.":[""],"Download not found":["Download nije pronadjen"],"Download Categories":[""],"Download Category":["Download kategorije"],"Search Download Categories":["Pretraga downloada kategorija"],"All Download Categories":["Sve downloadovane kategorije"],"Parent Download Category":["Parent Download kategorija"],"Edit Download Category":["Edit Download kategorija"],"Update Download Category":["Update Download kategorija"],"Add New Download Category":["Dodaj novu Download kategoriju"],"New Download Category Name":["Novo Download ime kategorije"],"Download Tags":[""],"Download Tag":["Download Tag"],"Search Download Tags":["Pretraga Download Tagova"],"All Download Tags":["Svi Download Tagovi"],"Parent Download Tag":["Parent Download Tag"],"Edit Download Tag":["Edit Download Tag"],"Update Download Tag":["Update Download Tag"],"Add New Download Tag":["Dodati novi Download Tag"],"New Download Tag Name":["Novo ime download taga"],"Display a list of your downloads.":["Prikaži listu vaših download-ova"],"Downloads List":["Lista download-ova"],"Featured Downloads":["Trenutni download"],"Limit":[""],"Output template":[""],"Default template":["Default template"],"Order by":[""],"Random":["Nasumično"],"Date added":["Datum dodat"],"Date modified":["Modifikovan datum"],"Order":[""],"ASC":["ASC"],"DESC":["DESC"],"Show only featured downloads":["Prikaži samo trenutne downloadove"],"Show only members only downloads":["Prikaži samo članove samo download"],"1 download":["","%d downloads","%d downloads"],"Version %s":["Version %s"],"Download File":["Download fajla"],"Download &ldquo;%s&rdquo;":["Download &ldquo;%s&rdquo;"],"Downloaded 1 time":["","Downloaded %d times","Downloaded %d times"],"Download Monitor":["Download Monitor"],"https://www.download-monitor.com":["https://www.download-monitor.com"],"A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.":["A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site."],"Never5":[""],"https://www.never5.com":[""],"Drop file here *or* select file\u0004or":[""]}}}
languages/download-monitor-sv_SE-dlm_gutenberg_blocks.json ADDED
@@ -0,0 +1 @@
 
1
+ {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"sv_SE"},"Remove":["Ta bort"],"Click to toggle":["Klicka för att växla"],"Version <span class=\"version\">%s</span> (%s)":["Version <span class=\"version\">%s</span> (%s)"],"n/a":["Ej tillgängligt"],"Downloaded %s time":["Nedladdad %s gånger","Nedladdade %s gånger"],"Version":["Version"],"File URL(s)":["Fil-URL(er)"],"Enter one file path/URL per line - multiple files will be used as mirrors (chosen at random).":["Ange en sökväg/URL per rad - extra filer kommer att användas som alternativ/mirrors (valda slumpmässigt)."],"Upload file":["Ladda upp fil"],"Choose a file":["Välj en fil"],"Insert file URL":["Agne URL för fil"],"Browse for file":["Bläddra efter fil"],"Download count":["Antal nedladdningar"],"File Date":["Fildatum"],"h":["tim"],"m":["min"],"It looks like you upgraded to the latest version of Download Monitor from a legacy version (3.x)":[""],"Currently your downloads don't work like they should, we need to %s before they'll work again.":[""],"upgrade your downloads":[""],"We've created an upgrading tool that will do all the work for you. You can read more about this tool on %sour website (click here)%s or start the upgrade now.":[""],"Take me to the Upgrade Tool":[""],"hide notice":[""],"Download Monitor Extensions":["Download Monitor Extensions"],"Extensions":["Extensions"],"If you like %sDownload Monitor%s please leave us a %s★★★★★%s rating. A huge thank you from us in advance!":["Om du gillar %sDownload Monitor%s får du gärna ge oss en %s★★★★★%s rating. Ett stort tack på förhand från oss!"],"Insert Download":["Infoga nedladdning"],"Are you sure you want to delete this file ? ":["Är du säker på att du vill ta bort denna fil?"],"Browse for a file":["Bläddra efter en fil"],"Select a category":["Välj en kategori"],"Download Monitor Data":[""],"Featured download":["Utvald nedladdning"],"Members only":["Endast för medlemmar"],"Redirect to file":["Omdirigera till fil"],"Image":["Bild"],"Title":["Titel"],"ID":["ID"],"File":["Fil"],"Categories":["Kategorier"],"Tags":["Etiketter"],"Featured":["Utvald"],"Redirect only":["Omdirigera endast"],"Date posted":["Publiceringsdatum"],"Yes":["Ja"],"Download title":["Nedladdningstitel"],"Download updated.":["Nedladdning uppdaterad."],"Custom field updated.":["Eget fält uppdaterat."],"Custom field deleted.":["Eget fält borttaget."],"Download restored to revision from %s":["Nedladdning återställd till revision från %s"],"Download published.":["Nedladdning publicerad."],"Download saved.":["Nedladdning sparad."],"Download submitted.":["Nedladdning skickad."],"Download scheduled for: <strong>%1$s</strong>.":["Nedladdning schemalagd för: <strong>%1$s</strong>."],"M j, Y @ G:i":["j M, Y @ H:i"],"Download draft updated.":["Nedladdningsutkast uppdaterat."],"Popular Downloads":["Populära nedladdningar"],"There are no stats available yet!":["Det finns ingen statistik ännu!"],"Download":["Nedladdning"],"Extend Download Monitor with its powerful free and paid extensions. %sClick here to browse all extensions%s":["Utöka Download Monitor med kraftfulla gratis och kostnadsbelagda extensions. %sKlicka här för att bläddra bland alla extensions%s"],"No files found":["Inga filer hittades"],"Insert Shortcode":["Infoga shortcode"],"Quick-add download":["Enkel uppladdning"],"Error: File was not created.":["Fel: Filen kunde inte skapas."],"Download successfully created.":["Nedladdning skapades."],"Error: Download was not created.":["Fel: Nedladdning kunde inte skapas."],"Search download":[""],"Choose a download":["Välj en nedladdning"],"Template":["Mall"],"Template Name":["Mallnamn"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>image</code>, the <code>content-download-image.php</code> template will be used instead.":["Om detta lämnas tomt kommer standardmallen <code>content-download.php</code> användas. Om du t.ex anger, <code>bild</code>, kommer <code>content-download-bild.php</code> användas istället."],"Drop file here":["Släpp filen här"],"Select File":["Välj fil"],"Enter URL manually":["Ange en URL manuellt"],"Download URL":["Nedladdnings-URL"],"Required URL":["Obligatorisk URL"],"Download Title":["Nedladdningstitel"],"Required title":["Obligatorisk titel"],"Optional version number":["Alternativt versionsnummer"],"Save Download":["Spara nedladdning"],"Allowed Files":["Tillåtna filer"],"Please wait...":["Vänligen vänta..."],"Reports":[""],"Switch to %s":[""],"Per Day":[""],"Month":[""],"Download Reports":[""],"Loading":[""],"Settings":["Inställningar"],"Because your server is running on nginx, our .htaccess file can't protect your downloads.":[""],"Please add the following rules to your nginx config to disable direct file access: %s":[""],"Download Monitor Transients successfully cleared!":[""],"Settings successfully saved":["Inställningar sparade"],"Save Changes":["Spara ändringar"],"General":["Allmänna"],"Default Template":["Standardmall"],"Choose which template is used for <code>[download]</code> shortcodes by default (this can be overridden by the <code>format</code> argument).":["Välj vilken mall som ska användas för <code>[download]</code>-shortcodes som standard (detta kan skrivas över med <code>format</code>-argument)."],"Default - Title and count":["Standard - titel och räknare"],"Button - CSS styled button showing title and count":["Knapp - CSS-stylad knapp som visar titel och räknare"],"Box - Box showing thumbnail, title, count, filename and filesize.":["Box - En box som visar miniatyrbild, titel, räknare, filnamn och filstorlek."],"Filename - Filename and download count":["Filnamn - Filnamn och nedladdningsräknare"],"Title - Shows download title only":["Titel - Visar endast nedladdningstitel"],"Version list - Lists all download versions in an unordered list":["Versionslista - Listar alla nedladdningsversion i en oordnad lista"],"Custom template":["Anpassad mall"],"Custom Template":["Anpassad mall"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>button</code>, the <code>content-download-button.php</code> template will be used instead. You can add custom templates inside your theme folder.":[""],"X-Accel-Redirect / X-Sendfile":["X-Accel-Redirect / X-Sendfile"],"Enable":["Aktivera"],"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be used to serve downloads instead of PHP (server requires <code>mod_xsendfile</code>).":["Om stöd finns, kan <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> användas för att hantera nedladdningar istället för PHP (servern behöver då <code>mod_xsendfile</code>)."],"Prevent hotlinking":["Motverka extern direktlänkning"],"If enabled, the download handler will check the PHP referer to see if it originated from your site and if not, redirect them to the homepage.":["Om aktiverat så kommer nedladdningshanteraren kontrollera PHP-referens för att se om förfrågan kommer från din webbplats och om så inte är fallet, omdirigera dom till startsidan."],"Allow Proxy IP Override":[""],"If enabled, Download Monitor will use the X_FORWARDED_FOR HTTP header set by proxies as the IP address. Note that anyone can set this header, making it less secure.":[""],"Endpoint":["Slutpunkt"],"download":["nedladdning"],"Download Endpoint":["Nedladdningsslutpunkt"],"Define what endpoint should be used for download links. By default this will be <code>%s</code>.":["Definiera vilken slutpunkt nedladdningar ska ha. Som standard kommer detta vara <code>%s</code>."],"Endpoint Value":["Slutpunktsvärde"],"Define what unique value should be used on the end of your endpoint to identify the downloadable file. e.g. ID would give a link like <code>%s</code>":["Definiera vilket unikt värde i slutet på din slutpunkt för att identifiera den nedladdningsbara filen. Exempelvis, ID skulle ge dig en länk som<code>%s</code>"],"Download ID":["Nedladdnings-ID"],"Download slug":["Nedladdningspermalänk"],"Hashes":["Hashes"],"MD5 hashes":["MD5-hashes"],"Generate MD5 hash for uploaded files":["Generera MD5-hash för uppladdade filer"],"SHA1 hashes":["SHA1-hashes"],"Generate SHA1 hash for uploaded files":["Generera SHA1-hash för uppladdade filer"],"SHA256 hashes":[""],"Generate SHA256 hash for uploaded files":[""],"Hashes can optionally be output via shortcodes, but may cause performance issues with large files.":["Hashes kan skrivas ut via shortcodes, men kan skapa prestandaproblem vid större filer."],"CRC32B hashes":["CRC32B-hashes"],"Generate CRC32B hash for uploaded files":["Generera CRC32B-hash för uppladdade filer"],"Logging":["Loggar"],"Download Log":["Nedladdningslogg"],"Log download attempts, IP addresses and more.":["Loggar nedladdningsförsök, IP-adresser med mera."],"Count unique IPs only":[""],"If enabled, the counter for each download will only increment and create a log entry once per IP address.":[""],"Access":[""],"No Access Page":[""],"Choose what page is displayed when the user has no access to a file. Don't forget to add the <code>[dlm_no_access]</code> shortcode to the page.":[""],"You do not have permission to access this download. %sGo to homepage%s":["Du har inte tillräckliga rättigheter för denna nedladdning. %sGå till startsidan%s"],"No access message":["Ingen åtkomst-meddelande"],"The message that will be displayed to visitors when they don't have access to a file.":["Meddelandet som visas för besökare när de inte har tillgång till en fil."],"Blacklist IPs":["Svartlista IP"],"List IP Addresses to blacklist, 1 per line. Use IP/CIDR netmask format for ranges. IPv4 examples: <code>198.51.100.1</code> or <code>198.51.100.0/24</code>. IPv6 examples: <code>2001:db8::1</code> or <code>2001:db8::/32</code>.":[""],"Blacklist user agents":["Svartlista användaragent"],"List browser user agents to blacklist, 1 per line. Partial matches are sufficient. Regex matching is allowed by surrounding the pattern with forward slashes, e.g. <code>/^Mozilla.+Googlebot/</code>":[""],"Misc":[""],"Remove Data on Uninstall?":[""],"Check this box if you would like to completely remove all Download Monitor data when the plugin is deleted.":[""],"Clear all transients":[""],"Remove all Download Monitor transients, this can solve version caching issues.":[""],"Select Page":[""],"Download Information":["Nedladdningsinformation"],"Download Options":["Nedladdningsaltenativ"],"Downloadable Files/Versions":["Nedladdningsbara filer/versioner"],"Short Description":["Kort beskrivning"],"URL":["URL"],"Shortcode":["Shortcode"],"No download information for new downloads.":[""],"Mark this download as featured. Used by shortcodes and widgets.":["Markera denna nedladdning som utvald. Används av shortcodes och widgets."],"Only logged in users will be able to access the file via a download link if this is enabled.":["Endast inloggade användare kommer åt filen via en nedladdningslänk om detta är aktiverat."],"Don't force download. If the <code>dlm_uploads</code> folder is protected you may need to move your file.":[""],"Add file":["Lägg till fil"],"Close all":["Stäng alla"],"Expand all":["Expandera alla"],"Documentation":[""],"Password Required":["Lösenord krävs"],"Download does not exist.":["Nedladdning finns ej."],"Go to homepage &rarr;":["Gå till startsidan &rarr;"],"Download Error":["Nedladdningsfel"],"No file paths defined.":["Inga sökvägar definierade."],"Redirected to file":["Omdirigerad till fil"],"Redirected to remote file.":["Omdirigerad till fil på annan plats."],"File not found.":["Filen kunde inte hittas."],"No Access":[""],"Legacy Upgrader":[""],"Download Monitor - Legacy Upgrade":[""],"Welcome to the Download Monitor Legacy Upgrader. On this page we will upgrade your old Download Monitor (legacy) data so it will work with the latest version. If you're on this page, it should mean that you updated to this version from Download Monitor %s. If you're unsure if this is correct, or you want to read more about the legacy upgrade, we've setup a page that will explain this process in a lot more detail. %sClick here%s if to view that page.":[""],"Version ID":["Versions-ID"],"Filename":["Filnamn"],"User ID":["Användar-ID"],"User Login":["Användarens användarnamn"],"User Email":["Användarens e-postadress"],"User IP":["Användar-IP"],"User Agent":["Användaragent"],"Date":["Datum"],"Status":["Status"],"Meta Data":[""],"Logs":["Loggar"],"Download Logs":["Ladda ner loggar"],"Export CSV":["Exportera CSV"],"Are you sure you want to delete ALL log items?":[""],"Delete Logs":["Radera loggar"],"Delete":[""],"Download Complete":["Nedladdning slutförd"],"%s ago":["%s sedan"]," (v%s)":[""]," (v%s no longer exists)":[""],"Download #%d (no longer exists)":["Nedladdning #%d (finns inte längre)"],"Non-member":["Icke-medlem"],"User":["Användare"],"IP Address":["IP-address"],"Log entries deleted":[""],"Any status":["Alla statusar"],"Failed":["Misslyckades"],"Redirected":["Omdirigerad"],"Completed":["Genomförd"],"Show all dates":["Visa alla datum"],"%1$s %2$d":["%1$s %2$d"],"Select a User":[""],"25 per page":["25 per sida"],"50 per page":["50 per sida"],"100 per page":["100 per sida"],"200 per page":["200 per sida"],"Show All":["Visa alla"],"Filter":["Filtrera"],"All Downloads":["Alla nedladdningar"],"Downloads":["Nedladdningar"],"Add New":["Lägg till ny"],"Add Download":["Lägg till nedladdning"],"Edit":["Redigera"],"Edit Download":["Redigera nedladdning"],"New Download":["Ny nedladdning"],"View Download":["Visa nedladdning"],"Search Downloads":["Sök nedladdning"],"No Downloads found":["Ingen filer hittas"],"No Downloads found in trash":["Ingen filer hittas i papperskorgen"],"Parent Download":["Överordnad nedladdning"],"This is where you can create and manage downloads for your site.":["Här kan du skapa och hantera dina nedladdningar för din webbplats."],"License successfully activated.":["Licensen aktiverad."],"<a href=\"%s\">Register your copy</a> of the <strong>%s</strong> extension to receive access to automatic upgrades and support. Need a license key? <a href=\"%s\" target=\"_blank\">Purchase one now</a>.":[""],"Download not found":["Nedladdningen kunde inte hittas"],"Download Categories":[""],"Download Category":["Nedladdningskategori"],"Search Download Categories":["Sök nedladdningskategori"],"All Download Categories":["Alla kategorier"],"Parent Download Category":["Överordnad nedladdningskategori"],"Edit Download Category":["Redigera nedladdningskategori"],"Update Download Category":["Uppdatera nedladdningskategori"],"Add New Download Category":["Lägg till ny nedladdningskategori"],"New Download Category Name":["Nytt namn på nedladdningskategori"],"Download Tags":[""],"Download Tag":["Nedladdningsetikett"],"Search Download Tags":["Sök nedladdningsetikett"],"All Download Tags":["Alla nedladdningsetiketter"],"Parent Download Tag":["Överordnad nedladdningsetikett"],"Edit Download Tag":["Redigera nedladdningsetikett"],"Update Download Tag":["Uppdatera nedladdningsetikett"],"Add New Download Tag":["Lägg till ny nedladdningsetikett"],"New Download Tag Name":["Nytt namn på nedladdningsetikett"],"Display a list of your downloads.":["Visa en lista med dina nedladdningar."],"Downloads List":["Nedladdningslista"],"Featured Downloads":["Utvalda nedladdningar"],"Limit":["Gräns"],"Output template":["Outputmall"],"Default template":["Standardmall"],"Order by":["Sortera efter"],"Random":["Slumpmässigt"],"Date added":["Datum tillagt"],"Date modified":["Datum modifierat"],"Order":["Sortera"],"ASC":["Fallande"],"DESC":["Stigande"],"Show only featured downloads":["Visa bara utvalda nedladdningar"],"Show only members only downloads":["Visa bara medlemsnedladdningar"],"1 download":["1 nedladdning","%d nedladdningar"],"Version %s":["Version %s"],"Download File":["Ladda ner fil"],"Download &ldquo;%s&rdquo;":["Ladda ner &ldquo;%s&rdquo;"],"Downloaded 1 time":["Nedladdad 1 gång","Nedladdad %d gånger"],"Download Monitor":["Download Monitor"],"https://www.download-monitor.com":["https://www.download-monitor.com"],"A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.":["En fullständig lösning för att hantera nedladdningsbara filer, övervakning av nedladdningar, infogning av nedladdningslänkar och filinformation på din webbplats som drivs med WordPress."],"Never5":[""],"https://www.never5.com":[""],"Drop file here *or* select file\u0004or":["eller"]}}}
languages/download-monitor-tr_TR-dlm_gutenberg_blocks.json ADDED
@@ -0,0 +1 @@
 
1
+ {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n > 1);","lang":"tr_TR"},"Remove":["Kaldır"],"Click to toggle":["Açmak için tıklayın"],"Version <span class=\"version\">%s</span> (%s)":["Versiyon <span class=\"version\">%s</span> (%s)"],"n/a":["-"],"Downloaded %s time":["%s defa yüklendi","%s defa yüklendi"],"Version":["Versiyon"],"File URL(s)":["Dosya URL'leri"],"Enter one file path/URL per line - multiple files will be used as mirrors (chosen at random).":["Lütfen her satıra bir dosya yolu/URL ekleyiniz. Çoklu dosyalar ayna bağlantı (rastgele olarak) kullanılacak"],"Upload file":["Dosya yükle"],"Choose a file":["Dosya seç"],"Insert file URL":["Dosya URL'si ekle"],"Browse for file":["Dosya için gözat"],"Download count":["İndirme Sayısı"],"File Date":["Dosya Tarihi"],"h":["h"],"m":["m"],"It looks like you upgraded to the latest version of Download Monitor from a legacy version (3.x)":[""],"Currently your downloads don't work like they should, we need to %s before they'll work again.":[""],"upgrade your downloads":[""],"We've created an upgrading tool that will do all the work for you. You can read more about this tool on %sour website (click here)%s or start the upgrade now.":[""],"Take me to the Upgrade Tool":[""],"hide notice":[""],"Download Monitor Extensions":[""],"Extensions":[""],"If you like %sDownload Monitor%s please leave us a %s★★★★★%s rating. A huge thank you from us in advance!":[""],"Insert Download":["Yükleme Ekle"],"Are you sure you want to delete this file ? ":[""],"Browse for a file":["Dosya için gözatın"],"Select a category":["Kategori seçin"],"Download Monitor Data":[""],"Featured download":["Öne Çıkan Yükleme"],"Members only":["Üyelere Özel"],"Redirect to file":["Dosyaya yönlendir"],"Image":["Resim"],"Title":["Başlık"],"ID":["ID"],"File":["Dosya"],"Categories":["Kategoriler"],"Tags":["Etiketler"],"Featured":["Öne Çıkan"],"Redirect only":["Yalnızca yönlendirme"],"Date posted":["Yayınlanma tarihi"],"Yes":["Evet"],"Download title":["Yükleme başlığı"],"Download updated.":["Yükleme güncellendi"],"Custom field updated.":["Özel alan güncellendi."],"Custom field deleted.":["Özel alan silindi."],"Download restored to revision from %s":["Yükleme %s sürümüne geri yüklendi"],"Download published.":["Yükleme yayınlandı."],"Download saved.":["Yükleme kaydedildi."],"Download submitted.":["Yükleme gönderildi."],"Download scheduled for: <strong>%1$s</strong>.":["Yükleme şu tarih için zamanlandı: <strong>%1$s</strong>."],"M j, Y @ G:i":["M j, Y @ G:i"],"Download draft updated.":["Yükleme taslağı güncellendi."],"Popular Downloads":["Popüler Dosyalar"],"There are no stats available yet!":["Henüz yeterli veri yok!"],"Download":["İndir"],"Extend Download Monitor with its powerful free and paid extensions. %sClick here to browse all extensions%s":[""],"No files found":["Dosya bulunamadı"],"Insert Shortcode":["KısaKod Ekle"],"Quick-add download":["Hızlı Dosya Ekleme"],"Error: File was not created.":["Hata: Dosya oluşturulamadı."],"Download successfully created.":["Yükleme başarıyla oluşturuldu."],"Error: Download was not created.":["Hata: Yükleme oluşturulamadı."],"Search download":[""],"Choose a download":["Yükleme seç"],"Template":["Şablon"],"Template Name":["Şablon Adı"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>image</code>, the <code>content-download-image.php</code> template will be used instead.":["Bu alanı boş bırakmak, varsayılan <code>content-download.php</code> şablon dosyasının kullanımıyla sonuçlanacaktır. Örneğin, eğer, <code>image</code> girerseniz, varsayılan şablon yerine <code>content-download-image.php</code> şablonu kullanılacaktır."],"Drop file here":["Dosyayı buraya sürükleyin"],"Select File":["Dosya Seçin"],"Enter URL manually":["URL'yi elle girin"],"Download URL":["İndirme URL'si"],"Required URL":["URL Gerekli"],"Download Title":["Yükleme Başlığı"],"Required title":["Başlık gerekli"],"Optional version number":["Opsiyonel versiyon numarası"],"Save Download":["Yüklemeyi Kaydet"],"Allowed Files":["İzin Verilen Dosyalar"],"Please wait...":["Lütfen bekleyin..."],"Reports":[""],"Switch to %s":[""],"Per Day":[""],"Month":[""],"Download Reports":[""],"Loading":[""],"Settings":["Ayarlar"],"Because your server is running on nginx, our .htaccess file can't protect your downloads.":[""],"Please add the following rules to your nginx config to disable direct file access: %s":[""],"Download Monitor Transients successfully cleared!":[""],"Settings successfully saved":["Ayarlar başarıyla kaydedildi"],"Save Changes":["Değişiklikleri Kaydet"],"General":["Genel"],"Default Template":["Varsayılan Şablon"],"Choose which template is used for <code>[download]</code> shortcodes by default (this can be overridden by the <code>format</code> argument).":["<code>[download]</code> KısaKodu ile hangi şablonun varsayılan olarak kullanılacağını seçin (bu, <code>format</code> belirteciyle geçersiz kılınabilir)."],"Default - Title and count":["Varsayılan - Başlık ve sayı"],"Button - CSS styled button showing title and count":["Düğme - Başlığı ve sayıyı gösteren CSS biçimlendirmeli düğme"],"Box - Box showing thumbnail, title, count, filename and filesize.":["Kutu - Küçük Resim, başlık, sayı, dosya adı ve dosya boyutunu gösteren kutu."],"Filename - Filename and download count":["Dosya Adı - Dosya adı ve indirme sayısı"],"Title - Shows download title only":["Başlık - Yalnızca yükleme başlığını gösterir"],"Version list - Lists all download versions in an unordered list":["Versiyon listesi - Tüm dosya versiyonlarını sırasız liste olarak gösterir"],"Custom template":["Özel şablon"],"Custom Template":["Özel Şablon"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>button</code>, the <code>content-download-button.php</code> template will be used instead. You can add custom templates inside your theme folder.":[""],"X-Accel-Redirect / X-Sendfile":["X-Accel-Redirect / X-Sendfile"],"Enable":["Etkinleştir"],"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be used to serve downloads instead of PHP (server requires <code>mod_xsendfile</code>).":["Destekleniyorsa, PHP yerine yüklemeleri sunmak için <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> kullanılabilir (serverda <code>mod_xsendfile</code> olması gereklidir)."],"Prevent hotlinking":["Doğrudan linklemeyi engelle"],"If enabled, the download handler will check the PHP referer to see if it originated from your site and if not, redirect them to the homepage.":["Etkinleştirildiyse, yükleme denetimcisi PHP referansını kontrol edecek ve sitenizden gelmiyorsa, ana sayfaya yönlendirecektir."],"Allow Proxy IP Override":[""],"If enabled, Download Monitor will use the X_FORWARDED_FOR HTTP header set by proxies as the IP address. Note that anyone can set this header, making it less secure.":[""],"Endpoint":["Bitiş Noktası"],"download":["indir"],"Download Endpoint":["Yükleme Bitiş Noktası"],"Define what endpoint should be used for download links. By default this will be <code>%s</code>.":["Yükleme bağlantıları için bitiş noktasının ne olacağını belirleyin. Varsayılan olarak bu <code>%s</code> olacaktır."],"Endpoint Value":["Bitiş Noktası Değeri"],"Define what unique value should be used on the end of your endpoint to identify the downloadable file. e.g. ID would give a link like <code>%s</code>":["İndirilebilir dosya için bitiş noktasında hangi eşsiz değerin kullanılacağını seçin. Örneğin ID değeri <code>%s</code> gibi bir bağlantı oluşturur"],"Download ID":["Yükleme ID'si"],"Download slug":["Yükleme kısa adı"],"Hashes":[""],"MD5 hashes":["MD5 hashleri"],"Generate MD5 hash for uploaded files":["Yüklenmiş dosyalar için MD5 hashleri oluştur"],"SHA1 hashes":["SHA1 hashleri"],"Generate SHA1 hash for uploaded files":["Yüklenmiş dosyalar için SHA1 hashleri oluştur"],"SHA256 hashes":[""],"Generate SHA256 hash for uploaded files":[""],"Hashes can optionally be output via shortcodes, but may cause performance issues with large files.":["Hashler kısakodlar yardımıyla görüntülenebilir. Fakat büyük dosyalar için performans sorunlarına sebep olabilir."],"CRC32B hashes":["CRC32B hashleri"],"Generate CRC32B hash for uploaded files":["Yüklenmiş dosyalar için CRC32B hashleri oluştur"],"Logging":["Kayıt"],"Download Log":["Yükleme Kaydı"],"Log download attempts, IP addresses and more.":["Yükleme denemelerini kayıt altına al, IP adreslerini ve daha fazlasını."],"Count unique IPs only":[""],"If enabled, the counter for each download will only increment and create a log entry once per IP address.":[""],"Access":[""],"No Access Page":[""],"Choose what page is displayed when the user has no access to a file. Don't forget to add the <code>[dlm_no_access]</code> shortcode to the page.":[""],"You do not have permission to access this download. %sGo to homepage%s":[""],"No access message":[""],"The message that will be displayed to visitors when they don't have access to a file.":[""],"Blacklist IPs":["IP Adresleri Kara Listesi"],"List IP Addresses to blacklist, 1 per line. Use IP/CIDR netmask format for ranges. IPv4 examples: <code>198.51.100.1</code> or <code>198.51.100.0/24</code>. IPv6 examples: <code>2001:db8::1</code> or <code>2001:db8::/32</code>.":[""],"Blacklist user agents":["User agent kara listesi"],"List browser user agents to blacklist, 1 per line. Partial matches are sufficient. Regex matching is allowed by surrounding the pattern with forward slashes, e.g. <code>/^Mozilla.+Googlebot/</code>":[""],"Misc":[""],"Remove Data on Uninstall?":[""],"Check this box if you would like to completely remove all Download Monitor data when the plugin is deleted.":[""],"Clear all transients":[""],"Remove all Download Monitor transients, this can solve version caching issues.":[""],"Select Page":[""],"Download Information":[""],"Download Options":["Yükleme Seçenekleri"],"Downloadable Files/Versions":["İndirilebilir Dosyalar/Versiyonlar"],"Short Description":["Kısa Açıklama"],"URL":[""],"Shortcode":[""],"No download information for new downloads.":[""],"Mark this download as featured. Used by shortcodes and widgets.":["Bu yüklemeyi \"öne çıkan\" olarak işaretleyin. KısaKodlar ve bileşenler tarafından kullanılır."],"Only logged in users will be able to access the file via a download link if this is enabled.":["Bu seçenek işaretlenirse, yalnızca giriş yapmış kullanıcılar indirme bağlantısıyla dosyaya ulaşabilecekler."],"Don't force download. If the <code>dlm_uploads</code> folder is protected you may need to move your file.":[""],"Add file":["Dosya ekle"],"Close all":["Tümünü Kapat"],"Expand all":["Tümünü Genişlet"],"Documentation":[""],"Password Required":["Şifre Gerekli"],"Download does not exist.":["Yükleme mevcut değil."],"Go to homepage &rarr;":["Ana sayfaya dön &rarr;"],"Download Error":["Yükleme Hatası"],"No file paths defined.":["Dosya yolu tanımlanmadı."],"Redirected to file":["Dosyaya yönlendirildi"],"Redirected to remote file.":["Uzak dosyaya yönlendirildi."],"File not found.":["Dosya bulunamadı."],"No Access":[""],"Legacy Upgrader":[""],"Download Monitor - Legacy Upgrade":[""],"Welcome to the Download Monitor Legacy Upgrader. On this page we will upgrade your old Download Monitor (legacy) data so it will work with the latest version. If you're on this page, it should mean that you updated to this version from Download Monitor %s. If you're unsure if this is correct, or you want to read more about the legacy upgrade, we've setup a page that will explain this process in a lot more detail. %sClick here%s if to view that page.":[""],"Version ID":["Versiyon ID"],"Filename":["Dosya Adı"],"User ID":["Kullanıcı ID"],"User Login":["Kullanıcı Adı"],"User Email":["Kullanıcı E-Postası"],"User IP":["Kullanıcı IP'si"],"User Agent":["User Agent"],"Date":["Tarih"],"Status":["Durum"],"Meta Data":[""],"Logs":["Kayıtlar"],"Download Logs":["İndirme Kayıtları"],"Export CSV":["CSV olarak dışa aktar"],"Are you sure you want to delete ALL log items?":[""],"Delete Logs":["Kayıtları Sil"],"Delete":[""],"Download Complete":["Yükleme Tamamlandı"],"%s ago":["%s önce"]," (v%s)":[""]," (v%s no longer exists)":[""],"Download #%d (no longer exists)":["Yükleme #%d (artık mevcut değil)"],"Non-member":["Üye-değil"],"User":["Kullanıcı"],"IP Address":["IP Adresi"],"Log entries deleted":[""],"Any status":["Tüm Durumlar"],"Failed":["Başarısız"],"Redirected":["Yönlendirildi"],"Completed":["Tamamlandı"],"Show all dates":["Tüm tarihleri göster"],"%1$s %2$d":["%1$s %2$d"],"Select a User":[""],"25 per page":["Sayfa başına 25"],"50 per page":["Sayfa başına 50"],"100 per page":["Sayfa başına 100"],"200 per page":["Sayfa başına 200"],"Show All":["Tümünü Göster"],"Filter":["Filtrele"],"All Downloads":["Tüm Yüklemeler"],"Downloads":["Yüklemeler"],"Add New":["Yeni Ekle"],"Add Download":["Yükleme Ekle"],"Edit":["Düzenle"],"Edit Download":["Yükleme Düzenle"],"New Download":["Yeni Yükleme"],"View Download":["Yüklemeyi Görüntüle"],"Search Downloads":["Yüklemelerde Ara"],"No Downloads found":["Yükleme Bulunamadı"],"No Downloads found in trash":["Çöpte Yükleme Bulunamadı"],"Parent Download":["Üst Yükleme"],"This is where you can create and manage downloads for your site.":["Burası siteniz için yükleme oluşturup, düzenleyebileceğiniz yer."],"License successfully activated.":[""],"<a href=\"%s\">Register your copy</a> of the <strong>%s</strong> extension to receive access to automatic upgrades and support. Need a license key? <a href=\"%s\" target=\"_blank\">Purchase one now</a>.":[""],"Download not found":["Yükleme bulunamadı."],"Download Categories":[""],"Download Category":["Yükleme Kategorisi"],"Search Download Categories":["Yükleme Kategorilerini Ara"],"All Download Categories":["Tüm Yükleme Kategorileri"],"Parent Download Category":["Üst Yükleme Kategorisi"],"Edit Download Category":["Yükleme Kategorisini Düzenle"],"Update Download Category":["Yükleme Kategorisini Güncelle"],"Add New Download Category":["Yeni Yükleme Kategorisi Ekle"],"New Download Category Name":["Yeni Yükleme Kategorisi İsmi"],"Download Tags":[""],"Download Tag":["Yükleme Etiketi"],"Search Download Tags":["Yükleme Etiketlerini Ara"],"All Download Tags":["Tüm Yükleme Etiketleri"],"Parent Download Tag":["Üst Yükleme Etiketi"],"Edit Download Tag":["Yükleme Etiketini Düzenle"],"Update Download Tag":["Yükleme Etiketini Güncelle"],"Add New Download Tag":["Yeni Yükleme Etiketi Ekle"],"New Download Tag Name":["Yeni Yükleme Etiketi İsmi"],"Display a list of your downloads.":["Yükleme listenizi görüntüleyin."],"Downloads List":["Yükleme Listesi"],"Featured Downloads":["Öne Çıkan Yüklemeler"],"Limit":[""],"Output template":[""],"Default template":["Varsayılan Şablon"],"Order by":[""],"Random":["Rastgele"],"Date added":["Eklenme tarihi"],"Date modified":["Düzenlenme tarihi"],"Order":[""],"ASC":["Artan"],"DESC":["Azalan"],"Show only featured downloads":["Sadece öne çıkan dosyaları göster"],"Show only members only downloads":["Sadece üyeler için olan dosyaları göster"],"1 download":["%d indirme","%d indirme"],"Version %s":["Versiyon %s"],"Download File":["Dosyayı İndir"],"Download &ldquo;%s&rdquo;":["İndir &ldquo;%s&rdquo;"],"Downloaded 1 time":["%d defa indirildi","%d defa indirildi"],"Download Monitor":["Download Monitor"],"https://www.download-monitor.com":["https://www.download-monitor.com"],"A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.":["WordPress sitenizde yüklenebilir dosyaları yönetmek, yüklemeleri denetlemek, dosya bağlantıları çıkışı ve dosya bilgilerini göstermek için tüm çözüm aracı."],"Never5":[""],"https://www.never5.com":[""],"Drop file here *or* select file\u0004or":["veya"]}}}
languages/download-monitor-tr_TR.mo CHANGED
Binary file
languages/download-monitor-tr_TR.po CHANGED
@@ -16,7 +16,7 @@ msgstr ""
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
18
  "Language: tr_TR\n"
19
- "Plural-Forms: nplurals=1; plural=0;\n"
20
  "X-Generator: grunt-wp-i18n 0.4.9\n"
21
 
22
  #: assets/views/meta-box/version.php:8
@@ -39,6 +39,7 @@ msgstr "-"
39
  msgid "Downloaded %s time"
40
  msgid_plural "Downloaded %s times"
41
  msgstr[0] "%s defa yüklendi"
 
42
 
43
  #: assets/views/meta-box/version.php:22 src/Admin/CustomColumns.php:28
44
  #: src/Admin/MediaInsert.php:241
@@ -1169,6 +1170,7 @@ msgstr "Sadece üyeler için olan dosyaları göster"
1169
  msgid "1 download"
1170
  msgid_plural "%d downloads"
1171
  msgstr[0] "%d indirme"
 
1172
 
1173
  #: templates/content-download-box.php:27
1174
  #: templates/content-download-filename.php:14
@@ -1189,6 +1191,7 @@ msgstr "İndir &ldquo;%s&rdquo;"
1189
  msgid "Downloaded 1 time"
1190
  msgid_plural "Downloaded %d times"
1191
  msgstr[0] "%d defa indirildi"
 
1192
 
1193
  #. Plugin Name of the plugin/theme
1194
  msgid "Download Monitor"
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
18
  "Language: tr_TR\n"
19
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
20
  "X-Generator: grunt-wp-i18n 0.4.9\n"
21
 
22
  #: assets/views/meta-box/version.php:8
39
  msgid "Downloaded %s time"
40
  msgid_plural "Downloaded %s times"
41
  msgstr[0] "%s defa yüklendi"
42
+ msgstr[1] "%s defa yüklendi"
43
 
44
  #: assets/views/meta-box/version.php:22 src/Admin/CustomColumns.php:28
45
  #: src/Admin/MediaInsert.php:241
1170
  msgid "1 download"
1171
  msgid_plural "%d downloads"
1172
  msgstr[0] "%d indirme"
1173
+ msgstr[1] "%d indirme"
1174
 
1175
  #: templates/content-download-box.php:27
1176
  #: templates/content-download-filename.php:14
1191
  msgid "Downloaded 1 time"
1192
  msgid_plural "Downloaded %d times"
1193
  msgstr[0] "%d defa indirildi"
1194
+ msgstr[1] "%d defa indirildi"
1195
 
1196
  #. Plugin Name of the plugin/theme
1197
  msgid "Download Monitor"
languages/download-monitor-uk_UA-dlm_gutenberg_blocks.json ADDED
@@ -0,0 +1 @@
 
1
+ {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);","lang":"uk_UA"},"Remove":["Видалити"],"Click to toggle":[""],"Version <span class=\"version\">%s</span> (%s)":[""],"n/a":[""],"Downloaded %s time":["Скачано %s раз","Скачано %s разів","Скачано %s разів","Скачано %s разів"],"Version":["Версія"],"File URL(s)":[""],"Enter one file path/URL per line - multiple files will be used as mirrors (chosen at random).":[""],"Upload file":["Завантажити файл"],"Choose a file":["Вибрати файл"],"Insert file URL":[""],"Browse for file":[""],"Download count":[""],"File Date":[""],"h":[""],"m":[""],"It looks like you upgraded to the latest version of Download Monitor from a legacy version (3.x)":[""],"Currently your downloads don't work like they should, we need to %s before they'll work again.":[""],"upgrade your downloads":[""],"We've created an upgrading tool that will do all the work for you. You can read more about this tool on %sour website (click here)%s or start the upgrade now.":[""],"Take me to the Upgrade Tool":[""],"hide notice":[""],"Download Monitor Extensions":[""],"Extensions":["Розширення"],"If you like %sDownload Monitor%s please leave us a %s★★★★★%s rating. A huge thank you from us in advance!":[""],"Insert Download":[""],"Are you sure you want to delete this file ? ":[""],"Browse for a file":["Дивитися всі файли"],"Select a category":["Обрати категорію"],"Download Monitor Data":[""],"Featured download":[""],"Members only":["Цей вміст є тільки для користувачів."],"Redirect to file":[""],"Image":["Зображення"],"Title":["Заголовок"],"ID":["Ідентифікатор"],"File":["Файл"],"Categories":["Категорії"],"Tags":["Теги"],"Featured":["Вибране"],"Redirect only":["Тільки перенаправляти"],"Date posted":["Дата публікації"],"Yes":["Так"],"Download title":[""],"Download updated.":[""],"Custom field updated.":[""],"Custom field deleted.":[""],"Download restored to revision from %s":[""],"Download published.":[""],"Download saved.":[""],"Download submitted.":[""],"Download scheduled for: <strong>%1$s</strong>.":[""],"M j, Y @ G:i":[""],"Download draft updated.":[""],"Popular Downloads":["Популярні завантаження"],"There are no stats available yet!":[""],"Download":["Скачати"],"Extend Download Monitor with its powerful free and paid extensions. %sClick here to browse all extensions%s":[""],"No files found":["Файли не знайдені"],"Insert Shortcode":[""],"Quick-add download":[""],"Error: File was not created.":[""],"Download successfully created.":[""],"Error: Download was not created.":[""],"Search download":[""],"Choose a download":[""],"Template":["Шаблон"],"Template Name":["Назва шаблону"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>image</code>, the <code>content-download-image.php</code> template will be used instead.":[""],"Drop file here":[""],"Select File":["Обрати файл"],"Enter URL manually":[""],"Download URL":[""],"Required URL":[""],"Download Title":[""],"Required title":[""],"Optional version number":[""],"Save Download":[""],"Allowed Files":["Дозволені файли"],"Please wait...":["Зачекайте будь-ласка..."],"Reports":[""],"Switch to %s":[""],"Per Day":[""],"Month":[""],"Download Reports":[""],"Loading":[""],"Settings":["Налаштування"],"Because your server is running on nginx, our .htaccess file can't protect your downloads.":[""],"Please add the following rules to your nginx config to disable direct file access: %s":[""],"Download Monitor Transients successfully cleared!":[""],"Settings successfully saved":[""],"Save Changes":["Зберегти зміни"],"General":["Головна"],"Default Template":["Шаблон по замовчуванню"],"Choose which template is used for <code>[download]</code> shortcodes by default (this can be overridden by the <code>format</code> argument).":[""],"Default - Title and count":[""],"Button - CSS styled button showing title and count":[""],"Box - Box showing thumbnail, title, count, filename and filesize.":[""],"Filename - Filename and download count":[""],"Title - Shows download title only":[""],"Version list - Lists all download versions in an unordered list":[""],"Custom template":[""],"Custom Template":[""],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>button</code>, the <code>content-download-button.php</code> template will be used instead. You can add custom templates inside your theme folder.":[""],"X-Accel-Redirect / X-Sendfile":[""],"Enable":["активувати"],"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be used to serve downloads instead of PHP (server requires <code>mod_xsendfile</code>).":[""],"Prevent hotlinking":[""],"If enabled, the download handler will check the PHP referer to see if it originated from your site and if not, redirect them to the homepage.":[""],"Allow Proxy IP Override":[""],"If enabled, Download Monitor will use the X_FORWARDED_FOR HTTP header set by proxies as the IP address. Note that anyone can set this header, making it less secure.":[""],"Endpoint":[""],"download":[""],"Download Endpoint":[""],"Define what endpoint should be used for download links. By default this will be <code>%s</code>.":[""],"Endpoint Value":[""],"Define what unique value should be used on the end of your endpoint to identify the downloadable file. e.g. ID would give a link like <code>%s</code>":[""],"Download ID":[""],"Download slug":[""],"Hashes":[""],"MD5 hashes":[""],"Generate MD5 hash for uploaded files":[""],"SHA1 hashes":[""],"Generate SHA1 hash for uploaded files":[""],"SHA256 hashes":[""],"Generate SHA256 hash for uploaded files":[""],"Hashes can optionally be output via shortcodes, but may cause performance issues with large files.":[""],"CRC32B hashes":[""],"Generate CRC32B hash for uploaded files":[""],"Logging":[""],"Download Log":[""],"Log download attempts, IP addresses and more.":[""],"Count unique IPs only":[""],"If enabled, the counter for each download will only increment and create a log entry once per IP address.":[""],"Access":[""],"No Access Page":[""],"Choose what page is displayed when the user has no access to a file. Don't forget to add the <code>[dlm_no_access]</code> shortcode to the page.":[""],"You do not have permission to access this download. %sGo to homepage%s":[""],"No access message":[""],"The message that will be displayed to visitors when they don't have access to a file.":[""],"Blacklist IPs":["Чорний список IP адрес"],"List IP Addresses to blacklist, 1 per line. Use IP/CIDR netmask format for ranges. IPv4 examples: <code>198.51.100.1</code> or <code>198.51.100.0/24</code>. IPv6 examples: <code>2001:db8::1</code> or <code>2001:db8::/32</code>.":[""],"Blacklist user agents":[""],"List browser user agents to blacklist, 1 per line. Partial matches are sufficient. Regex matching is allowed by surrounding the pattern with forward slashes, e.g. <code>/^Mozilla.+Googlebot/</code>":[""],"Misc":[""],"Remove Data on Uninstall?":[""],"Check this box if you would like to completely remove all Download Monitor data when the plugin is deleted.":[""],"Clear all transients":[""],"Remove all Download Monitor transients, this can solve version caching issues.":[""],"Select Page":["Вибрані сторінки"],"Download Information":[""],"Download Options":[""],"Downloadable Files/Versions":[""],"Short Description":[""],"URL":[""],"Shortcode":[""],"No download information for new downloads.":[""],"Mark this download as featured. Used by shortcodes and widgets.":[""],"Only logged in users will be able to access the file via a download link if this is enabled.":[""],"Don't force download. If the <code>dlm_uploads</code> folder is protected you may need to move your file.":[""],"Add file":["Додати файл"],"Close all":["Закрити все"],"Expand all":["Розкрити все"],"Documentation":[""],"Password Required":["Необхідний пароль"],"Download does not exist.":[""],"Go to homepage &rarr;":[""],"Download Error":["Помилка завантаження"],"No file paths defined.":[""],"Redirected to file":[""],"Redirected to remote file.":[""],"File not found.":["Файл не знайдено."],"No Access":["Доступ заборонено."],"Legacy Upgrader":[""],"Download Monitor - Legacy Upgrade":[""],"Welcome to the Download Monitor Legacy Upgrader. On this page we will upgrade your old Download Monitor (legacy) data so it will work with the latest version. If you're on this page, it should mean that you updated to this version from Download Monitor %s. If you're unsure if this is correct, or you want to read more about the legacy upgrade, we've setup a page that will explain this process in a lot more detail. %sClick here%s if to view that page.":[""],"Version ID":[""],"Filename":["Назва файлу"],"User ID":[""],"User Login":["Логін користувача"],"User Email":["Email користувача"],"User IP":["IP користувача"],"User Agent":[""],"Date":["Дата"],"Status":["Статус"],"Meta Data":[""],"Logs":[""],"Download Logs":[""],"Export CSV":[""],"Are you sure you want to delete ALL log items?":[""],"Delete Logs":["Очистити журнал"],"Delete":["Знищити"],"Download Complete":[""],"%s ago":["%s тому"]," (v%s)":[""]," (v%s no longer exists)":[""],"Download #%d (no longer exists)":[""],"Non-member":[""],"User":["Користувач"],"IP Address":["IP адреса"],"Log entries deleted":[""],"Any status":["Будь-який статус"],"Failed":[""],"Redirected":[""],"Completed":[""],"Show all dates":[""],"%1$s %2$d":[""],"Select a User":[""],"25 per page":["25 на сторінці"],"50 per page":["50 на сторінці"],"100 per page":["100 на сторінці"],"200 per page":["200 на сторінці"],"Show All":["Показати всі"],"Filter":["Фільтр"],"All Downloads":["Всі Завантаження"],"Downloads":[""],"Add New":["Додати нове"],"Add Download":[""],"Edit":["Редагувати"],"Edit Download":["Редагувати Завантаження"],"New Download":[""],"View Download":[""],"Search Downloads":[""],"No Downloads found":[""],"No Downloads found in trash":[""],"Parent Download":[""],"This is where you can create and manage downloads for your site.":[""],"License successfully activated.":["Ліцензія успішно активована."],"<a href=\"%s\">Register your copy</a> of the <strong>%s</strong> extension to receive access to automatic upgrades and support. Need a license key? <a href=\"%s\" target=\"_blank\">Purchase one now</a>.":[""],"Download not found":["Завантаження не знайдено"],"Download Categories":[""],"Download Category":[""],"Search Download Categories":[""],"All Download Categories":[""],"Parent Download Category":[""],"Edit Download Category":[""],"Update Download Category":[""],"Add New Download Category":[""],"New Download Category Name":[""],"Download Tags":[""],"Download Tag":[""],"Search Download Tags":[""],"All Download Tags":[""],"Parent Download Tag":[""],"Edit Download Tag":[""],"Update Download Tag":[""],"Add New Download Tag":[""],"New Download Tag Name":[""],"Display a list of your downloads.":["Відображення списку завантажень."],"Downloads List":["Список завантажень"],"Featured Downloads":[""],"Limit":["Обмеження"],"Output template":[""],"Default template":["Шаблон по замовчуванню"],"Order by":["Сортувати за"],"Random":["Випадковий"],"Date added":["Додано"],"Date modified":["Змінено"],"Order":["Порядок"],"ASC":["ASC"],"DESC":["Опис"],"Show only featured downloads":[""],"Show only members only downloads":[""],"1 download":["","%d downloads","%d downloads","%d downloads"],"Version %s":[""],"Download File":["Звантажити Файл"],"Download &ldquo;%s&rdquo;":[""],"Downloaded 1 time":["Завантажене %d раз","Завантажене %d разів","Завантажене %d разів","Завантажене %d разів"],"Download Monitor":["Download Monitor"],"https://www.download-monitor.com":["https://www.download-monitor.com"],"A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.":[""],"Never5":[""],"https://www.never5.com":["https://www.never5.com"],"Drop file here *or* select file\u0004or":["або"]}}}
languages/download-monitor-uk_UA.mo CHANGED
Binary file
languages/download-monitor-uk_UA.po CHANGED
@@ -15,7 +15,7 @@ msgstr ""
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Language: uk_UA\n"
18
- "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
19
  "X-Generator: grunt-wp-i18n 0.4.9\n"
20
 
21
  #: assets/views/meta-box/version.php:8
@@ -40,6 +40,7 @@ msgid_plural "Downloaded %s times"
40
  msgstr[0] "Скачано %s раз"
41
  msgstr[1] "Скачано %s разів"
42
  msgstr[2] "Скачано %s разів"
 
43
 
44
  #: assets/views/meta-box/version.php:22 src/Admin/CustomColumns.php:28
45
  #: src/Admin/MediaInsert.php:241
@@ -1172,6 +1173,7 @@ msgid_plural "%d downloads"
1172
  msgstr[0] ""
1173
  msgstr[1] ""
1174
  msgstr[2] ""
 
1175
 
1176
  #: templates/content-download-box.php:27
1177
  #: templates/content-download-filename.php:14
@@ -1194,6 +1196,7 @@ msgid_plural "Downloaded %d times"
1194
  msgstr[0] "Завантажене %d раз"
1195
  msgstr[1] "Завантажене %d разів"
1196
  msgstr[2] "Завантажене %d разів"
 
1197
 
1198
  #. Plugin Name of the plugin/theme
1199
  msgid "Download Monitor"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Language: uk_UA\n"
18
+ "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
19
  "X-Generator: grunt-wp-i18n 0.4.9\n"
20
 
21
  #: assets/views/meta-box/version.php:8
40
  msgstr[0] "Скачано %s раз"
41
  msgstr[1] "Скачано %s разів"
42
  msgstr[2] "Скачано %s разів"
43
+ msgstr[3] "Скачано %s разів"
44
 
45
  #: assets/views/meta-box/version.php:22 src/Admin/CustomColumns.php:28
46
  #: src/Admin/MediaInsert.php:241
1173
  msgstr[0] ""
1174
  msgstr[1] ""
1175
  msgstr[2] ""
1176
+ msgstr[3] ""
1177
 
1178
  #: templates/content-download-box.php:27
1179
  #: templates/content-download-filename.php:14
1196
  msgstr[0] "Завантажене %d раз"
1197
  msgstr[1] "Завантажене %d разів"
1198
  msgstr[2] "Завантажене %d разів"
1199
+ msgstr[3] "Завантажене %d разів"
1200
 
1201
  #. Plugin Name of the plugin/theme
1202
  msgid "Download Monitor"
languages/download-monitor-zh_CN-dlm_gutenberg_blocks.json ADDED
@@ -0,0 +1 @@
 
1
+ {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"zh_CN"},"Remove":["移除"],"Click to toggle":["单击切换"],"Version <span class=\"version\">%s</span> (%s)":["版本 <span class=\"version\">%s</span> (%s)"],"n/a":["未知"],"Downloaded %s time":["已下载%s次"],"Version":["版本"],"File URL(s)":["文件URL"],"Enter one file path/URL per line - multiple files will be used as mirrors (chosen at random).":["每行输入一个文件路径/URL - 多个文件将被作为镜像(随机选择)"],"Upload file":["上传文件"],"Choose a file":["选择文件"],"Insert file URL":["插入文件URL"],"Browse for file":["浏览文件"],"Download count":["下载次数"],"File Date":["文件日期"],"h":["h"],"m":["m"],"It looks like you upgraded to the latest version of Download Monitor from a legacy version (3.x)":[""],"Currently your downloads don't work like they should, we need to %s before they'll work again.":[""],"upgrade your downloads":[""],"We've created an upgrading tool that will do all the work for you. You can read more about this tool on %sour website (click here)%s or start the upgrade now.":[""],"Take me to the Upgrade Tool":[""],"hide notice":[""],"Download Monitor Extensions":[""],"Extensions":[""],"If you like %sDownload Monitor%s please leave us a %s★★★★★%s rating. A huge thank you from us in advance!":[""],"Insert Download":["插入下载"],"Are you sure you want to delete this file ? ":[""],"Browse for a file":["浏览文件"],"Select a category":["选择一个分类"],"Download Monitor Data":[""],"Featured download":["特色下载"],"Members only":["仅会员"],"Redirect to file":["重定向至文件"],"Image":["图像"],"Title":["标题"],"ID":["ID"],"File":["文件"],"Categories":["分类"],"Tags":["标签"],"Featured":["特色"],"Redirect only":["仅重定向"],"Date posted":["发布日期"],"Yes":["是"],"Download title":["下载标题"],"Download updated.":["下载已经更新"],"Custom field updated.":["自定义字段已更新"],"Custom field deleted.":["自定义字段已删除"],"Download restored to revision from %s":[" 从%s下载恢复修正"],"Download published.":["下载已发布"],"Download saved.":["下载已保存"],"Download submitted.":["下载已提交"],"Download scheduled for: <strong>%1$s</strong>.":["已经为<strong>%1$s</strong>安排下载。"],"M j, Y @ G:i":["M j, Y @ G:i"],"Download draft updated.":["下载草稿已更新"],"Popular Downloads":["热门下载"],"There are no stats available yet!":["目前未统计"],"Download":["下载"],"Extend Download Monitor with its powerful free and paid extensions. %sClick here to browse all extensions%s":[""],"No files found":["未找到文件"],"Insert Shortcode":["插入快捷码"],"Quick-add download":["快速添加下载"],"Error: File was not created.":["错误:未能创建文件。"],"Download successfully created.":["已成功创建下载。"],"Error: Download was not created.":["错误: 未能创建下载。"],"Search download":[""],"Choose a download":["选择下载"],"Template":["模板"],"Template Name":["模板名称"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>image</code>, the <code>content-download-image.php</code> template will be used instead.":["留空将使用 <code>content-download.php</code>模板文件。如果输入了,例如 <code>image</code>,那么将使用 <code>content-download-image.php</code>模板文件。"],"Drop file here":["把文件拖至这里"],"Select File":["选择文件"],"Enter URL manually":["手工输入URL"],"Download URL":["下载URL"],"Required URL":["必选URL"],"Download Title":["下载标题"],"Required title":["标题必选"],"Optional version number":["可选版本号"],"Save Download":["保存下载"],"Allowed Files":["允许的文件"],"Please wait...":["请稍等 ..."],"Reports":[""],"Switch to %s":[""],"Per Day":[""],"Month":[""],"Download Reports":[""],"Loading":[""],"Settings":["设置"],"Because your server is running on nginx, our .htaccess file can't protect your downloads.":[""],"Please add the following rules to your nginx config to disable direct file access: %s":[""],"Download Monitor Transients successfully cleared!":[""],"Settings successfully saved":["已经成功保存设置"],"Save Changes":["保存更改"],"General":["通用"],"Default Template":["默认模板"],"Choose which template is used for <code>[download]</code> shortcodes by default (this can be overridden by the <code>format</code> argument).":["为快捷码 <code>[download]</code> 选择默认模板(<code>format</code>参数覆盖可以此项)。"],"Default - Title and count":["默认 - 标题和数目"],"Button - CSS styled button showing title and count":["按钮 - 显示标题和数目的CSS形式按钮"],"Box - Box showing thumbnail, title, count, filename and filesize.":["方框 - 显示缩略图,标题,数目,文件名和文件大小的方框"],"Filename - Filename and download count":["文件名 - 文件名和下载次数"],"Title - Shows download title only":["标题 - 仅显示下载标题"],"Version list - Lists all download versions in an unordered list":["版本列表 - 列出所有下载版本的无序列表"],"Custom template":["自定义模板"],"Custom Template":["自定义模板"],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>button</code>, the <code>content-download-button.php</code> template will be used instead. You can add custom templates inside your theme folder.":[""],"X-Accel-Redirect / X-Sendfile":["X-Accel-Redirect / X-Sendfile"],"Enable":["启用"],"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be used to serve downloads instead of PHP (server requires <code>mod_xsendfile</code>).":["如果支持, 可以使用<code>X-Accel-Redirect</code> / <code>X-Sendfile</code>供下载, 而不是使用PHP (服务器需要启用<code>mod_xsendfile</code>模块)。"],"Prevent hotlinking":["阻止热链"],"If enabled, the download handler will check the PHP referer to see if it originated from your site and if not, redirect them to the homepage.":["如果启用,下载处理器将检查referer查看请求是不是从你的网站发起。如果不是,将请求重定向到首页。"],"Allow Proxy IP Override":[""],"If enabled, Download Monitor will use the X_FORWARDED_FOR HTTP header set by proxies as the IP address. Note that anyone can set this header, making it less secure.":[""],"Endpoint":["Endpoint"],"download":["下载"],"Download Endpoint":["下载的Endpoint"],"Define what endpoint should be used for download links. By default this will be <code>%s</code>.":["定义用于下载链接的endpoint。默认为 <code>%s</code>。"],"Endpoint Value":["Endpoint值"],"Define what unique value should be used on the end of your endpoint to identify the downloadable file. e.g. ID would give a link like <code>%s</code>":["定义独一无二值放在endpoint之后用来标识下载文件。例如使用 ID 将给出像<code>%s</code>的链接。"],"Download ID":["下载ID"],"Download slug":["下载别名"],"Hashes":[""],"MD5 hashes":["MD5哈希"],"Generate MD5 hash for uploaded files":["为上传的文件生成MD5哈希"],"SHA1 hashes":["SHA1哈希"],"Generate SHA1 hash for uploaded files":["为上传的文件生成SHA1哈希"],"SHA256 hashes":[""],"Generate SHA256 hash for uploaded files":[""],"Hashes can optionally be output via shortcodes, but may cause performance issues with large files.":["哈希可以通过快捷码输出,但大文件可能会引起性能问题。"],"CRC32B hashes":["CRC32B哈希"],"Generate CRC32B hash for uploaded files":["为上传的文件生成CRC32B哈希"],"Logging":["记录日志"],"Download Log":["下载日志"],"Log download attempts, IP addresses and more.":["记录下载尝试,IP地址等。"],"Count unique IPs only":[""],"If enabled, the counter for each download will only increment and create a log entry once per IP address.":[""],"Access":[""],"No Access Page":[""],"Choose what page is displayed when the user has no access to a file. Don't forget to add the <code>[dlm_no_access]</code> shortcode to the page.":[""],"You do not have permission to access this download. %sGo to homepage%s":[""],"No access message":[""],"The message that will be displayed to visitors when they don't have access to a file.":[""],"Blacklist IPs":["IP黑名单"],"List IP Addresses to blacklist, 1 per line. Use IP/CIDR netmask format for ranges. IPv4 examples: <code>198.51.100.1</code> or <code>198.51.100.0/24</code>. IPv6 examples: <code>2001:db8::1</code> or <code>2001:db8::/32</code>.":[""],"Blacklist user agents":["浏览器User-Agent黑名单"],"List browser user agents to blacklist, 1 per line. Partial matches are sufficient. Regex matching is allowed by surrounding the pattern with forward slashes, e.g. <code>/^Mozilla.+Googlebot/</code>":[""],"Misc":[""],"Remove Data on Uninstall?":[""],"Check this box if you would like to completely remove all Download Monitor data when the plugin is deleted.":[""],"Clear all transients":[""],"Remove all Download Monitor transients, this can solve version caching issues.":[""],"Select Page":[""],"Download Information":[""],"Download Options":["下载选项"],"Downloadable Files/Versions":["可供下载的 文件/版本"],"Short Description":["简洁描述"],"URL":[""],"Shortcode":[""],"No download information for new downloads.":[""],"Mark this download as featured. Used by shortcodes and widgets.":["标记为特色下载。快捷码和小工具可以使用。"],"Only logged in users will be able to access the file via a download link if this is enabled.":["如果启用此选项,仅登录用户可以通过下载链接访问文件。"],"Don't force download. If the <code>dlm_uploads</code> folder is protected you may need to move your file.":[""],"Add file":["添加文件"],"Close all":["关闭所有 "],"Expand all":["展开所有"],"Documentation":[""],"Password Required":["需要密码"],"Download does not exist.":["下载不存在"],"Go to homepage &rarr;":["转向主页 &rarr;"],"Download Error":["下载错误"],"No file paths defined.":["没有定义文件路径"],"Redirected to file":["重定向到文件"],"Redirected to remote file.":["重定向到远程文件"],"File not found.":["文件没有找到"],"No Access":[""],"Legacy Upgrader":[""],"Download Monitor - Legacy Upgrade":[""],"Welcome to the Download Monitor Legacy Upgrader. On this page we will upgrade your old Download Monitor (legacy) data so it will work with the latest version. If you're on this page, it should mean that you updated to this version from Download Monitor %s. If you're unsure if this is correct, or you want to read more about the legacy upgrade, we've setup a page that will explain this process in a lot more detail. %sClick here%s if to view that page.":[""],"Version ID":["版本ID"],"Filename":["文件名"],"User ID":["用户ID"],"User Login":["用户登录名"],"User Email":["用户Email"],"User IP":["用户IP"],"User Agent":["浏览器User-Agent"],"Date":["日期"],"Status":["状态"],"Meta Data":[""],"Logs":["日志"],"Download Logs":["下载日志"],"Export CSV":["导出为CSV"],"Are you sure you want to delete ALL log items?":[""],"Delete Logs":["删除日志"],"Delete":[""],"Download Complete":["下载完成"],"%s ago":["%s 前"]," (v%s)":[""]," (v%s no longer exists)":[""],"Download #%d (no longer exists)":["下载 #%d (已经不存在)"],"Non-member":["非会员"],"User":["用户"],"IP Address":["IP地址"],"Log entries deleted":[""],"Any status":["任何状态"],"Failed":["失败"],"Redirected":["已重定向"],"Completed":["已经完成"],"Show all dates":["显示所有日期"],"%1$s %2$d":["%1$s %2$d"],"Select a User":[""],"25 per page":["每页25条"],"50 per page":["每页50条"],"100 per page":["每页100条"],"200 per page":["每页200条"],"Show All":["显示所有"],"Filter":["过滤"],"All Downloads":["所有下载"],"Downloads":["下载"],"Add New":["新添加"],"Add Download":["添加下载"],"Edit":["编辑"],"Edit Download":["编辑下载"],"New Download":["新建下载"],"View Download":["浏览下载"],"Search Downloads":["查找下载"],"No Downloads found":["没有找到下载"],"No Downloads found in trash":["在垃圾篓没有找到下载"],"Parent Download":["父下载"],"This is where you can create and manage downloads for your site.":["在这儿您可以为您的站点创建和管理下载"],"License successfully activated.":[""],"<a href=\"%s\">Register your copy</a> of the <strong>%s</strong> extension to receive access to automatic upgrades and support. Need a license key? <a href=\"%s\" target=\"_blank\">Purchase one now</a>.":[""],"Download not found":["下载没有找到"],"Download Categories":[""],"Download Category":["下载分类"],"Search Download Categories":["查找下载分类"],"All Download Categories":["所有下载分类"],"Parent Download Category":["父下载分类"],"Edit Download Category":["编辑下载分类"],"Update Download Category":["更新下载分类"],"Add New Download Category":["添加新下载分类"],"New Download Category Name":["新下载分类名称"],"Download Tags":[""],"Download Tag":["下载标签"],"Search Download Tags":["查找下载标签"],"All Download Tags":["所有下载标签"],"Parent Download Tag":["父下载标签"],"Edit Download Tag":["编辑下载标签"],"Update Download Tag":["更新下载标签"],"Add New Download Tag":["添加新下载标签"],"New Download Tag Name":["新下载标签名称"],"Display a list of your downloads.":["显示您的下载列表"],"Downloads List":["下载列表"],"Featured Downloads":["特色下载"],"Limit":[""],"Output template":[""],"Default template":["默认模板"],"Order by":[""],"Random":["随机"],"Date added":["添加日期"],"Date modified":["修改日期"],"Order":[""],"ASC":["升序"],"DESC":["降序"],"Show only featured downloads":["仅显示特色下载"],"Show only members only downloads":["仅显示会员下载"],"1 download":["下载%d"],"Version %s":["版本 %s"],"Download File":["下载文件"],"Download &ldquo;%s&rdquo;":["下载 &ldquo;%s&rdquo;"],"Downloaded 1 time":["已下载%s次"],"Download Monitor":["Download Monitor"],"https://www.download-monitor.com":["http://www.download-monitor.com"],"A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.":["这是一个在你的WordPress站点管理下载文件,监控下载以及输出下载链接和文件信息的全方位解决方案。"],"Never5":[""],"https://www.never5.com":[""],"Drop file here *or* select file\u0004or":["或"]}}}
languages/download-monitor-zh_TW-dlm_gutenberg_blocks.json ADDED
@@ -0,0 +1 @@
 
1
+ {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"zh_TW"},"Remove":[""],"Click to toggle":[""],"Version <span class=\"version\">%s</span> (%s)":[""],"n/a":[""],"Downloaded %s time":[""],"Version":[""],"File URL(s)":[""],"Enter one file path/URL per line - multiple files will be used as mirrors (chosen at random).":[""],"Upload file":[""],"Choose a file":[""],"Insert file URL":[""],"Browse for file":[""],"Download count":[""],"File Date":[""],"h":[""],"m":[""],"It looks like you upgraded to the latest version of Download Monitor from a legacy version (3.x)":[""],"Currently your downloads don't work like they should, we need to %s before they'll work again.":[""],"upgrade your downloads":[""],"We've created an upgrading tool that will do all the work for you. You can read more about this tool on %sour website (click here)%s or start the upgrade now.":[""],"Take me to the Upgrade Tool":[""],"hide notice":[""],"Download Monitor Extensions":[""],"Extensions":[""],"If you like %sDownload Monitor%s please leave us a %s★★★★★%s rating. A huge thank you from us in advance!":[""],"Insert Download":[""],"Are you sure you want to delete this file ? ":[""],"Browse for a file":[""],"Select a category":[""],"Download Monitor Data":[""],"Featured download":[""],"Members only":[""],"Redirect to file":[""],"Image":[""],"Title":[""],"ID":[""],"File":[""],"Categories":[""],"Tags":[""],"Featured":[""],"Redirect only":[""],"Date posted":[""],"Yes":[""],"Download title":[""],"Download updated.":[""],"Custom field updated.":[""],"Custom field deleted.":[""],"Download restored to revision from %s":[""],"Download published.":[""],"Download saved.":[""],"Download submitted.":[""],"Download scheduled for: <strong>%1$s</strong>.":[""],"M j, Y @ G:i":[""],"Download draft updated.":[""],"Popular Downloads":[""],"There are no stats available yet!":[""],"Download":[""],"Extend Download Monitor with its powerful free and paid extensions. %sClick here to browse all extensions%s":[""],"No files found":[""],"Insert Shortcode":[""],"Quick-add download":[""],"Error: File was not created.":[""],"Download successfully created.":[""],"Error: Download was not created.":[""],"Search download":[""],"Choose a download":[""],"Template":[""],"Template Name":[""],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>image</code>, the <code>content-download-image.php</code> template will be used instead.":[""],"Drop file here":[""],"Select File":[""],"Enter URL manually":[""],"Download URL":[""],"Required URL":[""],"Download Title":[""],"Required title":[""],"Optional version number":[""],"Save Download":[""],"Allowed Files":[""],"Please wait...":[""],"Reports":[""],"Switch to %s":[""],"Per Day":[""],"Month":[""],"Download Reports":[""],"Loading":[""],"Settings":[""],"Because your server is running on nginx, our .htaccess file can't protect your downloads.":[""],"Please add the following rules to your nginx config to disable direct file access: %s":[""],"Download Monitor Transients successfully cleared!":[""],"Settings successfully saved":[""],"Save Changes":[""],"General":[""],"Default Template":[""],"Choose which template is used for <code>[download]</code> shortcodes by default (this can be overridden by the <code>format</code> argument).":[""],"Default - Title and count":[""],"Button - CSS styled button showing title and count":[""],"Box - Box showing thumbnail, title, count, filename and filesize.":[""],"Filename - Filename and download count":[""],"Title - Shows download title only":[""],"Version list - Lists all download versions in an unordered list":[""],"Custom template":[""],"Custom Template":[""],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>button</code>, the <code>content-download-button.php</code> template will be used instead. You can add custom templates inside your theme folder.":[""],"X-Accel-Redirect / X-Sendfile":[""],"Enable":[""],"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be used to serve downloads instead of PHP (server requires <code>mod_xsendfile</code>).":[""],"Prevent hotlinking":[""],"If enabled, the download handler will check the PHP referer to see if it originated from your site and if not, redirect them to the homepage.":[""],"Allow Proxy IP Override":[""],"If enabled, Download Monitor will use the X_FORWARDED_FOR HTTP header set by proxies as the IP address. Note that anyone can set this header, making it less secure.":[""],"Endpoint":[""],"download":[""],"Download Endpoint":[""],"Define what endpoint should be used for download links. By default this will be <code>%s</code>.":[""],"Endpoint Value":[""],"Define what unique value should be used on the end of your endpoint to identify the downloadable file. e.g. ID would give a link like <code>%s</code>":[""],"Download ID":[""],"Download slug":[""],"Hashes":[""],"MD5 hashes":[""],"Generate MD5 hash for uploaded files":[""],"SHA1 hashes":[""],"Generate SHA1 hash for uploaded files":[""],"SHA256 hashes":[""],"Generate SHA256 hash for uploaded files":[""],"Hashes can optionally be output via shortcodes, but may cause performance issues with large files.":[""],"CRC32B hashes":[""],"Generate CRC32B hash for uploaded files":[""],"Logging":[""],"Download Log":[""],"Log download attempts, IP addresses and more.":[""],"Count unique IPs only":[""],"If enabled, the counter for each download will only increment and create a log entry once per IP address.":[""],"Access":[""],"No Access Page":[""],"Choose what page is displayed when the user has no access to a file. Don't forget to add the <code>[dlm_no_access]</code> shortcode to the page.":[""],"You do not have permission to access this download. %sGo to homepage%s":[""],"No access message":[""],"The message that will be displayed to visitors when they don't have access to a file.":[""],"Blacklist IPs":[""],"List IP Addresses to blacklist, 1 per line. Use IP/CIDR netmask format for ranges. IPv4 examples: <code>198.51.100.1</code> or <code>198.51.100.0/24</code>. IPv6 examples: <code>2001:db8::1</code> or <code>2001:db8::/32</code>.":[""],"Blacklist user agents":[""],"List browser user agents to blacklist, 1 per line. Partial matches are sufficient. Regex matching is allowed by surrounding the pattern with forward slashes, e.g. <code>/^Mozilla.+Googlebot/</code>":[""],"Misc":[""],"Remove Data on Uninstall?":[""],"Check this box if you would like to completely remove all Download Monitor data when the plugin is deleted.":[""],"Clear all transients":[""],"Remove all Download Monitor transients, this can solve version caching issues.":[""],"Select Page":[""],"Download Information":[""],"Download Options":[""],"Downloadable Files/Versions":[""],"Short Description":[""],"URL":[""],"Shortcode":[""],"No download information for new downloads.":[""],"Mark this download as featured. Used by shortcodes and widgets.":[""],"Only logged in users will be able to access the file via a download link if this is enabled.":[""],"Don't force download. If the <code>dlm_uploads</code> folder is protected you may need to move your file.":[""],"Add file":[""],"Close all":[""],"Expand all":[""],"Documentation":[""],"Password Required":[""],"Download does not exist.":[""],"Go to homepage &rarr;":[""],"Download Error":[""],"No file paths defined.":[""],"Redirected to file":[""],"Redirected to remote file.":[""],"File not found.":[""],"No Access":[""],"Legacy Upgrader":[""],"Download Monitor - Legacy Upgrade":[""],"Welcome to the Download Monitor Legacy Upgrader. On this page we will upgrade your old Download Monitor (legacy) data so it will work with the latest version. If you're on this page, it should mean that you updated to this version from Download Monitor %s. If you're unsure if this is correct, or you want to read more about the legacy upgrade, we've setup a page that will explain this process in a lot more detail. %sClick here%s if to view that page.":[""],"Version ID":[""],"Filename":[""],"User ID":[""],"User Login":[""],"User Email":[""],"User IP":[""],"User Agent":[""],"Date":[""],"Status":[""],"Meta Data":[""],"Logs":[""],"Download Logs":[""],"Export CSV":[""],"Are you sure you want to delete ALL log items?":[""],"Delete Logs":[""],"Delete":[""],"Download Complete":[""],"%s ago":[""]," (v%s)":[""]," (v%s no longer exists)":[""],"Download #%d (no longer exists)":[""],"Non-member":[""],"User":[""],"IP Address":[""],"Log entries deleted":[""],"Any status":[""],"Failed":[""],"Redirected":[""],"Completed":[""],"Show all dates":[""],"%1$s %2$d":[""],"Select a User":[""],"25 per page":[""],"50 per page":[""],"100 per page":[""],"200 per page":[""],"Show All":[""],"Filter":[""],"All Downloads":[""],"Downloads":[""],"Add New":[""],"Add Download":[""],"Edit":[""],"Edit Download":[""],"New Download":[""],"View Download":[""],"Search Downloads":[""],"No Downloads found":[""],"No Downloads found in trash":[""],"Parent Download":[""],"This is where you can create and manage downloads for your site.":[""],"License successfully activated.":[""],"<a href=\"%s\">Register your copy</a> of the <strong>%s</strong> extension to receive access to automatic upgrades and support. Need a license key? <a href=\"%s\" target=\"_blank\">Purchase one now</a>.":[""],"Download not found":[""],"Download Categories":[""],"Download Category":[""],"Search Download Categories":[""],"All Download Categories":[""],"Parent Download Category":[""],"Edit Download Category":[""],"Update Download Category":[""],"Add New Download Category":[""],"New Download Category Name":[""],"Download Tags":[""],"Download Tag":[""],"Search Download Tags":[""],"All Download Tags":[""],"Parent Download Tag":[""],"Edit Download Tag":[""],"Update Download Tag":[""],"Add New Download Tag":[""],"New Download Tag Name":[""],"Display a list of your downloads.":[""],"Downloads List":[""],"Featured Downloads":[""],"Limit":[""],"Output template":[""],"Default template":[""],"Order by":[""],"Random":[""],"Date added":[""],"Date modified":[""],"Order":[""],"ASC":[""],"DESC":[""],"Show only featured downloads":[""],"Show only members only downloads":[""],"1 download":[""],"Version %s":[""],"Download File":[""],"Download &ldquo;%s&rdquo;":[""],"Downloaded 1 time":[""],"Download Monitor":[""],"https://www.download-monitor.com":[""],"A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.":[""],"Never5":[""],"https://www.never5.com":[""],"Drop file here *or* select file\u0004or":[""]}}}
languages/download-monitor-zh_TW.Big5-dlm_gutenberg_blocks.json ADDED
@@ -0,0 +1 @@
 
1
+ {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"zh_TW.Big5"},"Remove":[""],"Click to toggle":[""],"Version <span class=\"version\">%s</span> (%s)":[""],"n/a":[""],"Downloaded %s time":[""],"Version":[""],"File URL(s)":[""],"Enter one file path/URL per line - multiple files will be used as mirrors (chosen at random).":[""],"Upload file":[""],"Choose a file":[""],"Insert file URL":[""],"Browse for file":[""],"Download count":[""],"File Date":[""],"h":[""],"m":[""],"It looks like you upgraded to the latest version of Download Monitor from a legacy version (3.x)":[""],"Currently your downloads don't work like they should, we need to %s before they'll work again.":[""],"upgrade your downloads":[""],"We've created an upgrading tool that will do all the work for you. You can read more about this tool on %sour website (click here)%s or start the upgrade now.":[""],"Take me to the Upgrade Tool":[""],"hide notice":[""],"Download Monitor Extensions":[""],"Extensions":[""],"If you like %sDownload Monitor%s please leave us a %s★★★★★%s rating. A huge thank you from us in advance!":[""],"Insert Download":[""],"Are you sure you want to delete this file ? ":[""],"Browse for a file":[""],"Select a category":[""],"Download Monitor Data":[""],"Featured download":[""],"Members only":[""],"Redirect to file":[""],"Image":[""],"Title":[""],"ID":[""],"File":[""],"Categories":[""],"Tags":[""],"Featured":[""],"Redirect only":[""],"Date posted":[""],"Yes":[""],"Download title":[""],"Download updated.":[""],"Custom field updated.":[""],"Custom field deleted.":[""],"Download restored to revision from %s":[""],"Download published.":[""],"Download saved.":[""],"Download submitted.":[""],"Download scheduled for: <strong>%1$s</strong>.":[""],"M j, Y @ G:i":[""],"Download draft updated.":[""],"Popular Downloads":[""],"There are no stats available yet!":[""],"Download":[""],"Extend Download Monitor with its powerful free and paid extensions. %sClick here to browse all extensions%s":[""],"No files found":[""],"Insert Shortcode":[""],"Quick-add download":[""],"Error: File was not created.":[""],"Download successfully created.":[""],"Error: Download was not created.":[""],"Search download":[""],"Choose a download":[""],"Template":[""],"Template Name":[""],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>image</code>, the <code>content-download-image.php</code> template will be used instead.":[""],"Drop file here":[""],"Select File":[""],"Enter URL manually":[""],"Download URL":[""],"Required URL":[""],"Download Title":[""],"Required title":[""],"Optional version number":[""],"Save Download":[""],"Allowed Files":[""],"Please wait...":[""],"Reports":[""],"Switch to %s":[""],"Per Day":[""],"Month":[""],"Download Reports":[""],"Loading":[""],"Settings":[""],"Because your server is running on nginx, our .htaccess file can't protect your downloads.":[""],"Please add the following rules to your nginx config to disable direct file access: %s":[""],"Download Monitor Transients successfully cleared!":[""],"Settings successfully saved":[""],"Save Changes":[""],"General":[""],"Default Template":[""],"Choose which template is used for <code>[download]</code> shortcodes by default (this can be overridden by the <code>format</code> argument).":[""],"Default - Title and count":[""],"Button - CSS styled button showing title and count":[""],"Box - Box showing thumbnail, title, count, filename and filesize.":[""],"Filename - Filename and download count":[""],"Title - Shows download title only":[""],"Version list - Lists all download versions in an unordered list":[""],"Custom template":[""],"Custom Template":[""],"Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>button</code>, the <code>content-download-button.php</code> template will be used instead. You can add custom templates inside your theme folder.":[""],"X-Accel-Redirect / X-Sendfile":[""],"Enable":[""],"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be used to serve downloads instead of PHP (server requires <code>mod_xsendfile</code>).":[""],"Prevent hotlinking":[""],"If enabled, the download handler will check the PHP referer to see if it originated from your site and if not, redirect them to the homepage.":[""],"Allow Proxy IP Override":[""],"If enabled, Download Monitor will use the X_FORWARDED_FOR HTTP header set by proxies as the IP address. Note that anyone can set this header, making it less secure.":[""],"Endpoint":[""],"download":[""],"Download Endpoint":[""],"Define what endpoint should be used for download links. By default this will be <code>%s</code>.":[""],"Endpoint Value":[""],"Define what unique value should be used on the end of your endpoint to identify the downloadable file. e.g. ID would give a link like <code>%s</code>":[""],"Download ID":[""],"Download slug":[""],"Hashes":[""],"MD5 hashes":[""],"Generate MD5 hash for uploaded files":[""],"SHA1 hashes":[""],"Generate SHA1 hash for uploaded files":[""],"SHA256 hashes":[""],"Generate SHA256 hash for uploaded files":[""],"Hashes can optionally be output via shortcodes, but may cause performance issues with large files.":[""],"CRC32B hashes":[""],"Generate CRC32B hash for uploaded files":[""],"Logging":[""],"Download Log":[""],"Log download attempts, IP addresses and more.":[""],"Count unique IPs only":[""],"If enabled, the counter for each download will only increment and create a log entry once per IP address.":[""],"Access":[""],"No Access Page":[""],"Choose what page is displayed when the user has no access to a file. Don't forget to add the <code>[dlm_no_access]</code> shortcode to the page.":[""],"You do not have permission to access this download. %sGo to homepage%s":[""],"No access message":[""],"The message that will be displayed to visitors when they don't have access to a file.":[""],"Blacklist IPs":[""],"List IP Addresses to blacklist, 1 per line. Use IP/CIDR netmask format for ranges. IPv4 examples: <code>198.51.100.1</code> or <code>198.51.100.0/24</code>. IPv6 examples: <code>2001:db8::1</code> or <code>2001:db8::/32</code>.":[""],"Blacklist user agents":[""],"List browser user agents to blacklist, 1 per line. Partial matches are sufficient. Regex matching is allowed by surrounding the pattern with forward slashes, e.g. <code>/^Mozilla.+Googlebot/</code>":[""],"Misc":[""],"Remove Data on Uninstall?":[""],"Check this box if you would like to completely remove all Download Monitor data when the plugin is deleted.":[""],"Clear all transients":[""],"Remove all Download Monitor transients, this can solve version caching issues.":[""],"Select Page":[""],"Download Information":[""],"Download Options":[""],"Downloadable Files/Versions":[""],"Short Description":[""],"URL":[""],"Shortcode":[""],"No download information for new downloads.":[""],"Mark this download as featured. Used by shortcodes and widgets.":[""],"Only logged in users will be able to access the file via a download link if this is enabled.":[""],"Don't force download. If the <code>dlm_uploads</code> folder is protected you may need to move your file.":[""],"Add file":[""],"Close all":[""],"Expand all":[""],"Documentation":[""],"Password Required":[""],"Download does not exist.":[""],"Go to homepage &rarr;":[""],"Download Error":[""],"No file paths defined.":[""],"Redirected to file":[""],"Redirected to remote file.":[""],"File not found.":[""],"No Access":[""],"Legacy Upgrader":[""],"Download Monitor - Legacy Upgrade":[""],"Welcome to the Download Monitor Legacy Upgrader. On this page we will upgrade your old Download Monitor (legacy) data so it will work with the latest version. If you're on this page, it should mean that you updated to this version from Download Monitor %s. If you're unsure if this is correct, or you want to read more about the legacy upgrade, we've setup a page that will explain this process in a lot more detail. %sClick here%s if to view that page.":[""],"Version ID":[""],"Filename":[""],"User ID":[""],"User Login":[""],"User Email":[""],"User IP":[""],"User Agent":[""],"Date":[""],"Status":[""],"Meta Data":[""],"Logs":[""],"Download Logs":[""],"Export CSV":[""],"Are you sure you want to delete ALL log items?":[""],"Delete Logs":[""],"Delete":[""],"Download Complete":[""],"%s ago":[""]," (v%s)":[""]," (v%s no longer exists)":[""],"Download #%d (no longer exists)":[""],"Non-member":[""],"User":[""],"IP Address":[""],"Log entries deleted":[""],"Any status":[""],"Failed":[""],"Redirected":[""],"Completed":[""],"Show all dates":[""],"%1$s %2$d":[""],"Select a User":[""],"25 per page":[""],"50 per page":[""],"100 per page":[""],"200 per page":[""],"Show All":[""],"Filter":[""],"All Downloads":[""],"Downloads":[""],"Add New":[""],"Add Download":[""],"Edit":[""],"Edit Download":[""],"New Download":[""],"View Download":[""],"Search Downloads":[""],"No Downloads found":[""],"No Downloads found in trash":[""],"Parent Download":[""],"This is where you can create and manage downloads for your site.":[""],"License successfully activated.":[""],"<a href=\"%s\">Register your copy</a> of the <strong>%s</strong> extension to receive access to automatic upgrades and support. Need a license key? <a href=\"%s\" target=\"_blank\">Purchase one now</a>.":[""],"Download not found":[""],"Download Categories":[""],"Download Category":[""],"Search Download Categories":[""],"All Download Categories":[""],"Parent Download Category":[""],"Edit Download Category":[""],"Update Download Category":[""],"Add New Download Category":[""],"New Download Category Name":[""],"Download Tags":[""],"Download Tag":[""],"Search Download Tags":[""],"All Download Tags":[""],"Parent Download Tag":[""],"Edit Download Tag":[""],"Update Download Tag":[""],"Add New Download Tag":[""],"New Download Tag Name":[""],"Display a list of your downloads.":[""],"Downloads List":[""],"Featured Downloads":[""],"Limit":[""],"Output template":[""],"Default template":[""],"Order by":[""],"Random":[""],"Date added":[""],"Date modified":[""],"Order":[""],"ASC":[""],"DESC":[""],"Show only featured downloads":[""],"Show only members only downloads":[""],"1 download":[""],"Version %s":[""],"Download File":[""],"Download &ldquo;%s&rdquo;":[""],"Downloaded 1 time":[""],"Download Monitor":[""],"https://www.download-monitor.com":[""],"A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.":[""],"Never5":[""],"https://www.never5.com":[""],"Drop file here *or* select file\u0004or":[""]}}}
languages/download-monitor-zh_TW.Big5.mo ADDED
Binary file
languages/download-monitor-zh_TW.Big5.po ADDED
@@ -0,0 +1,1216 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2017 Never5
2
+ # This file is distributed under the GPL v3.
3
+ # Translators:
4
+ msgid ""
5
+ msgstr ""
6
+ "Project-Id-Version: Download Monitor\n"
7
+ "Report-Msgid-Bugs-To: https://github.com/download-monitor/download-monitor/issues\n"
8
+ "POT-Creation-Date: 2017-12-19 12:47:52+00:00\n"
9
+ "PO-Revision-Date: 2017-12-19 12:48+0000\n"
10
+ "Last-Translator: Barry Kooij <mail@barrykooij.nl>\n"
11
+ "Language-Team: Chinese (Taiwan) (Big5) (http://www.transifex.com/barrykooijplugins/download-monitor/language/zh_TW.Big5/)\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=UTF-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "Language: zh_TW.Big5\n"
16
+ "Plural-Forms: nplurals=1; plural=0;\n"
17
+ "X-Generator: grunt-wp-i18n 0.4.9\n"
18
+
19
+ #: assets/views/meta-box/version.php:8
20
+ msgid "Remove"
21
+ msgstr ""
22
+
23
+ #: assets/views/meta-box/version.php:9
24
+ msgid "Click to toggle"
25
+ msgstr ""
26
+
27
+ #: assets/views/meta-box/version.php:10
28
+ msgid "Version <span class=\"version\">%s</span> (%s)"
29
+ msgstr ""
30
+
31
+ #: assets/views/meta-box/version.php:10 assets/views/meta-box/version.php:24
32
+ msgid "n/a"
33
+ msgstr ""
34
+
35
+ #: assets/views/meta-box/version.php:10
36
+ msgid "Downloaded %s time"
37
+ msgid_plural "Downloaded %s times"
38
+ msgstr[0] ""
39
+
40
+ #: assets/views/meta-box/version.php:22 src/Admin/CustomColumns.php:28
41
+ #: src/Admin/MediaInsert.php:241
42
+ msgid "Version"
43
+ msgstr ""
44
+
45
+ #: assets/views/meta-box/version.php:28
46
+ msgid "File URL(s)"
47
+ msgstr ""
48
+
49
+ #: assets/views/meta-box/version.php:31
50
+ msgid ""
51
+ "Enter one file path/URL per line - multiple files will be used as mirrors "
52
+ "(chosen at random)."
53
+ msgstr ""
54
+
55
+ #: assets/views/meta-box/version.php:37
56
+ msgid "Upload file"
57
+ msgstr ""
58
+
59
+ #: assets/views/meta-box/version.php:39
60
+ msgid "Choose a file"
61
+ msgstr ""
62
+
63
+ #: assets/views/meta-box/version.php:40
64
+ msgid "Insert file URL"
65
+ msgstr ""
66
+
67
+ #: assets/views/meta-box/version.php:44
68
+ msgid "Browse for file"
69
+ msgstr ""
70
+
71
+ #: assets/views/meta-box/version.php:64 src/Admin/CustomColumns.php:31
72
+ #: src/Admin/Dashboard.php:65 src/Widgets/class-dlm-widget-downloads.php:205
73
+ msgid "Download count"
74
+ msgstr ""
75
+
76
+ #: assets/views/meta-box/version.php:71
77
+ msgid "File Date"
78
+ msgstr ""
79
+
80
+ #: assets/views/meta-box/version.php:74
81
+ msgid "h"
82
+ msgstr ""
83
+
84
+ #: assets/views/meta-box/version.php:77
85
+ msgid "m"
86
+ msgstr ""
87
+
88
+ #: assets/views/notice-lu-upgrade.php:7
89
+ msgid ""
90
+ "It looks like you upgraded to the latest version of Download Monitor from a "
91
+ "legacy version (3.x)"
92
+ msgstr ""
93
+
94
+ #: assets/views/notice-lu-upgrade.php:8
95
+ msgid ""
96
+ "Currently your downloads don't work like they should, we need to %s before "
97
+ "they'll work again."
98
+ msgstr ""
99
+
100
+ #: assets/views/notice-lu-upgrade.php:8
101
+ msgid "upgrade your downloads"
102
+ msgstr ""
103
+
104
+ #: assets/views/notice-lu-upgrade.php:9
105
+ msgid ""
106
+ "We've created an upgrading tool that will do all the work for you. You can "
107
+ "read more about this tool on %sour website (click here)%s or start the "
108
+ "upgrade now."
109
+ msgstr ""
110
+
111
+ #: assets/views/notice-lu-upgrade.php:10
112
+ msgid "Take me to the Upgrade Tool"
113
+ msgstr ""
114
+
115
+ #: assets/views/notice-lu-upgrade.php:11
116
+ msgid "hide notice"
117
+ msgstr ""
118
+
119
+ #: src/Admin/Admin.php:224 src/Admin/Extensions.php:45
120
+ msgid "Download Monitor Extensions"
121
+ msgstr ""
122
+
123
+ #: src/Admin/Admin.php:224 src/DLM.php:225
124
+ msgid "Extensions"
125
+ msgstr ""
126
+
127
+ #: src/Admin/Admin.php:274
128
+ msgid ""
129
+ "If you like %sDownload Monitor%s please leave us a %s★★★★★%s rating. A huge "
130
+ "thank you from us in advance!"
131
+ msgstr ""
132
+
133
+ #: src/Admin/AdminScripts.php:167 src/Admin/MediaInsert.php:36
134
+ #: src/Admin/MediaInsert.php:55
135
+ msgid "Insert Download"
136
+ msgstr ""
137
+
138
+ #: src/Admin/AdminScripts.php:172
139
+ msgid "Are you sure you want to delete this file ? "
140
+ msgstr ""
141
+
142
+ #: src/Admin/AdminScripts.php:173 src/Admin/MediaBrowser.php:34
143
+ msgid "Browse for a file"
144
+ msgstr ""
145
+
146
+ #: src/Admin/CustomActions.php:61
147
+ msgid "Select a category"
148
+ msgstr ""
149
+
150
+ #: src/Admin/CustomActions.php:207
151
+ msgid "Download Monitor Data"
152
+ msgstr ""
153
+
154
+ #: src/Admin/CustomActions.php:209 src/Admin/WritePanels.php:126
155
+ msgid "Featured download"
156
+ msgstr ""
157
+
158
+ #: src/Admin/CustomActions.php:211 src/Admin/CustomColumns.php:33
159
+ #: src/Admin/WritePanels.php:132
160
+ msgid "Members only"
161
+ msgstr ""
162
+
163
+ #: src/Admin/CustomActions.php:213 src/Admin/WritePanels.php:138
164
+ msgid "Redirect to file"
165
+ msgstr ""
166
+
167
+ #: src/Admin/CustomColumns.php:24
168
+ msgid "Image"
169
+ msgstr ""
170
+
171
+ #: src/Admin/CustomColumns.php:25
172
+ #: src/Widgets/class-dlm-widget-downloads.php:169
173
+ #: src/Widgets/class-dlm-widget-downloads.php:195
174
+ msgid "Title"
175
+ msgstr ""
176
+
177
+ #: src/Admin/CustomColumns.php:26 src/Admin/WritePanels.php:79
178
+ #: src/Widgets/class-dlm-widget-downloads.php:199
179
+ msgid "ID"
180
+ msgstr ""
181
+
182
+ #: src/Admin/CustomColumns.php:27 src/Logs/LoggingListTable.php:196
183
+ msgid "File"
184
+ msgstr ""
185
+
186
+ #: src/Admin/CustomColumns.php:29 src/TaxonomyManager.php:27
187
+ #: src/TaxonomyManager.php:30
188
+ msgid "Categories"
189
+ msgstr ""
190
+
191
+ #: src/Admin/CustomColumns.php:30 src/TaxonomyManager.php:59
192
+ #: src/TaxonomyManager.php:62
193
+ msgid "Tags"
194
+ msgstr ""
195
+
196
+ #: src/Admin/CustomColumns.php:32
197
+ msgid "Featured"
198
+ msgstr ""
199
+
200
+ #: src/Admin/CustomColumns.php:34
201
+ msgid "Redirect only"
202
+ msgstr ""
203
+
204
+ #: src/Admin/CustomColumns.php:35
205
+ msgid "Date posted"
206
+ msgstr ""
207
+
208
+ #: src/Admin/CustomColumns.php:81 src/Admin/CustomColumns.php:88
209
+ #: src/Admin/CustomColumns.php:95
210
+ msgid "Yes"
211
+ msgstr ""
212
+
213
+ #: src/Admin/CustomLabels.php:24
214
+ msgid "Download title"
215
+ msgstr ""
216
+
217
+ #: src/Admin/CustomLabels.php:44 src/Admin/CustomLabels.php:47
218
+ msgid "Download updated."
219
+ msgstr ""
220
+
221
+ #: src/Admin/CustomLabels.php:45
222
+ msgid "Custom field updated."
223
+ msgstr ""
224
+
225
+ #: src/Admin/CustomLabels.php:46
226
+ msgid "Custom field deleted."
227
+ msgstr ""
228
+
229
+ #: src/Admin/CustomLabels.php:48
230
+ msgid "Download restored to revision from %s"
231
+ msgstr ""
232
+
233
+ #: src/Admin/CustomLabels.php:49
234
+ msgid "Download published."
235
+ msgstr ""
236
+
237
+ #: src/Admin/CustomLabels.php:50
238
+ msgid "Download saved."
239
+ msgstr ""
240
+
241
+ #: src/Admin/CustomLabels.php:51
242
+ msgid "Download submitted."
243
+ msgstr ""
244
+
245
+ #: src/Admin/CustomLabels.php:52
246
+ msgid "Download scheduled for: <strong>%1$s</strong>."
247
+ msgstr ""
248
+
249
+ #: src/Admin/CustomLabels.php:53
250
+ msgid "M j, Y @ G:i"
251
+ msgstr ""
252
+
253
+ #: src/Admin/CustomLabels.php:54
254
+ msgid "Download draft updated."
255
+ msgstr ""
256
+
257
+ #: src/Admin/Dashboard.php:23
258
+ msgid "Popular Downloads"
259
+ msgstr ""
260
+
261
+ #: src/Admin/Dashboard.php:54
262
+ msgid "There are no stats available yet!"
263
+ msgstr ""
264
+
265
+ #: src/Admin/Dashboard.php:64 src/Logs/LoggingListTable.php:195
266
+ #: src/PostTypeManager.php:23
267
+ msgid "Download"
268
+ msgstr ""
269
+
270
+ #: src/Admin/Extensions.php:76
271
+ msgid ""
272
+ "Extend Download Monitor with its powerful free and paid extensions. %sClick "
273
+ "here to browse all extensions%s"
274
+ msgstr ""
275
+
276
+ #: src/Admin/MediaBrowser.php:108
277
+ msgid "No files found"
278
+ msgstr ""
279
+
280
+ #: src/Admin/MediaInsert.php:66 src/Admin/MediaInsert.php:204
281
+ msgid "Insert Shortcode"
282
+ msgstr ""
283
+
284
+ #: src/Admin/MediaInsert.php:67
285
+ msgid "Quick-add download"
286
+ msgstr ""
287
+
288
+ #: src/Admin/MediaInsert.php:114
289
+ msgid "Error: File was not created."
290
+ msgstr ""
291
+
292
+ #: src/Admin/MediaInsert.php:134
293
+ msgid "Download successfully created."
294
+ msgstr ""
295
+
296
+ #: src/Admin/MediaInsert.php:137
297
+ msgid "Error: Download was not created."
298
+ msgstr ""
299
+
300
+ #: src/Admin/MediaInsert.php:161
301
+ msgid "Search download"
302
+ msgstr ""
303
+
304
+ #: src/Admin/MediaInsert.php:169
305
+ msgid "Choose a download"
306
+ msgstr ""
307
+
308
+ #: src/Admin/MediaInsert.php:194
309
+ msgid "Template"
310
+ msgstr ""
311
+
312
+ #: src/Admin/MediaInsert.php:196
313
+ msgid "Template Name"
314
+ msgstr ""
315
+
316
+ #: src/Admin/MediaInsert.php:198
317
+ msgid ""
318
+ "Leaving this blank will use the default <code>content-download.php</code> "
319
+ "template file. If you enter, for example, <code>image</code>, the <code"
320
+ ">content-download-image.php</code> template will be used instead."
321
+ msgstr ""
322
+
323
+ #: src/Admin/MediaInsert.php:215
324
+ msgid "Drop file here"
325
+ msgstr ""
326
+
327
+ #: src/Admin/MediaInsert.php:220
328
+ msgid "Select File"
329
+ msgstr ""
330
+
331
+ #: src/Admin/MediaInsert.php:224
332
+ msgid "Enter URL manually"
333
+ msgstr ""
334
+
335
+ #: src/Admin/MediaInsert.php:229
336
+ msgid "Download URL"
337
+ msgstr ""
338
+
339
+ #: src/Admin/MediaInsert.php:231
340
+ msgid "Required URL"
341
+ msgstr ""
342
+
343
+ #: src/Admin/MediaInsert.php:235 src/Logs/LogExportCSV.php:68
344
+ msgid "Download Title"
345
+ msgstr ""
346
+
347
+ #: src/Admin/MediaInsert.php:237
348
+ msgid "Required title"
349
+ msgstr ""
350
+
351
+ #: src/Admin/MediaInsert.php:243
352
+ msgid "Optional version number"
353
+ msgstr ""
354
+
355
+ #: src/Admin/MediaInsert.php:248
356
+ msgid "Save Download"
357
+ msgstr ""
358
+
359
+ #: src/Admin/MediaInsert.php:304
360
+ msgid "Allowed Files"
361
+ msgstr ""
362
+
363
+ #: src/Admin/MediaInsert.php:354
364
+ msgid "Please wait..."
365
+ msgstr ""
366
+
367
+ #: src/Admin/Reports/Page.php:23
368
+ msgid "Reports"
369
+ msgstr ""
370
+
371
+ #: src/Admin/Reports/Page.php:115
372
+ msgid "Switch to %s"
373
+ msgstr ""
374
+
375
+ #: src/Admin/Reports/Page.php:140
376
+ msgid "Per Day"
377
+ msgstr ""
378
+
379
+ #: src/Admin/Reports/Page.php:141
380
+ msgid "Month"
381
+ msgstr ""
382
+
383
+ #: src/Admin/Reports/Page.php:184
384
+ msgid "Download Reports"
385
+ msgstr ""
386
+
387
+ #: src/Admin/Settings/Fields/LazySelect.php:41
388
+ msgid "Loading"
389
+ msgstr ""
390
+
391
+ #: src/Admin/Settings/Page.php:22 src/DLM.php:224
392
+ msgid "Settings"
393
+ msgstr ""
394
+
395
+ #: src/Admin/Settings/Page.php:45
396
+ msgid ""
397
+ "Because your server is running on nginx, our .htaccess file can't protect "
398
+ "your downloads."
399
+ msgstr ""
400
+
401
+ #: src/Admin/Settings/Page.php:46
402
+ msgid ""
403
+ "Please add the following rules to your nginx config to disable direct file "
404
+ "access: %s"
405
+ msgstr ""
406
+
407
+ #: src/Admin/Settings/Page.php:92
408
+ msgid "Download Monitor Transients successfully cleared!"
409
+ msgstr ""
410
+
411
+ #: src/Admin/Settings/Page.php:135
412
+ msgid "Settings successfully saved"
413
+ msgstr ""
414
+
415
+ #: src/Admin/Settings/Page.php:178
416
+ msgid "Save Changes"
417
+ msgstr ""
418
+
419
+ #: src/Admin/Settings/Settings.php:51
420
+ msgid "General"
421
+ msgstr ""
422
+
423
+ #: src/Admin/Settings/Settings.php:56
424
+ msgid "Default Template"
425
+ msgstr ""
426
+
427
+ #: src/Admin/Settings/Settings.php:57
428
+ msgid ""
429
+ "Choose which template is used for <code>[download]</code> shortcodes by "
430
+ "default (this can be overridden by the <code>format</code> argument)."
431
+ msgstr ""
432
+
433
+ #: src/Admin/Settings/Settings.php:60
434
+ msgid "Default - Title and count"
435
+ msgstr ""
436
+
437
+ #: src/Admin/Settings/Settings.php:61
438
+ msgid "Button - CSS styled button showing title and count"
439
+ msgstr ""
440
+
441
+ #: src/Admin/Settings/Settings.php:62
442
+ msgid "Box - Box showing thumbnail, title, count, filename and filesize."
443
+ msgstr ""
444
+
445
+ #: src/Admin/Settings/Settings.php:63
446
+ msgid "Filename - Filename and download count"
447
+ msgstr ""
448
+
449
+ #: src/Admin/Settings/Settings.php:64
450
+ msgid "Title - Shows download title only"
451
+ msgstr ""
452
+
453
+ #: src/Admin/Settings/Settings.php:65
454
+ msgid "Version list - Lists all download versions in an unordered list"
455
+ msgstr ""
456
+
457
+ #: src/Admin/Settings/Settings.php:66
458
+ msgid "Custom template"
459
+ msgstr ""
460
+
461
+ #: src/Admin/Settings/Settings.php:73
462
+ msgid "Custom Template"
463
+ msgstr ""
464
+
465
+ #: src/Admin/Settings/Settings.php:74
466
+ msgid ""
467
+ "Leaving this blank will use the default <code>content-download.php</code> "
468
+ "template file. If you enter, for example, <code>button</code>, the <code"
469
+ ">content-download-button.php</code> template will be used instead. You can "
470
+ "add custom templates inside your theme folder."
471
+ msgstr ""
472
+
473
+ #: src/Admin/Settings/Settings.php:79
474
+ msgid "X-Accel-Redirect / X-Sendfile"
475
+ msgstr ""
476
+
477
+ #: src/Admin/Settings/Settings.php:80 src/Admin/Settings/Settings.php:88
478
+ #: src/Admin/Settings/Settings.php:96 src/Admin/Settings/Settings.php:168
479
+ #: src/Admin/Settings/Settings.php:178 src/Admin/Settings/Settings.php:228
480
+ msgid "Enable"
481
+ msgstr ""
482
+
483
+ #: src/Admin/Settings/Settings.php:81
484
+ msgid ""
485
+ "If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be"
486
+ " used to serve downloads instead of PHP (server requires "
487
+ "<code>mod_xsendfile</code>)."
488
+ msgstr ""
489
+
490
+ #: src/Admin/Settings/Settings.php:87
491
+ msgid "Prevent hotlinking"
492
+ msgstr ""
493
+
494
+ #: src/Admin/Settings/Settings.php:89
495
+ msgid ""
496
+ "If enabled, the download handler will check the PHP referer to see if it "
497
+ "originated from your site and if not, redirect them to the homepage."
498
+ msgstr ""
499
+
500
+ #: src/Admin/Settings/Settings.php:95
501
+ msgid "Allow Proxy IP Override"
502
+ msgstr ""
503
+
504
+ #: src/Admin/Settings/Settings.php:97
505
+ msgid ""
506
+ "If enabled, Download Monitor will use the X_FORWARDED_FOR HTTP header set by"
507
+ " proxies as the IP address. Note that anyone can set this header, making it "
508
+ "less secure."
509
+ msgstr ""
510
+
511
+ #: src/Admin/Settings/Settings.php:103
512
+ msgid "Endpoint"
513
+ msgstr ""
514
+
515
+ #: src/Admin/Settings/Settings.php:109
516
+ msgid "download"
517
+ msgstr ""
518
+
519
+ #: src/Admin/Settings/Settings.php:110
520
+ msgid "Download Endpoint"
521
+ msgstr ""
522
+
523
+ #: src/Admin/Settings/Settings.php:111
524
+ msgid ""
525
+ "Define what endpoint should be used for download links. By default this will"
526
+ " be <code>%s</code>."
527
+ msgstr ""
528
+
529
+ #: src/Admin/Settings/Settings.php:116
530
+ msgid "Endpoint Value"
531
+ msgstr ""
532
+
533
+ #: src/Admin/Settings/Settings.php:117
534
+ msgid ""
535
+ "Define what unique value should be used on the end of your endpoint to "
536
+ "identify the downloadable file. e.g. ID would give a link like "
537
+ "<code>%s</code>"
538
+ msgstr ""
539
+
540
+ #: src/Admin/Settings/Settings.php:120 src/Logs/LogExportCSV.php:67
541
+ msgid "Download ID"
542
+ msgstr ""
543
+
544
+ #: src/Admin/Settings/Settings.php:121
545
+ msgid "Download slug"
546
+ msgstr ""
547
+
548
+ #: src/Admin/Settings/Settings.php:127
549
+ msgid "Hashes"
550
+ msgstr ""
551
+
552
+ #: src/Admin/Settings/Settings.php:132
553
+ msgid "MD5 hashes"
554
+ msgstr ""
555
+
556
+ #: src/Admin/Settings/Settings.php:133
557
+ msgid "Generate MD5 hash for uploaded files"
558
+ msgstr ""
559
+
560
+ #: src/Admin/Settings/Settings.php:140
561
+ msgid "SHA1 hashes"
562
+ msgstr ""
563
+
564
+ #: src/Admin/Settings/Settings.php:141
565
+ msgid "Generate SHA1 hash for uploaded files"
566
+ msgstr ""
567
+
568
+ #: src/Admin/Settings/Settings.php:148
569
+ msgid "SHA256 hashes"
570
+ msgstr ""
571
+
572
+ #: src/Admin/Settings/Settings.php:149
573
+ msgid "Generate SHA256 hash for uploaded files"
574
+ msgstr ""
575
+
576
+ #: src/Admin/Settings/Settings.php:150 src/Admin/Settings/Settings.php:158
577
+ msgid ""
578
+ "Hashes can optionally be output via shortcodes, but may cause performance "
579
+ "issues with large files."
580
+ msgstr ""
581
+
582
+ #: src/Admin/Settings/Settings.php:156
583
+ msgid "CRC32B hashes"
584
+ msgstr ""
585
+
586
+ #: src/Admin/Settings/Settings.php:157
587
+ msgid "Generate CRC32B hash for uploaded files"
588
+ msgstr ""
589
+
590
+ #: src/Admin/Settings/Settings.php:164
591
+ msgid "Logging"
592
+ msgstr ""
593
+
594
+ #: src/Admin/Settings/Settings.php:170
595
+ msgid "Download Log"
596
+ msgstr ""
597
+
598
+ #: src/Admin/Settings/Settings.php:171
599
+ msgid "Log download attempts, IP addresses and more."
600
+ msgstr ""
601
+
602
+ #: src/Admin/Settings/Settings.php:177
603
+ msgid "Count unique IPs only"
604
+ msgstr ""
605
+
606
+ #: src/Admin/Settings/Settings.php:179
607
+ msgid ""
608
+ "If enabled, the counter for each download will only increment and create a "
609
+ "log entry once per IP address."
610
+ msgstr ""
611
+
612
+ #: src/Admin/Settings/Settings.php:185
613
+ msgid "Access"
614
+ msgstr ""
615
+
616
+ #: src/Admin/Settings/Settings.php:190
617
+ msgid "No Access Page"
618
+ msgstr ""
619
+
620
+ #: src/Admin/Settings/Settings.php:191
621
+ msgid ""
622
+ "Choose what page is displayed when the user has no access to a file. Don't "
623
+ "forget to add the <code>[dlm_no_access]</code> shortcode to the page."
624
+ msgstr ""
625
+
626
+ #: src/Admin/Settings/Settings.php:197 src/Installer.php:38
627
+ #: src/UpgradeManager.php:55
628
+ msgid "You do not have permission to access this download. %sGo to homepage%s"
629
+ msgstr ""
630
+
631
+ #: src/Admin/Settings/Settings.php:199
632
+ msgid "No access message"
633
+ msgstr ""
634
+
635
+ #: src/Admin/Settings/Settings.php:200
636
+ msgid ""
637
+ "The message that will be displayed to visitors when they don't have access "
638
+ "to a file."
639
+ msgstr ""
640
+
641
+ #: src/Admin/Settings/Settings.php:206
642
+ msgid "Blacklist IPs"
643
+ msgstr ""
644
+
645
+ #: src/Admin/Settings/Settings.php:207
646
+ msgid ""
647
+ "List IP Addresses to blacklist, 1 per line. Use IP/CIDR netmask format for "
648
+ "ranges. IPv4 examples: <code>198.51.100.1</code> or "
649
+ "<code>198.51.100.0/24</code>. IPv6 examples: <code>2001:db8::1</code> or "
650
+ "<code>2001:db8::/32</code>."
651
+ msgstr ""
652
+
653
+ #: src/Admin/Settings/Settings.php:214
654
+ msgid "Blacklist user agents"
655
+ msgstr ""
656
+
657
+ #: src/Admin/Settings/Settings.php:215
658
+ msgid ""
659
+ "List browser user agents to blacklist, 1 per line. Partial matches are "
660
+ "sufficient. Regex matching is allowed by surrounding the pattern with "
661
+ "forward slashes, e.g. <code>/^Mozilla.+Googlebot/</code>"
662
+ msgstr ""
663
+
664
+ #: src/Admin/Settings/Settings.php:222
665
+ msgid "Misc"
666
+ msgstr ""
667
+
668
+ #: src/Admin/Settings/Settings.php:227
669
+ msgid "Remove Data on Uninstall?"
670
+ msgstr ""
671
+
672
+ #: src/Admin/Settings/Settings.php:229
673
+ msgid ""
674
+ "Check this box if you would like to completely remove all Download Monitor "
675
+ "data when the plugin is deleted."
676
+ msgstr ""
677
+
678
+ #: src/Admin/Settings/Settings.php:235
679
+ msgid "Clear all transients"
680
+ msgstr ""
681
+
682
+ #: src/Admin/Settings/Settings.php:236
683
+ msgid ""
684
+ "Remove all Download Monitor transients, this can solve version caching "
685
+ "issues."
686
+ msgstr ""
687
+
688
+ #: src/Admin/Settings/Settings.php:272
689
+ msgid "Select Page"
690
+ msgstr ""
691
+
692
+ #: src/Admin/WritePanels.php:32
693
+ msgid "Download Information"
694
+ msgstr ""
695
+
696
+ #: src/Admin/WritePanels.php:38
697
+ msgid "Download Options"
698
+ msgstr ""
699
+
700
+ #: src/Admin/WritePanels.php:44
701
+ msgid "Downloadable Files/Versions"
702
+ msgstr ""
703
+
704
+ #: src/Admin/WritePanels.php:52
705
+ msgid "Short Description"
706
+ msgstr ""
707
+
708
+ #: src/Admin/WritePanels.php:84
709
+ msgid "URL"
710
+ msgstr ""
711
+
712
+ #: src/Admin/WritePanels.php:89
713
+ msgid "Shortcode"
714
+ msgstr ""
715
+
716
+ #: src/Admin/WritePanels.php:96
717
+ msgid "No download information for new downloads."
718
+ msgstr ""
719
+
720
+ #: src/Admin/WritePanels.php:127
721
+ msgid "Mark this download as featured. Used by shortcodes and widgets."
722
+ msgstr ""
723
+
724
+ #: src/Admin/WritePanels.php:133
725
+ msgid ""
726
+ "Only logged in users will be able to access the file via a download link if "
727
+ "this is enabled."
728
+ msgstr ""
729
+
730
+ #: src/Admin/WritePanels.php:139
731
+ msgid ""
732
+ "Don't force download. If the <code>dlm_uploads</code> folder is protected "
733
+ "you may need to move your file."
734
+ msgstr ""
735
+
736
+ #: src/Admin/WritePanels.php:175
737
+ msgid "Add file"
738
+ msgstr ""
739
+
740
+ #: src/Admin/WritePanels.php:176
741
+ msgid "Close all"
742
+ msgstr ""
743
+
744
+ #: src/Admin/WritePanels.php:177
745
+ msgid "Expand all"
746
+ msgstr ""
747
+
748
+ #: src/DLM.php:226
749
+ msgid "Documentation"
750
+ msgstr ""
751
+
752
+ #: src/DownloadHandler.php:309
753
+ msgid "Password Required"
754
+ msgstr ""
755
+
756
+ #: src/DownloadHandler.php:315
757
+ msgid "Download does not exist."
758
+ msgstr ""
759
+
760
+ #: src/DownloadHandler.php:315 src/DownloadHandler.php:392
761
+ #: src/DownloadHandler.php:400 src/DownloadHandler.php:549
762
+ msgid "Go to homepage &rarr;"
763
+ msgstr ""
764
+
765
+ #: src/DownloadHandler.php:315 src/DownloadHandler.php:392
766
+ #: src/DownloadHandler.php:400 src/DownloadHandler.php:436
767
+ #: src/DownloadHandler.php:549
768
+ msgid "Download Error"
769
+ msgstr ""
770
+
771
+ #: src/DownloadHandler.php:392 src/DownloadHandler.php:400
772
+ msgid "No file paths defined."
773
+ msgstr ""
774
+
775
+ #: src/DownloadHandler.php:472 src/DownloadHandler.php:489
776
+ #: src/DownloadHandler.php:496 src/DownloadHandler.php:503
777
+ msgid "Redirected to file"
778
+ msgstr ""
779
+
780
+ #: src/DownloadHandler.php:542
781
+ msgid "Redirected to remote file."
782
+ msgstr ""
783
+
784
+ #: src/DownloadHandler.php:547 src/DownloadHandler.php:549
785
+ msgid "File not found."
786
+ msgstr ""
787
+
788
+ #: src/Installer.php:172 src/Installer.php:181
789
+ msgid "No Access"
790
+ msgstr ""
791
+
792
+ #: src/LegacyUpgrader/Page.php:17
793
+ msgid "Legacy Upgrader"
794
+ msgstr ""
795
+
796
+ #: src/LegacyUpgrader/Page.php:29
797
+ msgid "Download Monitor - Legacy Upgrade"
798
+ msgstr ""
799
+
800
+ #: src/LegacyUpgrader/Page.php:30
801
+ msgid ""
802
+ "Welcome to the Download Monitor Legacy Upgrader. On this page we will "
803
+ "upgrade your old Download Monitor (legacy) data so it will work with the "
804
+ "latest version. If you're on this page, it should mean that you updated to "
805
+ "this version from Download Monitor %s. If you're unsure if this is correct, "
806
+ "or you want to read more about the legacy upgrade, we've setup a page that "
807
+ "will explain this process in a lot more detail. %sClick here%s if to view "
808
+ "that page."
809
+ msgstr ""
810
+
811
+ #: src/Logs/LogExportCSV.php:69
812
+ msgid "Version ID"
813
+ msgstr ""
814
+
815
+ #: src/Logs/LogExportCSV.php:70
816
+ msgid "Filename"
817
+ msgstr ""
818
+
819
+ #: src/Logs/LogExportCSV.php:71
820
+ msgid "User ID"
821
+ msgstr ""
822
+
823
+ #: src/Logs/LogExportCSV.php:72
824
+ msgid "User Login"
825
+ msgstr ""
826
+
827
+ #: src/Logs/LogExportCSV.php:73
828
+ msgid "User Email"
829
+ msgstr ""
830
+
831
+ #: src/Logs/LogExportCSV.php:74
832
+ msgid "User IP"
833
+ msgstr ""
834
+
835
+ #: src/Logs/LogExportCSV.php:75 src/Logs/LoggingListTable.php:199
836
+ msgid "User Agent"
837
+ msgstr ""
838
+
839
+ #: src/Logs/LogExportCSV.php:76 src/Logs/LoggingListTable.php:200
840
+ msgid "Date"
841
+ msgstr ""
842
+
843
+ #: src/Logs/LogExportCSV.php:77
844
+ msgid "Status"
845
+ msgstr ""
846
+
847
+ #: src/Logs/LogExportCSV.php:78
848
+ msgid "Meta Data"
849
+ msgstr ""
850
+
851
+ #: src/Logs/LogPage.php:23
852
+ msgid "Logs"
853
+ msgstr ""
854
+
855
+ #: src/Logs/LogPage.php:80
856
+ msgid "Download Logs"
857
+ msgstr ""
858
+
859
+ #: src/Logs/LogPage.php:82
860
+ msgid "Export CSV"
861
+ msgstr ""
862
+
863
+ #: src/Logs/LogPage.php:83
864
+ msgid "Are you sure you want to delete ALL log items?"
865
+ msgstr ""
866
+
867
+ #: src/Logs/LogPage.php:84
868
+ msgid "Delete Logs"
869
+ msgstr ""
870
+
871
+ #: src/Logs/LoggingListTable.php:67
872
+ msgid "Delete"
873
+ msgstr ""
874
+
875
+ #: src/Logs/LoggingListTable.php:94
876
+ msgid "Download Complete"
877
+ msgstr ""
878
+
879
+ #: src/Logs/LoggingListTable.php:102
880
+ msgid "%s ago"
881
+ msgstr ""
882
+
883
+ #: src/Logs/LoggingListTable.php:123
884
+ msgid " (v%s)"
885
+ msgstr ""
886
+
887
+ #: src/Logs/LoggingListTable.php:125
888
+ msgid " (v%s no longer exists)"
889
+ msgstr ""
890
+
891
+ #: src/Logs/LoggingListTable.php:129
892
+ msgid "Download #%d (no longer exists)"
893
+ msgstr ""
894
+
895
+ #: src/Logs/LoggingListTable.php:163
896
+ msgid "Non-member"
897
+ msgstr ""
898
+
899
+ #: src/Logs/LoggingListTable.php:197
900
+ msgid "User"
901
+ msgstr ""
902
+
903
+ #: src/Logs/LoggingListTable.php:198
904
+ msgid "IP Address"
905
+ msgstr ""
906
+
907
+ #: src/Logs/LoggingListTable.php:236
908
+ msgid "Log entries deleted"
909
+ msgstr ""
910
+
911
+ #: src/Logs/LoggingListTable.php:253
912
+ msgid "Any status"
913
+ msgstr ""
914
+
915
+ #: src/Logs/LoggingListTable.php:255
916
+ msgid "Failed"
917
+ msgstr ""
918
+
919
+ #: src/Logs/LoggingListTable.php:257
920
+ msgid "Redirected"
921
+ msgstr ""
922
+
923
+ #: src/Logs/LoggingListTable.php:259
924
+ msgid "Completed"
925
+ msgstr ""
926
+
927
+ #: src/Logs/LoggingListTable.php:277
928
+ msgid "Show all dates"
929
+ msgstr ""
930
+
931
+ #: src/Logs/LoggingListTable.php:291
932
+ msgid "%1$s %2$d"
933
+ msgstr ""
934
+
935
+ #: src/Logs/LoggingListTable.php:298
936
+ msgid "Select a User"
937
+ msgstr ""
938
+
939
+ #: src/Logs/LoggingListTable.php:317
940
+ msgid "25 per page"
941
+ msgstr ""
942
+
943
+ #: src/Logs/LoggingListTable.php:319
944
+ msgid "50 per page"
945
+ msgstr ""
946
+
947
+ #: src/Logs/LoggingListTable.php:321
948
+ msgid "100 per page"
949
+ msgstr ""
950
+
951
+ #: src/Logs/LoggingListTable.php:323
952
+ msgid "200 per page"
953
+ msgstr ""
954
+
955
+ #: src/Logs/LoggingListTable.php:325
956
+ msgid "Show All"
957
+ msgstr ""
958
+
959
+ #: src/Logs/LoggingListTable.php:329
960
+ msgid "Filter"
961
+ msgstr ""
962
+
963
+ #: src/PostTypeManager.php:21
964
+ msgid "All Downloads"
965
+ msgstr ""
966
+
967
+ #: src/PostTypeManager.php:22
968
+ msgid "Downloads"
969
+ msgstr ""
970
+
971
+ #: src/PostTypeManager.php:24
972
+ msgid "Add New"
973
+ msgstr ""
974
+
975
+ #: src/PostTypeManager.php:25
976
+ msgid "Add Download"
977
+ msgstr ""
978
+
979
+ #: src/PostTypeManager.php:26
980
+ msgid "Edit"
981
+ msgstr ""
982
+
983
+ #: src/PostTypeManager.php:27
984
+ msgid "Edit Download"
985
+ msgstr ""
986
+
987
+ #: src/PostTypeManager.php:28
988
+ msgid "New Download"
989
+ msgstr ""
990
+
991
+ #: src/PostTypeManager.php:29 src/PostTypeManager.php:30
992
+ msgid "View Download"
993
+ msgstr ""
994
+
995
+ #: src/PostTypeManager.php:31
996
+ msgid "Search Downloads"
997
+ msgstr ""
998
+
999
+ #: src/PostTypeManager.php:32
1000
+ msgid "No Downloads found"
1001
+ msgstr ""
1002
+
1003
+ #: src/PostTypeManager.php:33
1004
+ msgid "No Downloads found in trash"
1005
+ msgstr ""
1006
+
1007
+ #: src/PostTypeManager.php:34
1008
+ msgid "Parent Download"
1009
+ msgstr ""
1010
+
1011
+ #: src/PostTypeManager.php:36
1012
+ msgid "This is where you can create and manage downloads for your site."
1013
+ msgstr ""
1014
+
1015
+ #: src/Product/Product.php:188
1016
+ msgid "License successfully activated."
1017
+ msgstr ""
1018
+
1019
+ #: src/Product/Product.php:430
1020
+ msgid ""
1021
+ "<a href=\"%s\">Register your copy</a> of the <strong>%s</strong> extension "
1022
+ "to receive access to automatic upgrades and support. Need a license key? <a "
1023
+ "href=\"%s\" target=\"_blank\">Purchase one now</a>."
1024
+ msgstr ""
1025
+
1026
+ #: src/Shortcodes.php:141 src/Shortcodes.php:260
1027
+ msgid "Download not found"
1028
+ msgstr ""
1029
+
1030
+ #: src/TaxonomyManager.php:29
1031
+ msgid "Download Categories"
1032
+ msgstr ""
1033
+
1034
+ #: src/TaxonomyManager.php:31
1035
+ msgid "Download Category"
1036
+ msgstr ""
1037
+
1038
+ #: src/TaxonomyManager.php:32
1039
+ msgid "Search Download Categories"
1040
+ msgstr ""
1041
+
1042
+ #: src/TaxonomyManager.php:33
1043
+ msgid "All Download Categories"
1044
+ msgstr ""
1045
+
1046
+ #: src/TaxonomyManager.php:34 src/TaxonomyManager.php:35
1047
+ msgid "Parent Download Category"
1048
+ msgstr ""
1049
+
1050
+ #: src/TaxonomyManager.php:36
1051
+ msgid "Edit Download Category"
1052
+ msgstr ""
1053
+
1054
+ #: src/TaxonomyManager.php:37
1055
+ msgid "Update Download Category"
1056
+ msgstr ""
1057
+
1058
+ #: src/TaxonomyManager.php:38
1059
+ msgid "Add New Download Category"
1060
+ msgstr ""
1061
+
1062
+ #: src/TaxonomyManager.php:39
1063
+ msgid "New Download Category Name"
1064
+ msgstr ""
1065
+
1066
+ #: src/TaxonomyManager.php:61
1067
+ msgid "Download Tags"
1068
+ msgstr ""
1069
+
1070
+ #: src/TaxonomyManager.php:63
1071
+ msgid "Download Tag"
1072
+ msgstr ""
1073
+
1074
+ #: src/TaxonomyManager.php:64
1075
+ msgid "Search Download Tags"
1076
+ msgstr ""
1077
+
1078
+ #: src/TaxonomyManager.php:65
1079
+ msgid "All Download Tags"
1080
+ msgstr ""
1081
+
1082
+ #: src/TaxonomyManager.php:66 src/TaxonomyManager.php:67
1083
+ msgid "Parent Download Tag"
1084
+ msgstr ""
1085
+
1086
+ #: src/TaxonomyManager.php:68
1087
+ msgid "Edit Download Tag"
1088
+ msgstr ""
1089
+
1090
+ #: src/TaxonomyManager.php:69
1091
+ msgid "Update Download Tag"
1092
+ msgstr ""
1093
+
1094
+ #: src/TaxonomyManager.php:70
1095
+ msgid "Add New Download Tag"
1096
+ msgstr ""
1097
+
1098
+ #: src/TaxonomyManager.php:71
1099
+ msgid "New Download Tag Name"
1100
+ msgstr ""
1101
+
1102
+ #: src/Widgets/class-dlm-widget-downloads.php:28
1103
+ msgid "Display a list of your downloads."
1104
+ msgstr ""
1105
+
1106
+ #: src/Widgets/class-dlm-widget-downloads.php:30
1107
+ msgid "Downloads List"
1108
+ msgstr ""
1109
+
1110
+ #: src/Widgets/class-dlm-widget-downloads.php:55
1111
+ #: src/Widgets/class-dlm-widget-downloads.php:159
1112
+ msgid "Featured Downloads"
1113
+ msgstr ""
1114
+
1115
+ #: src/Widgets/class-dlm-widget-downloads.php:176
1116
+ msgid "Limit"
1117
+ msgstr ""
1118
+
1119
+ #: src/Widgets/class-dlm-widget-downloads.php:183
1120
+ msgid "Output template"
1121
+ msgstr ""
1122
+
1123
+ #: src/Widgets/class-dlm-widget-downloads.php:187
1124
+ msgid "Default template"
1125
+ msgstr ""
1126
+
1127
+ #: src/Widgets/class-dlm-widget-downloads.php:191
1128
+ msgid "Order by"
1129
+ msgstr ""
1130
+
1131
+ #: src/Widgets/class-dlm-widget-downloads.php:197
1132
+ msgid "Random"
1133
+ msgstr ""
1134
+
1135
+ #: src/Widgets/class-dlm-widget-downloads.php:201
1136
+ msgid "Date added"
1137
+ msgstr ""
1138
+
1139
+ #: src/Widgets/class-dlm-widget-downloads.php:203
1140
+ msgid "Date modified"
1141
+ msgstr ""
1142
+
1143
+ #: src/Widgets/class-dlm-widget-downloads.php:210
1144
+ msgid "Order"
1145
+ msgstr ""
1146
+
1147
+ #: src/Widgets/class-dlm-widget-downloads.php:214
1148
+ msgid "ASC"
1149
+ msgstr ""
1150
+
1151
+ #: src/Widgets/class-dlm-widget-downloads.php:216
1152
+ msgid "DESC"
1153
+ msgstr ""
1154
+
1155
+ #: src/Widgets/class-dlm-widget-downloads.php:224
1156
+ msgid "Show only featured downloads"
1157
+ msgstr ""
1158
+
1159
+ #: src/Widgets/class-dlm-widget-downloads.php:231
1160
+ msgid "Show only members only downloads"
1161
+ msgstr ""
1162
+
1163
+ #: templates/content-download-box.php:18
1164
+ #: templates/content-download-filename.php:17
1165
+ #: templates/content-download.php:16
1166
+ msgid "1 download"
1167
+ msgid_plural "%d downloads"
1168
+ msgstr[0] ""
1169
+
1170
+ #: templates/content-download-box.php:27
1171
+ #: templates/content-download-filename.php:14
1172
+ #: templates/content-download-title.php:13 templates/content-download.php:13
1173
+ msgid "Version %s"
1174
+ msgstr ""
1175
+
1176
+ #: templates/content-download-box.php:29
1177
+ msgid "Download File"
1178
+ msgstr ""
1179
+
1180
+ #: templates/content-download-button.php:13
1181
+ msgid "Download &ldquo;%s&rdquo;"
1182
+ msgstr ""
1183
+
1184
+ #: templates/content-download-button.php:14
1185
+ #: templates/content-download-version-list.php:21
1186
+ msgid "Downloaded 1 time"
1187
+ msgid_plural "Downloaded %d times"
1188
+ msgstr[0] ""
1189
+
1190
+ #. Plugin Name of the plugin/theme
1191
+ msgid "Download Monitor"
1192
+ msgstr ""
1193
+
1194
+ #. Plugin URI of the plugin/theme
1195
+ msgid "https://www.download-monitor.com"
1196
+ msgstr ""
1197
+
1198
+ #. Description of the plugin/theme
1199
+ msgid ""
1200
+ "A full solution for managing downloadable files, monitoring downloads and "
1201
+ "outputting download links and file information on your WordPress powered "
1202
+ "site."
1203
+ msgstr ""
1204
+
1205
+ #. Author of the plugin/theme
1206
+ msgid "Never5"
1207
+ msgstr ""
1208
+
1209
+ #. Author URI of the plugin/theme
1210
+ msgid "https://www.never5.com"
1211
+ msgstr ""
1212
+
1213
+ #: src/Admin/MediaInsert.php:217
1214
+ msgctxt "Drop file here *or* select file"
1215
+ msgid "or"
1216
+ msgstr ""
package-lock.json ADDED
@@ -0,0 +1,6662 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "download-monitor",
3
+ "version": "4.1.1",
4
+ "lockfileVersion": 1,
5
+ "requires": true,
6
+ "dependencies": {
7
+ "@babel/helper-module-imports": {
8
+ "version": "7.0.0",
9
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.0.0.tgz",
10
+ "integrity": "sha512-aP/hlLq01DWNEiDg4Jn23i+CXxW/owM4WpDLFUbpjxe4NS3BhLVZQ5i7E0ZrxuQ/vwekIeciyamgB1UIYxxM6A==",
11
+ "requires": {
12
+ "@babel/types": "^7.0.0"
13
+ }
14
+ },
15
+ "@babel/runtime": {
16
+ "version": "7.3.1",
17
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.3.1.tgz",
18
+ "integrity": "sha512-7jGW8ppV0ant637pIqAcFfQDDH1orEPGJb8aXfUozuCU3QqX7rX4DA8iwrbPrR1hcH0FTTHz47yQnk+bl5xHQA==",
19
+ "requires": {
20
+ "regenerator-runtime": "^0.12.0"
21
+ },
22
+ "dependencies": {
23
+ "regenerator-runtime": {
24
+ "version": "0.12.1",
25
+ "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.12.1.tgz",
26
+ "integrity": "sha512-odxIc1/vDlo4iZcfXqRYFj0vpXFNoGdKMAUieAlFYO6m/nl5e9KR/beGf41z4a1FI+aQgtjhuaSlDxQ0hmkrHg=="
27
+ }
28
+ }
29
+ },
30
+ "@babel/types": {
31
+ "version": "7.3.0",
32
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.3.0.tgz",
33
+ "integrity": "sha512-QkFPw68QqWU1/RVPyBe8SO7lXbPfjtqAxRYQKpFpaB8yMq7X2qAqfwK5LKoQufEkSmO5NQ70O6Kc3Afk03RwXw==",
34
+ "requires": {
35
+ "esutils": "^2.0.2",
36
+ "lodash": "^4.17.10",
37
+ "to-fast-properties": "^2.0.0"
38
+ },
39
+ "dependencies": {
40
+ "to-fast-properties": {
41
+ "version": "2.0.0",
42
+ "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz",
43
+ "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4="
44
+ }
45
+ }
46
+ },
47
+ "@emotion/babel-utils": {
48
+ "version": "0.6.10",
49
+ "resolved": "https://registry.npmjs.org/@emotion/babel-utils/-/babel-utils-0.6.10.tgz",
50
+ "integrity": "sha512-/fnkM/LTEp3jKe++T0KyTszVGWNKPNOUJfjNKLO17BzQ6QPxgbg3whayom1Qr2oLFH3V92tDymU+dT5q676uow==",
51
+ "requires": {
52
+ "@emotion/hash": "^0.6.6",
53
+ "@emotion/memoize": "^0.6.6",
54
+ "@emotion/serialize": "^0.9.1",
55
+ "convert-source-map": "^1.5.1",
56
+ "find-root": "^1.1.0",
57
+ "source-map": "^0.7.2"
58
+ },
59
+ "dependencies": {
60
+ "source-map": {
61
+ "version": "0.7.3",
62
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz",
63
+ "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ=="
64
+ }
65
+ }
66
+ },
67
+ "@emotion/hash": {
68
+ "version": "0.6.6",
69
+ "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.6.6.tgz",
70
+ "integrity": "sha512-ojhgxzUHZ7am3D2jHkMzPpsBAiB005GF5YU4ea+8DNPybMk01JJUM9V9YRlF/GE95tcOm8DxQvWA2jq19bGalQ=="
71
+ },
72
+ "@emotion/memoize": {
73
+ "version": "0.6.6",
74
+ "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.6.6.tgz",
75
+ "integrity": "sha512-h4t4jFjtm1YV7UirAFuSuFGyLa+NNxjdkq6DpFLANNQY5rHueFZHVY+8Cu1HYVP6DrheB0kv4m5xPjo7eKT7yQ=="
76
+ },
77
+ "@emotion/serialize": {
78
+ "version": "0.9.1",
79
+ "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-0.9.1.tgz",
80
+ "integrity": "sha512-zTuAFtyPvCctHBEL8KZ5lJuwBanGSutFEncqLn/m9T1a6a93smBStK+bZzcNPgj4QS8Rkw9VTwJGhRIUVO8zsQ==",
81
+ "requires": {
82
+ "@emotion/hash": "^0.6.6",
83
+ "@emotion/memoize": "^0.6.6",
84
+ "@emotion/unitless": "^0.6.7",
85
+ "@emotion/utils": "^0.8.2"
86
+ }
87
+ },
88
+ "@emotion/stylis": {
89
+ "version": "0.7.1",
90
+ "resolved": "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.7.1.tgz",
91
+ "integrity": "sha512-/SLmSIkN13M//53TtNxgxo57mcJk/UJIDFRKwOiLIBEyBHEcipgR6hNMQ/59Sl4VjCJ0Z/3zeAZyvnSLPG/1HQ=="
92
+ },
93
+ "@emotion/unitless": {
94
+ "version": "0.6.7",
95
+ "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.6.7.tgz",
96
+ "integrity": "sha512-Arj1hncvEVqQ2p7Ega08uHLr1JuRYBuO5cIvcA+WWEQ5+VmkOE3ZXzl04NbQxeQpWX78G7u6MqxKuNX3wvYZxg=="
97
+ },
98
+ "@emotion/utils": {
99
+ "version": "0.8.2",
100
+ "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-0.8.2.tgz",
101
+ "integrity": "sha512-rLu3wcBWH4P5q1CGoSSH/i9hrXs7SlbRLkoq9IGuoPYNGQvDJ3pt/wmOM+XgYjIDRMVIdkUWt0RsfzF50JfnCw=="
102
+ },
103
+ "@tannin/compile": {
104
+ "version": "1.0.2",
105
+ "resolved": "https://registry.npmjs.org/@tannin/compile/-/compile-1.0.2.tgz",
106
+ "integrity": "sha512-Zv4CtKcI5tmo5epgRwFR3uPrNuCzCuFJOFhONmEanNFSVt/Ck/rV4fdkOJ0bJPxV/AwR5fcmxDx4Xxd/GDvi6g==",
107
+ "requires": {
108
+ "@tannin/evaluate": "^1.1.0",
109
+ "@tannin/postfix": "^1.0.1"
110
+ }
111
+ },
112
+ "@tannin/evaluate": {
113
+ "version": "1.1.0",
114
+ "resolved": "https://registry.npmjs.org/@tannin/evaluate/-/evaluate-1.1.0.tgz",
115
+ "integrity": "sha512-plrVqbuiqh6tWpAKznsXkCT5t4cmTLinfrB3AmX6zDduJkFmKb55n2JBdSB6D6SFvtJHtiFCmp4CUrn9dCNlqA=="
116
+ },
117
+ "@tannin/plural-forms": {
118
+ "version": "1.0.2",
119
+ "resolved": "https://registry.npmjs.org/@tannin/plural-forms/-/plural-forms-1.0.2.tgz",
120
+ "integrity": "sha512-LNO8NwyVRSDOL3yDWo7Oao1Guceqr6KD0nOqR1t2mEPw21u4Tscvb0UqnAZ+IiXRzZsymPgeECss5JaEXoq30w==",
121
+ "requires": {
122
+ "@tannin/compile": "^1.0.2"
123
+ }
124
+ },
125
+ "@tannin/postfix": {
126
+ "version": "1.0.1",
127
+ "resolved": "https://registry.npmjs.org/@tannin/postfix/-/postfix-1.0.1.tgz",
128
+ "integrity": "sha512-y+h7tNlxDPDrH/TrSw1wCSm6FoEAY8FrbUxYng3BMSYBTUsX1utLooizk9v8J1yy6F9AioXNnPZ1qiu2vsa08Q=="
129
+ },
130
+ "@wordpress/api-fetch": {
131
+ "version": "2.2.8",
132
+ "resolved": "https://registry.npmjs.org/@wordpress/api-fetch/-/api-fetch-2.2.8.tgz",
133
+ "integrity": "sha512-mbdP9GvDe8Ojv8cobk30mfg2btEZDQEe7IgO+rGSlvVlHC88U8cc2VgOLNX6c9/6/sCvkoGd4Tsy85VbdTlTXw==",
134
+ "requires": {
135
+ "@babel/runtime": "^7.0.0",
136
+ "@wordpress/hooks": "^2.0.5",
137
+ "@wordpress/i18n": "^3.1.1",
138
+ "@wordpress/url": "^2.3.3"
139
+ }
140
+ },
141
+ "@wordpress/hooks": {
142
+ "version": "2.0.5",
143
+ "resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-2.0.5.tgz",
144
+ "integrity": "sha512-EcE7lm5p6f3qB6nJClY3LPejFpbjo66b6j4ihgLLgrWMKqs4lLPGS2OzK4KyP0O52cofKj+Tv/wBaAiYSufFcA==",
145
+ "requires": {
146
+ "@babel/runtime": "^7.0.0"
147
+ }
148
+ },
149
+ "@wordpress/i18n": {
150
+ "version": "3.1.1",
151
+ "resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-3.1.1.tgz",
152
+ "integrity": "sha512-qZx3GcrIfPG5uOhYjb/Sz0XBT7OMkdFXYa966S8/gxWIkewD5TWV0ROQ9UX6+u7ScbblNdS87irJI0FDQ0lM3Q==",
153
+ "requires": {
154
+ "@babel/runtime": "^7.0.0",
155
+ "gettext-parser": "^1.3.1",
156
+ "lodash": "^4.17.10",
157
+ "memize": "^1.0.5",
158
+ "sprintf-js": "^1.1.1",
159
+ "tannin": "^1.0.1"
160
+ },
161
+ "dependencies": {
162
+ "gettext-parser": {
163
+ "version": "1.4.0",
164
+ "resolved": "https://registry.npmjs.org/gettext-parser/-/gettext-parser-1.4.0.tgz",
165
+ "integrity": "sha512-sedZYLHlHeBop/gZ1jdg59hlUEcpcZJofLq2JFwJT1zTqAU3l2wFv6IsuwFHGqbiT9DWzMUW4/em2+hspnmMMA==",
166
+ "requires": {
167
+ "encoding": "^0.1.12",
168
+ "safe-buffer": "^5.1.1"
169
+ }
170
+ }
171
+ }
172
+ },
173
+ "@wordpress/url": {
174
+ "version": "2.3.3",
175
+ "resolved": "https://registry.npmjs.org/@wordpress/url/-/url-2.3.3.tgz",
176
+ "integrity": "sha512-WGqQjOyu02E7bJ77G8385GGjUYpvF8vDqZXXHW06/WRSb4nW6fmMIM65UWdBaYY5XecAkpglCqwd8DNbquLucQ==",
177
+ "requires": {
178
+ "@babel/runtime": "^7.0.0",
179
+ "qs": "^6.5.2"
180
+ }
181
+ },
182
+ "abbrev": {
183
+ "version": "1.1.1",
184
+ "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
185
+ "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="
186
+ },
187
+ "acorn": {
188
+ "version": "5.7.3",
189
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.3.tgz",
190
+ "integrity": "sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw==",
191
+ "dev": true
192
+ },
193
+ "acorn-dynamic-import": {
194
+ "version": "2.0.2",
195
+ "resolved": "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz",
196
+ "integrity": "sha1-x1K9IQvvZ5UBtsbLf8hPj0cVjMQ=",
197
+ "dev": true,
198
+ "requires": {
199
+ "acorn": "^4.0.3"
200
+ },
201
+ "dependencies": {
202
+ "acorn": {
203
+ "version": "4.0.13",
204
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-4.0.13.tgz",
205
+ "integrity": "sha1-EFSVrlNh1pe9GVyCUZLhrX8lN4c=",
206
+ "dev": true
207
+ }
208
+ }
209
+ },
210
+ "ajv": {
211
+ "version": "6.6.1",
212
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.6.1.tgz",
213
+ "integrity": "sha512-ZoJjft5B+EJBjUyu9C9Hc0OZyPZSSlOF+plzouTrg6UlA8f+e/n8NIgBFG/9tppJtpPWfthHakK7juJdNDODww==",
214
+ "dev": true,
215
+ "requires": {
216
+ "fast-deep-equal": "^2.0.1",
217
+ "fast-json-stable-stringify": "^2.0.0",
218
+ "json-schema-traverse": "^0.4.1",
219
+ "uri-js": "^4.2.2"
220
+ }
221
+ },
222
+ "ajv-keywords": {
223
+ "version": "3.2.0",
224
+ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.2.0.tgz",
225
+ "integrity": "sha1-6GuBnGAs+IIa1jdBNpjx3sAhhHo=",
226
+ "dev": true
227
+ },
228
+ "align-text": {
229
+ "version": "0.1.4",
230
+ "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz",
231
+ "integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=",
232
+ "dev": true,
233
+ "requires": {
234
+ "kind-of": "^3.0.2",
235
+ "longest": "^1.0.1",
236
+ "repeat-string": "^1.5.2"
237
+ }
238
+ },
239
+ "ansi-regex": {
240
+ "version": "2.1.1",
241
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
242
+ "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
243
+ "dev": true
244
+ },
245
+ "ansi-styles": {
246
+ "version": "3.2.1",
247
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
248
+ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
249
+ "dev": true,
250
+ "requires": {
251
+ "color-convert": "^1.9.0"
252
+ }
253
+ },
254
+ "anymatch": {
255
+ "version": "2.0.0",
256
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz",
257
+ "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==",
258
+ "dev": true,
259
+ "requires": {
260
+ "micromatch": "^3.1.4",
261
+ "normalize-path": "^2.1.1"
262
+ }
263
+ },
264
+ "argparse": {
265
+ "version": "1.0.10",
266
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
267
+ "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
268
+ "requires": {
269
+ "sprintf-js": "~1.0.2"
270
+ },
271
+ "dependencies": {
272
+ "sprintf-js": {
273
+ "version": "1.0.3",
274
+ "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
275
+ "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw="
276
+ }
277
+ }
278
+ },
279
+ "arr-diff": {
280
+ "version": "4.0.0",
281
+ "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz",
282
+ "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=",
283
+ "dev": true
284
+ },
285
+ "arr-flatten": {
286
+ "version": "1.1.0",
287
+ "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz",
288
+ "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==",
289
+ "dev": true
290
+ },
291
+ "arr-union": {
292
+ "version": "3.1.0",
293
+ "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz",
294
+ "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=",
295
+ "dev": true
296
+ },
297
+ "array-find-index": {
298
+ "version": "1.0.2",
299
+ "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz",
300
+ "integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=",
301
+ "dev": true
302
+ },
303
+ "array-unique": {
304
+ "version": "0.3.2",
305
+ "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz",
306
+ "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=",
307
+ "dev": true
308
+ },
309
+ "asap": {
310
+ "version": "2.0.6",
311
+ "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz",
312
+ "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=",
313
+ "dev": true,
314
+ "optional": true
315
+ },
316
+ "asn1": {
317
+ "version": "0.2.4",
318
+ "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz",
319
+ "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==",
320
+ "dev": true,
321
+ "optional": true,
322
+ "requires": {
323
+ "safer-buffer": "~2.1.0"
324
+ }
325
+ },
326
+ "asn1.js": {
327
+ "version": "4.10.1",
328
+ "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz",
329
+ "integrity": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==",
330
+ "dev": true,
331
+ "requires": {
332
+ "bn.js": "^4.0.0",
333
+ "inherits": "^2.0.1",
334
+ "minimalistic-assert": "^1.0.0"
335
+ }
336
+ },
337
+ "assert": {
338
+ "version": "1.4.1",
339
+ "resolved": "https://registry.npmjs.org/assert/-/assert-1.4.1.tgz",
340
+ "integrity": "sha1-mZEtWRg2tab1s0XA8H7vwI/GXZE=",
341
+ "dev": true,
342
+ "requires": {
343
+ "util": "0.10.3"
344
+ },
345
+ "dependencies": {
346
+ "inherits": {
347
+ "version": "2.0.1",
348
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz",
349
+ "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=",
350
+ "dev": true
351
+ },
352
+ "util": {
353
+ "version": "0.10.3",
354
+ "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz",
355
+ "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=",
356
+ "dev": true,
357
+ "requires": {
358
+ "inherits": "2.0.1"
359
+ }
360
+ }
361
+ }
362
+ },
363
+ "assert-plus": {
364
+ "version": "1.0.0",
365
+ "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
366
+ "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=",
367
+ "dev": true
368
+ },
369
+ "assign-symbols": {
370
+ "version": "1.0.0",
371
+ "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz",
372
+ "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=",
373
+ "dev": true
374
+ },
375
+ "async": {
376
+ "version": "1.5.2",
377
+ "resolved": "http://registry.npmjs.org/async/-/async-1.5.2.tgz",
378
+ "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=",
379
+ "dev": true
380
+ },
381
+ "async-each": {
382
+ "version": "1.0.1",
383
+ "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz",
384
+ "integrity": "sha1-GdOGodntxufByF04iu28xW0zYC0=",
385
+ "dev": true
386
+ },
387
+ "asynckit": {
388
+ "version": "0.4.0",
389
+ "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
390
+ "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=",
391
+ "dev": true,
392
+ "optional": true
393
+ },
394
+ "atob": {
395
+ "version": "2.1.2",
396
+ "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz",
397
+ "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==",
398
+ "dev": true
399
+ },
400
+ "aws-sign2": {
401
+ "version": "0.7.0",
402
+ "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz",
403
+ "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=",
404
+ "dev": true,
405
+ "optional": true
406
+ },
407
+ "aws4": {
408
+ "version": "1.8.0",
409
+ "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz",
410
+ "integrity": "sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==",
411
+ "dev": true,
412
+ "optional": true
413
+ },
414
+ "babel-code-frame": {
415
+ "version": "6.26.0",
416
+ "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz",
417
+ "integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=",
418
+ "dev": true,
419
+ "requires": {
420
+ "chalk": "^1.1.3",
421
+ "esutils": "^2.0.2",
422
+ "js-tokens": "^3.0.2"
423
+ },
424
+ "dependencies": {
425
+ "ansi-styles": {
426
+ "version": "2.2.1",
427
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
428
+ "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=",
429
+ "dev": true
430
+ },
431
+ "chalk": {
432
+ "version": "1.1.3",
433
+ "resolved": "http://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
434
+ "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
435
+ "dev": true,
436
+ "requires": {
437
+ "ansi-styles": "^2.2.1",
438
+ "escape-string-regexp": "^1.0.2",
439
+ "has-ansi": "^2.0.0",
440
+ "strip-ansi": "^3.0.0",
441
+ "supports-color": "^2.0.0"
442
+ }
443
+ },
444
+ "supports-color": {
445
+ "version": "2.0.0",
446
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
447
+ "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=",
448
+ "dev": true
449
+ }
450
+ }
451
+ },
452
+ "babel-core": {
453
+ "version": "6.26.3",
454
+ "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-6.26.3.tgz",
455
+ "integrity": "sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA==",
456
+ "dev": true,
457
+ "requires": {
458
+ "babel-code-frame": "^6.26.0",
459
+ "babel-generator": "^6.26.0",
460
+ "babel-helpers": "^6.24.1",
461
+ "babel-messages": "^6.23.0",
462
+ "babel-register": "^6.26.0",
463
+ "babel-runtime": "^6.26.0",
464
+ "babel-template": "^6.26.0",
465
+ "babel-traverse": "^6.26.0",
466
+ "babel-types": "^6.26.0",
467
+ "babylon": "^6.18.0",
468
+ "convert-source-map": "^1.5.1",
469
+ "debug": "^2.6.9",
470
+ "json5": "^0.5.1",
471
+ "lodash": "^4.17.4",
472
+ "minimatch": "^3.0.4",
473
+ "path-is-absolute": "^1.0.1",
474
+ "private": "^0.1.8",
475
+ "slash": "^1.0.0",
476
+ "source-map": "^0.5.7"
477
+ },
478
+ "dependencies": {
479
+ "debug": {
480
+ "version": "2.6.9",
481
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
482
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
483
+ "dev": true,
484
+ "requires": {
485
+ "ms": "2.0.0"
486
+ }
487
+ },
488
+ "ms": {
489
+ "version": "2.0.0",
490
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
491
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
492
+ "dev": true
493
+ },
494
+ "source-map": {
495
+ "version": "0.5.7",
496
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
497
+ "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=",
498
+ "dev": true
499
+ }
500
+ }
501
+ },
502
+ "babel-generator": {
503
+ "version": "6.26.1",
504
+ "resolved": "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.1.tgz",
505
+ "integrity": "sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==",
506
+ "dev": true,
507
+ "requires": {
508
+ "babel-messages": "^6.23.0",
509
+ "babel-runtime": "^6.26.0",
510
+ "babel-types": "^6.26.0",
511
+ "detect-indent": "^4.0.0",
512
+ "jsesc": "^1.3.0",
513
+ "lodash": "^4.17.4",
514
+ "source-map": "^0.5.7",
515
+ "trim-right": "^1.0.1"
516
+ },
517
+ "dependencies": {
518
+ "source-map": {
519
+ "version": "0.5.7",
520
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
521
+ "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=",
522
+ "dev": true
523
+ }
524
+ }
525
+ },
526
+ "babel-helper-builder-binary-assignment-operator-visitor": {
527
+ "version": "6.24.1",
528
+ "resolved": "https://registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz",
529
+ "integrity": "sha1-zORReto1b0IgvK6KAsKzRvmlZmQ=",
530
+ "dev": true,
531
+ "requires": {
532
+ "babel-helper-explode-assignable-expression": "^6.24.1",
533
+ "babel-runtime": "^6.22.0",
534
+ "babel-types": "^6.24.1"
535
+ }
536
+ },
537
+ "babel-helper-builder-react-jsx": {
538
+ "version": "6.26.0",
539
+ "resolved": "https://registry.npmjs.org/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz",
540
+ "integrity": "sha1-Of+DE7dci2Xc7/HzHTg+D/KkCKA=",
541
+ "dev": true,
542
+ "requires": {
543
+ "babel-runtime": "^6.26.0",
544
+ "babel-types": "^6.26.0",
545
+ "esutils": "^2.0.2"
546
+ }
547
+ },
548
+ "babel-helper-call-delegate": {
549
+ "version": "6.24.1",
550
+ "resolved": "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz",
551
+ "integrity": "sha1-7Oaqzdx25Bw0YfiL/Fdb0Nqi340=",
552
+ "dev": true,
553
+ "requires": {
554
+ "babel-helper-hoist-variables": "^6.24.1",
555
+ "babel-runtime": "^6.22.0",
556
+ "babel-traverse": "^6.24.1",
557
+ "babel-types": "^6.24.1"
558
+ }
559
+ },
560
+ "babel-helper-define-map": {
561
+ "version": "6.26.0",
562
+ "resolved": "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz",
563
+ "integrity": "sha1-pfVtq0GiX5fstJjH66ypgZ+Vvl8=",
564
+ "dev": true,
565
+ "requires": {
566
+ "babel-helper-function-name": "^6.24.1",
567
+ "babel-runtime": "^6.26.0",
568
+ "babel-types": "^6.26.0",
569
+ "lodash": "^4.17.4"
570
+ }
571
+ },
572
+ "babel-helper-explode-assignable-expression": {
573
+ "version": "6.24.1",
574
+ "resolved": "https://registry.npmjs.org/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz",
575
+ "integrity": "sha1-8luCz33BBDPFX3BZLVdGQArCLKo=",
576
+ "dev": true,
577
+ "requires": {
578
+ "babel-runtime": "^6.22.0",
579
+ "babel-traverse": "^6.24.1",
580
+ "babel-types": "^6.24.1"
581
+ }
582
+ },
583
+ "babel-helper-function-name": {
584
+ "version": "6.24.1",
585
+ "resolved": "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz",
586
+ "integrity": "sha1-00dbjAPtmCQqJbSDUasYOZ01gKk=",
587
+ "dev": true,
588
+ "requires": {
589
+ "babel-helper-get-function-arity": "^6.24.1",
590
+ "babel-runtime": "^6.22.0",
591
+ "babel-template": "^6.24.1",
592
+ "babel-traverse": "^6.24.1",
593
+ "babel-types": "^6.24.1"
594
+ }
595
+ },
596
+ "babel-helper-get-function-arity": {
597
+ "version": "6.24.1",
598
+ "resolved": "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz",
599
+ "integrity": "sha1-j3eCqpNAfEHTqlCQj4mwMbG2hT0=",
600
+ "dev": true,
601
+ "requires": {
602
+ "babel-runtime": "^6.22.0",
603
+ "babel-types": "^6.24.1"
604
+ }
605
+ },
606
+ "babel-helper-hoist-variables": {
607
+ "version": "6.24.1",
608
+ "resolved": "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz",
609
+ "integrity": "sha1-HssnaJydJVE+rbyZFKc/VAi+enY=",
610
+ "dev": true,
611
+ "requires": {
612
+ "babel-runtime": "^6.22.0",
613
+ "babel-types": "^6.24.1"
614
+ }
615
+ },
616
+ "babel-helper-optimise-call-expression": {
617
+ "version": "6.24.1",
618
+ "resolved": "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz",
619
+ "integrity": "sha1-96E0J7qfc/j0+pk8VKl4gtEkQlc=",
620
+ "dev": true,
621
+ "requires": {
622
+ "babel-runtime": "^6.22.0",
623
+ "babel-types": "^6.24.1"
624
+ }
625
+ },
626
+ "babel-helper-regex": {
627
+ "version": "6.26.0",
628
+ "resolved": "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz",
629
+ "integrity": "sha1-MlxZ+QL4LyS3T6zu0DY5VPZJXnI=",
630
+ "dev": true,
631
+ "requires": {
632
+ "babel-runtime": "^6.26.0",
633
+ "babel-types": "^6.26.0",
634
+ "lodash": "^4.17.4"
635
+ }
636
+ },
637
+ "babel-helper-remap-async-to-generator": {
638
+ "version": "6.24.1",
639
+ "resolved": "https://registry.npmjs.org/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz",
640
+ "integrity": "sha1-XsWBgnrXI/7N04HxySg5BnbkVRs=",
641
+ "dev": true,
642
+ "requires": {
643
+ "babel-helper-function-name": "^6.24.1",
644
+ "babel-runtime": "^6.22.0",
645
+ "babel-template": "^6.24.1",
646
+ "babel-traverse": "^6.24.1",
647
+ "babel-types": "^6.24.1"
648
+ }
649
+ },
650
+ "babel-helper-replace-supers": {
651
+ "version": "6.24.1",
652
+ "resolved": "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz",
653
+ "integrity": "sha1-v22/5Dk40XNpohPKiov3S2qQqxo=",
654
+ "dev": true,
655
+ "requires": {
656
+ "babel-helper-optimise-call-expression": "^6.24.1",
657
+ "babel-messages": "^6.23.0",
658
+ "babel-runtime": "^6.22.0",
659
+ "babel-template": "^6.24.1",
660
+ "babel-traverse": "^6.24.1",
661
+ "babel-types": "^6.24.1"
662
+ }
663
+ },
664
+ "babel-helpers": {
665
+ "version": "6.24.1",
666
+ "resolved": "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz",
667
+ "integrity": "sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI=",
668
+ "dev": true,
669
+ "requires": {
670
+ "babel-runtime": "^6.22.0",
671
+ "babel-template": "^6.24.1"
672
+ }
673
+ },
674
+ "babel-loader": {
675
+ "version": "7.1.5",
676
+ "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-7.1.5.tgz",
677
+ "integrity": "sha512-iCHfbieL5d1LfOQeeVJEUyD9rTwBcP/fcEbRCfempxTDuqrKpu0AZjLAQHEQa3Yqyj9ORKe2iHfoj4rHLf7xpw==",
678
+ "dev": true,
679
+ "requires": {
680
+ "find-cache-dir": "^1.0.0",
681
+ "loader-utils": "^1.0.2",
682
+ "mkdirp": "^0.5.1"
683
+ }
684
+ },
685
+ "babel-messages": {
686
+ "version": "6.23.0",
687
+ "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz",
688
+ "integrity": "sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=",
689
+ "dev": true,
690
+ "requires": {
691
+ "babel-runtime": "^6.22.0"
692
+ }
693
+ },
694
+ "babel-plugin-check-es2015-constants": {
695
+ "version": "6.22.0",
696
+ "resolved": "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz",
697
+ "integrity": "sha1-NRV7EBQm/S/9PaP3XH0ekYNbv4o=",
698
+ "dev": true,
699
+ "requires": {
700
+ "babel-runtime": "^6.22.0"
701
+ }
702
+ },
703
+ "babel-plugin-emotion": {
704
+ "version": "9.2.11",
705
+ "resolved": "https://registry.npmjs.org/babel-plugin-emotion/-/babel-plugin-emotion-9.2.11.tgz",
706
+ "integrity": "sha512-dgCImifnOPPSeXod2znAmgc64NhaaOjGEHROR/M+lmStb3841yK1sgaDYAYMnlvWNz8GnpwIPN0VmNpbWYZ+VQ==",
707
+ "requires": {
708
+ "@babel/helper-module-imports": "^7.0.0",
709
+ "@emotion/babel-utils": "^0.6.4",
710
+ "@emotion/hash": "^0.6.2",
711
+ "@emotion/memoize": "^0.6.1",
712
+ "@emotion/stylis": "^0.7.0",
713
+ "babel-plugin-macros": "^2.0.0",
714
+ "babel-plugin-syntax-jsx": "^6.18.0",
715
+ "convert-source-map": "^1.5.0",
716
+ "find-root": "^1.1.0",
717
+ "mkdirp": "^0.5.1",
718
+ "source-map": "^0.5.7",
719
+ "touch": "^2.0.1"
720
+ },
721
+ "dependencies": {
722
+ "source-map": {
723
+ "version": "0.5.7",
724
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
725
+ "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
726
+ }
727
+ }
728
+ },
729
+ "babel-plugin-macros": {
730
+ "version": "2.4.5",
731
+ "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.4.5.tgz",
732
+ "integrity": "sha512-+/9yteNQw3yuZ3krQUfjAeoT/f4EAdn3ELwhFfDj0rTMIaoHfIdrcLePOfIaL0qmFLpIcgPIL2Lzm58h+CGWaw==",
733
+ "requires": {
734
+ "cosmiconfig": "^5.0.5",
735
+ "resolve": "^1.8.1"
736
+ },
737
+ "dependencies": {
738
+ "resolve": {
739
+ "version": "1.10.0",
740
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.10.0.tgz",
741
+ "integrity": "sha512-3sUr9aq5OfSg2S9pNtPA9hL1FVEAjvfOC4leW0SNf/mpnaakz2a9femSd6LqAww2RaFctwyf1lCqnTHuF1rxDg==",
742
+ "requires": {
743
+ "path-parse": "^1.0.6"
744
+ }
745
+ }
746
+ }
747
+ },
748
+ "babel-plugin-syntax-async-functions": {
749
+ "version": "6.13.0",
750
+ "resolved": "http://registry.npmjs.org/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz",
751
+ "integrity": "sha1-ytnK0RkbWtY0vzCuCHI5HgZHvpU=",
752
+ "dev": true
753
+ },
754
+ "babel-plugin-syntax-exponentiation-operator": {
755
+ "version": "6.13.0",
756
+ "resolved": "http://registry.npmjs.org/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz",
757
+ "integrity": "sha1-nufoM3KQ2pUoggGmpX9BcDF4MN4=",
758
+ "dev": true
759
+ },
760
+ "babel-plugin-syntax-jsx": {
761
+ "version": "6.18.0",
762
+ "resolved": "http://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz",
763
+ "integrity": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY="
764
+ },
765
+ "babel-plugin-syntax-trailing-function-commas": {
766
+ "version": "6.22.0",
767
+ "resolved": "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz",
768
+ "integrity": "sha1-ugNgk3+NBuQBgKQ/4NVhb/9TLPM=",
769
+ "dev": true
770
+ },
771
+ "babel-plugin-transform-async-to-generator": {
772
+ "version": "6.24.1",
773
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz",
774
+ "integrity": "sha1-ZTbjeK/2yx1VF6wOQOs+n8jQh2E=",
775
+ "dev": true,
776
+ "requires": {
777
+ "babel-helper-remap-async-to-generator": "^6.24.1",
778
+ "babel-plugin-syntax-async-functions": "^6.8.0",
779
+ "babel-runtime": "^6.22.0"
780
+ }
781
+ },
782
+ "babel-plugin-transform-es2015-arrow-functions": {
783
+ "version": "6.22.0",
784
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz",
785
+ "integrity": "sha1-RSaSy3EdX3ncf4XkQM5BufJE0iE=",
786
+ "dev": true,
787
+ "requires": {
788
+ "babel-runtime": "^6.22.0"
789
+ }
790
+ },
791
+ "babel-plugin-transform-es2015-block-scoped-functions": {
792
+ "version": "6.22.0",
793
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz",
794
+ "integrity": "sha1-u8UbSflk1wy42OC5ToICRs46YUE=",
795
+ "dev": true,
796
+ "requires": {
797
+ "babel-runtime": "^6.22.0"
798
+ }
799
+ },
800
+ "babel-plugin-transform-es2015-block-scoping": {
801
+ "version": "6.26.0",
802
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz",
803
+ "integrity": "sha1-1w9SmcEwjQXBL0Y4E7CgnnOxiV8=",
804
+ "dev": true,
805
+ "requires": {
806
+ "babel-runtime": "^6.26.0",
807
+ "babel-template": "^6.26.0",
808
+ "babel-traverse": "^6.26.0",
809
+ "babel-types": "^6.26.0",
810
+ "lodash": "^4.17.4"
811
+ }
812
+ },
813
+ "babel-plugin-transform-es2015-classes": {
814
+ "version": "6.24.1",
815
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz",
816
+ "integrity": "sha1-WkxYpQyclGHlZLSyo7+ryXolhNs=",
817
+ "dev": true,
818
+ "requires": {
819
+ "babel-helper-define-map": "^6.24.1",
820
+ "babel-helper-function-name": "^6.24.1",
821
+ "babel-helper-optimise-call-expression": "^6.24.1",
822
+ "babel-helper-replace-supers": "^6.24.1",
823
+ "babel-messages": "^6.23.0",
824
+ "babel-runtime": "^6.22.0",
825
+ "babel-template": "^6.24.1",
826
+ "babel-traverse": "^6.24.1",
827
+ "babel-types": "^6.24.1"
828
+ }
829
+ },
830
+ "babel-plugin-transform-es2015-computed-properties": {
831
+ "version": "6.24.1",
832
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz",
833
+ "integrity": "sha1-b+Ko0WiV1WNPTNmZttNICjCBWbM=",
834
+ "dev": true,
835
+ "requires": {
836
+ "babel-runtime": "^6.22.0",
837
+ "babel-template": "^6.24.1"
838
+ }
839
+ },
840
+ "babel-plugin-transform-es2015-destructuring": {
841
+ "version": "6.23.0",
842
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz",
843
+ "integrity": "sha1-mXux8auWf2gtKwh2/jWNYOdlxW0=",
844
+ "dev": true,
845
+ "requires": {
846
+ "babel-runtime": "^6.22.0"
847
+ }
848
+ },
849
+ "babel-plugin-transform-es2015-duplicate-keys": {
850
+ "version": "6.24.1",
851
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz",
852
+ "integrity": "sha1-c+s9MQypaePvnskcU3QabxV2Qj4=",
853
+ "dev": true,
854
+ "requires": {
855
+ "babel-runtime": "^6.22.0",
856
+ "babel-types": "^6.24.1"
857
+ }
858
+ },
859
+ "babel-plugin-transform-es2015-for-of": {
860
+ "version": "6.23.0",
861
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz",
862
+ "integrity": "sha1-9HyVsrYT3x0+zC/bdXNiPHUkhpE=",
863
+ "dev": true,
864
+ "requires": {
865
+ "babel-runtime": "^6.22.0"
866
+ }
867
+ },
868
+ "babel-plugin-transform-es2015-function-name": {
869
+ "version": "6.24.1",
870
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz",
871
+ "integrity": "sha1-g0yJhTvDaxrw86TF26qU/Y6sqos=",
872
+ "dev": true,
873
+ "requires": {
874
+ "babel-helper-function-name": "^6.24.1",
875
+ "babel-runtime": "^6.22.0",
876
+ "babel-types": "^6.24.1"
877
+ }
878
+ },
879
+ "babel-plugin-transform-es2015-literals": {
880
+ "version": "6.22.0",
881
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz",
882
+ "integrity": "sha1-T1SgLWzWbPkVKAAZox0xklN3yi4=",
883
+ "dev": true,
884
+ "requires": {
885
+ "babel-runtime": "^6.22.0"
886
+ }
887
+ },
888
+ "babel-plugin-transform-es2015-modules-amd": {
889
+ "version": "6.24.1",
890
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz",
891
+ "integrity": "sha1-Oz5UAXI5hC1tGcMBHEvS8AoA0VQ=",
892
+ "dev": true,
893
+ "requires": {
894
+ "babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
895
+ "babel-runtime": "^6.22.0",
896
+ "babel-template": "^6.24.1"
897
+ }
898
+ },
899
+ "babel-plugin-transform-es2015-modules-commonjs": {
900
+ "version": "6.26.2",
901
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz",
902
+ "integrity": "sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q==",
903
+ "dev": true,
904
+ "requires": {
905
+ "babel-plugin-transform-strict-mode": "^6.24.1",
906
+ "babel-runtime": "^6.26.0",
907
+ "babel-template": "^6.26.0",
908
+ "babel-types": "^6.26.0"
909
+ }
910
+ },
911
+ "babel-plugin-transform-es2015-modules-systemjs": {
912
+ "version": "6.24.1",
913
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz",
914
+ "integrity": "sha1-/4mhQrkRmpBhlfXxBuzzBdlAfSM=",
915
+ "dev": true,
916
+ "requires": {
917
+ "babel-helper-hoist-variables": "^6.24.1",
918
+ "babel-runtime": "^6.22.0",
919
+ "babel-template": "^6.24.1"
920
+ }
921
+ },
922
+ "babel-plugin-transform-es2015-modules-umd": {
923
+ "version": "6.24.1",
924
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz",
925
+ "integrity": "sha1-rJl+YoXNGO1hdq22B9YCNErThGg=",
926
+ "dev": true,
927
+ "requires": {
928
+ "babel-plugin-transform-es2015-modules-amd": "^6.24.1",
929
+ "babel-runtime": "^6.22.0",
930
+ "babel-template": "^6.24.1"
931
+ }
932
+ },
933
+ "babel-plugin-transform-es2015-object-super": {
934
+ "version": "6.24.1",
935
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz",
936
+ "integrity": "sha1-JM72muIcuDp/hgPa0CH1cusnj40=",
937
+ "dev": true,
938
+ "requires": {
939
+ "babel-helper-replace-supers": "^6.24.1",
940
+ "babel-runtime": "^6.22.0"
941
+ }
942
+ },
943
+ "babel-plugin-transform-es2015-parameters": {
944
+ "version": "6.24.1",
945
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz",
946
+ "integrity": "sha1-V6w1GrScrxSpfNE7CfZv3wpiXys=",
947
+ "dev": true,
948
+ "requires": {
949
+ "babel-helper-call-delegate": "^6.24.1",
950
+ "babel-helper-get-function-arity": "^6.24.1",
951
+ "babel-runtime": "^6.22.0",
952
+ "babel-template": "^6.24.1",
953
+ "babel-traverse": "^6.24.1",
954
+ "babel-types": "^6.24.1"
955
+ }
956
+ },
957
+ "babel-plugin-transform-es2015-shorthand-properties": {
958
+ "version": "6.24.1",
959
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz",
960
+ "integrity": "sha1-JPh11nIch2YbvZmkYi5R8U3jiqA=",
961
+ "dev": true,
962
+ "requires": {
963
+ "babel-runtime": "^6.22.0",
964
+ "babel-types": "^6.24.1"
965
+ }
966
+ },
967
+ "babel-plugin-transform-es2015-spread": {
968
+ "version": "6.22.0",
969
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz",
970
+ "integrity": "sha1-1taKmfia7cRTbIGlQujdnxdG+NE=",
971
+ "dev": true,
972
+ "requires": {
973
+ "babel-runtime": "^6.22.0"
974
+ }
975
+ },
976
+ "babel-plugin-transform-es2015-sticky-regex": {
977
+ "version": "6.24.1",
978
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz",
979
+ "integrity": "sha1-AMHNsaynERLN8M9hJsLta0V8zbw=",
980
+ "dev": true,
981
+ "requires": {
982
+ "babel-helper-regex": "^6.24.1",
983
+ "babel-runtime": "^6.22.0",
984
+ "babel-types": "^6.24.1"
985
+ }
986
+ },
987
+ "babel-plugin-transform-es2015-template-literals": {
988
+ "version": "6.22.0",
989
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz",
990
+ "integrity": "sha1-qEs0UPfp+PH2g51taH2oS7EjbY0=",
991
+ "dev": true,
992
+ "requires": {
993
+ "babel-runtime": "^6.22.0"
994
+ }
995
+ },
996
+ "babel-plugin-transform-es2015-typeof-symbol": {
997
+ "version": "6.23.0",
998
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz",
999
+ "integrity": "sha1-3sCfHN3/lLUqxz1QXITfWdzOs3I=",
1000
+ "dev": true,
1001
+ "requires": {
1002
+ "babel-runtime": "^6.22.0"
1003
+ }
1004
+ },
1005
+ "babel-plugin-transform-es2015-unicode-regex": {
1006
+ "version": "6.24.1",
1007
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz",
1008
+ "integrity": "sha1-04sS9C6nMj9yk4fxinxa4frrNek=",
1009
+ "dev": true,
1010
+ "requires": {
1011
+ "babel-helper-regex": "^6.24.1",
1012
+ "babel-runtime": "^6.22.0",
1013
+ "regexpu-core": "^2.0.0"
1014
+ }
1015
+ },
1016
+ "babel-plugin-transform-exponentiation-operator": {
1017
+ "version": "6.24.1",
1018
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz",
1019
+ "integrity": "sha1-KrDJx/MJj6SJB3cruBP+QejeOg4=",
1020
+ "dev": true,
1021
+ "requires": {
1022
+ "babel-helper-builder-binary-assignment-operator-visitor": "^6.24.1",
1023
+ "babel-plugin-syntax-exponentiation-operator": "^6.8.0",
1024
+ "babel-runtime": "^6.22.0"
1025
+ }
1026
+ },
1027
+ "babel-plugin-transform-react-jsx": {
1028
+ "version": "6.24.1",
1029
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz",
1030
+ "integrity": "sha1-hAoCjn30YN/DotKfDA2R9jduZqM=",
1031
+ "dev": true,
1032
+ "requires": {
1033
+ "babel-helper-builder-react-jsx": "^6.24.1",
1034
+ "babel-plugin-syntax-jsx": "^6.8.0",
1035
+ "babel-runtime": "^6.22.0"
1036
+ }
1037
+ },
1038
+ "babel-plugin-transform-regenerator": {
1039
+ "version": "6.26.0",
1040
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz",
1041
+ "integrity": "sha1-4HA2lvveJ/Cj78rPi03KL3s6jy8=",
1042
+ "dev": true,
1043
+ "requires": {
1044
+ "regenerator-transform": "^0.10.0"
1045
+ }
1046
+ },
1047
+ "babel-plugin-transform-strict-mode": {
1048
+ "version": "6.24.1",
1049
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz",
1050
+ "integrity": "sha1-1fr3qleKZbvlkc9e2uBKDGcCB1g=",
1051
+ "dev": true,
1052
+ "requires": {
1053
+ "babel-runtime": "^6.22.0",
1054
+ "babel-types": "^6.24.1"
1055
+ }
1056
+ },
1057
+ "babel-preset-env": {
1058
+ "version": "1.7.0",
1059
+ "resolved": "https://registry.npmjs.org/babel-preset-env/-/babel-preset-env-1.7.0.tgz",
1060
+ "integrity": "sha512-9OR2afuKDneX2/q2EurSftUYM0xGu4O2D9adAhVfADDhrYDaxXV0rBbevVYoY9n6nyX1PmQW/0jtpJvUNr9CHg==",
1061
+ "dev": true,
1062
+ "requires": {
1063
+ "babel-plugin-check-es2015-constants": "^6.22.0",
1064
+ "babel-plugin-syntax-trailing-function-commas": "^6.22.0",
1065
+ "babel-plugin-transform-async-to-generator": "^6.22.0",
1066
+ "babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
1067
+ "babel-plugin-transform-es2015-block-scoped-functions": "^6.22.0",
1068
+ "babel-plugin-transform-es2015-block-scoping": "^6.23.0",
1069
+ "babel-plugin-transform-es2015-classes": "^6.23.0",
1070
+ "babel-plugin-transform-es2015-computed-properties": "^6.22.0",
1071
+ "babel-plugin-transform-es2015-destructuring": "^6.23.0",
1072
+ "babel-plugin-transform-es2015-duplicate-keys": "^6.22.0",
1073
+ "babel-plugin-transform-es2015-for-of": "^6.23.0",
1074
+ "babel-plugin-transform-es2015-function-name": "^6.22.0",
1075
+ "babel-plugin-transform-es2015-literals": "^6.22.0",
1076
+ "babel-plugin-transform-es2015-modules-amd": "^6.22.0",
1077
+ "babel-plugin-transform-es2015-modules-commonjs": "^6.23.0",
1078
+ "babel-plugin-transform-es2015-modules-systemjs": "^6.23.0",
1079
+ "babel-plugin-transform-es2015-modules-umd": "^6.23.0",
1080
+ "babel-plugin-transform-es2015-object-super": "^6.22.0",
1081
+ "babel-plugin-transform-es2015-parameters": "^6.23.0",
1082
+ "babel-plugin-transform-es2015-shorthand-properties": "^6.22.0",
1083
+ "babel-plugin-transform-es2015-spread": "^6.22.0",
1084
+ "babel-plugin-transform-es2015-sticky-regex": "^6.22.0",
1085
+ "babel-plugin-transform-es2015-template-literals": "^6.22.0",
1086
+ "babel-plugin-transform-es2015-typeof-symbol": "^6.23.0",
1087
+ "babel-plugin-transform-es2015-unicode-regex": "^6.22.0",
1088
+ "babel-plugin-transform-exponentiation-operator": "^6.22.0",
1089
+ "babel-plugin-transform-regenerator": "^6.22.0",
1090
+ "browserslist": "^3.2.6",
1091
+ "invariant": "^2.2.2",
1092
+ "semver": "^5.3.0"
1093
+ }
1094
+ },
1095
+ "babel-register": {
1096
+ "version": "6.26.0",
1097
+ "resolved": "https://registry.npmjs.org/babel-register/-/babel-register-6.26.0.tgz",
1098
+ "integrity": "sha1-btAhFz4vy0htestFxgCahW9kcHE=",
1099
+ "dev": true,
1100
+ "requires": {
1101
+ "babel-core": "^6.26.0",
1102
+ "babel-runtime": "^6.26.0",
1103
+ "core-js": "^2.5.0",
1104
+ "home-or-tmp": "^2.0.0",
1105
+ "lodash": "^4.17.4",
1106
+ "mkdirp": "^0.5.1",
1107
+ "source-map-support": "^0.4.15"
1108
+ }
1109
+ },
1110
+ "babel-runtime": {
1111
+ "version": "6.26.0",
1112
+ "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
1113
+ "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=",
1114
+ "dev": true,
1115
+ "requires": {
1116
+ "core-js": "^2.4.0",
1117
+ "regenerator-runtime": "^0.11.0"
1118
+ }
1119
+ },
1120
+ "babel-template": {
1121
+ "version": "6.26.0",
1122
+ "resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz",
1123
+ "integrity": "sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=",
1124
+ "dev": true,
1125
+ "requires": {
1126
+ "babel-runtime": "^6.26.0",
1127
+ "babel-traverse": "^6.26.0",
1128
+ "babel-types": "^6.26.0",
1129
+ "babylon": "^6.18.0",
1130
+ "lodash": "^4.17.4"
1131
+ }
1132
+ },
1133
+ "babel-traverse": {
1134
+ "version": "6.26.0",
1135
+ "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz",
1136
+ "integrity": "sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=",
1137
+ "dev": true,
1138
+ "requires": {
1139
+ "babel-code-frame": "^6.26.0",
1140
+ "babel-messages": "^6.23.0",
1141
+ "babel-runtime": "^6.26.0",
1142
+ "babel-types": "^6.26.0",
1143
+ "babylon": "^6.18.0",
1144
+ "debug": "^2.6.8",
1145
+ "globals": "^9.18.0",
1146
+ "invariant": "^2.2.2",
1147
+ "lodash": "^4.17.4"
1148
+ },
1149
+ "dependencies": {
1150
+ "debug": {
1151
+ "version": "2.6.9",
1152
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
1153
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
1154
+ "dev": true,
1155
+ "requires": {
1156
+ "ms": "2.0.0"
1157
+ }
1158
+ },
1159
+ "ms": {
1160
+ "version": "2.0.0",
1161
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
1162
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
1163
+ "dev": true
1164
+ }
1165
+ }
1166
+ },
1167
+ "babel-types": {
1168
+ "version": "6.26.0",
1169
+ "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz",
1170
+ "integrity": "sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=",
1171
+ "dev": true,
1172
+ "requires": {
1173
+ "babel-runtime": "^6.26.0",
1174
+ "esutils": "^2.0.2",
1175
+ "lodash": "^4.17.4",
1176
+ "to-fast-properties": "^1.0.3"
1177
+ }
1178
+ },
1179
+ "babylon": {
1180
+ "version": "6.18.0",
1181
+ "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz",
1182
+ "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==",
1183
+ "dev": true
1184
+ },
1185
+ "balanced-match": {
1186
+ "version": "1.0.0",
1187
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz",
1188
+ "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=",
1189
+ "dev": true
1190
+ },
1191
+ "base": {
1192
+ "version": "0.11.2",
1193
+ "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz",
1194
+ "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==",
1195
+ "dev": true,
1196
+ "requires": {
1197
+ "cache-base": "^1.0.1",
1198
+ "class-utils": "^0.3.5",
1199
+ "component-emitter": "^1.2.1",
1200
+ "define-property": "^1.0.0",
1201
+ "isobject": "^3.0.1",
1202
+ "mixin-deep": "^1.2.0",
1203
+ "pascalcase": "^0.1.1"
1204
+ },
1205
+ "dependencies": {
1206
+ "define-property": {
1207
+ "version": "1.0.0",
1208
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
1209
+ "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
1210
+ "dev": true,
1211
+ "requires": {
1212
+ "is-descriptor": "^1.0.0"
1213
+ }
1214
+ },
1215
+ "is-accessor-descriptor": {
1216
+ "version": "1.0.0",
1217
+ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
1218
+ "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
1219
+ "dev": true,
1220
+ "requires": {
1221
+ "kind-of": "^6.0.0"
1222
+ }
1223
+ },
1224
+ "is-data-descriptor": {
1225
+ "version": "1.0.0",
1226
+ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
1227
+ "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
1228
+ "dev": true,
1229
+ "requires": {
1230
+ "kind-of": "^6.0.0"
1231
+ }
1232
+ },
1233
+ "is-descriptor": {
1234
+ "version": "1.0.2",
1235
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
1236
+ "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
1237
+ "dev": true,
1238
+ "requires": {
1239
+ "is-accessor-descriptor": "^1.0.0",
1240
+ "is-data-descriptor": "^1.0.0",
1241
+ "kind-of": "^6.0.2"
1242
+ }
1243
+ },
1244
+ "kind-of": {
1245
+ "version": "6.0.2",
1246
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
1247
+ "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==",
1248
+ "dev": true
1249
+ }
1250
+ }
1251
+ },
1252
+ "base64-js": {
1253
+ "version": "1.3.0",
1254
+ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.0.tgz",
1255
+ "integrity": "sha512-ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw==",
1256
+ "dev": true
1257
+ },
1258
+ "bcrypt-pbkdf": {
1259
+ "version": "1.0.2",
1260
+ "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz",
1261
+ "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=",
1262
+ "dev": true,
1263
+ "optional": true,
1264
+ "requires": {
1265
+ "tweetnacl": "^0.14.3"
1266
+ }
1267
+ },
1268
+ "big.js": {
1269
+ "version": "5.2.2",
1270
+ "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
1271
+ "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==",
1272
+ "dev": true
1273
+ },
1274
+ "binary-extensions": {
1275
+ "version": "1.12.0",
1276
+ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.12.0.tgz",
1277
+ "integrity": "sha512-DYWGk01lDcxeS/K9IHPGWfT8PsJmbXRtRd2Sx72Tnb8pcYZQFF1oSDb8hJtS1vhp212q1Rzi5dUf9+nq0o9UIg==",
1278
+ "dev": true
1279
+ },
1280
+ "bluebird": {
1281
+ "version": "3.5.3",
1282
+ "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.3.tgz",
1283
+ "integrity": "sha512-/qKPUQlaW1OyR51WeCPBvRnAlnZFUJkCSG5HzGnuIqhgyJtF+T94lFnn33eiazjRm2LAHVy2guNnaq48X9SJuw==",
1284
+ "dev": true
1285
+ },
1286
+ "bn.js": {
1287
+ "version": "4.11.8",
1288
+ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz",
1289
+ "integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==",
1290
+ "dev": true
1291
+ },
1292
+ "body": {
1293
+ "version": "5.1.0",
1294
+ "resolved": "https://registry.npmjs.org/body/-/body-5.1.0.tgz",
1295
+ "integrity": "sha1-5LoM5BCkaTYyM2dgnstOZVMSUGk=",
1296
+ "dev": true,
1297
+ "requires": {
1298
+ "continuable-cache": "^0.3.1",
1299
+ "error": "^7.0.0",
1300
+ "raw-body": "~1.1.0",
1301
+ "safe-json-parse": "~1.0.1"
1302
+ }
1303
+ },
1304
+ "brace-expansion": {
1305
+ "version": "1.1.11",
1306
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
1307
+ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
1308
+ "dev": true,
1309
+ "requires": {
1310
+ "balanced-match": "^1.0.0",
1311
+ "concat-map": "0.0.1"
1312
+ }
1313
+ },
1314
+ "braces": {
1315
+ "version": "2.3.2",
1316
+ "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
1317
+ "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
1318
+ "dev": true,
1319
+ "requires": {
1320
+ "arr-flatten": "^1.1.0",
1321
+ "array-unique": "^0.3.2",
1322
+ "extend-shallow": "^2.0.1",
1323
+ "fill-range": "^4.0.0",
1324
+ "isobject": "^3.0.1",
1325
+ "repeat-element": "^1.1.2",
1326
+ "snapdragon": "^0.8.1",
1327
+ "snapdragon-node": "^2.0.1",
1328
+ "split-string": "^3.0.2",
1329
+ "to-regex": "^3.0.1"
1330
+ },
1331
+ "dependencies": {
1332
+ "extend-shallow": {
1333
+ "version": "2.0.1",
1334
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
1335
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
1336
+ "dev": true,
1337
+ "requires": {
1338
+ "is-extendable": "^0.1.0"
1339
+ }
1340
+ }
1341
+ }
1342
+ },
1343
+ "brorand": {
1344
+ "version": "1.1.0",
1345
+ "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz",
1346
+ "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=",
1347
+ "dev": true
1348
+ },
1349
+ "browserify-aes": {
1350
+ "version": "1.2.0",
1351
+ "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz",
1352
+ "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==",
1353
+ "dev": true,
1354
+ "requires": {
1355
+ "buffer-xor": "^1.0.3",
1356
+ "cipher-base": "^1.0.0",
1357
+ "create-hash": "^1.1.0",
1358
+ "evp_bytestokey": "^1.0.3",
1359
+ "inherits": "^2.0.1",
1360
+ "safe-buffer": "^5.0.1"
1361
+ }
1362
+ },
1363
+ "browserify-cipher": {
1364
+ "version": "1.0.1",
1365
+ "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz",
1366
+ "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==",
1367
+ "dev": true,
1368
+ "requires": {
1369
+ "browserify-aes": "^1.0.4",
1370
+ "browserify-des": "^1.0.0",
1371
+ "evp_bytestokey": "^1.0.0"
1372
+ }
1373
+ },
1374
+ "browserify-des": {
1375
+ "version": "1.0.2",
1376
+ "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz",
1377
+ "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==",
1378
+ "dev": true,
1379
+ "requires": {
1380
+ "cipher-base": "^1.0.1",
1381
+ "des.js": "^1.0.0",
1382
+ "inherits": "^2.0.1",
1383
+ "safe-buffer": "^5.1.2"
1384
+ }
1385
+ },
1386
+ "browserify-rsa": {
1387
+ "version": "4.0.1",
1388
+ "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz",
1389
+ "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=",
1390
+ "dev": true,
1391
+ "requires": {
1392
+ "bn.js": "^4.1.0",
1393
+ "randombytes": "^2.0.1"
1394
+ }
1395
+ },
1396
+ "browserify-sign": {
1397
+ "version": "4.0.4",
1398
+ "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz",
1399
+ "integrity": "sha1-qk62jl17ZYuqa/alfmMMvXqT0pg=",
1400
+ "dev": true,
1401
+ "requires": {
1402
+ "bn.js": "^4.1.1",
1403
+ "browserify-rsa": "^4.0.0",
1404
+ "create-hash": "^1.1.0",
1405
+ "create-hmac": "^1.1.2",
1406
+ "elliptic": "^6.0.0",
1407
+ "inherits": "^2.0.1",
1408
+ "parse-asn1": "^5.0.0"
1409
+ }
1410
+ },
1411
+ "browserify-zlib": {
1412
+ "version": "0.2.0",
1413
+ "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz",
1414
+ "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==",
1415
+ "dev": true,
1416
+ "requires": {
1417
+ "pako": "~1.0.5"
1418
+ }
1419
+ },
1420
+ "browserslist": {
1421
+ "version": "3.2.8",
1422
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-3.2.8.tgz",
1423
+ "integrity": "sha512-WHVocJYavUwVgVViC0ORikPHQquXwVh939TaelZ4WDqpWgTX/FsGhl/+P4qBUAGcRvtOgDgC+xftNWWp2RUTAQ==",
1424
+ "dev": true,
1425
+ "requires": {
1426
+ "caniuse-lite": "^1.0.30000844",
1427
+ "electron-to-chromium": "^1.3.47"
1428
+ }
1429
+ },
1430
+ "buffer": {
1431
+ "version": "4.9.1",
1432
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz",
1433
+ "integrity": "sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg=",
1434
+ "dev": true,
1435
+ "requires": {
1436
+ "base64-js": "^1.0.2",
1437
+ "ieee754": "^1.1.4",
1438
+ "isarray": "^1.0.0"
1439
+ }
1440
+ },
1441
+ "buffer-xor": {
1442
+ "version": "1.0.3",
1443
+ "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz",
1444
+ "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=",
1445
+ "dev": true
1446
+ },
1447
+ "builtin-modules": {
1448
+ "version": "1.1.1",
1449
+ "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz",
1450
+ "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=",
1451
+ "dev": true
1452
+ },
1453
+ "builtin-status-codes": {
1454
+ "version": "3.0.0",
1455
+ "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz",
1456
+ "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=",
1457
+ "dev": true
1458
+ },
1459
+ "bytes": {
1460
+ "version": "1.0.0",
1461
+ "resolved": "https://registry.npmjs.org/bytes/-/bytes-1.0.0.tgz",
1462
+ "integrity": "sha1-NWnt6Lo0MV+rmcPpLLBMciDeH6g=",
1463
+ "dev": true
1464
+ },
1465
+ "cache-base": {
1466
+ "version": "1.0.1",
1467
+ "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz",
1468
+ "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==",
1469
+ "dev": true,
1470
+ "requires": {
1471
+ "collection-visit": "^1.0.0",
1472
+ "component-emitter": "^1.2.1",
1473
+ "get-value": "^2.0.6",
1474
+ "has-value": "^1.0.0",
1475
+ "isobject": "^3.0.1",
1476
+ "set-value": "^2.0.0",
1477
+ "to-object-path": "^0.3.0",
1478
+ "union-value": "^1.0.0",
1479
+ "unset-value": "^1.0.0"
1480
+ }
1481
+ },
1482
+ "caller-callsite": {
1483
+ "version": "2.0.0",
1484
+ "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz",
1485
+ "integrity": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=",
1486
+ "requires": {
1487
+ "callsites": "^2.0.0"
1488
+ }
1489
+ },
1490
+ "caller-path": {
1491
+ "version": "2.0.0",
1492
+ "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz",
1493
+ "integrity": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=",
1494
+ "requires": {
1495
+ "caller-callsite": "^2.0.0"
1496
+ }
1497
+ },
1498
+ "callsites": {
1499
+ "version": "2.0.0",
1500
+ "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz",
1501
+ "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA="
1502
+ },
1503
+ "camelcase": {
1504
+ "version": "2.1.1",
1505
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz",
1506
+ "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=",
1507
+ "dev": true
1508
+ },
1509
+ "camelcase-keys": {
1510
+ "version": "2.1.0",
1511
+ "resolved": "http://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz",
1512
+ "integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=",
1513
+ "dev": true,
1514
+ "requires": {
1515
+ "camelcase": "^2.0.0",
1516
+ "map-obj": "^1.0.0"
1517
+ }
1518
+ },
1519
+ "caniuse-lite": {
1520
+ "version": "1.0.30000914",
1521
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000914.tgz",
1522
+ "integrity": "sha512-qqj0CL1xANgg6iDOybiPTIxtsmAnfIky9mBC35qgWrnK4WwmhqfpmkDYMYgwXJ8LRZ3/2jXlCntulO8mBaAgSg==",
1523
+ "dev": true
1524
+ },
1525
+ "caseless": {
1526
+ "version": "0.12.0",
1527
+ "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
1528
+ "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=",
1529
+ "dev": true,
1530
+ "optional": true
1531
+ },
1532
+ "center-align": {
1533
+ "version": "0.1.3",
1534
+ "resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz",
1535
+ "integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=",
1536
+ "dev": true,
1537
+ "requires": {
1538
+ "align-text": "^0.1.3",
1539
+ "lazy-cache": "^1.0.3"
1540
+ }
1541
+ },
1542
+ "chalk": {
1543
+ "version": "2.4.1",
1544
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
1545
+ "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
1546
+ "dev": true,
1547
+ "requires": {
1548
+ "ansi-styles": "^3.2.1",
1549
+ "escape-string-regexp": "^1.0.5",
1550
+ "supports-color": "^5.3.0"
1551
+ }
1552
+ },
1553
+ "chokidar": {
1554
+ "version": "2.0.4",
1555
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.0.4.tgz",
1556
+ "integrity": "sha512-z9n7yt9rOvIJrMhvDtDictKrkFHeihkNl6uWMmZlmL6tJtX9Cs+87oK+teBx+JIgzvbX3yZHT3eF8vpbDxHJXQ==",
1557
+ "dev": true,
1558
+ "requires": {
1559
+ "anymatch": "^2.0.0",
1560
+ "async-each": "^1.0.0",
1561
+ "braces": "^2.3.0",
1562
+ "fsevents": "^1.2.2",
1563
+ "glob-parent": "^3.1.0",
1564
+ "inherits": "^2.0.1",
1565
+ "is-binary-path": "^1.0.0",
1566
+ "is-glob": "^4.0.0",
1567
+ "lodash.debounce": "^4.0.8",
1568
+ "normalize-path": "^2.1.1",
1569
+ "path-is-absolute": "^1.0.0",
1570
+ "readdirp": "^2.0.0",
1571
+ "upath": "^1.0.5"
1572
+ }
1573
+ },
1574
+ "cipher-base": {
1575
+ "version": "1.0.4",
1576
+ "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz",
1577
+ "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==",
1578
+ "dev": true,
1579
+ "requires": {
1580
+ "inherits": "^2.0.1",
1581
+ "safe-buffer": "^5.0.1"
1582
+ }
1583
+ },
1584
+ "class-utils": {
1585
+ "version": "0.3.6",
1586
+ "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz",
1587
+ "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==",
1588
+ "dev": true,
1589
+ "requires": {
1590
+ "arr-union": "^3.1.0",
1591
+ "define-property": "^0.2.5",
1592
+ "isobject": "^3.0.0",
1593
+ "static-extend": "^0.1.1"
1594
+ },
1595
+ "dependencies": {
1596
+ "define-property": {
1597
+ "version": "0.2.5",
1598
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
1599
+ "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
1600
+ "dev": true,
1601
+ "requires": {
1602
+ "is-descriptor": "^0.1.0"
1603
+ }
1604
+ }
1605
+ }
1606
+ },
1607
+ "classnames": {
1608
+ "version": "2.2.6",
1609
+ "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.2.6.tgz",
1610
+ "integrity": "sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q=="
1611
+ },
1612
+ "clean-css": {
1613
+ "version": "4.2.1",
1614
+ "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.1.tgz",
1615
+ "integrity": "sha512-4ZxI6dy4lrY6FHzfiy1aEOXgu4LIsW2MhwG0VBKdcoGoH/XLFgaHSdLTGr4O8Be6A8r3MOphEiI8Gc1n0ecf3g==",
1616
+ "dev": true,
1617
+ "requires": {
1618
+ "source-map": "~0.6.0"
1619
+ }
1620
+ },
1621
+ "clone": {
1622
+ "version": "2.1.2",
1623
+ "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz",
1624
+ "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=",
1625
+ "dev": true
1626
+ },
1627
+ "code-point-at": {
1628
+ "version": "1.1.0",
1629
+ "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz",
1630
+ "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=",
1631
+ "dev": true
1632
+ },
1633
+ "coffeescript": {
1634
+ "version": "1.10.0",
1635
+ "resolved": "https://registry.npmjs.org/coffeescript/-/coffeescript-1.10.0.tgz",
1636
+ "integrity": "sha1-56qDAZF+9iGzXYo580jc3R234z4=",
1637
+ "dev": true
1638
+ },
1639
+ "collection-visit": {
1640
+ "version": "1.0.0",
1641
+ "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz",
1642
+ "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=",
1643
+ "dev": true,
1644
+ "requires": {
1645
+ "map-visit": "^1.0.0",
1646
+ "object-visit": "^1.0.0"
1647
+ }
1648
+ },
1649
+ "color-convert": {
1650
+ "version": "1.9.3",
1651
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
1652
+ "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
1653
+ "dev": true,
1654
+ "requires": {
1655
+ "color-name": "1.1.3"
1656
+ }
1657
+ },
1658
+ "color-name": {
1659
+ "version": "1.1.3",
1660
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
1661
+ "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=",
1662
+ "dev": true
1663
+ },
1664
+ "colors": {
1665
+ "version": "1.1.2",
1666
+ "resolved": "http://registry.npmjs.org/colors/-/colors-1.1.2.tgz",
1667
+ "integrity": "sha1-FopHAXVran9RoSzgyXv6KMCE7WM=",
1668
+ "dev": true
1669
+ },
1670
+ "combined-stream": {
1671
+ "version": "1.0.7",
1672
+ "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.7.tgz",
1673
+ "integrity": "sha512-brWl9y6vOB1xYPZcpZde3N9zDByXTosAeMDo4p1wzo6UMOX4vumB+TP1RZ76sfE6Md68Q0NJSrE/gbezd4Ul+w==",
1674
+ "dev": true,
1675
+ "requires": {
1676
+ "delayed-stream": "~1.0.0"
1677
+ }
1678
+ },
1679
+ "commander": {
1680
+ "version": "2.17.1",
1681
+ "resolved": "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz",
1682
+ "integrity": "sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==",
1683
+ "dev": true
1684
+ },
1685
+ "commondir": {
1686
+ "version": "1.0.1",
1687
+ "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz",
1688
+ "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=",
1689
+ "dev": true
1690
+ },
1691
+ "component-emitter": {
1692
+ "version": "1.2.1",
1693
+ "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz",
1694
+ "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=",
1695
+ "dev": true
1696
+ },
1697
+ "concat-map": {
1698
+ "version": "0.0.1",
1699
+ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
1700
+ "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=",
1701
+ "dev": true
1702
+ },
1703
+ "console-browserify": {
1704
+ "version": "1.1.0",
1705
+ "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz",
1706
+ "integrity": "sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA=",
1707
+ "dev": true,
1708
+ "requires": {
1709
+ "date-now": "^0.1.4"
1710
+ }
1711
+ },
1712
+ "constants-browserify": {
1713
+ "version": "1.0.0",
1714
+ "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz",
1715
+ "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=",
1716
+ "dev": true
1717
+ },
1718
+ "continuable-cache": {
1719
+ "version": "0.3.1",
1720
+ "resolved": "https://registry.npmjs.org/continuable-cache/-/continuable-cache-0.3.1.tgz",
1721
+ "integrity": "sha1-vXJ6f67XfnH/OYWskzUakSczrQ8=",
1722
+ "dev": true
1723
+ },
1724
+ "convert-source-map": {
1725
+ "version": "1.6.0",
1726
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.6.0.tgz",
1727
+ "integrity": "sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A==",
1728
+ "requires": {
1729
+ "safe-buffer": "~5.1.1"
1730
+ }
1731
+ },
1732
+ "copy-descriptor": {
1733
+ "version": "0.1.1",
1734
+ "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz",
1735
+ "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=",
1736
+ "dev": true
1737
+ },
1738
+ "core-js": {
1739
+ "version": "2.6.0",
1740
+ "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.0.tgz",
1741
+ "integrity": "sha512-kLRC6ncVpuEW/1kwrOXYX6KQASCVtrh1gQr/UiaVgFlf9WE5Vp+lNe5+h3LuMr5PAucWnnEXwH0nQHRH/gpGtw==",
1742
+ "dev": true
1743
+ },
1744
+ "core-util-is": {
1745
+ "version": "1.0.2",
1746
+ "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
1747
+ "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=",
1748
+ "dev": true
1749
+ },
1750
+ "cosmiconfig": {
1751
+ "version": "5.0.7",
1752
+ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.0.7.tgz",
1753
+ "integrity": "sha512-PcLqxTKiDmNT6pSpy4N6KtuPwb53W+2tzNvwOZw0WH9N6O0vLIBq0x8aj8Oj75ere4YcGi48bDFCL+3fRJdlNA==",
1754
+ "requires": {
1755
+ "import-fresh": "^2.0.0",
1756
+ "is-directory": "^0.3.1",
1757
+ "js-yaml": "^3.9.0",
1758
+ "parse-json": "^4.0.0"
1759
+ },
1760
+ "dependencies": {
1761
+ "esprima": {
1762
+ "version": "4.0.1",
1763
+ "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
1764
+ "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="
1765
+ },
1766
+ "js-yaml": {
1767
+ "version": "3.12.1",
1768
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.1.tgz",
1769
+ "integrity": "sha512-um46hB9wNOKlwkHgiuyEVAybXBjwFUV0Z/RaHJblRd9DXltue9FTYvzCr9ErQrK9Adz5MU4gHWVaNUfdmrC8qA==",
1770
+ "requires": {
1771
+ "argparse": "^1.0.7",
1772
+ "esprima": "^4.0.0"
1773
+ }
1774
+ },
1775
+ "parse-json": {
1776
+ "version": "4.0.0",
1777
+ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz",
1778
+ "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=",
1779
+ "requires": {
1780
+ "error-ex": "^1.3.1",
1781
+ "json-parse-better-errors": "^1.0.1"
1782
+ }
1783
+ }
1784
+ }
1785
+ },
1786
+ "create-ecdh": {
1787
+ "version": "4.0.3",
1788
+ "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz",
1789
+ "integrity": "sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==",
1790
+ "dev": true,
1791
+ "requires": {
1792
+ "bn.js": "^4.1.0",
1793
+ "elliptic": "^6.0.0"
1794
+ }
1795
+ },
1796
+ "create-emotion": {
1797
+ "version": "9.2.12",
1798
+ "resolved": "https://registry.npmjs.org/create-emotion/-/create-emotion-9.2.12.tgz",
1799
+ "integrity": "sha512-P57uOF9NL2y98Xrbl2OuiDQUZ30GVmASsv5fbsjF4Hlraip2kyAvMm+2PoYUvFFw03Fhgtxk3RqZSm2/qHL9hA==",
1800
+ "requires": {
1801
+ "@emotion/hash": "^0.6.2",
1802
+ "@emotion/memoize": "^0.6.1",
1803
+ "@emotion/stylis": "^0.7.0",
1804
+ "@emotion/unitless": "^0.6.2",
1805
+ "csstype": "^2.5.2",
1806
+ "stylis": "^3.5.0",
1807
+ "stylis-rule-sheet": "^0.0.10"
1808
+ }
1809
+ },
1810
+ "create-hash": {
1811
+ "version": "1.2.0",
1812
+ "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz",
1813
+ "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==",
1814
+ "dev": true,
1815
+ "requires": {
1816
+ "cipher-base": "^1.0.1",
1817
+ "inherits": "^2.0.1",
1818
+ "md5.js": "^1.3.4",
1819
+ "ripemd160": "^2.0.1",
1820
+ "sha.js": "^2.4.0"
1821
+ }
1822
+ },
1823
+ "create-hmac": {
1824
+ "version": "1.1.7",
1825
+ "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz",
1826
+ "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==",
1827
+ "dev": true,
1828
+ "requires": {
1829
+ "cipher-base": "^1.0.3",
1830
+ "create-hash": "^1.1.0",
1831
+ "inherits": "^2.0.1",
1832
+ "ripemd160": "^2.0.0",
1833
+ "safe-buffer": "^5.0.1",
1834
+ "sha.js": "^2.4.8"
1835
+ }
1836
+ },
1837
+ "cross-env": {
1838
+ "version": "5.2.0",
1839
+ "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-5.2.0.tgz",
1840
+ "integrity": "sha512-jtdNFfFW1hB7sMhr/H6rW1Z45LFqyI431m3qU6bFXcQ3Eh7LtBuG3h74o7ohHZ3crrRkkqHlo4jYHFPcjroANg==",
1841
+ "dev": true,
1842
+ "requires": {
1843
+ "cross-spawn": "^6.0.5",
1844
+ "is-windows": "^1.0.0"
1845
+ }
1846
+ },
1847
+ "cross-spawn": {
1848
+ "version": "6.0.5",
1849
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
1850
+ "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==",
1851
+ "dev": true,
1852
+ "requires": {
1853
+ "nice-try": "^1.0.4",
1854
+ "path-key": "^2.0.1",
1855
+ "semver": "^5.5.0",
1856
+ "shebang-command": "^1.2.0",
1857
+ "which": "^1.2.9"
1858
+ }
1859
+ },
1860
+ "crypto-browserify": {
1861
+ "version": "3.12.0",
1862
+ "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz",
1863
+ "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==",
1864
+ "dev": true,
1865
+ "requires": {
1866
+ "browserify-cipher": "^1.0.0",
1867
+ "browserify-sign": "^4.0.0",
1868
+ "create-ecdh": "^4.0.0",
1869
+ "create-hash": "^1.1.0",
1870
+ "create-hmac": "^1.1.0",
1871
+ "diffie-hellman": "^5.0.0",
1872
+ "inherits": "^2.0.1",
1873
+ "pbkdf2": "^3.0.3",
1874
+ "public-encrypt": "^4.0.0",
1875
+ "randombytes": "^2.0.0",
1876
+ "randomfill": "^1.0.3"
1877
+ }
1878
+ },
1879
+ "csstype": {
1880
+ "version": "2.6.1",
1881
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.1.tgz",
1882
+ "integrity": "sha512-wv7IRqCGsL7WGKB8gPvrl+++HlFM9kxAM6jL1EXNPNTshEJYilMkbfS2SnuHha77uosp/YVK0wAp2jmlBzn1tg=="
1883
+ },
1884
+ "currently-unhandled": {
1885
+ "version": "0.4.1",
1886
+ "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz",
1887
+ "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=",
1888
+ "dev": true,
1889
+ "requires": {
1890
+ "array-find-index": "^1.0.1"
1891
+ }
1892
+ },
1893
+ "d": {
1894
+ "version": "1.0.0",
1895
+ "resolved": "https://registry.npmjs.org/d/-/d-1.0.0.tgz",
1896
+ "integrity": "sha1-dUu1v+VUUdpppYuU1F9MWwRi1Y8=",
1897
+ "dev": true,
1898
+ "requires": {
1899
+ "es5-ext": "^0.10.9"
1900
+ }
1901
+ },
1902
+ "dashdash": {
1903
+ "version": "1.14.1",
1904
+ "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz",
1905
+ "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=",
1906
+ "dev": true,
1907
+ "optional": true,
1908
+ "requires": {
1909
+ "assert-plus": "^1.0.0"
1910
+ }
1911
+ },
1912
+ "date-now": {
1913
+ "version": "0.1.4",
1914
+ "resolved": "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz",
1915
+ "integrity": "sha1-6vQ5/U1ISK105cx9vvIAZyueNFs=",
1916
+ "dev": true
1917
+ },
1918
+ "dateformat": {
1919
+ "version": "1.0.12",
1920
+ "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-1.0.12.tgz",
1921
+ "integrity": "sha1-nxJLZ1lMk3/3BpMuSmQsyo27/uk=",
1922
+ "dev": true,
1923
+ "requires": {
1924
+ "get-stdin": "^4.0.1",
1925
+ "meow": "^3.3.0"
1926
+ }
1927
+ },
1928
+ "debug": {
1929
+ "version": "3.2.6",
1930
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz",
1931
+ "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==",
1932
+ "dev": true,
1933
+ "requires": {
1934
+ "ms": "^2.1.1"
1935
+ }
1936
+ },
1937
+ "decamelize": {
1938
+ "version": "1.2.0",
1939
+ "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
1940
+ "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=",
1941
+ "dev": true
1942
+ },
1943
+ "decode-uri-component": {
1944
+ "version": "0.2.0",
1945
+ "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz",
1946
+ "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=",
1947
+ "dev": true
1948
+ },
1949
+ "define-property": {
1950
+ "version": "2.0.2",
1951
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz",
1952
+ "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==",
1953
+ "dev": true,
1954
+ "requires": {
1955
+ "is-descriptor": "^1.0.2",
1956
+ "isobject": "^3.0.1"
1957
+ },
1958
+ "dependencies": {
1959
+ "is-accessor-descriptor": {
1960
+ "version": "1.0.0",
1961
+ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
1962
+ "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
1963
+ "dev": true,
1964
+ "requires": {
1965
+ "kind-of": "^6.0.0"
1966
+ }
1967
+ },
1968
+ "is-data-descriptor": {
1969
+ "version": "1.0.0",
1970
+ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
1971
+ "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
1972
+ "dev": true,
1973
+ "requires": {
1974
+ "kind-of": "^6.0.0"
1975
+ }
1976
+ },
1977
+ "is-descriptor": {
1978
+ "version": "1.0.2",
1979
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
1980
+ "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
1981
+ "dev": true,
1982
+ "requires": {
1983
+ "is-accessor-descriptor": "^1.0.0",
1984
+ "is-data-descriptor": "^1.0.0",
1985
+ "kind-of": "^6.0.2"
1986
+ }
1987
+ },
1988
+ "kind-of": {
1989
+ "version": "6.0.2",
1990
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
1991
+ "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==",
1992
+ "dev": true
1993
+ }
1994
+ }
1995
+ },
1996
+ "delayed-stream": {
1997
+ "version": "1.0.0",
1998
+ "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
1999
+ "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=",
2000
+ "dev": true
2001
+ },
2002
+ "des.js": {
2003
+ "version": "1.0.0",
2004
+ "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.0.tgz",
2005
+ "integrity": "sha1-wHTS4qpqipoH29YfmhXCzYPsjsw=",
2006
+ "dev": true,
2007
+ "requires": {
2008
+ "inherits": "^2.0.1",
2009
+ "minimalistic-assert": "^1.0.0"
2010
+ }
2011
+ },
2012
+ "detect-indent": {
2013
+ "version": "4.0.0",
2014
+ "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz",
2015
+ "integrity": "sha1-920GQ1LN9Docts5hnE7jqUdd4gg=",
2016
+ "dev": true,
2017
+ "requires": {
2018
+ "repeating": "^2.0.0"
2019
+ }
2020
+ },
2021
+ "diffie-hellman": {
2022
+ "version": "5.0.3",
2023
+ "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz",
2024
+ "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==",
2025
+ "dev": true,
2026
+ "requires": {
2027
+ "bn.js": "^4.1.0",
2028
+ "miller-rabin": "^4.0.0",
2029
+ "randombytes": "^2.0.0"
2030
+ }
2031
+ },
2032
+ "dom-helpers": {
2033
+ "version": "3.4.0",
2034
+ "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-3.4.0.tgz",
2035
+ "integrity": "sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==",
2036
+ "requires": {
2037
+ "@babel/runtime": "^7.1.2"
2038
+ }
2039
+ },
2040
+ "domain-browser": {
2041
+ "version": "1.2.0",
2042
+ "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz",
2043
+ "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==",
2044
+ "dev": true
2045
+ },
2046
+ "duplexer": {
2047
+ "version": "0.1.1",
2048
+ "resolved": "http://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz",
2049
+ "integrity": "sha1-rOb/gIwc5mtX0ev5eXessCM0z8E=",
2050
+ "dev": true
2051
+ },
2052
+ "ecc-jsbn": {
2053
+ "version": "0.1.2",
2054
+ "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz",
2055
+ "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=",
2056
+ "dev": true,
2057
+ "optional": true,
2058
+ "requires": {
2059
+ "jsbn": "~0.1.0",
2060
+ "safer-buffer": "^2.1.0"
2061
+ }
2062
+ },
2063
+ "electron-to-chromium": {
2064
+ "version": "1.3.88",
2065
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.88.tgz",
2066
+ "integrity": "sha512-UPV4NuQMKeUh1S0OWRvwg0PI8ASHN9kBC8yDTk1ROXLC85W5GnhTRu/MZu3Teqx3JjlQYuckuHYXSUSgtb3J+A==",
2067
+ "dev": true
2068
+ },
2069
+ "elliptic": {
2070
+ "version": "6.4.1",
2071
+ "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.4.1.tgz",
2072
+ "integrity": "sha512-BsXLz5sqX8OHcsh7CqBMztyXARmGQ3LWPtGjJi6DiJHq5C/qvi9P3OqgswKSDftbu8+IoI/QDTAm2fFnQ9SZSQ==",
2073
+ "dev": true,
2074
+ "requires": {
2075
+ "bn.js": "^4.4.0",
2076
+ "brorand": "^1.0.1",
2077
+ "hash.js": "^1.0.0",
2078
+ "hmac-drbg": "^1.0.0",
2079
+ "inherits": "^2.0.1",
2080
+ "minimalistic-assert": "^1.0.0",
2081
+ "minimalistic-crypto-utils": "^1.0.0"
2082
+ }
2083
+ },
2084
+ "emojis-list": {
2085
+ "version": "2.1.0",
2086
+ "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz",
2087
+ "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=",
2088
+ "dev": true
2089
+ },
2090
+ "emotion": {
2091
+ "version": "9.2.12",
2092
+ "resolved": "https://registry.npmjs.org/emotion/-/emotion-9.2.12.tgz",
2093
+ "integrity": "sha512-hcx7jppaI8VoXxIWEhxpDW7I+B4kq9RNzQLmsrF6LY8BGKqe2N+gFAQr0EfuFucFlPs2A9HM4+xNj4NeqEWIOQ==",
2094
+ "requires": {
2095
+ "babel-plugin-emotion": "^9.2.11",
2096
+ "create-emotion": "^9.2.12"
2097
+ }
2098
+ },
2099
+ "encoding": {
2100
+ "version": "0.1.12",
2101
+ "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.12.tgz",
2102
+ "integrity": "sha1-U4tm8+5izRq1HsMjgp0flIDHS+s=",
2103
+ "requires": {
2104
+ "iconv-lite": "~0.4.13"
2105
+ }
2106
+ },
2107
+ "enhanced-resolve": {
2108
+ "version": "3.4.1",
2109
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz",
2110
+ "integrity": "sha1-BCHjOf1xQZs9oT0Smzl5BAIwR24=",
2111
+ "dev": true,
2112
+ "requires": {
2113
+ "graceful-fs": "^4.1.2",
2114
+ "memory-fs": "^0.4.0",
2115
+ "object-assign": "^4.0.1",
2116
+ "tapable": "^0.2.7"
2117
+ }
2118
+ },
2119
+ "errno": {
2120
+ "version": "0.1.7",
2121
+ "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz",
2122
+ "integrity": "sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==",
2123
+ "dev": true,
2124
+ "requires": {
2125
+ "prr": "~1.0.1"
2126
+ }
2127
+ },
2128
+ "error": {
2129
+ "version": "7.0.2",
2130
+ "resolved": "https://registry.npmjs.org/error/-/error-7.0.2.tgz",
2131
+ "integrity": "sha1-pfdf/02ZJhJt2sDqXcOOaJFTywI=",
2132
+ "dev": true,
2133
+ "requires": {
2134
+ "string-template": "~0.2.1",
2135
+ "xtend": "~4.0.0"
2136
+ }
2137
+ },
2138
+ "error-ex": {
2139
+ "version": "1.3.2",
2140
+ "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
2141
+ "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
2142
+ "requires": {
2143
+ "is-arrayish": "^0.2.1"
2144
+ }
2145
+ },
2146
+ "es5-ext": {
2147
+ "version": "0.10.47",
2148
+ "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.47.tgz",
2149
+ "integrity": "sha512-/1TItLfj+TTfWoeRcDn/0FbGV6SNo4R+On2GGVucPU/j3BWnXE2Co8h8CTo4Tu34gFJtnmwS9xiScKs4EjZhdw==",
2150
+ "dev": true,
2151
+ "requires": {
2152
+ "es6-iterator": "~2.0.3",
2153
+ "es6-symbol": "~3.1.1",
2154
+ "next-tick": "1"
2155
+ }
2156
+ },
2157
+ "es6-iterator": {
2158
+ "version": "2.0.3",
2159
+ "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz",
2160
+ "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=",
2161
+ "dev": true,
2162
+ "requires": {
2163
+ "d": "1",
2164
+ "es5-ext": "^0.10.35",
2165
+ "es6-symbol": "^3.1.1"
2166
+ }
2167
+ },
2168
+ "es6-map": {
2169
+ "version": "0.1.5",
2170
+ "resolved": "https://registry.npmjs.org/es6-map/-/es6-map-0.1.5.tgz",
2171
+ "integrity": "sha1-kTbgUD3MBqMBaQ8LsU/042TpSfA=",
2172
+ "dev": true,
2173
+ "requires": {
2174
+ "d": "1",
2175
+ "es5-ext": "~0.10.14",
2176
+ "es6-iterator": "~2.0.1",
2177
+ "es6-set": "~0.1.5",
2178
+ "es6-symbol": "~3.1.1",
2179
+ "event-emitter": "~0.3.5"
2180
+ }
2181
+ },
2182
+ "es6-set": {
2183
+ "version": "0.1.5",
2184
+ "resolved": "https://registry.npmjs.org/es6-set/-/es6-set-0.1.5.tgz",
2185
+ "integrity": "sha1-0rPsXU2ADO2BjbU40ol02wpzzLE=",
2186
+ "dev": true,
2187
+ "requires": {
2188
+ "d": "1",
2189
+ "es5-ext": "~0.10.14",
2190
+ "es6-iterator": "~2.0.1",
2191
+ "es6-symbol": "3.1.1",
2192
+ "event-emitter": "~0.3.5"
2193
+ }
2194
+ },
2195
+ "es6-symbol": {
2196
+ "version": "3.1.1",
2197
+ "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.1.tgz",
2198
+ "integrity": "sha1-vwDvT9q2uhtG7Le2KbTH7VcVzHc=",
2199
+ "dev": true,
2200
+ "requires": {
2201
+ "d": "1",
2202
+ "es5-ext": "~0.10.14"
2203
+ }
2204
+ },
2205
+ "es6-weak-map": {
2206
+ "version": "2.0.2",
2207
+ "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.2.tgz",
2208
+ "integrity": "sha1-XjqzIlH/0VOKH45f+hNXdy+S2W8=",
2209
+ "dev": true,
2210
+ "requires": {
2211
+ "d": "1",
2212
+ "es5-ext": "^0.10.14",
2213
+ "es6-iterator": "^2.0.1",
2214
+ "es6-symbol": "^3.1.1"
2215
+ }
2216
+ },
2217
+ "escape-string-regexp": {
2218
+ "version": "1.0.5",
2219
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
2220
+ "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=",
2221
+ "dev": true
2222
+ },
2223
+ "escope": {
2224
+ "version": "3.6.0",
2225
+ "resolved": "https://registry.npmjs.org/escope/-/escope-3.6.0.tgz",
2226
+ "integrity": "sha1-4Bl16BJ4GhY6ba392AOY3GTIicM=",
2227
+ "dev": true,
2228
+ "requires": {
2229
+ "es6-map": "^0.1.3",
2230
+ "es6-weak-map": "^2.0.1",
2231
+ "esrecurse": "^4.1.0",
2232
+ "estraverse": "^4.1.1"
2233
+ }
2234
+ },
2235
+ "esprima": {
2236
+ "version": "2.7.3",
2237
+ "resolved": "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz",
2238
+ "integrity": "sha1-luO3DVd59q1JzQMmc9HDEnZ7pYE=",
2239
+ "dev": true
2240
+ },
2241
+ "esrecurse": {
2242
+ "version": "4.2.1",
2243
+ "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz",
2244
+ "integrity": "sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==",
2245
+ "dev": true,
2246
+ "requires": {
2247
+ "estraverse": "^4.1.0"
2248
+ }
2249
+ },
2250
+ "estraverse": {
2251
+ "version": "4.2.0",
2252
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz",
2253
+ "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=",
2254
+ "dev": true
2255
+ },
2256
+ "esutils": {
2257
+ "version": "2.0.2",
2258
+ "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz",
2259
+ "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs="
2260
+ },
2261
+ "event-emitter": {
2262
+ "version": "0.3.5",
2263
+ "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz",
2264
+ "integrity": "sha1-34xp7vFkeSPHFXuc6DhAYQsCzDk=",
2265
+ "dev": true,
2266
+ "requires": {
2267
+ "d": "1",
2268
+ "es5-ext": "~0.10.14"
2269
+ }
2270
+ },
2271
+ "eventemitter2": {
2272
+ "version": "0.4.14",
2273
+ "resolved": "http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.14.tgz",
2274
+ "integrity": "sha1-j2G3XN4BKy6esoTUVFWDtWQ7Yas=",
2275
+ "dev": true
2276
+ },
2277
+ "events": {
2278
+ "version": "3.0.0",
2279
+ "resolved": "https://registry.npmjs.org/events/-/events-3.0.0.tgz",
2280
+ "integrity": "sha512-Dc381HFWJzEOhQ+d8pkNon++bk9h6cdAoAj4iE6Q4y6xgTzySWXlKn05/TVNpjnfRqi/X0EpJEJohPjNI3zpVA==",
2281
+ "dev": true
2282
+ },
2283
+ "evp_bytestokey": {
2284
+ "version": "1.0.3",
2285
+ "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz",
2286
+ "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==",
2287
+ "dev": true,
2288
+ "requires": {
2289
+ "md5.js": "^1.3.4",
2290
+ "safe-buffer": "^5.1.1"
2291
+ }
2292
+ },
2293
+ "exit": {
2294
+ "version": "0.1.2",
2295
+ "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz",
2296
+ "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=",
2297
+ "dev": true
2298
+ },
2299
+ "expand-brackets": {
2300
+ "version": "2.1.4",
2301
+ "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz",
2302
+ "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=",
2303
+ "dev": true,
2304
+ "requires": {
2305
+ "debug": "^2.3.3",
2306
+ "define-property": "^0.2.5",
2307
+ "extend-shallow": "^2.0.1",
2308
+ "posix-character-classes": "^0.1.0",
2309
+ "regex-not": "^1.0.0",
2310
+ "snapdragon": "^0.8.1",
2311
+ "to-regex": "^3.0.1"
2312
+ },
2313
+ "dependencies": {
2314
+ "debug": {
2315
+ "version": "2.6.9",
2316
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
2317
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
2318
+ "dev": true,
2319
+ "requires": {
2320
+ "ms": "2.0.0"
2321
+ }
2322
+ },
2323
+ "define-property": {
2324
+ "version": "0.2.5",
2325
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
2326
+ "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
2327
+ "dev": true,
2328
+ "requires": {
2329
+ "is-descriptor": "^0.1.0"
2330
+ }
2331
+ },
2332
+ "extend-shallow": {
2333
+ "version": "2.0.1",
2334
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
2335
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
2336
+ "dev": true,
2337
+ "requires": {
2338
+ "is-extendable": "^0.1.0"
2339
+ }
2340
+ },
2341
+ "ms": {
2342
+ "version": "2.0.0",
2343
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
2344
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
2345
+ "dev": true
2346
+ }
2347
+ }
2348
+ },
2349
+ "extend": {
2350
+ "version": "3.0.2",
2351
+ "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
2352
+ "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
2353
+ "dev": true,
2354
+ "optional": true
2355
+ },
2356
+ "extend-shallow": {
2357
+ "version": "3.0.2",
2358
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz",
2359
+ "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=",
2360
+ "dev": true,
2361
+ "requires": {
2362
+ "assign-symbols": "^1.0.0",
2363
+ "is-extendable": "^1.0.1"
2364
+ },
2365
+ "dependencies": {
2366
+ "is-extendable": {
2367
+ "version": "1.0.1",
2368
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
2369
+ "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
2370
+ "dev": true,
2371
+ "requires": {
2372
+ "is-plain-object": "^2.0.4"
2373
+ }
2374
+ }
2375
+ }
2376
+ },
2377
+ "extglob": {
2378
+ "version": "2.0.4",
2379
+ "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz",
2380
+ "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==",
2381
+ "dev": true,
2382
+ "requires": {
2383
+ "array-unique": "^0.3.2",
2384
+ "define-property": "^1.0.0",
2385
+ "expand-brackets": "^2.1.4",
2386
+ "extend-shallow": "^2.0.1",
2387
+ "fragment-cache": "^0.2.1",
2388
+ "regex-not": "^1.0.0",
2389
+ "snapdragon": "^0.8.1",
2390
+ "to-regex": "^3.0.1"
2391
+ },
2392
+ "dependencies": {
2393
+ "define-property": {
2394
+ "version": "1.0.0",
2395
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
2396
+ "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
2397
+ "dev": true,
2398
+ "requires": {
2399
+ "is-descriptor": "^1.0.0"
2400
+ }
2401
+ },
2402
+ "extend-shallow": {
2403
+ "version": "2.0.1",
2404
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
2405
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
2406
+ "dev": true,
2407
+ "requires": {
2408
+ "is-extendable": "^0.1.0"
2409
+ }
2410
+ },
2411
+ "is-accessor-descriptor": {
2412
+ "version": "1.0.0",
2413
+ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
2414
+ "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
2415
+ "dev": true,
2416
+ "requires": {
2417
+ "kind-of": "^6.0.0"
2418
+ }
2419
+ },
2420
+ "is-data-descriptor": {
2421
+ "version": "1.0.0",
2422
+ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
2423
+ "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
2424
+ "dev": true,
2425
+ "requires": {
2426
+ "kind-of": "^6.0.0"
2427
+ }
2428
+ },
2429
+ "is-descriptor": {
2430
+ "version": "1.0.2",
2431
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
2432
+ "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
2433
+ "dev": true,
2434
+ "requires": {
2435
+ "is-accessor-descriptor": "^1.0.0",
2436
+ "is-data-descriptor": "^1.0.0",
2437
+ "kind-of": "^6.0.2"
2438
+ }
2439
+ },
2440
+ "kind-of": {
2441
+ "version": "6.0.2",
2442
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
2443
+ "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==",
2444
+ "dev": true
2445
+ }
2446
+ }
2447
+ },
2448
+ "extsprintf": {
2449
+ "version": "1.3.0",
2450
+ "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz",
2451
+ "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=",
2452
+ "dev": true
2453
+ },
2454
+ "fast-deep-equal": {
2455
+ "version": "2.0.1",
2456
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz",
2457
+ "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=",
2458
+ "dev": true
2459
+ },
2460
+ "fast-json-stable-stringify": {
2461
+ "version": "2.0.0",
2462
+ "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz",
2463
+ "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=",
2464
+ "dev": true
2465
+ },
2466
+ "faye-websocket": {
2467
+ "version": "0.10.0",
2468
+ "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz",
2469
+ "integrity": "sha1-TkkvjQTftviQA1B/btvy1QHnxvQ=",
2470
+ "dev": true,
2471
+ "requires": {
2472
+ "websocket-driver": ">=0.5.1"
2473
+ }
2474
+ },
2475
+ "figures": {
2476
+ "version": "1.7.0",
2477
+ "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz",
2478
+ "integrity": "sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=",
2479
+ "dev": true,
2480
+ "requires": {
2481
+ "escape-string-regexp": "^1.0.5",
2482
+ "object-assign": "^4.1.0"
2483
+ }
2484
+ },
2485
+ "fill-range": {
2486
+ "version": "4.0.0",
2487
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz",
2488
+ "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=",
2489
+ "dev": true,
2490
+ "requires": {
2491
+ "extend-shallow": "^2.0.1",
2492
+ "is-number": "^3.0.0",
2493
+ "repeat-string": "^1.6.1",
2494
+ "to-regex-range": "^2.1.0"
2495
+ },
2496
+ "dependencies": {
2497
+ "extend-shallow": {
2498
+ "version": "2.0.1",
2499
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
2500
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
2501
+ "dev": true,
2502
+ "requires": {
2503
+ "is-extendable": "^0.1.0"
2504
+ }
2505
+ }
2506
+ }
2507
+ },
2508
+ "find-cache-dir": {
2509
+ "version": "1.0.0",
2510
+ "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-1.0.0.tgz",
2511
+ "integrity": "sha1-kojj6ePMN0hxfTnq3hfPcfww7m8=",
2512
+ "dev": true,
2513
+ "requires": {
2514
+ "commondir": "^1.0.1",
2515
+ "make-dir": "^1.0.0",
2516
+ "pkg-dir": "^2.0.0"
2517
+ }
2518
+ },
2519
+ "find-root": {
2520
+ "version": "1.1.0",
2521
+ "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz",
2522
+ "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng=="
2523
+ },
2524
+ "find-up": {
2525
+ "version": "1.1.2",
2526
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz",
2527
+ "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=",
2528
+ "dev": true,
2529
+ "requires": {
2530
+ "path-exists": "^2.0.0",
2531
+ "pinkie-promise": "^2.0.0"
2532
+ }
2533
+ },
2534
+ "findup-sync": {
2535
+ "version": "0.3.0",
2536
+ "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-0.3.0.tgz",
2537
+ "integrity": "sha1-N5MKpdgWt3fANEXhlmzGeQpMCxY=",
2538
+ "dev": true,
2539
+ "requires": {
2540
+ "glob": "~5.0.0"
2541
+ },
2542
+ "dependencies": {
2543
+ "glob": {
2544
+ "version": "5.0.15",
2545
+ "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz",
2546
+ "integrity": "sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E=",
2547
+ "dev": true,
2548
+ "requires": {
2549
+ "inflight": "^1.0.4",
2550
+ "inherits": "2",
2551
+ "minimatch": "2 || 3",
2552
+ "once": "^1.3.0",
2553
+ "path-is-absolute": "^1.0.0"
2554
+ }
2555
+ }
2556
+ }
2557
+ },
2558
+ "for-in": {
2559
+ "version": "1.0.2",
2560
+ "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz",
2561
+ "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=",
2562
+ "dev": true
2563
+ },
2564
+ "forever-agent": {
2565
+ "version": "0.6.1",
2566
+ "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz",
2567
+ "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=",
2568
+ "dev": true,
2569
+ "optional": true
2570
+ },
2571
+ "form-data": {
2572
+ "version": "2.3.3",
2573
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz",
2574
+ "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==",
2575
+ "dev": true,
2576
+ "optional": true,
2577
+ "requires": {
2578
+ "asynckit": "^0.4.0",
2579
+ "combined-stream": "^1.0.6",
2580
+ "mime-types": "^2.1.12"
2581
+ }
2582
+ },
2583
+ "fragment-cache": {
2584
+ "version": "0.2.1",
2585
+ "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz",
2586
+ "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=",
2587
+ "dev": true,
2588
+ "requires": {
2589
+ "map-cache": "^0.2.2"
2590
+ }
2591
+ },
2592
+ "fs.realpath": {
2593
+ "version": "1.0.0",
2594
+ "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
2595
+ "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=",
2596
+ "dev": true
2597
+ },
2598
+ "fsevents": {
2599
+ "version": "1.2.7",
2600
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.7.tgz",
2601
+ "integrity": "sha512-Pxm6sI2MeBD7RdD12RYsqaP0nMiwx8eZBXCa6z2L+mRHm2DYrOYwihmhjpkdjUHwQhslWQjRpEgNq4XvBmaAuw==",
2602
+ "dev": true,
2603
+ "optional": true,
2604
+ "requires": {
2605
+ "nan": "^2.9.2",
2606
+ "node-pre-gyp": "^0.10.0"
2607
+ },
2608
+ "dependencies": {
2609
+ "abbrev": {
2610
+ "version": "1.1.1",
2611
+ "bundled": true,
2612
+ "dev": true,
2613
+ "optional": true
2614
+ },
2615
+ "ansi-regex": {
2616
+ "version": "2.1.1",
2617
+ "bundled": true,
2618
+ "dev": true
2619
+ },
2620
+ "aproba": {
2621
+ "version": "1.2.0",
2622
+ "bundled": true,
2623
+ "dev": true,
2624
+ "optional": true
2625
+ },
2626
+ "are-we-there-yet": {
2627
+ "version": "1.1.5",
2628
+ "bundled": true,
2629
+ "dev": true,
2630
+ "optional": true,
2631
+ "requires": {
2632
+ "delegates": "^1.0.0",
2633
+ "readable-stream": "^2.0.6"
2634
+ }
2635
+ },
2636
+ "balanced-match": {
2637
+ "version": "1.0.0",
2638
+ "bundled": true,
2639
+ "dev": true
2640
+ },
2641
+ "brace-expansion": {
2642
+ "version": "1.1.11",
2643
+ "bundled": true,
2644
+ "dev": true,
2645
+ "requires": {
2646
+ "balanced-match": "^1.0.0",
2647
+ "concat-map": "0.0.1"
2648
+ }
2649
+ },
2650
+ "chownr": {
2651
+ "version": "1.1.1",
2652
+ "bundled": true,
2653
+ "dev": true,
2654
+ "optional": true
2655
+ },
2656
+ "code-point-at": {
2657
+ "version": "1.1.0",
2658
+ "bundled": true,
2659
+ "dev": true
2660
+ },
2661
+ "concat-map": {
2662
+ "version": "0.0.1",
2663
+ "bundled": true,
2664
+ "dev": true
2665
+ },
2666
+ "console-control-strings": {
2667
+ "version": "1.1.0",
2668
+ "bundled": true,
2669
+ "dev": true
2670
+ },
2671
+ "core-util-is": {
2672
+ "version": "1.0.2",
2673
+ "bundled": true,
2674
+ "dev": true,
2675
+ "optional": true
2676
+ },
2677
+ "debug": {
2678
+ "version": "2.6.9",
2679
+ "bundled": true,
2680
+ "dev": true,
2681
+ "optional": true,
2682
+ "requires": {
2683
+ "ms": "2.0.0"
2684
+ }
2685
+ },
2686
+ "deep-extend": {
2687
+ "version": "0.6.0",
2688
+ "bundled": true,
2689
+ "dev": true,
2690
+ "optional": true
2691
+ },
2692
+ "delegates": {
2693
+ "version": "1.0.0",
2694
+ "bundled": true,
2695
+ "dev": true,
2696
+ "optional": true
2697
+ },
2698
+ "detect-libc": {
2699
+ "version": "1.0.3",
2700
+ "bundled": true,
2701
+ "dev": true,
2702
+ "optional": true
2703
+ },
2704
+ "fs-minipass": {
2705
+ "version": "1.2.5",
2706
+ "bundled": true,
2707
+ "dev": true,
2708
+ "optional": true,
2709
+ "requires": {
2710
+ "minipass": "^2.2.1"
2711
+ }
2712
+ },
2713
+ "fs.realpath": {
2714
+ "version": "1.0.0",
2715
+ "bundled": true,
2716
+ "dev": true,
2717
+ "optional": true
2718
+ },
2719
+ "gauge": {
2720
+ "version": "2.7.4",
2721
+ "bundled": true,
2722
+ "dev": true,
2723
+ "optional": true,
2724
+ "requires": {
2725
+ "aproba": "^1.0.3",
2726
+ "console-control-strings": "^1.0.0",
2727
+ "has-unicode": "^2.0.0",
2728
+ "object-assign": "^4.1.0",
2729
+ "signal-exit": "^3.0.0",
2730
+ "string-width": "^1.0.1",
2731
+ "strip-ansi": "^3.0.1",
2732
+ "wide-align": "^1.1.0"
2733
+ }
2734
+ },
2735
+ "glob": {
2736
+ "version": "7.1.3",
2737
+ "bundled": true,
2738
+ "dev": true,
2739
+ "optional": true,
2740
+ "requires": {
2741
+ "fs.realpath": "^1.0.0",
2742
+ "inflight": "^1.0.4",
2743
+ "inherits": "2",
2744
+ "minimatch": "^3.0.4",
2745
+ "once": "^1.3.0",
2746
+ "path-is-absolute": "^1.0.0"
2747
+ }
2748
+ },
2749
+ "has-unicode": {
2750
+ "version": "2.0.1",
2751
+ "bundled": true,
2752
+ "dev": true,
2753
+ "optional": true
2754
+ },
2755
+ "iconv-lite": {
2756
+ "version": "0.4.24",
2757
+ "bundled": true,
2758
+ "dev": true,
2759
+ "optional": true,
2760
+ "requires": {
2761
+ "safer-buffer": ">= 2.1.2 < 3"
2762
+ }
2763
+ },
2764
+ "ignore-walk": {
2765
+ "version": "3.0.1",
2766
+ "bundled": true,
2767
+ "dev": true,
2768
+ "optional": true,
2769
+ "requires": {
2770
+ "minimatch": "^3.0.4"
2771
+ }
2772
+ },
2773
+ "inflight": {
2774
+ "version": "1.0.6",
2775
+ "bundled": true,
2776
+ "dev": true,
2777
+ "optional": true,
2778
+ "requires": {
2779
+ "once": "^1.3.0",
2780
+ "wrappy": "1"
2781
+ }
2782
+ },
2783
+ "inherits": {
2784
+ "version": "2.0.3",
2785
+ "bundled": true,
2786
+ "dev": true
2787
+ },
2788
+ "ini": {
2789
+ "version": "1.3.5",
2790
+ "bundled": true,
2791
+ "dev": true,
2792
+ "optional": true
2793
+ },
2794
+ "is-fullwidth-code-point": {
2795
+ "version": "1.0.0",
2796
+ "bundled": true,
2797
+ "dev": true,
2798
+ "requires": {
2799
+ "number-is-nan": "^1.0.0"
2800
+ }
2801
+ },
2802
+ "isarray": {
2803
+ "version": "1.0.0",
2804
+ "bundled": true,
2805
+ "dev": true,
2806
+ "optional": true
2807
+ },
2808
+ "minimatch": {
2809
+ "version": "3.0.4",
2810
+ "bundled": true,
2811
+ "dev": true,
2812
+ "requires": {
2813
+ "brace-expansion": "^1.1.7"
2814
+ }
2815
+ },
2816
+ "minimist": {
2817
+ "version": "0.0.8",
2818
+ "bundled": true,
2819
+ "dev": true
2820
+ },
2821
+ "minipass": {
2822
+ "version": "2.3.5",
2823
+ "bundled": true,
2824
+ "dev": true,
2825
+ "requires": {
2826
+ "safe-buffer": "^5.1.2",
2827
+ "yallist": "^3.0.0"
2828
+ }
2829
+ },
2830
+ "minizlib": {
2831
+ "version": "1.2.1",
2832
+ "bundled": true,
2833
+ "dev": true,
2834
+ "optional": true,
2835
+ "requires": {
2836
+ "minipass": "^2.2.1"
2837
+ }
2838
+ },
2839
+ "mkdirp": {
2840
+ "version": "0.5.1",
2841
+ "bundled": true,
2842
+ "dev": true,
2843
+ "requires": {
2844
+ "minimist": "0.0.8"
2845
+ }
2846
+ },
2847
+ "ms": {
2848
+ "version": "2.0.0",
2849
+ "bundled": true,
2850
+ "dev": true,
2851
+ "optional": true
2852
+ },
2853
+ "needle": {
2854
+ "version": "2.2.4",
2855
+ "bundled": true,
2856
+ "dev": true,
2857
+ "optional": true,
2858
+ "requires": {
2859
+ "debug": "^2.1.2",
2860
+ "iconv-lite": "^0.4.4",
2861
+ "sax": "^1.2.4"
2862
+ }
2863
+ },
2864
+ "node-pre-gyp": {
2865
+ "version": "0.10.3",
2866
+ "bundled": true,
2867
+ "dev": true,
2868
+ "optional": true,
2869
+ "requires": {
2870
+ "detect-libc": "^1.0.2",
2871
+ "mkdirp": "^0.5.1",
2872
+ "needle": "^2.2.1",
2873
+ "nopt": "^4.0.1",
2874
+ "npm-packlist": "^1.1.6",
2875
+ "npmlog": "^4.0.2",
2876
+ "rc": "^1.2.7",
2877
+ "rimraf": "^2.6.1",
2878
+ "semver": "^5.3.0",
2879
+ "tar": "^4"
2880
+ }
2881
+ },
2882
+ "nopt": {
2883
+ "version": "4.0.1",
2884
+ "bundled": true,
2885
+ "dev": true,
2886
+ "optional": true,
2887
+ "requires": {
2888
+ "abbrev": "1",
2889
+ "osenv": "^0.1.4"
2890
+ }
2891
+ },
2892
+ "npm-bundled": {
2893
+ "version": "1.0.5",
2894
+ "bundled": true,
2895
+ "dev": true,
2896
+ "optional": true
2897
+ },
2898
+ "npm-packlist": {
2899
+ "version": "1.2.0",
2900
+ "bundled": true,
2901
+ "dev": true,
2902
+ "optional": true,
2903
+ "requires": {
2904
+ "ignore-walk": "^3.0.1",
2905
+ "npm-bundled": "^1.0.1"
2906
+ }
2907
+ },
2908
+ "npmlog": {
2909
+ "version": "4.1.2",
2910
+ "bundled": true,
2911
+ "dev": true,
2912
+ "optional": true,
2913
+ "requires": {
2914
+ "are-we-there-yet": "~1.1.2",
2915
+ "console-control-strings": "~1.1.0",
2916
+ "gauge": "~2.7.3",
2917
+ "set-blocking": "~2.0.0"
2918
+ }
2919
+ },
2920
+ "number-is-nan": {
2921
+ "version": "1.0.1",
2922
+ "bundled": true,
2923
+ "dev": true
2924
+ },
2925
+ "object-assign": {
2926
+ "version": "4.1.1",
2927
+ "bundled": true,
2928
+ "dev": true,
2929
+ "optional": true
2930
+ },
2931
+ "once": {
2932
+ "version": "1.4.0",
2933
+ "bundled": true,
2934
+ "dev": true,
2935
+ "requires": {
2936
+ "wrappy": "1"
2937
+ }
2938
+ },
2939
+ "os-homedir": {
2940
+ "version": "1.0.2",
2941
+ "bundled": true,
2942
+ "dev": true,
2943
+ "optional": true
2944
+ },
2945
+ "os-tmpdir": {
2946
+ "version": "1.0.2",
2947
+ "bundled": true,
2948
+ "dev": true,
2949
+ "optional": true
2950
+ },
2951
+ "osenv": {
2952
+ "version": "0.1.5",
2953
+ "bundled": true,
2954
+ "dev": true,
2955
+ "optional": true,
2956
+ "requires": {
2957
+ "os-homedir": "^1.0.0",
2958
+ "os-tmpdir": "^1.0.0"
2959
+ }
2960
+ },
2961
+ "path-is-absolute": {
2962
+ "version": "1.0.1",
2963
+ "bundled": true,
2964
+ "dev": true,
2965
+ "optional": true
2966
+ },
2967
+ "process-nextick-args": {
2968
+ "version": "2.0.0",
2969
+ "bundled": true,
2970
+ "dev": true,
2971
+ "optional": true
2972
+ },
2973
+ "rc": {
2974
+ "version": "1.2.8",
2975
+ "bundled": true,
2976
+ "dev": true,
2977
+ "optional": true,
2978
+ "requires": {
2979
+ "deep-extend": "^0.6.0",
2980
+ "ini": "~1.3.0",
2981
+ "minimist": "^1.2.0",
2982
+ "strip-json-comments": "~2.0.1"
2983
+ },
2984
+ "dependencies": {
2985
+ "minimist": {
2986
+ "version": "1.2.0",
2987
+ "bundled": true,
2988
+ "dev": true,
2989
+ "optional": true
2990
+ }
2991
+ }
2992
+ },
2993
+ "readable-stream": {
2994
+ "version": "2.3.6",
2995
+ "bundled": true,
2996
+ "dev": true,
2997
+ "optional": true,
2998
+ "requires": {
2999
+ "core-util-is": "~1.0.0",
3000
+ "inherits": "~2.0.3",
3001
+ "isarray": "~1.0.0",
3002
+ "process-nextick-args": "~2.0.0",
3003
+ "safe-buffer": "~5.1.1",
3004
+ "string_decoder": "~1.1.1",
3005
+ "util-deprecate": "~1.0.1"
3006
+ }
3007
+ },
3008
+ "rimraf": {
3009
+ "version": "2.6.3",
3010
+ "bundled": true,
3011
+ "dev": true,
3012
+ "optional": true,
3013
+ "requires": {
3014
+ "glob": "^7.1.3"
3015
+ }
3016
+ },
3017
+ "safe-buffer": {
3018
+ "version": "5.1.2",
3019
+ "bundled": true,
3020
+ "dev": true
3021
+ },
3022
+ "safer-buffer": {
3023
+ "version": "2.1.2",
3024
+ "bundled": true,
3025
+ "dev": true,
3026
+ "optional": true
3027
+ },
3028
+ "sax": {
3029
+ "version": "1.2.4",
3030
+ "bundled": true,
3031
+ "dev": true,
3032
+ "optional": true
3033
+ },
3034
+ "semver": {
3035
+ "version": "5.6.0",
3036
+ "bundled": true,
3037
+ "dev": true,
3038
+ "optional": true
3039
+ },
3040
+ "set-blocking": {
3041
+ "version": "2.0.0",
3042
+ "bundled": true,
3043
+ "dev": true,
3044
+ "optional": true
3045
+ },
3046
+ "signal-exit": {
3047
+ "version": "3.0.2",
3048
+ "bundled": true,
3049
+ "dev": true,
3050
+ "optional": true
3051
+ },
3052
+ "string-width": {
3053
+ "version": "1.0.2",
3054
+ "bundled": true,
3055
+ "dev": true,
3056
+ "requires": {
3057
+ "code-point-at": "^1.0.0",
3058
+ "is-fullwidth-code-point": "^1.0.0",
3059
+ "strip-ansi": "^3.0.0"
3060
+ }
3061
+ },
3062
+ "string_decoder": {
3063
+ "version": "1.1.1",
3064
+ "bundled": true,
3065
+ "dev": true,
3066
+ "optional": true,
3067
+ "requires": {
3068
+ "safe-buffer": "~5.1.0"
3069
+ }
3070
+ },
3071
+ "strip-ansi": {
3072
+ "version": "3.0.1",
3073
+ "bundled": true,
3074
+ "dev": true,
3075
+ "requires": {
3076
+ "ansi-regex": "^2.0.0"
3077
+ }
3078
+ },
3079
+ "strip-json-comments": {
3080
+ "version": "2.0.1",
3081
+ "bundled": true,
3082
+ "dev": true,
3083
+ "optional": true
3084
+ },
3085
+ "tar": {
3086
+ "version": "4.4.8",
3087
+ "bundled": true,
3088
+ "dev": true,
3089
+ "optional": true,
3090
+ "requires": {
3091
+ "chownr": "^1.1.1",
3092
+ "fs-minipass": "^1.2.5",
3093
+ "minipass": "^2.3.4",
3094
+ "minizlib": "^1.1.1",
3095
+ "mkdirp": "^0.5.0",
3096
+ "safe-buffer": "^5.1.2",
3097
+ "yallist": "^3.0.2"
3098
+ }
3099
+ },
3100
+ "util-deprecate": {
3101
+ "version": "1.0.2",
3102
+ "bundled": true,
3103
+ "dev": true,
3104
+ "optional": true
3105
+ },
3106
+ "wide-align": {
3107
+ "version": "1.1.3",
3108
+ "bundled": true,
3109
+ "dev": true,
3110
+ "optional": true,
3111
+ "requires": {
3112
+ "string-width": "^1.0.2 || 2"
3113
+ }
3114
+ },
3115
+ "wrappy": {
3116
+ "version": "1.0.2",
3117
+ "bundled": true,
3118
+ "dev": true
3119
+ },
3120
+ "yallist": {
3121
+ "version": "3.0.3",
3122
+ "bundled": true,
3123
+ "dev": true
3124
+ }
3125
+ }
3126
+ },
3127
+ "gaze": {
3128
+ "version": "1.1.3",
3129
+ "resolved": "https://registry.npmjs.org/gaze/-/gaze-1.1.3.tgz",
3130
+ "integrity": "sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g==",
3131
+ "dev": true,
3132
+ "requires": {
3133
+ "globule": "^1.0.0"
3134
+ }
3135
+ },
3136
+ "get-caller-file": {
3137
+ "version": "1.0.3",
3138
+ "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz",
3139
+ "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==",
3140
+ "dev": true
3141
+ },
3142
+ "get-stdin": {
3143
+ "version": "4.0.1",
3144
+ "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz",
3145
+ "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=",
3146
+ "dev": true
3147
+ },
3148
+ "get-value": {
3149
+ "version": "2.0.6",
3150
+ "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz",
3151
+ "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=",
3152
+ "dev": true
3153
+ },
3154
+ "getobject": {
3155
+ "version": "0.1.0",
3156
+ "resolved": "https://registry.npmjs.org/getobject/-/getobject-0.1.0.tgz",
3157
+ "integrity": "sha1-BHpEl4n6Fg0Bj1SG7ZEyC27HiFw=",
3158
+ "dev": true
3159
+ },
3160
+ "getpass": {
3161
+ "version": "0.1.7",
3162
+ "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz",
3163
+ "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=",
3164
+ "dev": true,
3165
+ "optional": true,
3166
+ "requires": {
3167
+ "assert-plus": "^1.0.0"
3168
+ }
3169
+ },
3170
+ "gettext-parser": {
3171
+ "version": "2.1.0",
3172
+ "resolved": "https://registry.npmjs.org/gettext-parser/-/gettext-parser-2.1.0.tgz",
3173
+ "integrity": "sha512-YGmu8DSm7PBnwItT+aOiqejOogqctHFzn+wBKUzjDFQP00psAtn/W2paWQxqE5eA5Ijrqaf7xuTKqyCHpuxnrg==",
3174
+ "dev": true,
3175
+ "requires": {
3176
+ "encoding": "^0.1.12",
3177
+ "readable-stream": "^2.0.0",
3178
+ "safe-buffer": "^5.1.2"
3179
+ }
3180
+ },
3181
+ "gettext-to-messageformat": {
3182
+ "version": "0.3.0",
3183
+ "resolved": "https://registry.npmjs.org/gettext-to-messageformat/-/gettext-to-messageformat-0.3.0.tgz",
3184
+ "integrity": "sha512-HlEGFECqAavbOYJTo1I2qh8IqWetAenixaH/AbdIuNTY0easvzrPn+yYUHy63GEjx9pXoLx2nCJcDcE27LrB2g==",
3185
+ "dev": true,
3186
+ "requires": {
3187
+ "gettext-parser": "^1.3.0"
3188
+ },
3189
+ "dependencies": {
3190
+ "gettext-parser": {
3191
+ "version": "1.4.0",
3192
+ "resolved": "http://registry.npmjs.org/gettext-parser/-/gettext-parser-1.4.0.tgz",
3193
+ "integrity": "sha512-sedZYLHlHeBop/gZ1jdg59hlUEcpcZJofLq2JFwJT1zTqAU3l2wFv6IsuwFHGqbiT9DWzMUW4/em2+hspnmMMA==",
3194
+ "dev": true,
3195
+ "requires": {
3196
+ "encoding": "^0.1.12",
3197
+ "safe-buffer": "^5.1.1"
3198
+ }
3199
+ }
3200
+ }
3201
+ },
3202
+ "glob": {
3203
+ "version": "7.0.6",
3204
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz",
3205
+ "integrity": "sha1-IRuvr0nlJbjNkyYNFKsTYVKz9Xo=",
3206
+ "dev": true,
3207
+ "requires": {
3208
+ "fs.realpath": "^1.0.0",
3209
+ "inflight": "^1.0.4",
3210
+ "inherits": "2",
3211
+ "minimatch": "^3.0.2",
3212
+ "once": "^1.3.0",
3213
+ "path-is-absolute": "^1.0.0"
3214
+ }
3215
+ },
3216
+ "glob-parent": {
3217
+ "version": "3.1.0",
3218
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz",
3219
+ "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=",
3220
+ "dev": true,
3221
+ "requires": {
3222
+ "is-glob": "^3.1.0",
3223
+ "path-dirname": "^1.0.0"
3224
+ },
3225
+ "dependencies": {
3226
+ "is-glob": {
3227
+ "version": "3.1.0",
3228
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz",
3229
+ "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=",
3230
+ "dev": true,
3231
+ "requires": {
3232
+ "is-extglob": "^2.1.0"
3233
+ }
3234
+ }
3235
+ }
3236
+ },
3237
+ "globals": {
3238
+ "version": "9.18.0",
3239
+ "resolved": "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz",
3240
+ "integrity": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==",
3241
+ "dev": true
3242
+ },
3243
+ "globule": {
3244
+ "version": "1.2.1",
3245
+ "resolved": "https://registry.npmjs.org/globule/-/globule-1.2.1.tgz",
3246
+ "integrity": "sha512-g7QtgWF4uYSL5/dn71WxubOrS7JVGCnFPEnoeChJmBnyR9Mw8nGoEwOgJL/RC2Te0WhbsEUCejfH8SZNJ+adYQ==",
3247
+ "dev": true,
3248
+ "requires": {
3249
+ "glob": "~7.1.1",
3250
+ "lodash": "~4.17.10",
3251
+ "minimatch": "~3.0.2"
3252
+ },
3253
+ "dependencies": {
3254
+ "glob": {
3255
+ "version": "7.1.3",
3256
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz",
3257
+ "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==",
3258
+ "dev": true,
3259
+ "requires": {
3260
+ "fs.realpath": "^1.0.0",
3261
+ "inflight": "^1.0.4",
3262
+ "inherits": "2",
3263
+ "minimatch": "^3.0.4",
3264
+ "once": "^1.3.0",
3265
+ "path-is-absolute": "^1.0.0"
3266
+ }
3267
+ }
3268
+ }
3269
+ },
3270
+ "graceful-fs": {
3271
+ "version": "4.1.15",
3272
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz",
3273
+ "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==",
3274
+ "dev": true
3275
+ },
3276
+ "grunt": {
3277
+ "version": "1.0.3",
3278
+ "resolved": "https://registry.npmjs.org/grunt/-/grunt-1.0.3.tgz",
3279
+ "integrity": "sha512-/JzmZNPfKorlCrrmxWqQO4JVodO+DVd5XX4DkocL/1WlLlKVLE9+SdEIempOAxDhWPysLle6afvn/hg7Ck2k9g==",
3280
+ "dev": true,
3281
+ "requires": {
3282
+ "coffeescript": "~1.10.0",
3283
+ "dateformat": "~1.0.12",
3284
+ "eventemitter2": "~0.4.13",
3285
+ "exit": "~0.1.1",
3286
+ "findup-sync": "~0.3.0",
3287
+ "glob": "~7.0.0",
3288
+ "grunt-cli": "~1.2.0",
3289
+ "grunt-known-options": "~1.1.0",
3290
+ "grunt-legacy-log": "~2.0.0",
3291
+ "grunt-legacy-util": "~1.1.1",
3292
+ "iconv-lite": "~0.4.13",
3293
+ "js-yaml": "~3.5.2",
3294
+ "minimatch": "~3.0.2",
3295
+ "mkdirp": "~0.5.1",
3296
+ "nopt": "~3.0.6",
3297
+ "path-is-absolute": "~1.0.0",
3298
+ "rimraf": "~2.6.2"
3299
+ },
3300
+ "dependencies": {
3301
+ "grunt-cli": {
3302
+ "version": "1.2.0",
3303
+ "resolved": "http://registry.npmjs.org/grunt-cli/-/grunt-cli-1.2.0.tgz",
3304
+ "integrity": "sha1-VisRnrsGndtGSs4oRVAb6Xs1tqg=",
3305
+ "dev": true,
3306
+ "requires": {
3307
+ "findup-sync": "~0.3.0",
3308
+ "grunt-known-options": "~1.1.0",
3309
+ "nopt": "~3.0.6",
3310
+ "resolve": "~1.1.0"
3311
+ }
3312
+ }
3313
+ }
3314
+ },
3315
+ "grunt-checktextdomain": {
3316
+ "version": "1.0.1",
3317
+ "resolved": "https://registry.npmjs.org/grunt-checktextdomain/-/grunt-checktextdomain-1.0.1.tgz",
3318
+ "integrity": "sha1-slTQHh3pEwBdTbHFMD2QI7mD4Zs=",
3319
+ "dev": true,
3320
+ "requires": {
3321
+ "chalk": "~0.2.1",
3322
+ "text-table": "~0.2.0"
3323
+ },
3324
+ "dependencies": {
3325
+ "ansi-styles": {
3326
+ "version": "0.2.0",
3327
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-0.2.0.tgz",
3328
+ "integrity": "sha1-NZq0sV3NZLptdHNLcsNjYKmvLBk=",
3329
+ "dev": true
3330
+ },
3331
+ "chalk": {
3332
+ "version": "0.2.1",
3333
+ "resolved": "http://registry.npmjs.org/chalk/-/chalk-0.2.1.tgz",
3334
+ "integrity": "sha1-dhPhV1FFshOGSD9/SFql/6jL0Qw=",
3335
+ "dev": true,
3336
+ "requires": {
3337
+ "ansi-styles": "~0.2.0",
3338
+ "has-color": "~0.1.0"
3339
+ }
3340
+ }
3341
+ }
3342
+ },
3343
+ "grunt-contrib-clean": {
3344
+ "version": "2.0.0",
3345
+ "resolved": "https://registry.npmjs.org/grunt-contrib-clean/-/grunt-contrib-clean-2.0.0.tgz",
3346
+ "integrity": "sha512-g5ZD3ORk6gMa5ugZosLDQl3dZO7cI3R14U75hTM+dVLVxdMNJCPVmwf9OUt4v4eWgpKKWWoVK9DZc1amJp4nQw==",
3347
+ "dev": true,
3348
+ "requires": {
3349
+ "async": "^2.6.1",
3350
+ "rimraf": "^2.6.2"
3351
+ },
3352
+ "dependencies": {
3353
+ "async": {
3354
+ "version": "2.6.1",
3355
+ "resolved": "https://registry.npmjs.org/async/-/async-2.6.1.tgz",
3356
+ "integrity": "sha512-fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ==",
3357
+ "dev": true,
3358
+ "requires": {
3359
+ "lodash": "^4.17.10"
3360
+ }
3361
+ }
3362
+ }
3363
+ },
3364
+ "grunt-contrib-cssmin": {
3365
+ "version": "3.0.0",
3366
+ "resolved": "https://registry.npmjs.org/grunt-contrib-cssmin/-/grunt-contrib-cssmin-3.0.0.tgz",
3367
+ "integrity": "sha512-eXpooYmVGKMs/xV7DzTLgJFPVOfMuawPD3x0JwhlH0mumq2NtH3xsxaHxp1Y3NKxp0j0tRhFS6kSBRsz6TuTGg==",
3368
+ "dev": true,
3369
+ "requires": {
3370
+ "chalk": "^2.4.1",
3371
+ "clean-css": "~4.2.1",
3372
+ "maxmin": "^2.1.0"
3373
+ }
3374
+ },
3375
+ "grunt-contrib-less": {
3376
+ "version": "2.0.0",
3377
+ "resolved": "https://registry.npmjs.org/grunt-contrib-less/-/grunt-contrib-less-2.0.0.tgz",
3378
+ "integrity": "sha512-nsaODoEMjVn61OuqPaFeFQpb4Qd/EbfxQDeYnh2oONXm8L5Gnuchtv59kl0V3hjiFdOkZlPILDc3ZrkoZI0PNw==",
3379
+ "dev": true,
3380
+ "requires": {
3381
+ "async": "^2.0.0",
3382
+ "chalk": "^1.0.0",
3383
+ "less": "^3.0.4",
3384
+ "lodash": "^4.17.10"
3385
+ },
3386
+ "dependencies": {
3387
+ "ansi-styles": {
3388
+ "version": "2.2.1",
3389
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
3390
+ "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=",
3391
+ "dev": true
3392
+ },
3393
+ "async": {
3394
+ "version": "2.6.1",
3395
+ "resolved": "https://registry.npmjs.org/async/-/async-2.6.1.tgz",
3396
+ "integrity": "sha512-fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ==",
3397
+ "dev": true,
3398
+ "requires": {
3399
+ "lodash": "^4.17.10"
3400
+ }
3401
+ },
3402
+ "chalk": {
3403
+ "version": "1.1.3",
3404
+ "resolved": "http://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
3405
+ "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
3406
+ "dev": true,
3407
+ "requires": {
3408
+ "ansi-styles": "^2.2.1",
3409
+ "escape-string-regexp": "^1.0.2",
3410
+ "has-ansi": "^2.0.0",
3411
+ "strip-ansi": "^3.0.0",
3412
+ "supports-color": "^2.0.0"
3413
+ }
3414
+ },
3415
+ "supports-color": {
3416
+ "version": "2.0.0",
3417
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
3418
+ "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=",
3419
+ "dev": true
3420
+ }
3421
+ }
3422
+ },
3423
+ "grunt-contrib-rename": {
3424
+ "version": "0.2.0",
3425
+ "resolved": "https://registry.npmjs.org/grunt-contrib-rename/-/grunt-contrib-rename-0.2.0.tgz",
3426
+ "integrity": "sha1-1CPU+SqZpYcncEX4MikdmM4V/co=",
3427
+ "dev": true
3428
+ },
3429
+ "grunt-contrib-uglify": {
3430
+ "version": "4.0.0",
3431
+ "resolved": "https://registry.npmjs.org/grunt-contrib-uglify/-/grunt-contrib-uglify-4.0.0.tgz",
3432
+ "integrity": "sha512-vy3Vop2KDqdiwcGOGAjyKvjHFrRD/YK4KPQWR3Yt6OdYlgFw1z7HCuk66+IJ9s7oJmp9uRQXuuSHyawKRAgiMw==",
3433
+ "dev": true,
3434
+ "requires": {
3435
+ "chalk": "^2.4.1",
3436
+ "maxmin": "^2.1.0",
3437
+ "uglify-js": "~3.4.8",
3438
+ "uri-path": "^1.0.0"
3439
+ }
3440
+ },
3441
+ "grunt-contrib-watch": {
3442
+ "version": "1.1.0",
3443
+ "resolved": "https://registry.npmjs.org/grunt-contrib-watch/-/grunt-contrib-watch-1.1.0.tgz",
3444
+ "integrity": "sha512-yGweN+0DW5yM+oo58fRu/XIRrPcn3r4tQx+nL7eMRwjpvk+rQY6R8o94BPK0i2UhTg9FN21hS+m8vR8v9vXfeg==",
3445
+ "dev": true,
3446
+ "requires": {
3447
+ "async": "^2.6.0",
3448
+ "gaze": "^1.1.0",
3449
+ "lodash": "^4.17.10",
3450
+ "tiny-lr": "^1.1.1"
3451
+ },
3452
+ "dependencies": {
3453
+ "async": {
3454
+ "version": "2.6.1",
3455
+ "resolved": "https://registry.npmjs.org/async/-/async-2.6.1.tgz",
3456
+ "integrity": "sha512-fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ==",
3457
+ "dev": true,
3458
+ "requires": {
3459
+ "lodash": "^4.17.10"
3460
+ }
3461
+ }
3462
+ }
3463
+ },
3464
+ "grunt-known-options": {
3465
+ "version": "1.1.1",
3466
+ "resolved": "https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-1.1.1.tgz",
3467
+ "integrity": "sha512-cHwsLqoighpu7TuYj5RonnEuxGVFnztcUqTqp5rXFGYL4OuPFofwC4Ycg7n9fYwvK6F5WbYgeVOwph9Crs2fsQ==",
3468
+ "dev": true
3469
+ },
3470
+ "grunt-legacy-log": {
3471
+ "version": "2.0.0",
3472
+ "resolved": "https://registry.npmjs.org/grunt-legacy-log/-/grunt-legacy-log-2.0.0.tgz",
3473
+ "integrity": "sha512-1m3+5QvDYfR1ltr8hjiaiNjddxGdQWcH0rw1iKKiQnF0+xtgTazirSTGu68RchPyh1OBng1bBUjLmX8q9NpoCw==",
3474
+ "dev": true,
3475
+ "requires": {
3476
+ "colors": "~1.1.2",
3477
+ "grunt-legacy-log-utils": "~2.0.0",
3478
+ "hooker": "~0.2.3",
3479
+ "lodash": "~4.17.5"
3480
+ }
3481
+ },
3482
+ "grunt-legacy-log-utils": {
3483
+ "version": "2.0.1",
3484
+ "resolved": "https://registry.npmjs.org/grunt-legacy-log-utils/-/grunt-legacy-log-utils-2.0.1.tgz",
3485
+ "integrity": "sha512-o7uHyO/J+i2tXG8r2bZNlVk20vlIFJ9IEYyHMCQGfWYru8Jv3wTqKZzvV30YW9rWEjq0eP3cflQ1qWojIe9VFA==",
3486
+ "dev": true,
3487
+ "requires": {
3488
+ "chalk": "~2.4.1",
3489
+ "lodash": "~4.17.10"
3490
+ }
3491
+ },
3492
+ "grunt-legacy-util": {
3493
+ "version": "1.1.1",
3494
+ "resolved": "https://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-1.1.1.tgz",
3495
+ "integrity": "sha512-9zyA29w/fBe6BIfjGENndwoe1Uy31BIXxTH3s8mga0Z5Bz2Sp4UCjkeyv2tI449ymkx3x26B+46FV4fXEddl5A==",
3496
+ "dev": true,
3497
+ "requires": {
3498
+ "async": "~1.5.2",
3499
+ "exit": "~0.1.1",
3500
+ "getobject": "~0.1.0",
3501
+ "hooker": "~0.2.3",
3502
+ "lodash": "~4.17.10",
3503
+ "underscore.string": "~3.3.4",
3504
+ "which": "~1.3.0"
3505
+ }
3506
+ },
3507
+ "grunt-po2json": {
3508
+ "version": "0.3.0",
3509
+ "resolved": "https://registry.npmjs.org/grunt-po2json/-/grunt-po2json-0.3.0.tgz",
3510
+ "integrity": "sha1-y4hZOErUzFokTHfMAm846sayhMM=",
3511
+ "dev": true,
3512
+ "requires": {
3513
+ "po2json": "*"
3514
+ }
3515
+ },
3516
+ "grunt-po2mo": {
3517
+ "version": "0.1.2",
3518
+ "resolved": "https://registry.npmjs.org/grunt-po2mo/-/grunt-po2mo-0.1.2.tgz",
3519
+ "integrity": "sha1-kI9zwcAAhjhazIPAdA7jYO9SdBs=",
3520
+ "dev": true,
3521
+ "requires": {
3522
+ "sync-exec": "^0.4.0"
3523
+ }
3524
+ },
3525
+ "grunt-shell": {
3526
+ "version": "2.1.0",
3527
+ "resolved": "https://registry.npmjs.org/grunt-shell/-/grunt-shell-2.1.0.tgz",
3528
+ "integrity": "sha1-Q595FZ7RHmSmUaacyKPQK+v17MI=",
3529
+