Flexible Shipping for WooCommerce - Version 3.5.0

Version Description

  • 2019-07-10 =
  • Most code moved to shared libraries
Download this release

Release Info

Developer jablonowski
Plugin Icon 128x128 Flexible Shipping for WooCommerce
Version 3.5.0
Comparing to
See all releases

Code changes from version 3.4.0 to 3.5.0

Files changed (229) hide show
  1. classes/class-flexible-shipping-plugin.php +10 -6
  2. classes/class-menu.php +0 -43
  3. classes/csv/class-csv-shipping-class.php +0 -55
  4. classes/{abtests → table-rate/abtests}/ab-pointer-message-test/class-ab-variant-old.php +0 -0
  5. classes/{abtests → table-rate/abtests}/ab-pointer-message-test/class-ab-variant-with-pointer-message-text.php +0 -0
  6. classes/{abtests → table-rate/abtests}/ab-pointer-message-test/class-ab-variant-with-pointer-message-video.php +0 -0
  7. classes/{abtests → table-rate/abtests}/ab-pointer-message-test/class-ab-variant-without-pointer-message.php +0 -0
  8. classes/{abtests → table-rate/abtests}/class-ab-pointer-message-test.php +0 -0
  9. classes/{abtests → table-rate/abtests}/class-ab-tracker-deactivation-data.php +0 -0
  10. classes/{class-pointer-messages.php → table-rate/abtests/class-pointer-messages.php} +0 -0
  11. classes/{views → table-rate/abtests/views}/html-pointer-message-fs-text.php +0 -0
  12. classes/{views → table-rate/abtests/views}/html-pointer-message-fs-video.php +0 -0
  13. classes/{bulk-actions.php → table-rate/bulk-actions.php} +1 -1
  14. classes/{class-shortcode-unit-dimension.php → table-rate/class-shortcode-unit-dimension.php} +0 -0
  15. classes/{class-shortcode-unit-weight.php → table-rate/class-shortcode-unit-weight.php} +0 -0
  16. classes/{csv → table-rate/csv}/class-csv-importer-exception.php +0 -0
  17. classes/{csv → table-rate/csv}/class-csv-importer.php +2 -5
  18. classes/{flexible-shipping-export.php → table-rate/csv/flexible-shipping-export.php} +1 -4
  19. classes/table-rate/functions.php +99 -0
  20. classes/{logger → table-rate/logger}/class-logger-factory.php +0 -0
  21. classes/{logger → table-rate/logger}/class-saas-logger-downloader.php +0 -0
  22. classes/{logger → table-rate/logger}/class-saas-logger-settings.php +0 -0
  23. classes/{logger → table-rate/logger}/class-woocommerce-context-logger.php +0 -0
  24. classes/{multicurrency.php → table-rate/multicurrency.php} +0 -0
  25. classes/{multilingual.php → table-rate/multilingual.php} +0 -0
  26. classes/{settings → table-rate/settings}/flexible-shipping.php +0 -0
  27. classes/{settings → table-rate/settings}/shipping-method-form.php +0 -0
  28. classes/{shipping-method.php → table-rate/shipping-method.php} +0 -0
  29. classes/{views → table-rate/views}/html-ads.php +0 -0
  30. classes/{views → table-rate/views}/html-column-shipping-message.php +0 -0
  31. classes/{views → table-rate/views}/html-column-shipping-shipping.php +0 -0
  32. classes/{views → table-rate/views}/html-custom-services.php +0 -0
  33. classes/{views → table-rate/views}/html-menu-icon.php +0 -0
  34. classes/{views → table-rate/views}/html-orders-filter-form.php +0 -0
  35. classes/{views → table-rate/views}/html-shipping-method-rules.php +0 -0
  36. classes/{views → table-rate/views}/html-shipping-method-settings.php +1 -1
  37. classes/{class-method-created-tracker-deactivation-data.php → tracker/class-method-created-tracker-deactivation-data.php} +0 -0
  38. classes/{tracker.php → tracker/tracker.php} +0 -0
  39. composer.lock +154 -32
  40. flexible-shipping.php +6 -6
  41. inc/wpdesk-tracker/lang/wpdesk-tracker-pl_PL.mo +0 -0
  42. lang/flexible-shipping-pl_PL.mo +0 -0
  43. lang/flexible-shipping-pl_PL.po +1101 -974
  44. readme.txt +6 -3
  45. vendor/autoload.php +1 -1
  46. vendor/composer/autoload_classmap.php +134 -126
  47. vendor/composer/autoload_real.php +7 -7
  48. vendor/composer/autoload_static.php +138 -130
  49. vendor/composer/installed.json +146 -18
  50. vendor/wpdesk/wp-basic-requirements/CHANGELOG.md +5 -1
  51. vendor/wpdesk/wp-basic-requirements/src/Plugin/Plugin_Info.php +18 -1
  52. vendor/wpdesk/wp-builder/CHANGELOG.md +3 -0
  53. vendor/wpdesk/wp-builder/src/Builder/InfoActivationBuilder.php +82 -0
  54. vendor/wpdesk/wp-builder/src/Builder/InfoBuilder.php +5 -0
  55. vendor/wpdesk/wp-builder/src/Plugin/ActivationAware.php +27 -0
  56. vendor/wpdesk/wp-builder/src/Plugin/ActivationTracker.php +5 -1
  57. vendor/wpdesk/wp-builder/src/Plugin/PluginAccess.php +3 -0
  58. vendor/wpdesk/wp-builder/src/Plugin/TemplateLoad.php +5 -0
  59. vendor/wpdesk/wp-builder/src/Storage/StaticStorage.php +6 -2
  60. vendor/wpdesk/wp-notice/CHANGELOG.md +4 -0
  61. vendor/wpdesk/wp-notice/assets/js/notice.js +7 -1
  62. vendor/wpdesk/wp-notice/assets/js/notice.min.js +1 -1
  63. vendor/wpdesk/wp-notice/src/WPDesk/Notice/AjaxHandler.php +10 -2
  64. vendor/wpdesk/wp-wpdesk-connect/.gitignore +5 -0
  65. vendor/wpdesk/wp-wpdesk-connect/CHANGELOG.md +7 -0
  66. vendor/wpdesk/wp-wpdesk-connect/apigen.neon +27 -0
  67. vendor/wpdesk/wp-wpdesk-connect/composer.json +34 -0
  68. vendor/wpdesk/wp-wpdesk-connect/phpunit-integration.xml +28 -0
  69. vendor/wpdesk/wp-wpdesk-connect/phpunit-unit.xml +21 -0
  70. {classes → vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration}/class-uk-states.php +0 -0
  71. {classes/shipment → vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas}/class-shipment-request-fields.php +0 -0
  72. {classes/shipment → vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration}/saas/class-shipment-saas-ajax.php +0 -0
  73. {classes/shipment → vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration}/saas/class-shipment-saas-attachments-ajax.php +0 -0
  74. {classes/shipment → vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration}/saas/class-shipment-saas-attachments-upload-dir.php +0 -0
  75. {classes/shipment → vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration}/saas/class-shipment-saas-attachments.php +0 -0
  76. {classes/shipment → vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration}/saas/class-shipment-saas-message-formatter.php +0 -0
  77. {classes/shipment → vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration}/saas/class-shipment-saas-metabox-attachments.php +0 -0
  78. {classes/shipment → vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration}/saas/class-shipment-saas-metabox.php +10 -4
  79. {classes/shipment → vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration}/saas/class-shipment-saas-send.php +0 -0
  80. {classes/shipment → vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration}/saas/class-shipment-saas.php +17 -4
  81. {classes/shipment → vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration}/saas/views/order-metabox-actions.php +0 -0
  82. {classes/shipment → vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration}/saas/views/order-metabox-connection-error.php +0 -0
  83. {classes/shipment → vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration}/saas/views/order-metabox-fieldset-replicable.php +0 -0
  84. {classes/shipment → vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration}/saas/views/order-metabox-fieldset.php +0 -0
  85. {classes/shipment → vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration}/saas/views/order-metabox-shipment-attachments.php +0 -0
  86. {classes/shipment → vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration}/saas/views/order-metabox-single-attachment.php +0 -0
  87. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/checkout-fields/class-saas-checkout-field-collection-points.php +0 -0
  88. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/checkout-fields/class-saas-checkout-fields-checkout.php +0 -0
  89. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/checkout-fields/class-saas-checkout-fields-shipment.php +0 -0
  90. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/checkout-fields/class-saas-field-visible-when-checkout.php +0 -0
  91. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/checkout-fields/class-saas-field-visible-when-shipment.php +0 -0
  92. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/checkout-fields/class-saas-field-visible-when.php +0 -0
  93. {classes → vendor/wpdesk/wp-wpdesk-connect/src/saas}/checkout/class-checkout-ajax-request-data.php +0 -0
  94. {classes/shipment → vendor/wpdesk/wp-wpdesk-connect/src/saas}/class-money-formatter.php +0 -0
  95. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-add-shipping-handler.php +0 -0
  96. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-auth-params.php +0 -0
  97. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-bad-credentials-exception.php +0 -0
  98. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-cache-settings.php +0 -0
  99. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-connection-status-ajax.php +0 -0
  100. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-connection-status-field.php +0 -0
  101. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-connection.php +18 -11
  102. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-country-state-field.php +0 -0
  103. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-custom-services-setting.php +0 -0
  104. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-default-value-compute-handler.php +0 -0
  105. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-free-shipping-metadata-handler.php +0 -0
  106. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-live-rates-fallback-metadata-handler.php +0 -0
  107. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-live-rates-handler.php +0 -0
  108. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-maintenance-mode-exception.php +0 -0
  109. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-message-stock-metadata-handler.php +0 -0
  110. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-new-courier-settings-section.php +0 -0
  111. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-platform-factory.php +0 -0
  112. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-platform-links.php +0 -0
  113. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-registration-second-notice.php +0 -0
  114. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-service-settings-not-found-exception.php +0 -0
  115. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-settings-service-checkbox.php +0 -0
  116. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-settings.php +0 -0
  117. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-shipment-auto-create.php +0 -0
  118. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-shipment-order-auto-complete.php +0 -0
  119. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-shipment-settings-field.php +0 -0
  120. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-shipping-method-integration-settings.php +0 -0
  121. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-shipping-service-settings.php +0 -0
  122. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-shipping-service.php +0 -0
  123. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-shipping-services-manager.php +0 -0
  124. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-shipping-services.php +0 -0
  125. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-user-registration.php +0 -0
  126. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-sass-settings-integration-checkbox.php +0 -0
  127. {classes → vendor/wpdesk/wp-wpdesk-connect/src/saas}/class-shipping-zone-data-extractor.php +0 -0
  128. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/collection-points/class-saas-collection-points-ajax-request-data.php +0 -0
  129. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/collection-points/class-saas-collection-points-ajax.php +0 -0
  130. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/collection-points/class-saas-collection-points-map.php +0 -0
  131. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/collection-points/class-saas-shipping-service-collection-points.php +0 -0
  132. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/collection-points/views/map.php +0 -0
  133. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/interface-saas-connection-aware.php +0 -0
  134. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/tracker/class-saas-tracker.php +0 -0
  135. {classes/shipment → vendor/wpdesk/wp-wpdesk-connect/src/saas/tracker}/class-shipment-counter.php +0 -0
  136. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/views/html-boxes-content.php +0 -0
  137. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/views/html-field-connection-status.php +0 -0
  138. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/views/html-field-saas-connection.php +0 -0
  139. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/views/html-flexible-shipping-connect-notice.php +0 -0
  140. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/views/html-flexible-shipping-connect-second-notice.php +0 -0
  141. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/views/html-order-fallback-message.php +0 -0
  142. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/views/html-order-free-shipping.php +0 -0
  143. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/views/html-order-message-stock.php +0 -0
  144. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/views/html-registration-page.php +0 -0
  145. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/views/html-saas-connection-form.php +0 -0
  146. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/views/html-settings-connect-script.php +0 -0
  147. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/views/html-settings-long-row.php +0 -0
  148. vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-shipping-method-info-description-body.php +45 -0
  149. {classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/views/html-shipping-method-info-description.php +0 -0
  150. vendor/wpdesk/wp-wpdesk-fs-shipment/.gitignore +5 -0
  151. vendor/wpdesk/wp-wpdesk-fs-shipment/CHANGELOG.md +15 -0
  152. vendor/wpdesk/wp-wpdesk-fs-shipment/apigen.neon +27 -0
  153. vendor/wpdesk/wp-wpdesk-fs-shipment/composer.json +30 -0
  154. vendor/wpdesk/wp-wpdesk-fs-shipment/phpunit-integration.xml +28 -0
  155. vendor/wpdesk/wp-wpdesk-fs-shipment/phpunit-unit.xml +21 -0
  156. {classes → vendor/wpdesk/wp-wpdesk-fs-shipment/src}/admin-notices.php +0 -88
  157. {classes → vendor/wpdesk/wp-wpdesk-fs-shipment/src}/class-order-add-shipping.php +0 -0
  158. {classes/shipment → vendor/wpdesk/wp-wpdesk-fs-shipment/src/exception}/class-cancel-shipment-exception.php +0 -0
  159. {classes/shipment → vendor/wpdesk/wp-wpdesk-fs-shipment/src/exception}/class-get-label-exception.php +0 -0
  160. {classes/shipment → vendor/wpdesk/wp-wpdesk-fs-shipment/src/exception}/class-label-not-available-exception.php +0 -0
  161. {classes/shipment → vendor/wpdesk/wp-wpdesk-fs-shipment/src/exception}/class-send-shipment-exception.php +0 -0
  162. {classes/shipment → vendor/wpdesk/wp-wpdesk-fs-shipment/src/exception}/class-shipment-plan-exceeded-exception.php +0 -0
  163. {classes → vendor/wpdesk/wp-wpdesk-fs-shipment/src}/manifest/class-manifest-fs.php +0 -0
  164. {classes → vendor/wpdesk/wp-wpdesk-fs-shipment/src}/manifest/class-manifest.php +0 -0
  165. {classes → vendor/wpdesk/wp-wpdesk-fs-shipment/src}/manifest/cpt-shipping-manifest.php +3 -3
  166. vendor/wpdesk/wp-wpdesk-fs-shipment/src/manifest/functions.php +62 -0
  167. {classes → vendor/wpdesk/wp-wpdesk-fs-shipment/src}/manifest/interface-manifest.php +0 -0
  168. {classes → vendor/wpdesk/wp-wpdesk-fs-shipment/src}/manifest/views/column-actions.php +0 -0
  169. {classes → vendor/wpdesk/wp-wpdesk-fs-shipment/src}/manifest/views/column-number.php +0 -0
  170. {classes → vendor/wpdesk/wp-wpdesk-fs-shipment/src}/manifest/views/filter-form.php +0 -0
  171. {classes → vendor/wpdesk/wp-wpdesk-fs-shipment/src}/manifest/views/manifest-metabox.php +0 -0
  172. {classes/shipment → vendor/wpdesk/wp-wpdesk-fs-shipment/src/metabox}/ajax.php +0 -0
  173. vendor/wpdesk/wp-wpdesk-fs-shipment/src/rate-notice.php +126 -0
  174. vendor/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/abstract-rate.php +69 -0
  175. vendor/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/first-rate-notice.php +65 -0
  176. vendor/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/interface-rate.php +23 -0
  177. vendor/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/order-counter.php +53 -0
  178. vendor/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/rate-notices-creator.php +24 -0
  179. vendor/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/second-rate-notice.php +65 -0
  180. vendor/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/third-rate-notice.php +63 -0
  181. {classes → vendor/wpdesk/wp-wpdesk-fs-shipment/src}/shipment/class-shipment.php +0 -0
  182. {classes → vendor/wpdesk/wp-wpdesk-fs-shipment/src}/shipment/cpt-shipment.php +0 -0
  183. vendor/wpdesk/wp-wpdesk-fs-shipment/src/shipment/functions.php +121 -0
  184. {classes → vendor/wpdesk/wp-wpdesk-fs-shipment/src}/shipment/interface-shipment.php +0 -0
  185. {classes → vendor/wpdesk/wp-wpdesk-fs-shipment/src}/shipment/views/order-metabox.php +0 -0
  186. {classes → vendor/wpdesk/wp-wpdesk-fs-shipment/src}/views/html-order-add_shipping-metabox.php +0 -0
  187. vendor/wpdesk/wp-wpdesk-tracker/CHANGELOG.md +12 -0
  188. vendor/wpdesk/wp-wpdesk-tracker/LICENSE.md +21 -0
  189. vendor/wpdesk/wp-wpdesk-tracker/composer.json +38 -0
  190. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/assets/css/tracker.css +0 -0
  191. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/assets/css/tracker.min.css +0 -0
  192. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/assets/images/logo.png +0 -0
  193. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/assets/images/logo@2x.png +0 -0
  194. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/class-wpdesk-tracker-factory.php +0 -0
  195. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/class-wpdesk-tracker.php +10 -3
  196. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-gateways.php +0 -0
  197. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-identification-gdpr.php +0 -0
  198. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-identification.php +0 -0
  199. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-jetpack.php +0 -0
  200. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-license-emails.php +0 -0
  201. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-orders-country.php +0 -0
  202. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-orders-month.php +0 -0
  203. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-orders.php +0 -0
  204. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-plugins.php +0 -0
  205. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-products-variations.php +0 -0
  206. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-products.php +0 -0
  207. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-server.php +0 -0
  208. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-settings.php +0 -0
  209. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-shipping-classes.php +0 -0
  210. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-shipping-methods-zones.php +0 -0
  211. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-shipping-methods.php +0 -0
  212. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-templates.php +0 -0
  213. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-theme.php +0 -0
  214. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-user-agent.php +0 -0
  215. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-users.php +0 -0
  216. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-wordpress.php +0 -0
  217. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider.php +0 -0
  218. vendor/wpdesk/wp-wpdesk-tracker/src/lang/wpdesk-tracker-pl_PL.mo +0 -0
  219. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/lang/wpdesk-tracker-pl_PL.po +8 -15
  220. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/sender/Exception/class-wpdesk-tracker-sender-exception-wperror.php +0 -0
  221. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/sender/class-wpdesk-tracker-sender-logged.php +0 -0
  222. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/sender/class-wpdesk-tracker-sender-wordpress-to-wpdesk.php +0 -0
  223. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/sender/class-wpdesk-tracker-sender.php +0 -0
  224. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/views/tracker-connect.php +0 -0
  225. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/views/tracker-deactivate.php +2 -2
  226. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/views/tracker-notice.php +2 -2
  227. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/views/tracker-opt-out-notice.php +0 -0
  228. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/views/tracker-plugins-footer.php +0 -0
  229. {inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/views/tracker-styles.php +0 -0
classes/class-flexible-shipping-plugin.php CHANGED
@@ -1,13 +1,14 @@
1
  <?php
2
  use WPDesk\ABTesting\ABVariant;
 
 
 
 
3
 
4
- class Flexible_Shipping_Plugin
5
- extends \WPDesk\PluginBuilder\Plugin\AbstractPlugin
6
- implements \WPDesk\PluginBuilder\Plugin\HookableCollection
7
- {
8
 
9
- use \WPDesk\PluginBuilder\Plugin\HookableParent;
10
- use \WPDesk\PluginBuilder\Plugin\TemplateLoad;
11
 
12
  /*
13
  * Plugin file
@@ -100,6 +101,9 @@ class Flexible_Shipping_Plugin
100
  $abtesting = new WPDesk_Flexible_Shipping_AB_Pointer_Message_Test();
101
  $this->variant = $abtesting->get_variant();
102
 
 
 
 
103
  $this->add_hookable( new WPDesk_Flexible_Shipping_AB_Tracker_Deactivation_Data( $this->variant ) );
104
 
105
  $this->add_hookable( new WPDesk_Flexible_Shipping_Add_Shipping( ) );
1
  <?php
2
  use WPDesk\ABTesting\ABVariant;
3
+ use WPDesk\PluginBuilder\Plugin\AbstractPlugin;
4
+ use WPDesk\PluginBuilder\Plugin\HookableCollection;
5
+ use WPDesk\PluginBuilder\Plugin\HookableParent;
6
+ use WPDesk\PluginBuilder\Plugin\TemplateLoad;
7
 
8
+ class Flexible_Shipping_Plugin extends AbstractPlugin implements HookableCollection {
 
 
 
9
 
10
+ use HookableParent;
11
+ use TemplateLoad;
12
 
13
  /*
14
  * Plugin file
101
  $abtesting = new WPDesk_Flexible_Shipping_AB_Pointer_Message_Test();
102
  $this->variant = $abtesting->get_variant();
103
 
104
+ $this->add_hookable( new WPDesk\FS\Rate\Flexible_Shipping_Order_Counter( ) );
105
+ $this->add_hookable( new WPDesk\FS\Rate\WPDesk_Flexible_Shipping_Rate_Notice( ) );
106
+
107
  $this->add_hookable( new WPDesk_Flexible_Shipping_AB_Tracker_Deactivation_Data( $this->variant ) );
108
 
109
  $this->add_hookable( new WPDesk_Flexible_Shipping_Add_Shipping( ) );
classes/class-menu.php DELETED
@@ -1,43 +0,0 @@
1
- <?php
2
-
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- } // Exit if accessed directly
6
-
7
- if ( ! class_exists( 'WPDesk_Flexible_Shipping_Menu' ) ) {
8
-
9
- /**
10
- * Class WPDesk_Flexible_Shipping_Menu
11
- */
12
- class WPDesk_Flexible_Shipping_Menu implements \WPDesk\PluginBuilder\Plugin\HookablePluginDependant {
13
-
14
- use \WPDesk\PluginBuilder\Plugin\PluginAccess;
15
-
16
- const MENU_POSITION_AFTER_PRODUCTS = 59;
17
- const HOOK_PRIORITY_HIGH = 1;
18
-
19
- /**
20
- * Hooks.
21
- */
22
- public function hooks() {
23
- add_action( 'admin_menu', array( $this, 'admin_menu_action' ), self::HOOK_PRIORITY_HIGH );
24
- }
25
-
26
- /**
27
- * Admin menu action.
28
- */
29
- public function admin_menu_action() {
30
- //add_menu_page( __( 'Settings', 'flexible-shipping' ), __( 'Flexible Shipping', 'flexible-shipping' ), 'manage_woocommerce', 'flexible-shipping', array( $this, 'settings_menu' ), null, self::MENU_POSITION_AFTER_PRODUCTS );
31
- }
32
-
33
- /**
34
- * Settings menu;
35
- */
36
- public function settings_menu() {
37
- echo '<div class="wrap"><h2>Settings</h2></div>';
38
- }
39
-
40
-
41
- }
42
-
43
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
classes/csv/class-csv-shipping-class.php DELETED
@@ -1,55 +0,0 @@
1
- <?php
2
-
3
- /**
4
- * Shipping class in CSV.
5
- */
6
- class WPDesk_Flexible_Shipping_Csv_Shipping_Class {
7
-
8
- const ENCODED_COMMA = '&#44;';
9
-
10
- /**
11
- * Shipping class name.
12
- *
13
- * @var string
14
- */
15
- private $shipping_class_name;
16
-
17
- /**
18
- * WPDesk_Flexible_Shipping_Csv_Shipping_Class constructor.
19
- *
20
- * @param string $shipping_class_name Shipping class name.
21
- */
22
- public function __construct( $shipping_class_name ) {
23
- $this->shipping_class_name = $shipping_class_name;
24
- }
25
-
26
- /**
27
- * Create from encoded shipping class name.
28
- *
29
- * @param string $encoded_shipping_class_name Encoded shipping class name.
30
- *
31
- * @return WPDesk_Flexible_Shipping_Csv_Shipping_Class
32
- */
33
- public static function create_from_encoded_shipping_class_name( $encoded_shipping_class_name ) {
34
- return new self( str_replace( self::ENCODED_COMMA, ',', $encoded_shipping_class_name ) );
35
- }
36
-
37
- /**
38
- * Get shipping class name.
39
- *
40
- * @return string
41
- */
42
- public function get_shipping_class_name() {
43
- return $this->shipping_class_name;
44
- }
45
-
46
- /**
47
- * Get encoded shipping class name.
48
- *
49
- * @return string
50
- */
51
- public function get_encoded_shipping_class_name() {
52
- return str_replace( ',', self::ENCODED_COMMA, $this->shipping_class_name );
53
- }
54
-
55
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
classes/{abtests → table-rate/abtests}/ab-pointer-message-test/class-ab-variant-old.php RENAMED
File without changes
classes/{abtests → table-rate/abtests}/ab-pointer-message-test/class-ab-variant-with-pointer-message-text.php RENAMED
File without changes
classes/{abtests → table-rate/abtests}/ab-pointer-message-test/class-ab-variant-with-pointer-message-video.php RENAMED
File without changes
classes/{abtests → table-rate/abtests}/ab-pointer-message-test/class-ab-variant-without-pointer-message.php RENAMED
File without changes
classes/{abtests → table-rate/abtests}/class-ab-pointer-message-test.php RENAMED
File without changes
classes/{abtests → table-rate/abtests}/class-ab-tracker-deactivation-data.php RENAMED
File without changes
classes/{class-pointer-messages.php → table-rate/abtests/class-pointer-messages.php} RENAMED
File without changes
classes/{views → table-rate/abtests/views}/html-pointer-message-fs-text.php RENAMED
File without changes
classes/{views → table-rate/abtests/views}/html-pointer-message-fs-video.php RENAMED
File without changes
classes/{bulk-actions.php → table-rate/bulk-actions.php} RENAMED
@@ -225,7 +225,7 @@ if ( ! class_exists( 'WPDesk_Flexible_Shipping_Bulk_Actions' ) ) {
225
  } else {
226
  $statuses['error'] = __('Error', 'flexible-shipping');
227
  }
228
- include('views/html-column-shipping-shipping.php');
229
  }
230
  $messages = array();
231
  if (isset($_SESSION['flexible_shipping_bulk_send'])) {
225
  } else {
226
  $statuses['error'] = __('Error', 'flexible-shipping');
227
  }
228
+ include( 'views/html-column-shipping-shipping.php' );
229
  }
230
  $messages = array();
231
  if (isset($_SESSION['flexible_shipping_bulk_send'])) {
classes/{class-shortcode-unit-dimension.php → table-rate/class-shortcode-unit-dimension.php} RENAMED
File without changes
classes/{class-shortcode-unit-weight.php → table-rate/class-shortcode-unit-weight.php} RENAMED
File without changes
classes/{csv → table-rate/csv}/class-csv-importer-exception.php RENAMED
File without changes
classes/{csv → table-rate/csv}/class-csv-importer.php RENAMED
@@ -174,9 +174,6 @@ class WPDesk_Flexible_Shipping_Csv_Importer {
174
  $rule['shipping_class'] = array();
175
  foreach ( $rule_shipping_classes as $rule_shipping_class ) {
176
  if ( ! in_array( $rule_shipping_class, array( 'all', 'any', 'none' ), true ) ) {
177
- $csv_shipping_class = WPDesk_Flexible_Shipping_Csv_Shipping_Class::create_from_encoded_shipping_class_name( $rule_shipping_class );
178
- $rule_shipping_class = $csv_shipping_class->get_shipping_class_name();
179
-
180
  $shipping_class_found = false;
181
  WC()->shipping()->shipping_classes = array();
182
  $wc_shipping_classes = WC()->shipping()->get_shipping_classes();
@@ -279,8 +276,8 @@ class WPDesk_Flexible_Shipping_Csv_Importer {
279
 
280
  $imported_shipping_method = $this->new_shipping_method( $csv_row, $shipping_methods, $import_row_count );
281
 
282
- $current_method_title = $csv_row['Method Title'];
283
- $method_title = $imported_shipping_method['method_title'];
284
 
285
  } else {
286
  $imported_shipping_method['method_rules'][] = $this->new_rule( $csv_row, $import_row_count );
174
  $rule['shipping_class'] = array();
175
  foreach ( $rule_shipping_classes as $rule_shipping_class ) {
176
  if ( ! in_array( $rule_shipping_class, array( 'all', 'any', 'none' ), true ) ) {
 
 
 
177
  $shipping_class_found = false;
178
  WC()->shipping()->shipping_classes = array();
179
  $wc_shipping_classes = WC()->shipping()->get_shipping_classes();
276
 
277
  $imported_shipping_method = $this->new_shipping_method( $csv_row, $shipping_methods, $import_row_count );
278
 
279
+ $current_method_title = $imported_shipping_method['method_title'];
280
+ $method_title = $current_method_title;
281
 
282
  } else {
283
  $imported_shipping_method['method_rules'][] = $this->new_rule( $csv_row, $import_row_count );
classes/{flexible-shipping-export.php → table-rate/csv/flexible-shipping-export.php} RENAMED
@@ -169,14 +169,11 @@ if ( ! class_exists( 'WPDesk_Flexible_Shipping_Export' ) ) {
169
  }
170
  foreach ( $wc_shipping_classes as $shipping_class ) {
171
  if ( in_array( $shipping_class->term_id, $method_shipping_class ) ) {
172
- $csv_shipping_class = new WPDesk_Flexible_Shipping_Csv_Shipping_Class( $shipping_class->name );
173
-
174
- $method_rule['shipping_class'] .= $csv_shipping_class->get_encoded_shipping_class_name();
175
  $method_rule['shipping_class'] .= ',';
176
  }
177
  }
178
  $method_rule['shipping_class'] = trim( $method_rule['shipping_class'], ',' );
179
-
180
  }
181
  if ( ! isset( $method_rule['stop'] ) ) {
182
  $method_rule['stop'] = '';
169
  }
170
  foreach ( $wc_shipping_classes as $shipping_class ) {
171
  if ( in_array( $shipping_class->term_id, $method_shipping_class ) ) {
172
+ $method_rule['shipping_class'] .= $shipping_class->name;
 
 
173
  $method_rule['shipping_class'] .= ',';
174
  }
175
  }
176
  $method_rule['shipping_class'] = trim( $method_rule['shipping_class'], ',' );
 
177
  }
178
  if ( ! isset( $method_rule['stop'] ) ) {
179
  $method_rule['stop'] = '';
classes/table-rate/functions.php ADDED
@@ -0,0 +1,99 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ function flexible_shipping_get_all_shipping_methods() {
4
+ /*
5
+ $all_shipping_methods = WC()->shipping()->get_shipping_methods();
6
+ if ( empty( $all_shipping_methods ) ) {
7
+ $all_shipping_methods = WC()->shipping()->load_shipping_methods();
8
+ }
9
+ */
10
+ $all_shipping_methods = WC()->shipping()->load_shipping_methods();
11
+ return $all_shipping_methods;
12
+ }
13
+
14
+
15
+ function flexible_shipping_method_selected_in_cart( $shipping_method_integration ) {
16
+ global $woocommerce;
17
+ $shippings = $woocommerce->session->get('chosen_shipping_methods');
18
+ $all_shipping_methods = flexible_shipping_get_all_shipping_methods();
19
+ $flexible_shipping = $all_shipping_methods['flexible_shipping'];
20
+ $flexible_shipping_rates = $flexible_shipping->get_all_rates();
21
+ foreach ( $shippings as $id => $shipping ) {
22
+ if ( isset( $flexible_shipping_rates[$shipping] ) ) {
23
+ $shipping_method = $flexible_shipping_rates[$shipping];
24
+ if ( $shipping_method['method_integration'] == $shipping_method_integration ) {
25
+ return $shipping_method;
26
+ }
27
+ }
28
+ }
29
+ return false;
30
+ }
31
+
32
+ function flexible_shipping_method_selected( $order, $shipping_method_integration ) {
33
+ if ( is_numeric( $order ) ) {
34
+ $order = wc_get_order( $order );
35
+ }
36
+ $shippings = $order->get_shipping_methods();
37
+ $all_shipping_methods = flexible_shipping_get_all_shipping_methods();
38
+ if ( isset( $all_shipping_methods['flexible_shipping'] ) ) {
39
+ $flexible_shipping_rates = $all_shipping_methods['flexible_shipping']->get_all_rates();
40
+ foreach ( $shippings as $id => $shipping ) {
41
+ if ( isset( $flexible_shipping_rates[ $shipping['method_id'] ] ) ) {
42
+ $shipping_method = $flexible_shipping_rates[ $shipping['method_id'] ];
43
+ if ( $shipping_method['method_integration'] == $shipping_method_integration ) {
44
+ return $shipping_method;
45
+ }
46
+ }
47
+ }
48
+ }
49
+ return false;
50
+ }
51
+
52
+ function flexible_shipping_get_integration_for_method( $method_id ) {
53
+ $all_shipping_methods = flexible_shipping_get_all_shipping_methods();
54
+ if ( isset( $all_shipping_methods['flexible_shipping'] ) ) {
55
+ $flexible_shipping_rates = $all_shipping_methods['flexible_shipping']->get_all_rates();
56
+ if ( isset( $flexible_shipping_rates[$method_id] ) ) {
57
+ return $flexible_shipping_rates[$method_id]['method_integration'];
58
+ }
59
+ }
60
+ return false;
61
+ }
62
+
63
+ if ( !function_exists('wpdesk_redirect') ) {
64
+ function wpdesk_redirect( $redirect ) {
65
+ if ( 1==1 && headers_sent() ) {
66
+ ?>
67
+ <span><?php printf( __( 'Redirecting. If page not redirects click %s here %s.', 'flexible-shipping'), '<a href="' . $redirect . '" >', '</a>' ); ?></span>
68
+
69
+ <script>
70
+ parent.location.replace('<?php echo $redirect; ?>');
71
+ </script>
72
+ <?php
73
+ }
74
+ else {
75
+ wp_safe_redirect($redirect);
76
+ }
77
+ exit;
78
+ }
79
+ }
80
+
81
+ if ( !function_exists( 'wpdesk__' ) ) {
82
+ function wpdesk__( $text, $domain ) {
83
+ if ( function_exists( 'icl_sw_filters_gettext' ) ) {
84
+ return icl_sw_filters_gettext( $text, $text, $domain, $text );
85
+ }
86
+ if ( function_exists( 'pll__' ) ) {
87
+ return pll__( $text );
88
+ }
89
+ return __( $text, $domain );
90
+ }
91
+ }
92
+
93
+ if ( !function_exists( 'wpdesk__e' ) ) {
94
+ function wpdesk__e( $text, $domain ) {
95
+ echo wpdesk__( $text, $domain );
96
+ }
97
+ }
98
+
99
+
classes/{logger → table-rate/logger}/class-logger-factory.php RENAMED
File without changes
classes/{logger → table-rate/logger}/class-saas-logger-downloader.php RENAMED
File without changes
classes/{logger → table-rate/logger}/class-saas-logger-settings.php RENAMED
File without changes
classes/{logger → table-rate/logger}/class-woocommerce-context-logger.php RENAMED
File without changes
classes/{multicurrency.php → table-rate/multicurrency.php} RENAMED
File without changes
classes/{multilingual.php → table-rate/multilingual.php} RENAMED
File without changes
classes/{settings → table-rate/settings}/flexible-shipping.php RENAMED
File without changes
classes/{settings → table-rate/settings}/shipping-method-form.php RENAMED
File without changes
classes/{shipping-method.php → table-rate/shipping-method.php} RENAMED
File without changes
classes/{views → table-rate/views}/html-ads.php RENAMED
File without changes
classes/{views → table-rate/views}/html-column-shipping-message.php RENAMED
File without changes
classes/{views → table-rate/views}/html-column-shipping-shipping.php RENAMED
File without changes
classes/{views → table-rate/views}/html-custom-services.php RENAMED
File without changes
classes/{views → table-rate/views}/html-menu-icon.php RENAMED
File without changes
classes/{views → table-rate/views}/html-orders-filter-form.php RENAMED
File without changes
classes/{views → table-rate/views}/html-shipping-method-rules.php RENAMED
File without changes
classes/{views → table-rate/views}/html-shipping-method-settings.php RENAMED
@@ -93,7 +93,7 @@
93
 
94
  <?php
95
  if ( ! wpdesk_is_plugin_active( 'flexible-shipping-pro/flexible-shipping-pro.php' ) )
96
- include ( 'html-ads.php' );
97
  ?>
98
 
99
  <script type="text/javascript">
93
 
94
  <?php
95
  if ( ! wpdesk_is_plugin_active( 'flexible-shipping-pro/flexible-shipping-pro.php' ) )
96
+ include( 'html-ads.php' );
97
  ?>
98
 
99
  <script type="text/javascript">
classes/{class-method-created-tracker-deactivation-data.php → tracker/class-method-created-tracker-deactivation-data.php} RENAMED
File without changes
classes/{tracker.php → tracker/tracker.php} RENAMED
File without changes
composer.lock CHANGED
@@ -4,7 +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": "f43684595701baf314af63c333c3163d",
8
  "packages": [
9
  {
10
  "name": "moneyphp/money",
@@ -339,16 +339,16 @@
339
  },
340
  {
341
  "name": "wpdesk/wp-basic-requirements",
342
- "version": "2.3.1",
343
  "source": {
344
  "type": "git",
345
  "url": "https://gitlab.com/wpdesk/wp-basic-requirements.git",
346
- "reference": "97216ee83f871426669ac57b40cc666fdf61d7cc"
347
  },
348
  "dist": {
349
  "type": "zip",
350
- "url": "https://gitlab.com/api/v4/projects/wpdesk%2Fwp-basic-requirements/repository/archive.zip?sha=97216ee83f871426669ac57b40cc666fdf61d7cc",
351
- "reference": "97216ee83f871426669ac57b40cc666fdf61d7cc",
352
  "shasum": ""
353
  },
354
  "require": {
@@ -371,20 +371,20 @@
371
  "email": "krzysiek@wpdesk.pl"
372
  }
373
  ],
374
- "time": "2019-03-25T13:11:11+00:00"
375
  },
376
  {
377
  "name": "wpdesk/wp-builder",
378
- "version": "1.1",
379
  "source": {
380
  "type": "git",
381
  "url": "https://gitlab.com/wpdesk/wp-builder.git",
382
- "reference": "7e54daed6f86260705fa65d2668ae65f9e66114f"
383
  },
384
  "dist": {
385
  "type": "zip",
386
- "url": "https://gitlab.com/api/v4/projects/wpdesk%2Fwp-builder/repository/archive.zip?sha=7e54daed6f86260705fa65d2668ae65f9e66114f",
387
- "reference": "7e54daed6f86260705fa65d2668ae65f9e66114f",
388
  "shasum": ""
389
  },
390
  "require": {
@@ -412,7 +412,7 @@
412
  "email": "krzysiek@wpdesk.pl"
413
  }
414
  ],
415
- "time": "2018-10-18T13:11:44+00:00"
416
  },
417
  {
418
  "name": "wpdesk/wp-logs",
@@ -517,16 +517,16 @@
517
  },
518
  {
519
  "name": "wpdesk/wp-notice",
520
- "version": "3.0",
521
  "source": {
522
  "type": "git",
523
  "url": "https://gitlab.com/wpdesk/wp-notice.git",
524
- "reference": "49b651f53fa0a64295bdeaa2e427e8add7114a62"
525
  },
526
  "dist": {
527
  "type": "zip",
528
- "url": "https://gitlab.com/api/v4/projects/wpdesk%2Fwp-notice/repository/archive.zip?sha=49b651f53fa0a64295bdeaa2e427e8add7114a62",
529
- "reference": "49b651f53fa0a64295bdeaa2e427e8add7114a62",
530
  "shasum": ""
531
  },
532
  "require": {
@@ -567,7 +567,7 @@
567
  "notice",
568
  "wordpress"
569
  ],
570
- "time": "2019-02-21T11:12:53+00:00"
571
  },
572
  {
573
  "name": "wpdesk/wp-persistence",
@@ -741,6 +741,128 @@
741
  }
742
  ],
743
  "time": "2018-10-18T13:44:18+00:00"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
744
  }
745
  ],
746
  "packages-dev": [
@@ -1038,16 +1160,16 @@
1038
  },
1039
  {
1040
  "name": "phpcompatibility/php-compatibility",
1041
- "version": "9.1.1",
1042
  "source": {
1043
  "type": "git",
1044
  "url": "https://github.com/PHPCompatibility/PHPCompatibility.git",
1045
- "reference": "2b63c5d284ab8857f7b1d5c240ddb507a6b2293c"
1046
  },
1047
  "dist": {
1048
  "type": "zip",
1049
- "url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibility/zipball/2b63c5d284ab8857f7b1d5c240ddb507a6b2293c",
1050
- "reference": "2b63c5d284ab8857f7b1d5c240ddb507a6b2293c",
1051
  "shasum": ""
1052
  },
1053
  "require": {
@@ -1061,7 +1183,7 @@
1061
  "phpunit/phpunit": "~4.5 || ^5.0 || ^6.0 || ^7.0"
1062
  },
1063
  "suggest": {
1064
- "dealerdirect/phpcodesniffer-composer-installer": "^0.4.3 || This Composer plugin will sort out the PHPCS 'installed_paths' automatically.",
1065
  "roave/security-advisories": "dev-master || Helps prevent installing dependencies with known security issues."
1066
  },
1067
  "type": "phpcodesniffer-standard",
@@ -1092,7 +1214,7 @@
1092
  "phpcs",
1093
  "standards"
1094
  ],
1095
- "time": "2018-12-30T23:16:27+00:00"
1096
  },
1097
  {
1098
  "name": "phpdocumentor/reflection-common",
@@ -1242,16 +1364,16 @@
1242
  },
1243
  {
1244
  "name": "phpspec/prophecy",
1245
- "version": "1.8.0",
1246
  "source": {
1247
  "type": "git",
1248
  "url": "https://github.com/phpspec/prophecy.git",
1249
- "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
1250
  },
1251
  "dist": {
1252
  "type": "zip",
1253
- "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
1254
- "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
1255
  "shasum": ""
1256
  },
1257
  "require": {
@@ -1272,8 +1394,8 @@
1272
  }
1273
  },
1274
  "autoload": {
1275
- "psr-0": {
1276
- "Prophecy\\": "src/"
1277
  }
1278
  },
1279
  "notification-url": "https://packagist.org/downloads/",
@@ -1301,7 +1423,7 @@
1301
  "spy",
1302
  "stub"
1303
  ],
1304
- "time": "2018-08-05T17:53:17+00:00"
1305
  },
1306
  {
1307
  "name": "phpunit/php-code-coverage",
@@ -2318,7 +2440,7 @@
2318
  },
2319
  {
2320
  "name": "symfony/yaml",
2321
- "version": "v3.4.27",
2322
  "source": {
2323
  "type": "git",
2324
  "url": "https://github.com/symfony/yaml.git",
@@ -2431,12 +2553,12 @@
2431
  "version": "0.14.1",
2432
  "source": {
2433
  "type": "git",
2434
- "url": "https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards.git",
2435
  "reference": "cf6b310caad735816caef7573295f8a534374706"
2436
  },
2437
  "dist": {
2438
  "type": "zip",
2439
- "url": "https://api.github.com/repos/WordPress-Coding-Standards/WordPress-Coding-Standards/zipball/cf6b310caad735816caef7573295f8a534374706",
2440
  "reference": "cf6b310caad735816caef7573295f8a534374706",
2441
  "shasum": ""
2442
  },
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": "625fa4cb52c66209fad5df2a5e0345a9",
8
  "packages": [
9
  {
10
  "name": "moneyphp/money",
339
  },
340
  {
341
  "name": "wpdesk/wp-basic-requirements",
342
+ "version": "2.4.0",
343
  "source": {
344
  "type": "git",
345
  "url": "https://gitlab.com/wpdesk/wp-basic-requirements.git",
346
+ "reference": "b006b922d8a646ede04a0ef0426783095822797a"
347
  },
348
  "dist": {
349
  "type": "zip",
350
+ "url": "https://gitlab.com/api/v4/projects/wpdesk%2Fwp-basic-requirements/repository/archive.zip?sha=b006b922d8a646ede04a0ef0426783095822797a",
351
+ "reference": "b006b922d8a646ede04a0ef0426783095822797a",
352
  "shasum": ""
353
  },
354
  "require": {
371
  "email": "krzysiek@wpdesk.pl"
372
  }
373
  ],
374
+ "time": "2019-06-05T07:55:53+00:00"
375
  },
376
  {
377
  "name": "wpdesk/wp-builder",
378
+ "version": "1.2.0",
379
  "source": {
380
  "type": "git",
381
  "url": "https://gitlab.com/wpdesk/wp-builder.git",
382
+ "reference": "3d11d9e2b2bf5d8c9f6ae9e1626f1077800f9ccd"
383
  },
384
  "dist": {
385
  "type": "zip",
386
+ "url": "https://gitlab.com/api/v4/projects/wpdesk%2Fwp-builder/repository/archive.zip?sha=3d11d9e2b2bf5d8c9f6ae9e1626f1077800f9ccd",
387
+ "reference": "3d11d9e2b2bf5d8c9f6ae9e1626f1077800f9ccd",
388
  "shasum": ""
389
  },
390
  "require": {
412
  "email": "krzysiek@wpdesk.pl"
413
  }
414
  ],
415
+ "time": "2019-06-27T07:47:17+00:00"
416
  },
417
  {
418
  "name": "wpdesk/wp-logs",
517
  },
518
  {
519
  "name": "wpdesk/wp-notice",
520
+ "version": "3.1",
521
  "source": {
522
  "type": "git",
523
  "url": "https://gitlab.com/wpdesk/wp-notice.git",
524
+ "reference": "9424a1280525a78a6468036dc6bdafc3183245ec"
525
  },
526
  "dist": {
527
  "type": "zip",
528
+ "url": "https://gitlab.com/api/v4/projects/wpdesk%2Fwp-notice/repository/archive.zip?sha=9424a1280525a78a6468036dc6bdafc3183245ec",
529
+ "reference": "9424a1280525a78a6468036dc6bdafc3183245ec",
530
  "shasum": ""
531
  },
532
  "require": {
567
  "notice",
568
  "wordpress"
569
  ],
570
+ "time": "2019-06-25T12:08:40+00:00"
571
  },
572
  {
573
  "name": "wpdesk/wp-persistence",
741
  }
742
  ],
743
  "time": "2018-10-18T13:44:18+00:00"
744
+ },
745
+ {
746
+ "name": "wpdesk/wp-wpdesk-connect",
747
+ "version": "1.1.0",
748
+ "source": {
749
+ "type": "git",
750
+ "url": "https://gitlab.com/wpdesk/wp-wpdesk-connect.git",
751
+ "reference": "f3d64b41570fc17f71cfa234835456a0d430bc6c"
752
+ },
753
+ "dist": {
754
+ "type": "zip",
755
+ "url": "https://gitlab.com/api/v4/projects/wpdesk%2Fwp-wpdesk-connect/repository/archive.zip?sha=f3d64b41570fc17f71cfa234835456a0d430bc6c",
756
+ "reference": "f3d64b41570fc17f71cfa234835456a0d430bc6c",
757
+ "shasum": ""
758
+ },
759
+ "require": {
760
+ "php": ">=5.6",
761
+ "psr/log": "^1.1",
762
+ "wpdesk/wp-builder": "^1.1",
763
+ "wpdesk/wp-view": "^1.0",
764
+ "wpdesk/wp-wpdesk-fs-shipment": "^1.0"
765
+ },
766
+ "require-dev": {
767
+ "10up/wp_mock": "^0.3",
768
+ "mockery/mockery": "^1.2",
769
+ "phpunit/phpunit": "<7",
770
+ "squizlabs/php_codesniffer": "^3.4.2",
771
+ "wp-coding-standards/wpcs": "^0.14.1"
772
+ },
773
+ "type": "library",
774
+ "autoload": {
775
+ "classmap": [
776
+ "src"
777
+ ]
778
+ },
779
+ "notification-url": "https://packagist.org/downloads/",
780
+ "authors": [
781
+ {
782
+ "name": "Krzysiek",
783
+ "email": "krzysiek@wpdesk.pl"
784
+ }
785
+ ],
786
+ "time": "2019-06-18T09:41:59+00:00"
787
+ },
788
+ {
789
+ "name": "wpdesk/wp-wpdesk-fs-shipment",
790
+ "version": "1.0.3",
791
+ "source": {
792
+ "type": "git",
793
+ "url": "https://gitlab.com/wpdesk/wp-wpdesk-fs-shipment.git",
794
+ "reference": "1d011bdcac0821c6e86d99ab123ee34e81382d35"
795
+ },
796
+ "dist": {
797
+ "type": "zip",
798
+ "url": "https://gitlab.com/api/v4/projects/wpdesk%2Fwp-wpdesk-fs-shipment/repository/archive.zip?sha=1d011bdcac0821c6e86d99ab123ee34e81382d35",
799
+ "reference": "1d011bdcac0821c6e86d99ab123ee34e81382d35",
800
+ "shasum": ""
801
+ },
802
+ "require": {
803
+ "php": ">=5.6"
804
+ },
805
+ "require-dev": {
806
+ "10up/wp_mock": "^0.3",
807
+ "mockery/mockery": "^1.2",
808
+ "phpunit/phpunit": "<7",
809
+ "squizlabs/php_codesniffer": "^3.4.2",
810
+ "wp-coding-standards/wpcs": "^0.14.1"
811
+ },
812
+ "type": "library",
813
+ "autoload": {
814
+ "classmap": [
815
+ "src"
816
+ ]
817
+ },
818
+ "notification-url": "https://packagist.org/downloads/",
819
+ "authors": [
820
+ {
821
+ "name": "Krzysiek",
822
+ "email": "krzysiek@wpdesk.pl"
823
+ }
824
+ ],
825
+ "time": "2019-07-08T08:28:27+00:00"
826
+ },
827
+ {
828
+ "name": "wpdesk/wp-wpdesk-tracker",
829
+ "version": "1.0.3",
830
+ "source": {
831
+ "type": "git",
832
+ "url": "https://gitlab.com/wpdesk/wp-wpdesk-tracker.git",
833
+ "reference": "04e8933a047245b37fc77991e330361613e8dd63"
834
+ },
835
+ "dist": {
836
+ "type": "zip",
837
+ "url": "https://gitlab.com/api/v4/projects/wpdesk%2Fwp-wpdesk-tracker/repository/archive.zip?sha=04e8933a047245b37fc77991e330361613e8dd63",
838
+ "reference": "04e8933a047245b37fc77991e330361613e8dd63",
839
+ "shasum": ""
840
+ },
841
+ "require": {
842
+ "php": ">=5.5"
843
+ },
844
+ "require-dev": {
845
+ "10up/wp_mock": "*",
846
+ "mockery/mockery": "*",
847
+ "phpunit/phpunit": "<7",
848
+ "squizlabs/php_codesniffer": "^3.0.2",
849
+ "wimg/php-compatibility": "^8",
850
+ "wp-coding-standards/wpcs": "^0.14.1"
851
+ },
852
+ "type": "library",
853
+ "autoload": {
854
+ "classmap": [
855
+ "src/"
856
+ ]
857
+ },
858
+ "notification-url": "https://packagist.org/downloads/",
859
+ "authors": [
860
+ {
861
+ "name": "Krzysiek",
862
+ "email": "krzysiek@wpdesk.pl"
863
+ }
864
+ ],
865
+ "time": "2019-04-23T13:16:55+00:00"
866
  }
867
  ],
868
  "packages-dev": [
1160
  },
1161
  {
1162
  "name": "phpcompatibility/php-compatibility",
1163
+ "version": "9.2.0",
1164
  "source": {
1165
  "type": "git",
1166
  "url": "https://github.com/PHPCompatibility/PHPCompatibility.git",
1167
+ "reference": "3db1bf1e28123fd574a4ae2e9a84072826d51b5e"
1168
  },
1169
  "dist": {
1170
  "type": "zip",
1171
+ "url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibility/zipball/3db1bf1e28123fd574a4ae2e9a84072826d51b5e",
1172
+ "reference": "3db1bf1e28123fd574a4ae2e9a84072826d51b5e",
1173
  "shasum": ""
1174
  },
1175
  "require": {
1183
  "phpunit/phpunit": "~4.5 || ^5.0 || ^6.0 || ^7.0"
1184
  },
1185
  "suggest": {
1186
+ "dealerdirect/phpcodesniffer-composer-installer": "^0.5 || This Composer plugin will sort out the PHPCS 'installed_paths' automatically.",
1187
  "roave/security-advisories": "dev-master || Helps prevent installing dependencies with known security issues."
1188
  },
1189
  "type": "phpcodesniffer-standard",
1214
  "phpcs",
1215
  "standards"
1216
  ],
1217
+ "time": "2019-06-27T19:58:56+00:00"
1218
  },
1219
  {
1220
  "name": "phpdocumentor/reflection-common",
1364
  },
1365
  {
1366
  "name": "phpspec/prophecy",
1367
+ "version": "1.8.1",
1368
  "source": {
1369
  "type": "git",
1370
  "url": "https://github.com/phpspec/prophecy.git",
1371
+ "reference": "1927e75f4ed19131ec9bcc3b002e07fb1173ee76"
1372
  },
1373
  "dist": {
1374
  "type": "zip",
1375
+ "url": "https://api.github.com/repos/phpspec/prophecy/zipball/1927e75f4ed19131ec9bcc3b002e07fb1173ee76",
1376
+ "reference": "1927e75f4ed19131ec9bcc3b002e07fb1173ee76",
1377
  "shasum": ""
1378
  },
1379
  "require": {
1394
  }
1395
  },
1396
  "autoload": {
1397
+ "psr-4": {
1398
+ "Prophecy\\": "src/Prophecy"
1399
  }
1400
  },
1401
  "notification-url": "https://packagist.org/downloads/",
1423
  "spy",
1424
  "stub"
1425
  ],
1426
+ "time": "2019-06-13T12:50:23+00:00"
1427
  },
1428
  {
1429
  "name": "phpunit/php-code-coverage",
2440
  },
2441
  {
2442
  "name": "symfony/yaml",
2443
+ "version": "v3.4.29",
2444
  "source": {
2445
  "type": "git",
2446
  "url": "https://github.com/symfony/yaml.git",
2553
  "version": "0.14.1",
2554
  "source": {
2555
  "type": "git",
2556
+ "url": "https://github.com/WordPress/WordPress-Coding-Standards.git",
2557
  "reference": "cf6b310caad735816caef7573295f8a534374706"
2558
  },
2559
  "dist": {
2560
  "type": "zip",
2561
+ "url": "https://api.github.com/repos/WordPress/WordPress-Coding-Standards/zipball/cf6b310caad735816caef7573295f8a534374706",
2562
  "reference": "cf6b310caad735816caef7573295f8a534374706",
2563
  "shasum": ""
2564
  },
flexible-shipping.php CHANGED
@@ -3,15 +3,15 @@
3
  Plugin Name: Flexible Shipping
4
  Plugin URI: https://wordpress.org/plugins/flexible-shipping/
5
  Description: Create additional shipment methods in WooCommerce and enable pricing based on cart weight or total.
6
- Version: 3.4.0
7
  Author: WP Desk
8
  Author URI: https://www.wpdesk.net/
9
  Text Domain: flexible-shipping
10
  Domain Path: /lang/
11
  Requires at least: 4.5
12
- Tested up to: 5.2.1
13
  WC requires at least: 3.1.0
14
- WC tested up to: 3.6.3
15
  Requires PHP: 5.6
16
 
17
  Copyright 2017 WP Desk Ltd.
@@ -43,8 +43,8 @@ if ( ! class_exists( 'WPDesk_Basic_Requirement_Checker' ) ) {
43
  }
44
 
45
  /* THESE TWO VARIABLES CAN BE CHANGED AUTOMATICALLY */
46
- $plugin_version = '3.4.0';
47
- $plugin_release_timestamp = '2019-05-23 15:30';
48
 
49
  $plugin_name = 'Flexible Shipping';
50
  $plugin_class_name = 'Flexible_Shipping_Plugin';
@@ -82,6 +82,6 @@ if ( $requirements_checker->are_requirements_met() ) {
82
  $requirements_checker->disable_plugin_render_notice();
83
  }
84
 
85
- require_once 'classes/tracker.php';
86
  $tracker = new WPDesk_Flexible_Shipping_Tracker();
87
  $tracker->hooks();
3
  Plugin Name: Flexible Shipping
4
  Plugin URI: https://wordpress.org/plugins/flexible-shipping/
5
  Description: Create additional shipment methods in WooCommerce and enable pricing based on cart weight or total.
6
+ Version: 3.5.0
7
  Author: WP Desk
8
  Author URI: https://www.wpdesk.net/
9
  Text Domain: flexible-shipping
10
  Domain Path: /lang/
11
  Requires at least: 4.5
12
+ Tested up to: 5.2.2
13
  WC requires at least: 3.1.0
14
+ WC tested up to: 3.6.5
15
  Requires PHP: 5.6
16
 
17
  Copyright 2017 WP Desk Ltd.
43
  }
44
 
45
  /* THESE TWO VARIABLES CAN BE CHANGED AUTOMATICALLY */
46
+ $plugin_version = '3.5.0';
47
+ $plugin_release_timestamp = '2019-07-10 14:42';
48
 
49
  $plugin_name = 'Flexible Shipping';
50
  $plugin_class_name = 'Flexible_Shipping_Plugin';
82
  $requirements_checker->disable_plugin_render_notice();
83
  }
84
 
85
+ require_once 'classes/tracker/tracker.php';
86
  $tracker = new WPDesk_Flexible_Shipping_Tracker();
87
  $tracker->hooks();
inc/wpdesk-tracker/lang/wpdesk-tracker-pl_PL.mo DELETED
Binary file
lang/flexible-shipping-pl_PL.mo CHANGED
Binary file
lang/flexible-shipping-pl_PL.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Flexible Shipping\n"
4
- "POT-Creation-Date: 2019-05-13 08:42+0200\n"
5
- "PO-Revision-Date: 2019-05-13 08:43+0200\n"
6
  "Last-Translator: Piotr Jabłonowski <piotr.jablonowski@wpdesk.net>\n"
7
  "Language-Team: Maciej Swoboda <maciej.swoboda@gmail.com>\n"
8
  "Language: pl_PL\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.2.1\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "X-Poedit-WPHeader: flexible-shipping.php\n"
15
  "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
@@ -19,431 +19,390 @@ msgstr ""
19
  "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
20
  "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
21
  "X-Poedit-SearchPath-0: .\n"
 
 
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
- "X-Poedit-SearchPathExcluded-1: vendor\n"
24
 
25
- #: classes/admin-notices.php:173
 
 
 
 
26
  #, php-format
27
- msgid ""
28
- "Flexible Shipping has changed the calculation method for shipping rules. "
29
- "Currently, the cart value for rules based on price is determined by "
30
- "WooCommerce tax option \"Display prices during cart and checkout\". You "
31
- "should check the %ssettings%s."
32
- msgstr ""
33
- "Flexible Shipping: zaktualizowane zostały metody obliczania reguł wysyłki. "
34
- "Aktualnie dla reguł opartych na cenie wartość koszyka zostanie obliczona na "
35
- "podstawie ustawienia podatków WooCommerce ”Wyświetlanie cen w sklepie”. "
36
- "Sprawdź %sustawienia podatków%s."
37
 
38
- #: classes/admin-notices.php:190
39
- msgid ""
40
- "Flexible Shipping requires at least version 2.7 of Active Payments plugin."
41
  msgstr ""
42
- "Flexible Shipping wymaga wtyczki Aktywne płatności w wersji co najmniej 2.7."
43
-
44
- #: classes/admin-notices.php:205
45
- msgid "Flexible Shipping requires at least version 1.2 of eNadawca plugin."
46
- msgstr "Flexible Shipping wymaga wtyczki eNadawca w wersji co najmniej 1.2."
47
 
48
- #: classes/admin-notices.php:220
49
- msgid ""
50
- "Flexible Shipping requires at least version 1.1 of Paczka w Ruchu plugin."
51
- msgstr ""
52
- "Flexible Shipping wymaga wtyczki Paczka w Ruchu w wersji co najmniej 1.1."
53
 
54
- #: classes/admin-notices.php:232
55
- #, php-format
56
- msgid ""
57
- "You are using WooCommerce Flexible Shipping below 1.4. Please deactivate it "
58
- "on %splugins page%s. Read about big changes in Flexible Shipping on %sour "
59
- "blog →%s"
60
- msgstr ""
61
- "Masz włączony WooCommerce Flexible Shipping w wersji starszej niż 1.4. "
62
- "Wyłącz go na %sstronie wtyczek%s. Przeczytaj o dużej zmianie we Flexible "
63
- "Shipping na %snaszym blogu →%s"
64
 
65
- #: classes/admin-notices.php:292
66
- msgid ""
67
- "Awesome, you've been using Flexible Shipping for more than 1 week. May I ask "
68
- "you to give it a 5-star rating on WordPress?"
69
- msgstr ""
70
- "Fantastycznie, korzystasz z Flexible Shipping już ponad tydzień. Czy możemy "
71
- "Cię prosić o wystawienie 5-gwiazdkowej oceny?"
72
 
73
- #: classes/admin-notices.php:294
74
- #, php-format
75
- msgid "%1$sOk, you deserved it%2$s"
76
- msgstr "%1$sTak, zasługujecie na nią%2$s"
77
 
78
- #: classes/admin-notices.php:299
 
79
  #, php-format
80
- msgid "%1$sI already did%2$s"
81
- msgstr "%1$sJuż to zrobiłem/am%2$s"
82
 
83
- #: classes/admin-notices.php:304
 
84
  #, php-format
85
- msgid "%1$sNot good enough%2$s"
86
- msgstr "%1$sNie jest wystarczająco dobra%2$s"
87
-
88
- #: classes/bulk-actions.php:46
89
- msgid "New"
90
- msgstr "Nowa"
91
-
92
- #: classes/bulk-actions.php:47 classes/bulk-actions.php:198
93
- #: classes/shipment/ajax.php:55
94
- msgid "Created"
95
- msgstr "Utworzona"
96
-
97
- #: classes/bulk-actions.php:48 classes/bulk-actions.php:199
98
- msgid "Confirmed"
99
- msgstr "Zatwierdzona"
100
-
101
- #: classes/bulk-actions.php:49
102
- msgid "Manifest"
103
- msgstr "Protokół nadania"
104
-
105
- #: classes/bulk-actions.php:50
106
- msgid "Failed"
107
- msgstr "Błąd"
108
-
109
- #: classes/bulk-actions.php:196 classes/bulk-actions.php:226
110
- msgid "Error"
111
- msgstr "Błąd"
112
-
113
- #: classes/bulk-actions.php:197
114
- msgid "New shipment"
115
- msgstr "Nowa"
116
-
117
- #: classes/bulk-actions.php:200
118
- msgid "Manifest created"
119
- msgstr "Protokół nadania utworzony"
120
 
121
- #: classes/bulk-actions.php:255 classes/bulk-actions.php:261
122
- msgid "Shipping"
123
- msgstr "Wysyłka"
124
 
125
- #: classes/bulk-actions.php:269
126
- msgid "Send shipment"
127
- msgstr "Nadaj przesyłkę"
128
 
129
- #: classes/bulk-actions.php:270
130
- msgid "Get labels"
131
- msgstr "Pobierz etykiety nadawcze"
 
 
 
 
132
 
133
- #: classes/bulk-actions.php:272
134
- msgid "Create shipping manifest"
135
- msgstr "Utwórz protokół nadania"
 
 
 
 
136
 
137
- #: classes/bulk-actions.php:294
138
- msgid "Shipment created."
139
- msgstr "Przesyłka utworzona."
 
140
 
141
- #: classes/bulk-actions.php:306
142
- msgid "No action performed."
143
- msgstr "Nie wykonano żadnych działań."
144
 
145
- #: classes/bulk-actions.php:326
146
- msgid "Label downloaded."
147
- msgstr "Etykieta została pobrana."
 
148
 
149
- #: classes/bulk-actions.php:347
 
150
  msgid ""
151
- "Unable to create temporary zip archive for labels. Check temporary folder "
152
- "configuration on server."
153
  msgstr ""
154
- "Nie można utworzyć tymczasowego archiwum zip dla etykiet. Sprawdź "
155
- "konfigurację folderu na serwerze."
156
 
157
- #: classes/bulk-actions.php:411
158
  #, php-format
159
  msgid ""
160
- "Created manifest: %s (%s). If download not start automatically click %shere"
161
- "%s."
162
  msgstr ""
163
- "Utworzone protokoły nadania: %s (%s). Jeśli pobieranie nie rozpoczęło się "
164
- "automatycznie kliknij %stutaj%s."
165
 
166
- #: classes/bulk-actions.php:423
167
  #, php-format
168
- msgid "Manifest creation error: %s (%s)."
169
- msgstr "Błąd podczas tworzenia protokołu nadania: %s (%s)."
170
-
171
- #: classes/bulk-actions.php:434
172
- msgid "No manifests created."
173
- msgstr "Nie zostały utworzone protokoły nadania."
174
 
175
- #: classes/bulk-actions.php:448
176
  #, php-format
177
- msgid "Bulk send shipment - processed orders: %d"
178
- msgstr "Masowe nadawanie przesyłek - przetworzone zamówienia: %d"
 
 
 
 
179
 
180
- #: classes/bulk-actions.php:456
181
  #, php-format
182
- msgid "Bulk labels - processed orders: %d. No labels for processed orders."
 
 
183
  msgstr ""
184
- "Masowe pobieranie etykiet - przetworzone zamówienia: %d. Brak etykiet dla "
185
- "przetworzonych zamówień."
186
 
187
- #: classes/bulk-actions.php:475
188
  #, php-format
189
  msgid ""
190
- "Bulk labels - processed orders: %d. If download not start automatically "
191
- "click %shere%s."
192
  msgstr ""
193
- "Masowe pobieranie etykiet - przetworzone zamówienia: %d. Jeśli pobieranie "
194
- "nie rozpoczęło się automatycznie kliknij %stutaj%s ."
195
 
196
- #: classes/bulk-actions.php:485
197
  #, php-format
198
- msgid "Bulk shipping manifest - processed orders: %d"
199
- msgstr "Zbiorcze tworzenie protokołów nadania - przetworzone zamówienia: %d"
 
 
 
 
200
 
201
- #: classes/class-flexible-shipping-plugin.php:414
202
  #, php-format
203
- msgid "How can We make Flexible Shipping better for you? %sJust write to us.%s"
 
 
204
  msgstr ""
205
- "Jak możemy sprawić, aby Flexible Shipping był lepszy? %sNapisz do nas.%s"
206
-
207
- #: classes/class-flexible-shipping-plugin.php:462
208
- msgid "Settings"
209
- msgstr "Ustawienia"
210
-
211
- #: classes/class-flexible-shipping-plugin.php:464
212
- msgid "Docs"
213
- msgstr "Docs"
214
-
215
- #: classes/class-flexible-shipping-plugin.php:465
216
- msgid "Support"
217
- msgstr "Wsparcie"
218
 
219
- #: classes/class-flexible-shipping-plugin.php:471
220
- msgid "Upgrade"
221
- msgstr "Kup PRO"
222
-
223
- #: classes/class-order-add-shipping.php:38
224
  #, php-format
225
- msgid "Shipment for order %1$s, %2$s"
226
- msgstr "Przesyłka do zamówienia %s, %s"
227
 
228
- #: classes/class-order-add-shipping.php:53
229
- #, php-format
230
- msgid "Added new shipment via metabox. Shipment ID: %s"
231
- msgstr "Dodano nową przesyłkę. Numer przesyłki: %s"
 
232
 
233
- #: classes/class-order-add-shipping.php:104
234
- msgid "Select integration"
235
- msgstr "Wybierz integrację"
236
 
237
- #: classes/class-order-add-shipping.php:113
238
- msgid "Add shipping"
239
- msgstr "Dodaj przesyłkę"
240
 
241
- #: classes/class-pointer-messages.php:53
242
- msgid "Watch how to use Flexible Shipping"
243
- msgstr "Obejrzyj konfigurację Flexible Shipping"
244
 
245
- #: classes/class-pointer-messages.php:71
246
- msgid "How to start with Flexible Shipping"
247
- msgstr "Jak zacząć z Flexible Shipping?"
 
 
248
 
249
- #: classes/csv/class-csv-importer.php:86
250
- msgid ""
251
- "Sorry, there has been an error. The CSV is invalid or incorrect file type."
252
  msgstr ""
253
- "Przepraszamy, wystąpił błąd. Plik CSV jest niepoprawny lub typ pliku jest "
254
- "nieprawidłowy."
255
 
256
- #: classes/csv/class-csv-importer.php:92 classes/csv/class-csv-importer.php:94
257
- msgid "import"
258
- msgstr "import"
259
 
260
- #: classes/csv/class-csv-importer.php:105
261
- #, php-format
262
- msgid "Free Shipping value %1$s is not valid number. Row number %2$d."
263
- msgstr "Wartość darmowej wysyłki %1$s jest niepoprawna. Numer wiersza %2$d."
264
 
265
- #: classes/csv/class-csv-importer.php:112
266
- #, php-format
267
- msgid "Maximum Cost value %1$s is not valid number. Row number %2$d."
268
- msgstr "Maksymalny koszt %1$s jest niepoprawny. Numer wiersza %2$d."
 
269
 
270
- #: classes/csv/class-csv-importer.php:124
271
  #, php-format
272
- msgid "Invalid value for Calculation Method in row number %d."
273
- msgstr "Nieprawidłowa wartość dla Metody obliczania w wierszu %d."
274
 
275
- #: classes/csv/class-csv-importer.php:154
276
- #, php-format
277
- msgid "%1$s value %2$s is not valid number. Row number %3$d."
278
- msgstr "%1$s wartość %2$s jest niepoprawna. Numer wiersza %3$d."
279
 
280
- #: classes/csv/class-csv-importer.php:194
281
- #, php-format
282
- msgid "Error while creating shipping class: %1$s, %2$s"
283
- msgstr "Błąd podczas tworzenia klasy wysyłkowej: %1$s, %2$s"
284
 
285
- #: classes/csv/class-csv-importer.php:227
286
  #, php-format
287
- msgid "Invalid value for Based On in row number %d."
288
- msgstr "Nieprawidłowa wartość dla Oparte na w wierszu %d."
 
289
 
290
- #: classes/csv/class-csv-importer.php:294
291
- #, php-format
292
- msgid "Shipping method %1$s imported as %2$s."
293
- msgstr "Metoda wysyłki %1$s została zaimportowana jako %2$s."
294
 
295
- #: classes/logger/class-saas-logger-downloader.php:57
296
- msgid "File not exists!"
297
- msgstr "Plik nie istnieje!"
 
 
 
298
 
299
- #: classes/logger/class-saas-logger-downloader.php:60
300
- msgid "Insufficient privileges!"
301
- msgstr "Niewystarczające uprawnienia!"
 
 
 
302
 
303
- #: classes/logger/class-saas-logger-settings.php:95
304
- msgid "Enable Debug Mode"
305
- msgstr "Włącz tryb debug"
306
 
307
- #: classes/logger/class-saas-logger-settings.php:96
308
- msgid "Debug mode"
309
- msgstr "Tryb debug"
 
310
 
311
- #: classes/logger/class-saas-logger-settings.php:103
312
- #, php-format
313
- msgid "%1$sDownload debug.log file%2$s"
314
- msgstr "%1$sPobierz plik debug.log%2$s"
 
315
 
316
- #: classes/manifest/cpt-shipping-manifest.php:60
317
- #: classes/manifest/cpt-shipping-manifest.php:62
318
- #: classes/manifest/cpt-shipping-manifest.php:64
319
- #: classes/manifest/cpt-shipping-manifest.php:97
320
- msgid "Shipping Manifests"
321
- msgstr "Protokoły nadania"
322
 
323
- #: classes/manifest/cpt-shipping-manifest.php:61
324
- msgid "Shipping Manifest"
325
- msgstr "Protokół nadania"
326
 
327
- #: classes/manifest/cpt-shipping-manifest.php:65
328
- msgid "View Shipping Manifests"
329
- msgstr "Wyświetl protokół nadania"
 
330
 
331
- #: classes/manifest/cpt-shipping-manifest.php:66
332
- msgid "Add new Shipping Manifest"
333
- msgstr "Dodaj nowy Protokół nadania"
334
 
335
- #: classes/manifest/cpt-shipping-manifest.php:67
336
- msgid "Add new Shipping Manifests"
337
- msgstr "Dodaj nowe protokoły nadania"
 
338
 
339
- #: classes/manifest/cpt-shipping-manifest.php:68
340
- msgid "Edit Shipping Manifest"
341
- msgstr "Edytuj protokół nadania"
342
 
343
- #: classes/manifest/cpt-shipping-manifest.php:69
344
- msgid "Save Shipping Manifest"
345
- msgstr "Zapisz protokół nadania"
 
346
 
347
- #: classes/manifest/cpt-shipping-manifest.php:70
348
- msgid "Search Shipping Manifests"
349
- msgstr "Szukaj protokół nadania"
 
350
 
351
- #: classes/manifest/cpt-shipping-manifest.php:71
352
- msgid "Shipping Manifests not found"
353
- msgstr "Nie znaleziono protokołów nadania"
 
354
 
355
- #: classes/manifest/cpt-shipping-manifest.php:72
356
- msgid "Shipping Manifests not found in trash"
357
- msgstr "Nie znaleziono protokołów nadania w koszu"
 
358
 
359
- #: classes/manifest/cpt-shipping-manifest.php:74
360
- msgid "Shipping Manifests."
361
- msgstr "Protokoły nadania."
362
 
363
- #: classes/manifest/cpt-shipping-manifest.php:116
364
- #: classes/shipment/cpt-shipment.php:50 classes/shipment/cpt-shipment.php:52
365
- #: classes/shipment/cpt-shipment.php:54
366
- msgid "Shipments"
367
- msgstr "Przesyłki"
368
 
369
- #: classes/manifest/cpt-shipping-manifest.php:160
370
- msgid "Date"
371
- msgstr "Data"
372
 
373
- #: classes/manifest/cpt-shipping-manifest.php:161
374
- #: classes/manifest/views/filter-form.php:5
375
- #: classes/settings/shipping-method-form.php:137
376
- #: classes/views/html-orders-filter-form.php:5
377
- #: classes/views/html-shipping-method-settings.php:15
378
- msgid "Integration"
379
- msgstr "Integracja"
380
 
381
- #: classes/manifest/cpt-shipping-manifest.php:162
382
- msgid "Number"
383
- msgstr "Numer"
 
 
384
 
385
- #: classes/manifest/cpt-shipping-manifest.php:163
386
- msgid "Shipments count"
387
- msgstr "Liczba przesyłek"
388
 
389
- #: classes/manifest/cpt-shipping-manifest.php:164
390
- msgid "Actions"
391
- msgstr "Akcje"
392
 
393
- #: classes/manifest/cpt-shipping-manifest.php:219
394
- #: classes/manifest/cpt-shipping-manifest.php:243
395
- #: classes/saas/collection-points/class-saas-collection-points-ajax.php:76
396
- #: classes/shipment/cpt-shipment.php:190
397
- msgid "Invalid nonce!"
398
- msgstr "Błąd weryfikacji nonce!"
399
 
400
- #: classes/manifest/functions.php:16
401
  #, php-format
402
- msgid "Shipping manifest %s, %s"
403
- msgstr "Protokół nadania %s, %s"
404
 
405
- #: classes/manifest/views/column-actions.php:1
406
- msgid "Download"
407
- msgstr "Pobierz"
408
 
409
- #: classes/manifest/views/column-actions.php:2
410
- #: classes/shipment/saas/views/order-metabox-actions.php:15
411
- #: inc/wpdesk-tracker/views/tracker-deactivate.php:78
412
- msgid "Cancel"
413
- msgstr "Anuluj"
414
 
415
- #: classes/manifest/views/filter-form.php:4
416
- msgid "All manifests"
417
- msgstr "Wszystkie protokoły nadania"
418
 
419
- #: classes/manifest/views/manifest-metabox.php:7
420
- #: classes/manifest/views/manifest-metabox.php:47
421
- #: classes/shipment/cpt-shipment.php:51
422
- #: templates/email/after_order_table.php:12
423
- #: templates/myaccount/after_order_table.php:12
424
- msgid "Shipment"
425
- msgstr "Przesyłka"
426
 
427
- #: classes/manifest/views/manifest-metabox.php:10
428
- #: classes/manifest/views/manifest-metabox.php:50
429
- msgid "Order"
430
- msgstr "Zamówienie"
 
431
 
432
- #. Plugin Name of the plugin/theme
433
- #: classes/multilingual.php:44 classes/multilingual.php:47
434
- #: classes/multilingual.php:50 classes/saas/class-saas-settings.php:87
435
- #: classes/settings/flexible-shipping.php:16
436
- #: classes/settings/flexible-shipping.php:30
437
- #: classes/settings/shipping-method-form.php:79 classes/shipping-method.php:34
438
- #: classes/shipping-method.php:35 classes/shipping-method.php:53
439
- msgid "Flexible Shipping"
440
- msgstr "Flexible Shipping"
441
 
442
- #: classes/saas/checkout-fields/class-saas-checkout-field-collection-points.php:123
 
 
 
 
443
  msgid "Select point from map"
444
  msgstr "Wybierz punkt z mapy"
445
 
446
- #: classes/saas/class-saas-bad-credentials-exception.php:17
447
  #, php-format
448
  msgid ""
449
  "The Connect Key that you entered is invalid. Please enter a valid key. "
@@ -452,24 +411,24 @@ msgstr ""
452
  "Wprowadzony klucz Connect jest nieprawidłowy. Proszę wprowadzić prawidłowy "
453
  "klucz. %1$sPobierz swój klucz Connect →%2$s"
454
 
455
- #: classes/saas/class-saas-cache-settings.php:67
456
- #: classes/saas/class-saas-settings-service-checkbox.php:127
457
  msgid "Enable"
458
  msgstr "Włącz"
459
 
460
- #: classes/saas/class-saas-cache-settings.php:68
461
  msgid "Cache"
462
  msgstr "Cache"
463
 
464
- #: classes/saas/class-saas-cache-settings.php:69
465
  msgid "Enables Flexible Shipping Connect cache. Disable only for debugging."
466
  msgstr "Włącza cache Flexible Shipping Connect. Wyłącz tylko do debugowania."
467
 
468
- #: classes/saas/class-saas-connection-status-ajax.php:55
469
  msgid "Something go wrong!"
470
  msgstr "Coś poszło nie tak!"
471
 
472
- #: classes/saas/class-saas-connection-status-ajax.php:61
473
  #, php-format
474
  msgid ""
475
  "Invalid response from Flexible Shipping Connect platform. Response code: "
@@ -477,23 +436,23 @@ msgid ""
477
  msgstr ""
478
  "Nieprawidłowa odpowiedź Flexible Shipping Connect. Kod odpowiedzi: %1$s."
479
 
480
- #: classes/saas/class-saas-connection-status-ajax.php:69
481
  msgid "OK"
482
  msgstr "OK"
483
 
484
- #: classes/saas/class-saas-connection-status-field.php:63
485
  msgid "Checking..."
486
  msgstr "Sprawdzanie…"
487
 
488
- #: classes/saas/class-saas-connection-status-field.php:67
489
  msgid "Something go wrong! (AJAX)"
490
  msgstr "Coś poszło nie tak! (AJAX)"
491
 
492
- #: classes/saas/class-saas-connection-status-field.php:70
493
  msgid "Add credentials"
494
  msgstr "Dodaj ustawienia"
495
 
496
- #: classes/saas/class-saas-connection.php:250
497
  msgid ""
498
  "Your store has been connected to Flexible Shipping Connect. Choose from the "
499
  "available shipping integrations below."
@@ -501,7 +460,7 @@ msgstr ""
501
  "Twój sklep został podłączony do Flexible Shipping Connect. Wybierz jedną z "
502
  "dostępnych poniżej integracji wysyłkowych."
503
 
504
- #: classes/saas/class-saas-connection.php:260
505
  msgid ""
506
  "You are now disconnected from Flexible Shipping Connect. All shipping "
507
  "services have been disabled. To use Flexible Shipping Connect again, please "
@@ -511,11 +470,11 @@ msgstr ""
511
  "wysyłkowe zostały wyłączone. Aby ponownie użyć Flexible Shipping Connect, "
512
  "wprowadź ważny klucz Connect."
513
 
514
- #: classes/saas/class-saas-connection.php:270
515
  msgid "Your store is already connected to Flexible Shipping Connect!"
516
  msgstr "Twój sklep jest już podłączony do Flexible Shipping Connect!"
517
 
518
- #: classes/saas/class-saas-connection.php:281
519
  #, php-format
520
  msgid ""
521
  "Your store (%1$s) is already registered on another account. You can register "
@@ -525,12 +484,12 @@ msgstr ""
525
  "zarejestrować swoją domenę tylko na jednym koncie. Jeśli masz pytania, "
526
  "%2$sskontaktuj się z nami%3$s."
527
 
528
- #: classes/saas/class-saas-connection.php:330
529
  #, php-format
530
  msgid "Message from platform: %1$s%2$s%3$s"
531
  msgstr "Komunikat z platformy: %1$s%2$s%3$s"
532
 
533
- #: classes/saas/class-saas-connection.php:342
534
  #, php-format
535
  msgid ""
536
  "FS Connect is undergoing maintenance. To get more information about the "
@@ -540,14 +499,14 @@ msgstr ""
540
  "temat statusu platformy sprawdź %1$sstatus.flexibleshipping.com &rarr;%2$s"
541
  "%3$s"
542
 
543
- #: classes/saas/class-saas-connection.php:366
544
  msgid ""
545
  "There are some connection problems. Please try again in a few minutes. "
546
  "Thanks!"
547
  msgstr ""
548
  "Chwilowe problemy z połączeniem. Spróbuj ponownie za kilka minut. Dziękujemy!"
549
 
550
- #: classes/saas/class-saas-connection.php:372
551
  #, php-format
552
  msgid ""
553
  "To get more information about the platform status check %1$sstatus."
@@ -556,7 +515,7 @@ msgstr ""
556
  "Aby uzyskać więcej informacji na temat statusu platformy sprawdź %1$sstatus."
557
  "flexibleshipping.com &rarr;%2$s"
558
 
559
- #: classes/saas/class-saas-connection.php:397
560
  #, php-format
561
  msgid ""
562
  "The Connect Key that you entered is invalid. Please enter a valid key. "
@@ -567,72 +526,85 @@ msgstr ""
567
  "klucz. %1$sZarejestruj się%3$s lub zaloguj na %2$sistniejące konto%3$s, aby "
568
  "otrzymać klucz."
569
 
570
- #: classes/saas/class-saas-connection.php:578
571
  msgid "Disconnect"
572
  msgstr "Rozłącz"
573
 
574
- #: classes/saas/class-saas-connection.php:582
575
  msgid "Connect"
576
  msgstr "Połącz"
577
 
578
- #: classes/saas/class-saas-free-shipping-metadata-handler.php:36
579
  #, php-format
580
  msgid "%1$s (free shipping)"
581
  msgstr "%1$s (darmowa wysyłka)"
582
 
583
- #: classes/saas/class-saas-live-rates-fallback-metadata-handler.php:37
584
  #, php-format
585
  msgid "%1$s (fallback)"
586
  msgstr "%1$s (stawka awaryjna)"
587
 
588
- #: classes/saas/class-saas-live-rates-handler.php:460
589
  #, php-format
590
  msgid "Flexible Shipping Fallback (%1$s): %2$s"
591
  msgstr "Stawka awaryjna Flexible Shipping (%1$s): %2$s"
592
 
593
- #: classes/saas/class-saas-live-rates-handler.php:513
594
  #, php-format
595
  msgid "Invalid live rates response! Error code: %1$s"
596
  msgstr "Nieprawidłowa odpowiedź dla stawek live! Kod błędu: %1$s"
597
 
598
- #: classes/saas/class-saas-live-rates-handler.php:532
599
  #, php-format
600
  msgid "Live rates response exception %1$s; %2$s occurred while sending request"
601
  msgstr ""
602
  "Zwrócony komunikat błędu dla stawek live: %1$s. Kod błędu dla przesłanego "
603
  "żądania: %2$s"
604
 
605
- #: classes/saas/class-saas-new-courier-settings-section.php:47
606
  #, php-format
607
  msgid "Do not you see your courier? %1$sCheck planned integrations →%2$s"
608
  msgstr "Nie widzisz swojego kuriera? %1$sSprawdź planowane integracje →%2$s"
609
 
610
- #: classes/saas/class-saas-settings-service-checkbox.php:78
611
  msgid "Invalid requireWordpressPluginVersion capability!"
612
  msgstr "Invalid requireWordpressPluginVersion capability!"
613
 
614
- #: classes/saas/class-saas-settings-service-checkbox.php:83
615
  #, php-format
616
  msgid ""
617
  "This integration requires Flexible Shipping Plugin in version %1$s or newer!"
618
  msgstr ""
619
  "Ta integracja wymaga wtyczki Flexible Shipping w wersji %1$s lub nowszej!"
620
 
621
- #: classes/saas/class-saas-settings-service-checkbox.php:92
622
  #, php-format
623
  msgid "Go to %s settings</a>"
624
  msgstr "Przejdź do ustawień %s</a>"
625
 
626
- #: classes/saas/class-saas-settings-service-checkbox.php:110
627
  #, php-format
628
  msgid "%1$s%2$s (new)%3$s"
629
  msgstr "%1$s%2$s (nowość)%3$s"
630
 
631
- #: classes/saas/class-saas-settings.php:251
 
 
 
 
 
 
 
 
 
 
 
 
 
632
  msgid "Connect Services"
633
  msgstr "Usługi Connect"
634
 
635
- #: classes/saas/class-saas-settings.php:252
636
  msgid ""
637
  "Enable services to automate shipping and print labels with Flexible Shipping "
638
  "Connect."
@@ -640,28 +612,28 @@ msgstr ""
640
  "Włącz usługi, aby automatyzować wysyłkę i pobierać etykiety dzięki Flexible "
641
  "Shipping Connect."
642
 
643
- #: classes/saas/class-saas-settings.php:305
644
  msgid "Advanced settings"
645
  msgstr "Ustawienia zaawansowane"
646
 
647
- #: classes/saas/class-saas-shipment-order-auto-complete.php:59
648
  msgid "Order status changed automatically by Flexible Shipping Plugin."
649
  msgstr ""
650
  "Status zamówienia zmieniony automatycznie przez wtyczkę Flexible Shipping."
651
 
652
- #: classes/saas/class-saas-shipment-settings-field.php:37
653
  msgid "Create shipments"
654
  msgstr "Utwórz przesyłkę"
655
 
656
- #: classes/saas/class-saas-shipment-settings-field.php:42
657
  msgid "Manually"
658
  msgstr "Manualnie"
659
 
660
- #: classes/saas/class-saas-shipment-settings-field.php:43
661
  msgid "Automatically"
662
  msgstr "Automatycznie"
663
 
664
- #: classes/saas/class-saas-shipment-settings-field.php:45
665
  msgid ""
666
  "Choose to create shipments manually or automatically based on the order "
667
  "status."
@@ -669,47 +641,47 @@ msgstr ""
669
  "Wybierz opcję ręcznego lub automatycznego tworzenia przesyłek w oparciu o "
670
  "status zamówienia."
671
 
672
- #: classes/saas/class-saas-shipment-settings-field.php:49
673
  msgid "Order status"
674
  msgstr "Status zamówienia"
675
 
676
- #: classes/saas/class-saas-shipment-settings-field.php:54
677
  msgid "Select order status for automatic shipment creation."
678
  msgstr "Wybierz status zamówienia do automatycznego tworzenia przesyłek."
679
 
680
- #: classes/saas/class-saas-shipment-settings-field.php:58
681
  msgid "Complete order"
682
  msgstr "Zamówienie zrealizowane"
683
 
684
- #: classes/saas/class-saas-shipment-settings-field.php:61
685
  msgid "Enable automatic order status change"
686
  msgstr "Włącz automatyczną zmianę statusu zamówienia"
687
 
688
- #: classes/saas/class-saas-shipment-settings-field.php:63
689
  msgid "Automatically change order status to completed after creating shipment."
690
  msgstr ""
691
  "Automatyczna zmiana statusu zamówienia na zrealizowane po utworzeniu "
692
  "przesyłki."
693
 
694
- #: classes/saas/class-saas-shipping-service-settings.php:247
695
  msgid "Invalid format - contact with flexibleshipping.com administrator."
696
  msgstr "Invalid format - contact with flexibleshipping.com administrator."
697
 
698
- #: classes/saas/class-saas-shipping-service-settings.php:254
699
  #, php-format
700
  msgid "Ups, something is wrong. Error code: %1$s."
701
  msgstr "Ups, coś poszło nie tak. Kod błędu: %1$s."
702
 
703
- #: classes/saas/class-saas-shipping-service.php:546
704
  msgid "Rates type"
705
  msgstr "Typ stawek"
706
 
707
- #: classes/saas/class-saas-shipping-service.php:550
708
- #: classes/saas/class-saas-shipping-service.php:562
709
  msgid "Custom"
710
  msgstr "Własne"
711
 
712
- #: classes/saas/class-saas-shipping-service.php:554
713
  #, php-format
714
  msgid ""
715
  "Choose custom rates to set a custom shipping cost (this method will be the "
@@ -720,27 +692,27 @@ msgstr ""
720
  "wysyłki będzie wybrana usługa %1$s). Wybierz stawki Live, jeśli chcesz "
721
  "prezentować usługi i stawki wg. adresu klienta."
722
 
723
- #: classes/saas/class-saas-shipping-service.php:561
724
  msgid "Live"
725
  msgstr "Live"
726
 
727
- #: classes/saas/class-saas-shipping-service.php:580
728
  msgid "Custom services"
729
  msgstr "Usługi"
730
 
731
- #: classes/saas/class-saas-shipping-service.php:584
732
  msgid "Enable services custom settings"
733
  msgstr "Włącz własne ustawienia usług"
734
 
735
- #: classes/saas/class-saas-shipping-service.php:626
736
  msgid "Fallback"
737
  msgstr "Stawka awaryjna"
738
 
739
- #: classes/saas/class-saas-shipping-service.php:627
740
  msgid "Enable fallback"
741
  msgstr "Włącz stawkę awaryjną"
742
 
743
- #: classes/saas/class-saas-shipping-service.php:629
744
  msgid ""
745
  "Enable to offer flat rate cost for shipping so that the user can still "
746
  "checkout, if API returns no matching rates."
@@ -748,36 +720,36 @@ msgstr ""
748
  "Włącz, aby oferować płaską stawkę wysyłki. Klient będzie mógł zrealizować "
749
  "zamówienia jeśli API nie zwróci żadnych usług."
750
 
751
- #: classes/saas/class-saas-shipping-service.php:762
752
  #, php-format
753
  msgid "You need to configure the service. %1$sGo to %2$s settings.%3$s"
754
  msgstr "Musisz skonfigurować usługę. %1$sPrzejdź do %2$s ustawień.%3$s"
755
 
756
- #: classes/saas/class-saas-shipping-services-manager.php:173
757
  #, php-format
758
  msgid "%1$sYour settings have been saved.%2$s"
759
  msgstr "%1$sUstawienia zostały zapisane.%2$s"
760
 
761
- #: classes/saas/class-saas-shipping-services.php:102
762
  msgid "Services"
763
  msgstr "Usługi"
764
 
765
- #: classes/saas/class-saas-user-registration.php:128
766
- #: classes/saas/class-saas-user-registration.php:129
767
  msgid "Flexible Shipping Connect Registration"
768
  msgstr "Rejestracja Flexible Shipping Connect"
769
 
770
- #: classes/saas/class-saas-user-registration.php:203
771
  msgid ""
772
  "There are some connection problems. Please try again in few minutes. Thanks!"
773
  msgstr ""
774
  "Chwilowe problemy z połączeniem. Spróbuj ponownie za kilka minut. Dziękujemy!"
775
 
776
- #: classes/saas/class-saas-user-registration.php:212
777
  msgid "Please enter a valid email!"
778
  msgstr "Proszę podać poprawny adres e-mail!"
779
 
780
- #: classes/saas/class-saas-user-registration.php:225
781
  #, php-format
782
  msgid ""
783
  "%1$sAccount created, please check your email and click the activation link "
@@ -788,7 +760,7 @@ msgstr ""
788
  "połączyć (%3$s).%2$s Jeśli nie otrzymałeś e-maila, proszę %4$sskontaktuj się "
789
  "z nami%5$s."
790
 
791
- #: classes/saas/class-saas-user-registration.php:249
792
  #, php-format
793
  msgid ""
794
  "Your store (%1$s) is already registered with another account! You can "
@@ -799,7 +771,7 @@ msgstr ""
799
  "zarejestrować swoją domenę za pomocą jednego konta. Jeśli masz pytania, "
800
  "%2$sskontaktuj się z nami%3$s."
801
 
802
- #: classes/saas/class-saas-user-registration.php:271
803
  #, php-format
804
  msgid ""
805
  "Our demo does not support Flexible Shipping Connect registration. Try FS "
@@ -808,7 +780,7 @@ msgstr ""
808
  "Nasze demo nie obsługuje rejestracji Flexible Shipping Connect. Wypróbuj FS "
809
  "Connect za darmo. %1$sSprawdź teraz →%2$s"
810
 
811
- #: classes/saas/class-saas-user-registration.php:298
812
  #, php-format
813
  msgid ""
814
  "Account with this email is already registered! We emailed your Connect Key "
@@ -819,37 +791,44 @@ msgstr ""
819
  "kluczem Connect do %1$s.<br>Wpisz klucz %2$stutaj%4$s. Możesz również "
820
  "uzyskać klucz logując się na %3$sswoje konto%4$s."
821
 
822
- #: classes/saas/class-saas-user-registration.php:316
823
  #, php-format
824
  msgid "Unknown response code from Flexible Shipping Connect API (%s)."
825
  msgstr "Nieznany kod odpowiedzi z API Flexible Shipping Connect (%s)."
826
 
827
- #: classes/saas/collection-points/class-saas-collection-points-map.php:47
 
 
 
 
 
 
 
828
  msgid "Points can not be found. Check the shipping address."
829
  msgstr "Nie można znaleźć punktów. Sprawdź adres wysyłki."
830
 
831
- #: classes/saas/collection-points/class-saas-collection-points-map.php:48
832
  msgid "It's your location"
833
  msgstr "Twoja lokalizacja"
834
 
835
- #: classes/saas/collection-points/class-saas-shipping-service-collection-points.php:79
836
  msgid "Cannot get data for this address!"
837
  msgstr "Nie można uzyskać danych dla tego adresu!"
838
 
839
- #: classes/saas/collection-points/views/map.php:4
840
  msgid "Select point"
841
  msgstr "Wybierz punkt"
842
 
843
- #: classes/saas/collection-points/views/map.php:116
844
  msgid "Select"
845
  msgstr "Wybierz"
846
 
847
- #: classes/saas/views/html-boxes-content.php:4
848
- #: classes/saas/views/html-boxes-content.php:5
849
  msgid "Print Labels"
850
  msgstr "Drukuj etykiety"
851
 
852
- #: classes/saas/views/html-boxes-content.php:6
853
  msgid ""
854
  "Download printable PDF shipping labels directly from WooCommerce orders list "
855
  "in bulk or one by one from order details."
@@ -857,15 +836,15 @@ msgstr ""
857
  "Pobieraj etykiety wysyłkowe bezpośrednio z listy zamówień WooCommerce lub "
858
  "edycji zamówienia."
859
 
860
- #: classes/saas/views/html-boxes-content.php:10
861
- #: classes/saas/views/html-boxes-content.php:11
862
- #: classes/saas/views/html-flexible-shipping-connect-notice.php:90
863
- #: classes/saas/views/html-flexible-shipping-connect-notice.php:91
864
  msgid "Calculate Rates"
865
  msgstr "Obliczaj stawki"
866
 
867
- #: classes/saas/views/html-boxes-content.php:12
868
- #: classes/saas/views/html-flexible-shipping-connect-notice.php:92
869
  msgid ""
870
  "Calculate shipping rates in real time, and get available service types and "
871
  "expected delivery time based on customer's address."
@@ -873,15 +852,15 @@ msgstr ""
873
  "Obliczaj stawki wysyłki w czasie rzeczywistym i otrzymuj dostępne rodzaje "
874
  "usług w oparciu o adres klienta."
875
 
876
- #: classes/saas/views/html-boxes-content.php:16
877
- #: classes/saas/views/html-boxes-content.php:17
878
- #: classes/saas/views/html-flexible-shipping-connect-notice.php:96
879
- #: classes/saas/views/html-flexible-shipping-connect-notice.php:97
880
  msgid "Track Parcels"
881
  msgstr "Śledź przesyłki"
882
 
883
- #: classes/saas/views/html-boxes-content.php:18
884
- #: classes/saas/views/html-flexible-shipping-connect-notice.php:98
885
  msgid ""
886
  "Always keep your customers (and yourself) up to date with automatic "
887
  "confirmation emails with tracking link and delivery status."
@@ -889,15 +868,15 @@ msgstr ""
889
  "Przekazuj linki do śledzenia przesyłki w automatycznych mailach "
890
  "transakcyjnych do klientów."
891
 
892
- #: classes/saas/views/html-boxes-content.php:22
893
- #: classes/saas/views/html-boxes-content.php:23
894
- #: classes/saas/views/html-flexible-shipping-connect-notice.php:102
895
- #: classes/saas/views/html-flexible-shipping-connect-notice.php:103
896
  msgid "Automate Shipping"
897
  msgstr "Automatyzuj wysyłkę"
898
 
899
- #: classes/saas/views/html-boxes-content.php:24
900
- #: classes/saas/views/html-flexible-shipping-connect-notice.php:104
901
  msgid ""
902
  "Automatically create shipments and print labels based on order status. "
903
  "Change order status after shipment creation."
@@ -906,12 +885,12 @@ msgstr ""
906
  "zamówienia. Status zamówienia zmieni się automatycznie po utworzeniu "
907
  "przesyłki."
908
 
909
- #: classes/saas/views/html-boxes-content.php:28
910
- #: classes/saas/views/html-boxes-content.php:29
911
  msgid "Create Shipments"
912
  msgstr "Twórz przesyłki"
913
 
914
- #: classes/saas/views/html-boxes-content.php:30
915
  msgid ""
916
  "Create shipments with predefined services, sizes and weights automatically "
917
  "filled in from order items."
@@ -919,15 +898,15 @@ msgstr ""
919
  "Twórz przesyłki z ustawionymi usługami, rozmiarami i wagami automatycznie "
920
  "wypełnionymi z pozycji zamówienia."
921
 
922
- #: classes/saas/views/html-boxes-content.php:34
923
- #: classes/saas/views/html-boxes-content.php:35
924
- #: classes/saas/views/html-flexible-shipping-connect-notice.php:108
925
- #: classes/saas/views/html-flexible-shipping-connect-notice.php:109
926
  msgid "Manage Orders"
927
  msgstr "Zarządzaj zamówieniami"
928
 
929
- #: classes/saas/views/html-boxes-content.php:36
930
- #: classes/saas/views/html-flexible-shipping-connect-notice.php:110
931
  msgid ""
932
  "Get a complete overview of your orders and shipments in your WooCommerce "
933
  "dashboard with shipments statuses and filters."
@@ -935,20 +914,20 @@ msgstr ""
935
  "Zyskaj możliwość kompletnego zarządzania zamówieniami i przesyłkami "
936
  "bezpośrednio z panelu WooCommerce za pomocą statusów i filtrów."
937
 
938
- #: classes/saas/views/html-boxes-content.php:43
939
- #: classes/saas/views/html-flexible-shipping-connect-notice.php:19
940
  msgid "Ship your orders faster with Flexible Shipping Connect"
941
  msgstr "Wysyłaj zamówienia szybciej z Flexible Shipping Connect"
942
 
943
- #: classes/saas/views/html-boxes-content.php:62
944
  msgid "Sign up now!"
945
  msgstr "Zarejestruj się teraz!"
946
 
947
- #: classes/saas/views/html-field-saas-connection.php:9
948
  msgid "Flexible Shipping Connect"
949
  msgstr "Flexible Shipping Connect"
950
 
951
- #: classes/saas/views/html-field-saas-connection.php:16
952
  #, php-format
953
  msgid ""
954
  "Find out more about the possibilities of %1$sFlexible Shipping Connect%2$s."
@@ -956,7 +935,7 @@ msgstr ""
956
  "Dowiedz się więcej o możliwościach związanych z %1$sFlexible Shipping Connect"
957
  "%2$s."
958
 
959
- #: classes/saas/views/html-field-saas-connection.php:26
960
  #, php-format
961
  msgid ""
962
  "%1$sRegister%3$s for a new Flexible Shipping Connect account or log in to "
@@ -965,22 +944,22 @@ msgstr ""
965
  "%1$sZarejestruj%3$s nowe konto Flexible Shipping Connect lub zaloguj się do "
966
  "%2$sswojego konta%3$s, aby otrzymać klucz."
967
 
968
- #: classes/saas/views/html-field-saas-connection.php:33
969
  msgid "Check how to start with FS Connect &rarr;"
970
  msgstr "Sprawdź jak zacząć z FS Connect &rarr;"
971
 
972
- #: classes/saas/views/html-flexible-shipping-connect-notice.php:5
973
  msgid "Welcome to new Flexible Shipping Connect installation guide."
974
  msgstr "Witamy w przewodniku o nowym Flexible Shipping Connect."
975
 
976
- #: classes/saas/views/html-flexible-shipping-connect-notice.php:7
977
  msgid ""
978
  "To complete the installation please click the Sign up for Connect button "
979
  "below."
980
  msgstr ""
981
  "Aby zakończyć instalację, kliknij poniżej przycisk Zarejestruj się w Connect."
982
 
983
- #: classes/saas/views/html-flexible-shipping-connect-notice.php:9
984
  #, php-format
985
  msgid ""
986
  "The %saccount is free (no credit card needed)%s and allows you to send "
@@ -989,7 +968,7 @@ msgstr ""
989
  "Konto %sjest bezpłatne (nie wymaga karty kredytowej) %s i pozwala na "
990
  "nadawanie paczek bezpośrednio z panelu WooCommerce!"
991
 
992
- #: classes/saas/views/html-flexible-shipping-connect-notice.php:11
993
  msgid ""
994
  "If you want to learn more about other benefits, you may click one of the "
995
  "tabs on the left."
@@ -997,28 +976,28 @@ msgstr ""
997
  "Jeśli chcesz dowiedzieć się więcej o innych korzyściach, możesz kliknąć "
998
  "jedną z zakładek po lewej stronie."
999
 
1000
- #: classes/saas/views/html-flexible-shipping-connect-notice.php:35
1001
- #: classes/saas/views/html-flexible-shipping-connect-notice.php:41
1002
- #: classes/saas/views/html-flexible-shipping-connect-notice.php:47
1003
  msgid "soon!"
1004
  msgstr "wkrótce!"
1005
 
1006
- #: classes/saas/views/html-flexible-shipping-connect-notice.php:56
1007
  msgid "Using Flexible Shipping Connect, you can send packages via:"
1008
  msgstr ""
1009
  "Korzystając z Flexible Shipping Connect, możesz wysyłać paczki za "
1010
  "pośrednictwem:"
1011
 
1012
- #: classes/saas/views/html-flexible-shipping-connect-notice.php:77
1013
  msgid "Read more about possible integrations &rarr;"
1014
  msgstr "Przeczytaj więcej o możliwych integracjach &rarr;"
1015
 
1016
- #: classes/saas/views/html-flexible-shipping-connect-notice.php:84
1017
- #: classes/saas/views/html-flexible-shipping-connect-notice.php:85
1018
  msgid "Create & Print Labels"
1019
  msgstr "Twórz i drukuj etykiety"
1020
 
1021
- #: classes/saas/views/html-flexible-shipping-connect-notice.php:86
1022
  msgid ""
1023
  "Create shipments with predefined services, sizes and weights automatically "
1024
  "filled in from order items. Download printable PDF shipping labels directly "
@@ -1028,24 +1007,24 @@ msgstr ""
1028
  "wypełnionymi z pozycji zamówienia. Pobieraj etykiety wysyłkowe bezpośrednio "
1029
  "z listy zamówień WooCommerce lub edycji zamówienia."
1030
 
1031
- #: classes/saas/views/html-flexible-shipping-connect-notice.php:114
1032
- #: classes/saas/views/html-flexible-shipping-connect-notice.php:115
1033
  msgid "Couriers"
1034
  msgstr "Kurierzy"
1035
 
1036
- #: classes/saas/views/html-flexible-shipping-connect-notice.php:164
1037
  msgid "Sign up for Connect"
1038
  msgstr "Zarejestruj się w Connect"
1039
 
1040
- #: classes/saas/views/html-flexible-shipping-connect-notice.php:166
1041
  msgid "Start quick tour"
1042
  msgstr "Rozpocznij przewodnik"
1043
 
1044
- #: classes/saas/views/html-flexible-shipping-connect-notice.php:166
1045
  msgid "Next feature"
1046
  msgstr "Następna funkcja"
1047
 
1048
- #: classes/saas/views/html-flexible-shipping-connect-second-notice.php:3
1049
  #, php-format
1050
  msgid ""
1051
  "You never sign up to Flexible Shipping Connect. You may finish the "
@@ -1054,19 +1033,19 @@ msgstr ""
1054
  "Nie zarejestrowałeś się w Flexible Shipping Connect. Możesz dokończyć proces "
1055
  "rejestracji tutaj %1$sZarejestruj się w Connect%2$s"
1056
 
1057
- #: classes/saas/views/html-order-fallback-message.php:1
1058
  msgid "Fallback:"
1059
  msgstr "Stawka awaryjna:"
1060
 
1061
- #: classes/saas/views/html-order-free-shipping.php:1
1062
  msgid "Free shipping"
1063
  msgstr "Darmowa wysyłka"
1064
 
1065
- #: classes/saas/views/html-order-message-stock.php:1
1066
  msgid "Additional info:"
1067
  msgstr "Dodatkowe informacje:"
1068
 
1069
- #: classes/saas/views/html-registration-page.php:4
1070
  #, php-format
1071
  msgid ""
1072
  "You are connected. %1$sGo to Flexible Shipping Connect settings &rarr;%2$s"
@@ -1074,17 +1053,17 @@ msgstr ""
1074
  "Jesteś połączony. %1$sPrzejdź do ustawień Flexible Shipping Connect &rarr;"
1075
  "%2$s"
1076
 
1077
- #: classes/saas/views/html-registration-page.php:10
1078
  msgid "Join Flexible Shipping Connect Now!"
1079
  msgstr "Dołącz do Flexible Shipping Connect!"
1080
 
1081
- #: classes/saas/views/html-registration-page.php:16
1082
  msgid "Sign up for automatic shipments, label printing, live rates and more!"
1083
  msgstr ""
1084
  "Zarejestruj się, aby automatyzować przesyłkę, drukować etykiety, pobierać "
1085
  "stawki i wiele więcej!"
1086
 
1087
- #: classes/saas/views/html-registration-page.php:18
1088
  #, php-format
1089
  msgid ""
1090
  "By signing up, you agree to the %1$sTerms of Service%3$s and to %2$sPrivacy "
@@ -1093,15 +1072,15 @@ msgstr ""
1093
  "Rejestrując się, zgadzasz się na %1$sTerms of Service%3$s i %2$sPrivacy "
1094
  "Policy%3$s"
1095
 
1096
- #: classes/saas/views/html-registration-page.php:23
1097
  msgid "Sign Up"
1098
  msgstr "Zarejestruj się"
1099
 
1100
- #: classes/saas/views/html-saas-connection-form.php:6
1101
  msgid "Connect Key"
1102
  msgstr "Klucz Connect"
1103
 
1104
- #: classes/saas/views/html-saas-connection-form.php:22
1105
  msgid ""
1106
  "Are you sure you want do disconnect your store from Flexible Shipping "
1107
  "Connect?\\n\\nAll shipping services will be disabled."
@@ -1109,11 +1088,13 @@ msgstr ""
1109
  "Czy jesteś pewien, że chcesz odłączyć swój sklep od Flexible Shipping "
1110
  "Connect?\\n\\nWszystkie integracje wysyłkowe zostaną wyłączone."
1111
 
1112
- #: classes/saas/views/html-shipping-method-info-description.php:16
 
1113
  msgid "How to use Flexible Shipping?"
1114
  msgstr "Jak używać Flexible Shipping?"
1115
 
1116
- #: classes/saas/views/html-shipping-method-info-description.php:22
 
1117
  #, php-format
1118
  msgid ""
1119
  "To add first Flexible Shipping method go to %sShipping zones%s and add "
@@ -1122,7 +1103,8 @@ msgstr ""
1122
  "Aby dodać pierwszą metodę Flexible Shipping przejdź do zakładki %sStrefy "
1123
  "wysyłki%s i dodaj Flexible Shipping do strefy wysyłki."
1124
 
1125
- #: classes/saas/views/html-shipping-method-info-description.php:29
 
1126
  msgid ""
1127
  "You can start the configuration by clicking the Flexible Shipping link in "
1128
  "the Shipping methods table."
@@ -1130,297 +1112,308 @@ msgstr ""
1130
  "Możesz rozpocząć konfigurację klikając na link Flexible Shipping w tabeli "
1131
  "”Metody wysyłki”."
1132
 
1133
- #: classes/saas/views/html-shipping-method-info-description.php:32
 
1134
  msgid "Quick Video Overview"
1135
  msgstr "Krótki przewodnik video"
1136
 
1137
- #: classes/saas/views/html-shipping-method-info-description.php:38
 
1138
  msgid "More resources"
1139
  msgstr "Więcej informacji"
1140
 
1141
- #: classes/saas/views/html-shipping-method-info-description.php:41
 
1142
  msgid "General Settings"
1143
  msgstr "Ustawienia główne"
1144
 
1145
- #: classes/saas/views/html-shipping-method-info-description.php:42
 
1146
  msgid "Adding a shipping method"
1147
  msgstr "Dodawanie metody wysyłki"
1148
 
1149
- #: classes/saas/views/html-shipping-method-info-description.php:43
 
1150
  msgid "Currency Support"
1151
  msgstr "Waluty"
1152
 
1153
- #: classes/saas/views/html-shipping-method-info-description.php:44
 
1154
  msgid "Weight Based Shipping"
1155
  msgstr "Koszt na wagę"
1156
 
1157
- #: classes/saas/views/html-shipping-method-info-description.php:45
 
1158
  msgid "Shipping Insurance"
1159
  msgstr "Ubezpieczenie przesyłki"
1160
 
1161
- #: classes/saas/views/html-shipping-method-info-description.php:46
 
1162
  msgid "Conditional Cash on Delivery"
1163
  msgstr "Przesyłka za pobraniem"
1164
 
1165
- #: classes/saas/views/html-shipping-method-info-description.php:49
1166
  msgid "Integrations"
1167
  msgstr "Integracja"
1168
 
1169
- #: classes/saas/views/html-shipping-method-info-description.php:54
1170
- #: classes/saas/views/html-shipping-method-info-description.php:58
1171
  msgid "FS Connect"
1172
  msgstr "FS Connect"
1173
 
1174
- #: classes/saas/views/html-shipping-method-info-description.php:60
1175
  msgid "Enable integration with Flexible Shipping Connect"
1176
  msgstr "Włącz integrację z Flexible Shipping Connect"
1177
 
1178
- #: classes/settings/flexible-shipping.php:18
1179
  #, php-format
1180
- msgid "See how to %sconfigure Flexible Shipping%s."
1181
- msgstr "Zobacz jak %sskonfigurować Flexible Shipping%s."
1182
-
1183
- #: classes/settings/flexible-shipping.php:21
1184
- #: classes/settings/shipping-method-form.php:70 classes/shipping-method.php:44
1185
- msgid "Enable/Disable"
1186
- msgstr "Włącz/Wyłącz"
1187
-
1188
- #: classes/settings/flexible-shipping.php:23
1189
- msgid "Enable Flexible Shipping"
1190
- msgstr "Włącz Flexible Shipping"
1191
-
1192
- #: classes/settings/flexible-shipping.php:27
1193
- msgid "Shipping title"
1194
- msgstr "Tytuł"
1195
-
1196
- #: classes/settings/flexible-shipping.php:29
1197
- msgid "Visible only to admin in WooCommerce settings."
1198
- msgstr "Widoczny tylko dla admina w ustawieniach WooCommerce."
1199
-
1200
- #: classes/settings/flexible-shipping.php:34
1201
- msgid "Tax Status"
1202
- msgstr "Status podatku"
1203
-
1204
- #: classes/settings/flexible-shipping.php:39
1205
- msgid "Taxable"
1206
- msgstr "Opodatkowany"
1207
-
1208
- #: classes/settings/flexible-shipping.php:40
1209
- msgctxt "Tax status"
1210
- msgid "None"
1211
- msgstr "Brak"
1212
-
1213
- #: classes/settings/flexible-shipping.php:44
1214
- #: classes/settings/flexible-shipping.php:49
1215
- msgid "Shipping Methods"
1216
- msgstr "Metody wysyłki"
1217
-
1218
- #: classes/settings/shipping-method-form.php:10
1219
- msgid "Select shipment class"
1220
- msgstr "Wybierz klasę wysyłkową"
1221
-
1222
- #: classes/settings/shipping-method-form.php:25
1223
  msgid ""
1224
- "Integrate with DPD, DHL, InPost, eNadawca Poczta Polska, Paczka w Ruchu."
1225
- msgstr "Zintegruj z DPD, DHL, InPost, eNadawca Poczta Polska, Paczka w Ruchu."
 
 
 
 
 
 
 
1226
 
1227
- #: classes/settings/shipping-method-form.php:25
1228
- #, php-format
1229
- msgid "%sAdd integrations%s"
1230
- msgstr "%sDodaj integracje%s"
 
1231
 
1232
- #: classes/settings/shipping-method-form.php:28
1233
- msgid "Integrate with DPD."
1234
- msgstr "Zintegruj z DPD."
1235
 
1236
- #: classes/settings/shipping-method-form.php:28
1237
- #, php-format
1238
- msgid "%sAdd integration%s"
1239
- msgstr "%sDodaj integrację%s"
 
1240
 
1241
- #: classes/settings/shipping-method-form.php:34
1242
  #, php-format
1243
  msgid ""
1244
- "Ship your orders faster with %1$sFlexible Shipping Connect%2$s%3$s%4$sSign "
1245
- "up now!%5$s"
 
1246
  msgstr ""
1247
- "Wysyłaj zamówienia szybciej z %1$sFlexible Shipping Connect%2$s%3$s"
1248
- "%4$sZarejestruj się teraz!%5$s"
 
1249
 
1250
- #: classes/settings/shipping-method-form.php:54 classes/shipping-method.php:759
1251
- msgid "Free"
1252
- msgstr "Bezpłatnie"
 
1253
 
1254
- #: classes/settings/shipping-method-form.php:73 classes/shipping-method.php:46
1255
- msgid "Enable this shipment method"
1256
- msgstr "Włącz metodę wysyłki"
 
1257
 
1258
- #: classes/settings/shipping-method-form.php:76
1259
- msgid "Method Title"
1260
- msgstr "Tytuł metody"
1261
 
1262
- #: classes/settings/shipping-method-form.php:78 classes/shipping-method.php:52
1263
- msgid "This controls the title which the user sees during checkout."
1264
- msgstr "Tytuł, który widzi użytkownik podczas składania zamówienia."
1265
 
1266
- #: classes/settings/shipping-method-form.php:85
1267
- msgid "Method Description"
1268
- msgstr "Opis"
 
 
 
1269
 
1270
- #: classes/settings/shipping-method-form.php:87
1271
- msgid "This controls method description which the user sees during checkout."
1272
- msgstr "Opis, który widzi użytkownik podczas składania zamówienia."
1273
 
1274
- #: classes/settings/shipping-method-form.php:98
1275
- msgid "Free Shipping"
1276
- msgstr "Darmowa wysyłka"
1277
 
1278
- #: classes/settings/shipping-method-form.php:101
1279
- msgid ""
1280
- "Enter a minimum order amount for free shipment. This will override the costs "
1281
- "configured below."
1282
- msgstr ""
1283
- "Wpisz minimalną kwotę zamówienia dla bezpłatnej wysyłki. Spowoduje to "
1284
- "zastąpienie reguł skonfigurowanych poniżej."
1285
 
1286
- #: classes/settings/shipping-method-form.php:105
1287
- msgid "Free Shipping Label"
1288
- msgstr "Etykieta darmowej wysyłki"
1289
 
1290
- #: classes/settings/shipping-method-form.php:108
1291
- msgid "Enter additional label for shipment when free shipment available."
1292
- msgstr ""
1293
- "Wpisz dodatkową etykietę, która zostanie wyświetlona dla darmowej wysyłki."
1294
 
1295
- #: classes/settings/shipping-method-form.php:117
1296
- msgid "Calculation Method"
1297
- msgstr "Metoda obliczania"
1298
 
1299
- #: classes/settings/shipping-method-form.php:119
1300
- msgid ""
1301
- "Select how rules will be calculated. If you choose \"sum\" the rules order "
1302
- "is important."
1303
- msgstr ""
1304
- "Wybierz jak będą obliczane reguły. Dla sumy, kolejność reguł ma znaczenie."
1305
 
1306
- #: classes/settings/shipping-method-form.php:122
1307
- msgid "Sum"
1308
- msgstr "Suma"
1309
 
1310
- #: classes/settings/shipping-method-form.php:125
1311
- #: classes/views/html-shipping-method-settings.php:13
1312
- msgid "Visibility"
1313
- msgstr "Wyświetlanie"
1314
 
1315
- #: classes/settings/shipping-method-form.php:128
1316
- #: classes/views/html-shipping-method-settings.php:46
1317
- msgid "Show only for logged in users"
1318
- msgstr "Pokaż tylko dla zalogowanych użytkowników"
1319
 
1320
- #: classes/settings/shipping-method-form.php:131
1321
- #: classes/views/html-shipping-method-settings.php:14
1322
- msgid "Default"
1323
- msgstr "Domyślnie"
 
 
1324
 
1325
- #: classes/settings/shipping-method-form.php:134
1326
- msgid ""
1327
- "Check the box to set this option as the default selected choice on the cart "
1328
- "page."
1329
- msgstr ""
1330
- "Zaznacz, aby ustawić tę metodę wysyłki jako domyślną przy składaniu "
1331
- "zamówienia."
1332
 
1333
- #: classes/settings/shipping-method-form.php:139
1334
- msgid "Select integration. "
1335
- msgstr "Wybierz integrację. "
 
 
 
 
1336
 
1337
- #: classes/settings/shipping-method-form.php:142
1338
- #: classes/views/html-shipping-method-rules.php:7
1339
- msgid "None"
1340
- msgstr "Brak"
1341
 
1342
- #: classes/settings/shipping-method-form.php:153
1343
- msgid "Rules"
1344
- msgstr "Reguły"
1345
 
1346
- #: classes/settings/shipping-method-form.php:174
1347
- msgid "Shipping Zone"
1348
- msgstr "Strefa wysyłki"
1349
 
1350
- #: classes/settings/shipping-method-form.php:188
1351
- #, php-format
1352
- msgid "See how to %sconfigure shipment methods%s."
1353
- msgstr "Zobacz jak %sskonfigurować metody wysyłki %s."
1354
 
1355
- #: classes/shipment/ajax.php:22
1356
- #: classes/shipment/saas/class-shipment-saas-attachments-ajax.php:59
1357
- #: classes/shipment/saas/class-shipment-saas-attachments-ajax.php:124
1358
- #: classes/shipment/saas/class-shipment-saas-attachments-ajax.php:175
1359
- msgid "Unknown error!"
1360
- msgstr "Nieznany błąd!"
1361
 
1362
- #: classes/shipment/ajax.php:25
1363
- #: classes/shipment/saas/class-shipment-saas-attachments-ajax.php:63
1364
- #: classes/shipment/saas/class-shipment-saas-attachments-ajax.php:128
1365
- #: classes/shipment/saas/class-shipment-saas-attachments-ajax.php:179
1366
- msgid "Nonce verification error! Invalid request."
1367
- msgstr "Błąd weryfikacji nonce! Nieprawidłowe żądanie."
1368
 
1369
- #: classes/shipment/ajax.php:29
1370
  msgid "No shipment id!"
1371
  msgstr "Brak id przesyłki!"
1372
 
1373
- #: classes/shipment/ajax.php:33
1374
  msgid "No data!"
1375
  msgstr "Brak danych!"
1376
 
1377
- #: classes/shipment/ajax.php:52
1378
- #: classes/shipment/saas/class-shipment-saas-ajax.php:131
1379
- msgid "Saved"
1380
- msgstr "Zapisano"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1381
 
1382
- #: classes/shipment/class-shipment.php:300
1383
  msgid "Please override shipping_column method!"
1384
  msgstr "Proszę nadpisać metodę shipping_column!"
1385
 
1386
- #: classes/shipment/cpt-shipment.php:55
1387
  msgid "View Shipments"
1388
  msgstr "Wyświetl przesyłki"
1389
 
1390
- #: classes/shipment/cpt-shipment.php:56 classes/shipment/cpt-shipment.php:57
 
1391
  msgid "Add new Shipment"
1392
  msgstr "Dodaj nową przesyłkę"
1393
 
1394
- #: classes/shipment/cpt-shipment.php:58
1395
  msgid "Edit Shipment"
1396
  msgstr "Edytuj przesyłkę"
1397
 
1398
- #: classes/shipment/cpt-shipment.php:59
1399
  msgid "Save Shipment"
1400
  msgstr "Zapisz przesyłkę"
1401
 
1402
- #: classes/shipment/cpt-shipment.php:60
1403
  msgid "Search Shipments"
1404
  msgstr "Szukaj przesyłek"
1405
 
1406
- #: classes/shipment/cpt-shipment.php:61
1407
  msgid "Shipment not found"
1408
  msgstr "Nie znaleziono przesyłki"
1409
 
1410
- #: classes/shipment/cpt-shipment.php:62
1411
  msgid "Shipment not found in trash"
1412
  msgstr "Nie znaleziono przesyłki w koszu"
1413
 
1414
- #: classes/shipment/cpt-shipment.php:64
1415
  msgid "Shipments."
1416
  msgstr "Przesyłki."
1417
 
1418
- #: classes/shipment/cpt-shipment.php:84
1419
  msgctxt "Shipment status"
1420
  msgid "New"
1421
  msgstr "Nowa"
1422
 
1423
- #: classes/shipment/cpt-shipment.php:89
1424
  #, php-format
1425
  msgid "New <span class=\"count\">(%s)</span>"
1426
  msgid_plural "New <span class=\"count\">(%s)</span>"
@@ -1428,12 +1421,12 @@ msgstr[0] "Nowa <span class=\"count\">(%s)</span>"
1428
  msgstr[1] "Nowa <span class=\"count\">(%s)</span>"
1429
  msgstr[2] "Nowa <span class=\"count\">(%s)</span>"
1430
 
1431
- #: classes/shipment/cpt-shipment.php:92
1432
  msgctxt "Shipment status"
1433
  msgid "Created"
1434
  msgstr "Utworzona"
1435
 
1436
- #: classes/shipment/cpt-shipment.php:97
1437
  #, php-format
1438
  msgid "Created <span class=\"count\">(%s)</span>"
1439
  msgid_plural "Created <span class=\"count\">(%s)</span>"
@@ -1441,12 +1434,13 @@ msgstr[0] "Utworzona <span class=\"count\">(%s)</span>"
1441
  msgstr[1] "Utworzona <span class=\"count\">(%s)</span>"
1442
  msgstr[2] "Utworzona <span class=\"count\">(%s)</span>"
1443
 
1444
- #: classes/shipment/cpt-shipment.php:100
1445
  msgctxt "Shipment status"
1446
  msgid "Confirmed"
1447
  msgstr "Zatwierdzona"
1448
 
1449
- #: classes/shipment/cpt-shipment.php:105 classes/shipment/cpt-shipment.php:113
 
1450
  #, php-format
1451
  msgid "Confirmed <span class=\"count\">(%s)</span>"
1452
  msgid_plural "Confirmed <span class=\"count\">(%s)</span>"
@@ -1454,272 +1448,485 @@ msgstr[0] "Zatwierdzona <span class=\"count\">(%s)</span>"
1454
  msgstr[1] "Zatwierdzona <span class=\"count\">(%s)</span>"
1455
  msgstr[2] "Zatwierdzona <span class=\"count\">(%s)</span>"
1456
 
1457
- #: classes/shipment/cpt-shipment.php:108
1458
  msgctxt "Shipment status"
1459
  msgid "Manifest created"
1460
  msgstr "Protokół nadania utworzony"
1461
 
1462
- #: classes/shipment/cpt-shipment.php:116
1463
  msgctxt "Shipment status"
1464
  msgid "Failed"
1465
  msgstr "Błąd"
1466
 
1467
- #: classes/shipment/cpt-shipment.php:121
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1468
  #, php-format
1469
- msgid "Failed <span class=\"count\">(%s)</span>"
1470
- msgid_plural "Failed <span class=\"count\">(%s)</span>"
1471
- msgstr[0] "Błąd <span class=\"count\">(%s)</span>"
1472
- msgstr[1] "Błąd <span class=\"count\">(%s)</span>"
1473
- msgstr[2] "Błąd <span class=\"count\">(%s)</span>"
1474
-
1475
- #: classes/shipment/cpt-shipment.php:136
1476
- msgid "Shipment data"
1477
- msgstr "Dane przesyłki"
1478
 
1479
- #: classes/shipment/functions.php:28
1480
  #, php-format
1481
- msgid "Shipment for order %s, %s"
1482
- msgstr "Przesyłka do zamówienia %s, %s"
1483
 
1484
- #: classes/shipment/saas/class-shipment-saas-ajax.php:98
1485
  #, php-format
1486
- msgid "%1$s Shipment plan exceeded. %2$sPlease upgrade your plan →%3$s"
1487
- msgstr "%1$s Przekroczono plan FS Connect %2$sProszę zmień swój plan →%3$s"
1488
 
1489
- #: classes/shipment/saas/class-shipment-saas-ajax.php:124
1490
- msgid "Shipment cannot be saved for this status!"
1491
- msgstr "Przesyłki nie można zapisać w tym statusie!"
 
 
 
 
 
 
 
 
 
 
 
 
1492
 
1493
- #: classes/shipment/saas/class-shipment-saas-ajax.php:152
1494
  #, php-format
1495
- msgid "Shipment created.%1$sFS Connect plan usage: %2$s/%3$s shipments"
1496
- msgstr ""
1497
- "Przesyłka utworzona.%1$sWykorzystanie planu FS Connect: %2$s/%3$s przesyłek"
1498
 
1499
- #: classes/shipment/saas/class-shipment-saas-ajax.php:193
1500
- msgid "Canceled"
1501
- msgstr "Anulowana"
 
1502
 
1503
- #: classes/shipment/saas/class-shipment-saas-attachments-ajax.php:74
1504
- msgid "Attachment type not selected!"
1505
- msgstr "Typ załącznika nie został wybrany!"
 
 
1506
 
1507
- #: classes/shipment/saas/class-shipment-saas-attachments-ajax.php:76
1508
- #: classes/shipment/saas/class-shipment-saas-attachments-ajax.php:155
1509
- msgid "Attachment not found!"
1510
- msgstr "Załącznik nie został znaleziony!"
1511
 
1512
- #: classes/shipment/saas/class-shipment-saas-attachments-ajax.php:78
1513
- #: classes/shipment/saas/class-shipment-saas-attachments-ajax.php:136
1514
- #: classes/shipment/saas/class-shipment-saas-attachments-ajax.php:186
1515
- msgid "Shipment not found!"
1516
- msgstr "Przesyłka nie została znaleziona!"
1517
 
1518
- #: classes/shipment/saas/class-shipment-saas-attachments-ajax.php:107
1519
- msgid "Attachment added"
1520
- msgstr "Załącznik został dodany"
1521
 
1522
- #: classes/shipment/saas/class-shipment-saas-attachments-ajax.php:153
1523
- msgid "Attachment deleted"
1524
- msgstr "Załącznik został usunięty"
1525
 
1526
- #: classes/shipment/saas/class-shipment-saas-attachments-ajax.php:197
1527
- #, php-format
1528
- msgid "Unable to send documents: %1$s"
1529
- msgstr "Nie można wysłać dokumentów: %1$s"
1530
 
1531
- #: classes/shipment/saas/class-shipment-saas-attachments-ajax.php:207
1532
- msgid "Attachments send"
1533
- msgstr "Załączniki zostały wysłane"
 
1534
 
1535
- #: classes/shipment/saas/class-shipment-saas-message-formatter.php:42
1536
- #, php-format
1537
- msgid "%1$s notice"
1538
- msgstr "%1$s komunikat"
1539
 
1540
- #: classes/shipment/saas/class-shipment-saas-metabox-attachments.php:37
1541
- msgid "Attachments"
1542
- msgstr "Załączniki"
1543
 
1544
- #: classes/shipment/saas/class-shipment-saas-send.php:191
1545
- #: classes/shipment/saas/class-shipment-saas.php:372
1546
- msgid "UPS! Something is wrong!"
1547
- msgstr "UPS! Nie działa poprawnie!"
1548
 
1549
- #: classes/shipment/saas/class-shipment-saas.php:242
1550
  #, php-format
1551
- msgid "There was problems on checkout: %1$s"
1552
- msgstr "Pojawił się problem na stronie zamówienia: %1$s"
 
 
 
 
1553
 
1554
- #: classes/shipment/saas/class-shipment-saas.php:335
1555
  #, php-format
1556
- msgid "%1$s Shipment %2$s was created."
1557
- msgstr "%1$s Przesyłka %2$s została utworzona."
1558
 
1559
- #: classes/shipment/saas/class-shipment-saas.php:353
1560
  #, php-format
1561
- msgid "%1$s Shipment %2$s was canceled."
1562
- msgstr "%1$s Przesyłka %2$s została anulowana."
 
 
 
 
1563
 
1564
- #: classes/shipment/saas/class-shipment-saas.php:607
1565
- msgid "Label is not avaliable for this shipment."
1566
- msgstr "Etykieta nie jest dostępna dla tej przesyłki."
 
1567
 
1568
- #: classes/shipment/saas/views/order-metabox-actions.php:3
1569
- msgid "Create"
1570
- msgstr "Utwórz"
 
1571
 
1572
- #: classes/shipment/saas/views/order-metabox-actions.php:4
1573
- msgid "Save"
1574
- msgstr "Zapisz"
1575
 
1576
- #: classes/shipment/saas/views/order-metabox-actions.php:11
1577
- msgid "Get Label"
1578
- msgstr "Pobierz etykietę"
 
1579
 
1580
- #: classes/shipment/saas/views/order-metabox-actions.php:22
1581
- msgid "Track:"
1582
- msgstr "Śledź:"
1583
 
1584
- #: classes/shipment/saas/views/order-metabox-actions.php:22
1585
- msgid "Click to track shipment"
1586
- msgstr "Kliknij, aby śledzić przesyłkę"
1587
 
1588
- #: classes/shipment/saas/views/order-metabox-actions.php:27
1589
- #, php-format
1590
- msgid "%1$sShipping charges:%2$s %3$s"
1591
- msgstr "%1$sKoszt przesyłki:%2$s %3$s"
1592
 
1593
- #: classes/shipment/saas/views/order-metabox-actions.php:31
1594
- #, php-format
1595
- msgid "%1$sShipment status:%2$s %3$s"
1596
- msgstr "%1$s Status przesyłki: %2$s %3$s"
 
 
 
1597
 
1598
- #: classes/shipment/saas/views/order-metabox-shipment-attachments.php:23
1599
- msgid "Type"
1600
- msgstr "Typ"
1601
 
1602
- #: classes/shipment/saas/views/order-metabox-shipment-attachments.php:24
1603
- msgid "Filename"
1604
- msgstr "Nazwa pliku"
 
1605
 
1606
- #: classes/shipment/saas/views/order-metabox-shipment-attachments.php:25
1607
- msgid "Sent"
1608
- msgstr "Wysłany"
1609
 
1610
- #: classes/shipment/saas/views/order-metabox-shipment-attachments.php:37
1611
- msgid "No"
1612
- msgstr "Nie"
 
 
 
1613
 
1614
- #: classes/shipment/saas/views/order-metabox-shipment-attachments.php:37
1615
- msgid "Yes"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1616
  msgstr ""
1617
- "T\n"
1618
- "ak"
1619
 
1620
- #: classes/shipment/saas/views/order-metabox-shipment-attachments.php:46
1621
- msgid "Send"
1622
- msgstr "Wysłany"
1623
 
1624
- #: classes/shipment/saas/views/order-metabox-shipment-attachments.php:72
1625
- #: classes/views/html-order-add_shipping-metabox.php:15
1626
- msgid "Add"
1627
- msgstr "Dodaj"
1628
 
1629
- #: classes/shipment/saas/views/order-metabox-single-attachment.php:35
1630
- msgid "Delete"
1631
- msgstr "Usuń"
 
 
 
 
 
 
 
 
 
1632
 
1633
- #: classes/shipping-method.php:50
1634
  msgid "Shipping Title"
1635
  msgstr "Tytuł"
1636
 
1637
- #: classes/shipping-method.php:122
1638
- #: classes/views/html-shipping-method-rules.php:240
1639
  msgid "Add New"
1640
  msgstr "Dodaj nową"
1641
 
1642
- #: classes/shipping-method.php:401
1643
  msgid "New Shipping Method"
1644
  msgstr "Nowa metoda wysyłki"
1645
 
1646
- #: classes/shipping-method.php:404
1647
  msgid "Edit Shipping Method"
1648
  msgstr "Edytuj metodę wysyłki"
1649
 
1650
- #: classes/shipping-method.php:414 classes/shipping-method.php:456
 
1651
  #, php-format
1652
  msgid "Shipping method %s added."
1653
  msgstr "Metoda wysyłki dodana: %s."
1654
 
1655
- #: classes/shipping-method.php:439
1656
  #, php-format
1657
  msgid "Shipping method %s deleted."
1658
  msgstr "Metoda wysyłki usunięta: %s."
1659
 
1660
- #: classes/shipping-method.php:442
1661
  msgid "Shipping method not found."
1662
  msgstr "Metoda wysyłki nie znaleziona."
1663
 
1664
- #: classes/shipping-method.php:468
1665
  #, php-format
1666
  msgid "Shipping method %s updated."
1667
  msgstr "Metoda wysyłki zaktualizowana: %s."
1668
 
1669
- #: classes/tracker.php:221
1670
- msgid "Opt-in"
1671
- msgstr "Opt-in"
1672
-
1673
- #: classes/tracker.php:224
1674
- msgid "Opt-out"
1675
- msgstr "Opt-out"
1676
-
1677
- #: classes/views/html-ads.php:4
1678
  msgid "Get Flexible Shipping PRO!"
1679
  msgstr "Kup Flexible Shipping PRO!"
1680
 
1681
- #: classes/views/html-ads.php:13
1682
  msgid "Shipping Classes support"
1683
  msgstr "Wsparcie klas wysyłkowych"
1684
 
1685
- #: classes/views/html-ads.php:14
1686
  msgid "Product count based costs"
1687
  msgstr "Koszty oparte o liczbę produktów w koszyku"
1688
 
1689
- #: classes/views/html-ads.php:15
1690
  msgid "Stopping, Cancelling a rule"
1691
  msgstr "Zatrzymywanie, anulowanie reguł"
1692
 
1693
- #: classes/views/html-ads.php:16
1694
  msgid "Additional calculation methods"
1695
  msgstr "Dodatkowe rodzaje obliczania kosztów"
1696
 
1697
- #: classes/views/html-ads.php:19
1698
  msgid "Upgrade Now &rarr;"
1699
  msgstr "Zaktualizuj do wersji PRO &rarr;"
1700
 
1701
- #: classes/views/html-column-shipping-shipping.php:11
1702
  msgid "Get label for: "
1703
  msgstr "Pobierz etykietę dla "
1704
 
1705
- #: classes/views/html-column-shipping-shipping.php:14
1706
  msgid "Track shipment for: "
1707
  msgstr "Śledź przesyłkę "
1708
 
1709
- #: classes/views/html-custom-services.php:14
1710
  msgid "Code"
1711
  msgstr "Kod"
1712
 
1713
- #: classes/views/html-custom-services.php:15
1714
  msgid "Name"
1715
  msgstr "Nazwa"
1716
 
1717
- #: classes/views/html-custom-services.php:17
1718
- #: classes/views/html-shipping-method-settings.php:12
1719
  msgid "Enabled"
1720
  msgstr "Włączona"
1721
 
1722
- #: classes/views/html-custom-services.php:37
1723
  msgid ""
1724
  "Drag and drop the services to control their display order. Confirm by "
1725
  "clicking Save changes button below."
@@ -1727,35 +1934,24 @@ msgstr ""
1727
  "Przeciągnij i upuść usługę, aby zmienić kolejność wyświetlania. Zatwierdź "
1728
  "zmiany klikając Zapisz zmiany poniżej."
1729
 
1730
- #: classes/views/html-orders-filter-form.php:4
1731
- #: classes/views/html-orders-filter-form.php:12
1732
  msgid "All shippings"
1733
  msgstr "Wszystkie przesyłki"
1734
 
1735
- #: classes/views/html-orders-filter-form.php:13
1736
  msgid "Shipment status"
1737
  msgstr "Status przesyłki"
1738
 
1739
- #: classes/views/html-pointer-message-fs-text.php:7
1740
- #, php-format
1741
- msgid ""
1742
- "To add first Flexible Shipping method go to %1$sShipping zones%2$s and add "
1743
- "Flexible Shipping to a shipping zone. More info about %3$sshipping methods"
1744
- "%4$s."
1745
- msgstr ""
1746
- "Aby dodać pierwszą metodę Flexible Shipping przejdź do zakładki %1$sStrefy "
1747
- "wysyłki%2$s i dodaj Flexible Shipping do strefy wysyłki. Dowiedz się więcej "
1748
- "o %3$smetodach wysyłki%4$s."
1749
-
1750
- #: classes/views/html-shipping-method-rules.php:8
1751
  msgid "Price"
1752
  msgstr "Cena"
1753
 
1754
- #: classes/views/html-shipping-method-rules.php:9
1755
  msgid "Weight"
1756
  msgstr "Waga"
1757
 
1758
- #: classes/views/html-shipping-method-rules.php:61
1759
  #, php-format
1760
  msgid ""
1761
  "Check %sFlexible Shipping PRO &rarr;%s to add advanced rules based on "
@@ -1765,19 +1961,19 @@ msgstr ""
1765
  "oparte o klasy wysyłkowe, liczbę produktów/pozycji lub naliczać dodatkowe "
1766
  "koszty obsługi/ubezpieczenia."
1767
 
1768
- #: classes/views/html-shipping-method-rules.php:72
1769
  msgid "Based on"
1770
  msgstr "Oparte na"
1771
 
1772
- #: classes/views/html-shipping-method-rules.php:73
1773
  msgid "Shipping cost will be calculated based on the selected parameter."
1774
  msgstr "Koszty wysyłki będą obliczane w oparciu o wybrany parametr."
1775
 
1776
- #: classes/views/html-shipping-method-rules.php:76
1777
  msgid "Min"
1778
  msgstr "Min"
1779
 
1780
- #: classes/views/html-shipping-method-rules.php:77
1781
  msgid ""
1782
  "Enter minimum value for the &quot;Based on&quot; parameter. Value based on "
1783
  "the price will be calculated by WooCommerce tax settings &quot;Display "
@@ -1787,11 +1983,11 @@ msgstr ""
1787
  "na cenie zostanie obliczona wg. ustawienia podatków WooCommerce &quot;"
1788
  "Wyświetlanie cen w koszyku i zamówieniu&quot;"
1789
 
1790
- #: classes/views/html-shipping-method-rules.php:80
1791
  msgid "Max"
1792
  msgstr "Maks"
1793
 
1794
- #: classes/views/html-shipping-method-rules.php:81
1795
  msgid ""
1796
  "Enter maximum value for the &quot;Based on&quot; parameter. Value based on "
1797
  "the price will be calculated by WooCommerce tax settings &quot;Display "
@@ -1801,54 +1997,54 @@ msgstr ""
1801
  "na cenie zostanie obliczona wg. ustawienia podatków WooCommerce &quot;"
1802
  "Wyświetlanie cen w koszyku i zamówieniu&quot;"
1803
 
1804
- #: classes/views/html-shipping-method-rules.php:84
1805
  msgid "Cost per<br/>order"
1806
  msgstr "Koszt na<br/>zamówienie"
1807
 
1808
- #: classes/views/html-shipping-method-rules.php:85
1809
  msgid "Enter shipment cost for this rule."
1810
  msgstr "Wpisz koszt wysyłki dla tej reguły."
1811
 
1812
- #: classes/views/html-shipping-method-rules.php:160
1813
  msgid "Insert rule"
1814
  msgstr "Dodaj regułę"
1815
 
1816
- #: classes/views/html-shipping-method-rules.php:161
1817
  msgid "Delete selected rules"
1818
  msgstr "Usuń wybrane reguły"
1819
 
1820
- #: classes/views/html-shipping-method-rules.php:211
1821
  msgid "No rows selected."
1822
  msgstr "Nie wybrano wierszy."
1823
 
1824
- #: classes/views/html-shipping-method-rules.php:216
1825
  msgid "Are you sure?"
1826
  msgstr "Na pewno?"
1827
 
1828
- #: classes/views/html-shipping-method-rules.php:231
1829
- #: classes/views/html-shipping-method-settings.php:106
1830
  msgid "Shipping Zones"
1831
  msgstr "Strefy wysyłki"
1832
 
1833
- #: classes/views/html-shipping-method-settings.php:11
1834
  msgid "Title"
1835
  msgstr "Tytuł"
1836
 
1837
- #: classes/views/html-shipping-method-settings.php:16
1838
  msgid "Select all"
1839
  msgstr "Zaznacz wszystkie"
1840
 
1841
- #: classes/views/html-shipping-method-settings.php:39
1842
- #: classes/views/html-shipping-method-settings.php:46
1843
- #: classes/views/html-shipping-method-settings.php:53
1844
  msgid "yes"
1845
  msgstr "tak"
1846
 
1847
- #: classes/views/html-shipping-method-settings.php:48
1848
  msgid "Show for all users"
1849
  msgstr "Pokaż dla wszystkich użytkowników"
1850
 
1851
- #: classes/views/html-shipping-method-settings.php:69
1852
  msgid ""
1853
  "Drag and drop the above shipment methods to control their display order. "
1854
  "Confirm by clicking Save changes button below."
@@ -1856,41 +2052,34 @@ msgstr ""
1856
  "Przeciągnij i upuść metody wysyłki, aby ustawić ich kolejność wyświetlania. "
1857
  "Potwierdź przez kliknięcie przycisku Zapisz zmiany poniżej."
1858
 
1859
- #: classes/views/html-shipping-method-settings.php:74
1860
  msgid "Remove selected"
1861
  msgstr "Usuń zaznaczone"
1862
 
1863
- #: classes/views/html-shipping-method-settings.php:78
1864
  msgid "Cancel import"
1865
  msgstr "Anuluj import"
1866
 
1867
- #: classes/views/html-shipping-method-settings.php:79
1868
- #: classes/views/html-shipping-method-settings.php:80
1869
  msgid "Import"
1870
  msgstr "Importuj"
1871
 
1872
- #: classes/views/html-shipping-method-settings.php:155
1873
  msgid "Please select shipment methods to remove"
1874
  msgstr "Proszę wybrać metody wysyłki do usunięcia"
1875
 
1876
- #: classes/views/html-shipping-method-settings.php:187
1877
  msgid "Select file to import"
1878
  msgstr "Wybierz plik do importu"
1879
 
1880
- #: inc/functions.php:67
1881
- #, php-format
1882
- msgid "Redirecting. If page not redirects click %s here %s."
1883
- msgstr ""
1884
- "Przekierowywanie. Jeśli strona nie przekierowuje cię automatycznie, kliknij "
1885
- "%s tu %s."
1886
-
1887
- #: inc/wpdesk-tracker/views/tracker-connect.php:7
1888
- #: inc/wpdesk-tracker/views/tracker-notice.php:5
1889
  #, php-format
1890
  msgid "Hey %s,"
1891
  msgstr "Hej %s,"
1892
 
1893
- #: inc/wpdesk-tracker/views/tracker-connect.php:8
1894
  msgid ""
1895
  "Please help us improve our plugins! If you opt-in, we will collect some non-"
1896
  "sensitive data and usage information anonymously. If you skip this, that's "
@@ -1900,53 +2089,53 @@ msgstr ""
1900
  "zbierać niewrażliwe dane użytkowania anonimowo. Jeśli pominiesz ten krok, w "
1901
  "porządku! Wszystkie wtyczki będą działać."
1902
 
1903
- #: inc/wpdesk-tracker/views/tracker-connect.php:13
1904
  msgid "Allow & Continue &rarr;"
1905
  msgstr "Pozwól i kontynuuj &rarr;"
1906
 
1907
- #: inc/wpdesk-tracker/views/tracker-connect.php:14
1908
  msgid "Skip"
1909
  msgstr "Pomiń"
1910
 
1911
- #: inc/wpdesk-tracker/views/tracker-connect.php:19
1912
  msgid "What permissions are being granted?"
1913
  msgstr "Jakie uprawnienia są przyznawane?"
1914
 
1915
- #: inc/wpdesk-tracker/views/tracker-connect.php:26
1916
  msgid "Your Site Overview"
1917
  msgstr "Dane witryny"
1918
 
1919
- #: inc/wpdesk-tracker/views/tracker-connect.php:27
1920
  msgid "WP version, PHP info"
1921
  msgstr "Wersja WP, PHP info"
1922
 
1923
- #: inc/wpdesk-tracker/views/tracker-connect.php:33
1924
  msgid "Plugin Usage"
1925
  msgstr "Dane użytkowania wtyczek"
1926
 
1927
- #: inc/wpdesk-tracker/views/tracker-connect.php:34
1928
  msgid "Current settings and usage information of WP Desk plugins"
1929
  msgstr "Ustawienia i informacje o użytkowaniu wtyczek WP Desk"
1930
 
1931
- #: inc/wpdesk-tracker/views/tracker-connect.php:40
1932
  msgid "Your Store Overview"
1933
  msgstr "Ustawienia i informacje o użytkowaniu wtyczek WP Desk"
1934
 
1935
- #: inc/wpdesk-tracker/views/tracker-connect.php:41
1936
  msgid "Anonymized and non-sensitive store usage information"
1937
  msgstr "Tylko niewrażliwe i anonimowe dane o użytkowaniu sklepu"
1938
 
1939
- #: inc/wpdesk-tracker/views/tracker-connect.php:47
1940
- #: inc/wpdesk-tracker/views/tracker-notice.php:7
1941
  msgid "Find out more &raquo;"
1942
  msgstr "Dowiedz się więcej &raquo;"
1943
 
1944
- #: inc/wpdesk-tracker/views/tracker-deactivate.php:3
1945
  #, php-format
1946
  msgid "You are deactivating %s plugin."
1947
  msgstr "Dezaktywowałeś wtyczkę %s."
1948
 
1949
- #: inc/wpdesk-tracker/views/tracker-deactivate.php:9
1950
  msgid ""
1951
  " If you have a moment, please let us know why you are deactivating plugin "
1952
  "(anonymous feedback):"
@@ -1954,51 +2143,51 @@ msgstr ""
1954
  " Jeśli masz chwilę, prosimy daj nam znać dlaczego dezaktywowałeś wtyczkę "
1955
  "(anonimowa opinia):"
1956
 
1957
- #: inc/wpdesk-tracker/views/tracker-deactivate.php:16
1958
  msgid "The plugin suddenly stopped working"
1959
  msgstr "Wtyczka nagle przestała działać"
1960
 
1961
- #: inc/wpdesk-tracker/views/tracker-deactivate.php:24
1962
  msgid "The plugin broke my site"
1963
  msgstr "Wtyczka zepsuła moją stronę"
1964
 
1965
- #: inc/wpdesk-tracker/views/tracker-deactivate.php:32
1966
  msgid "I found a better plugin"
1967
  msgstr "Znalazłem lepszą wtyczkę"
1968
 
1969
- #: inc/wpdesk-tracker/views/tracker-deactivate.php:35
1970
  msgid "What's the plugin's name?"
1971
  msgstr "Jaka jest nazwa wtyczki?"
1972
 
1973
- #: inc/wpdesk-tracker/views/tracker-deactivate.php:43
1974
  msgid "I only needed the plugin for a short period"
1975
  msgstr "Potrzebowałem wtyczki tylko przez krótki okres"
1976
 
1977
- #: inc/wpdesk-tracker/views/tracker-deactivate.php:51
1978
  msgid "I no longer need the plugin"
1979
  msgstr "Nie potrzebuję już wtyczki"
1980
 
1981
- #: inc/wpdesk-tracker/views/tracker-deactivate.php:59
1982
  msgid "It's a temporary deactivation. I'm just debugging an issue."
1983
  msgstr "Jest to tymczasowa dezaktywacja, debaguję problem."
1984
 
1985
- #: inc/wpdesk-tracker/views/tracker-deactivate.php:67
1986
  msgid "Other"
1987
  msgstr "Inny"
1988
 
1989
- #: inc/wpdesk-tracker/views/tracker-deactivate.php:70
1990
  msgid "Kindly tell us the reason so we can improve"
1991
  msgstr "Napisz nam powód, abyśmy mogli go poprawić"
1992
 
1993
- #: inc/wpdesk-tracker/views/tracker-deactivate.php:77
1994
  msgid "Skip &amp; Deactivate"
1995
  msgstr "Pomiń i dezaktywuj"
1996
 
1997
- #: inc/wpdesk-tracker/views/tracker-deactivate.php:92
1998
  msgid "Submit &amp; Deactivate"
1999
  msgstr "Anuluj"
2000
 
2001
- #: inc/wpdesk-tracker/views/tracker-notice.php:6
2002
  msgid ""
2003
  "We need your help to improve <strong>WP Desk plugins</strong>, so they are "
2004
  "more useful for you and the rest of <strong>30,000+ users</strong>. By "
@@ -2011,11 +2200,11 @@ msgstr ""
2011
  "korzystasz z naszych wtyczek bardzo nam w tym pomożesz. Nie będziemy zbierać "
2012
  "żadnych danych wrażliwych, więc możesz czuć się bezpiecznie."
2013
 
2014
- #: inc/wpdesk-tracker/views/tracker-notice.php:10
2015
  msgid "Allow"
2016
  msgstr "Pozwól"
2017
 
2018
- #: inc/wpdesk-tracker/views/tracker-opt-out-notice.php:3
2019
  msgid ""
2020
  "You successfully opted out of collecting usage data by WP Desk. If you "
2021
  "change your mind, you can always opt in later in the plugin's quick links."
@@ -2024,30 +2213,24 @@ msgstr ""
2024
  "została przyjęta. Jeśli zmienisz zdanie, zawsze możesz włączyć zgodę poprzez "
2025
  "szybkie linki w menu wtyczek."
2026
 
2027
- #: templates/email/after_order_table.php:15
2028
- #: templates/myaccount/after_order_table.php:15
2029
- msgid "Track shipment: "
2030
- msgstr "Śledź przesyłkę: "
2031
 
2032
- #. Plugin URI of the plugin/theme
2033
- msgid "https://wordpress.org/plugins/flexible-shipping/"
2034
- msgstr "https://pl.wordpress.org/plugins/flexible-shipping/"
2035
 
2036
- #. Description of the plugin/theme
2037
- msgid ""
2038
- "Create additional shipment methods in WooCommerce and enable pricing based "
2039
- "on cart weight or total."
2040
- msgstr ""
2041
- "Stwórz dodatkowe metody wysyłki w WooCommerce i włącz obliczanie kosztów w "
2042
- "oparciu o wagę lub wartość zamówienia."
2043
 
2044
- #. Author of the plugin/theme
2045
- msgid "WP Desk"
2046
- msgstr "WP Desk"
2047
 
2048
- #. Author URI of the plugin/theme
2049
- msgid "https://www.wpdesk.net/"
2050
- msgstr "https://www.wpdesk.pl/"
2051
 
2052
  #~ msgid "Max value %s is not valid number. Row number %d."
2053
  #~ msgstr "Wartość Maks %s jest niepoprawna. Numer wiersza %d."
@@ -2061,62 +2244,6 @@ msgstr "https://www.wpdesk.pl/"
2061
  #~ msgid "Value value %s is not valid number. Row number %d."
2062
  #~ msgstr "Wartość w polu Wartość %s jest niepoprawna. Numer wiersza %d."
2063
 
2064
- #~ msgid "Test"
2065
- #~ msgstr "Test"
2066
-
2067
- #~ msgid "Input"
2068
- #~ msgstr "Input"
2069
-
2070
- #~ msgid ""
2071
- #~ "The &#8220;%s&#8221; plugin cannot run on PHP versions older than %s. "
2072
- #~ "Please contact your host and ask them to upgrade."
2073
- #~ msgstr ""
2074
- #~ "Wtyczka &#8220;%s&#8221; nie może działać w wersjach PHP starszych niż "
2075
- #~ "%s. Skontaktuj się z administratorem hostingu i poproś o aktualizację."
2076
-
2077
- #~ msgid ""
2078
- #~ "The &#8220;%s&#8221; plugin cannot run on WordPress versions older than "
2079
- #~ "%s. Please update WordPress."
2080
- #~ msgstr ""
2081
- #~ "Wtyczka &#8220;%s&#8221; nie może działać w wersjach WordPress starszych "
2082
- #~ "niż %s. Prosimy o aktualizację WordPress."
2083
-
2084
- #~ msgid ""
2085
- #~ "The &#8220;%s&#8221; plugin cannot run on WooCommerce versions older than "
2086
- #~ "%s. Please update WooCommerce."
2087
- #~ msgstr ""
2088
- #~ "Wtyczka &#8220;%s&#8221; nie może działać w wersjach WooCommerce "
2089
- #~ "starszych niż %s. Prosimy o aktualizację WooCommerce."
2090
-
2091
- #~ msgid ""
2092
- #~ "The &#8220;%s&#8221; plugin cannot run without OpenSSL module version at "
2093
- #~ "least %s. Please update OpenSSL module."
2094
- #~ msgstr ""
2095
- #~ "Wtyczka &#8220;%s&#8221; nie może działać bez aktywacji OpenSSL co "
2096
- #~ "najmniej w wersji %s. Zaktualizuj wersję OpenSSL."
2097
-
2098
- #~ msgid ""
2099
- #~ "The &#8220;%s&#8221; plugin cannot run without %s active. Please install "
2100
- #~ "and activate %s plugin."
2101
- #~ msgstr ""
2102
- #~ "Wtyczka &#8220;%s&#8221; nie może działać bez aktywacji %s. Zainstaluj i "
2103
- #~ "aktywuj wtyczkę %s."
2104
-
2105
- #~ msgid ""
2106
- #~ "The &#8220;%s&#8221; plugin cannot run without %s php module installed. "
2107
- #~ "Please contact your host and ask them to install %s."
2108
- #~ msgstr ""
2109
- #~ "Wtyczka &#8220;%s&#8221; nie może działać bez modułu php: %s. Skontaktuj "
2110
- #~ "się z administratorem hostingu i poproś o instalację %s."
2111
-
2112
- #~ msgid ""
2113
- #~ "The &#8220;%s&#8221; plugin cannot run without %s php setting set to %s. "
2114
- #~ "Please contact your host and ask them to set %s."
2115
- #~ msgstr ""
2116
- #~ "Wtyczka &#8220;%s&#8221; nie może działać bez ustawienia php %s "
2117
- #~ "ustawionego na %s. Skontaktuj się z administratorem hostingu i poproś o "
2118
- #~ "ustawienie %s."
2119
-
2120
  #~ msgid "Section214 Settings"
2121
  #~ msgstr "Section214 Settings"
2122
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Flexible Shipping\n"
4
+ "POT-Creation-Date: 2019-07-03 13:44+0200\n"
5
+ "PO-Revision-Date: 2019-07-03 14:06+0200\n"
6
  "Last-Translator: Piotr Jabłonowski <piotr.jablonowski@wpdesk.net>\n"
7
  "Language-Team: Maciej Swoboda <maciej.swoboda@gmail.com>\n"
8
  "Language: pl_PL\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.0.6\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "X-Poedit-WPHeader: flexible-shipping.php\n"
15
  "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
19
  "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
20
  "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
+ "X-Poedit-SearchPath-1: vendor/wpdesk/wp-wpdesk-fs-shipment\n"
23
+ "X-Poedit-SearchPath-2: vendor/wpdesk/wp-wpdesk-fs-table-rate\n"
24
  "X-Poedit-SearchPathExcluded-0: *.js\n"
 
25
 
26
+ #: classes/class-flexible-shipping-plugin.php:101
27
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/abstract-rate.php:30
28
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/first-rate-notice.php:20
29
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/second-rate-notice.php:20
30
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/third-rate-notice.php:23
31
  #, php-format
32
+ msgid "%1$sNope, maybe later%2$s"
33
+ msgstr "%1$sNie, może później%2$s"
 
 
 
 
 
 
 
 
34
 
35
+ #: classes/class-flexible-shipping-plugin.php:438
36
+ #, php-format
37
+ msgid "How can We make Flexible Shipping better for you? %sJust write to us.%s"
38
  msgstr ""
39
+ "Jak możemy sprawić, aby Flexible Shipping był lepszy? %sNapisz do nas.%s"
 
 
 
 
40
 
41
+ #: classes/class-flexible-shipping-plugin.php:486
42
+ #: vendor/wpdesk/wp-builder/src/Plugin/AbstractPlugin.php:147
43
+ msgid "Settings"
44
+ msgstr "Ustawienia"
 
45
 
46
+ #: classes/class-flexible-shipping-plugin.php:488
47
+ #: vendor/wpdesk/wp-builder/src/Plugin/AbstractPlugin.php:140
48
+ msgid "Docs"
49
+ msgstr "Docs"
 
 
 
 
 
 
50
 
51
+ #: classes/class-flexible-shipping-plugin.php:489
52
+ #: vendor/wpdesk/wp-builder/src/Plugin/AbstractPlugin.php:134
53
+ msgid "Support"
54
+ msgstr "Wsparcie"
 
 
 
55
 
56
+ #: classes/class-flexible-shipping-plugin.php:495
57
+ msgid "Upgrade"
58
+ msgstr "Kup PRO"
 
59
 
60
+ #: classes/manifest/functions.php:16
61
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/manifest/functions.php:16
62
  #, php-format
63
+ msgid "Shipping manifest %s, %s"
64
+ msgstr "Protokół nadania %s, %s"
65
 
66
+ #: classes/shipment/functions.php:28
67
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/shipment/functions.php:28
68
  #, php-format
69
+ msgid "Shipment for order %s, %s"
70
+ msgstr "Przesyłka do zamówienia %s, %s"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
71
 
72
+ #: classes/tracker/tracker.php:221
73
+ msgid "Opt-in"
74
+ msgstr "Opt-in"
75
 
76
+ #: classes/tracker/tracker.php:224
77
+ msgid "Opt-out"
78
+ msgstr "Opt-out"
79
 
80
+ #: inc/functions.php:67
81
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/functions.php:67
82
+ #, php-format
83
+ msgid "Redirecting. If page not redirects click %s here %s."
84
+ msgstr ""
85
+ "Przekierowywanie. Jeśli strona nie przekierowuje cię automatycznie, kliknij "
86
+ "%s tu %s."
87
 
88
+ #: templates/email/after_order_table.php:12
89
+ #: templates/myaccount/after_order_table.php:12
90
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/manifest/views/manifest-metabox.php:7
91
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/manifest/views/manifest-metabox.php:47
92
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/shipment/cpt-shipment.php:51
93
+ msgid "Shipment"
94
+ msgstr "Przesyłka"
95
 
96
+ #: templates/email/after_order_table.php:15
97
+ #: templates/myaccount/after_order_table.php:15
98
+ msgid "Track shipment: "
99
+ msgstr "Śledź przesyłkę: "
100
 
101
+ #: vendor/10up/wp_mock/tests/FunctionMocksTest.php:65
102
+ msgid "Test"
103
+ msgstr "Test"
104
 
105
+ #: vendor/10up/wp_mock/tests/FunctionMocksTest.php:75
106
+ #: vendor/10up/wp_mock/tests/FunctionMocksTest.php:77
107
+ msgid "Input"
108
+ msgstr "Input"
109
 
110
+ #: vendor/wpdesk/wp-basic-requirements/src/Basic_Requirement_Checker.php:168
111
+ #, php-format
112
  msgid ""
113
+ "The &#8220;%s&#8221; plugin cannot run on PHP versions older than %s. Please "
114
+ "contact your host and ask them to upgrade."
115
  msgstr ""
116
+ "Wtyczka &#8220;%s&#8221; nie może działać w wersjach PHP starszych niż %s. "
117
+ "Skontaktuj się z administratorem hostingu i poproś o aktualizację."
118
 
119
+ #: vendor/wpdesk/wp-basic-requirements/src/Basic_Requirement_Checker.php:172
120
  #, php-format
121
  msgid ""
122
+ "The &#8220;%s&#8221; plugin cannot run on WordPress versions older than %s. "
123
+ "Please update WordPress."
124
  msgstr ""
125
+ "Wtyczka &#8220;%s&#8221; nie może działać w wersjach WordPress starszych niż "
126
+ "%s. Prosimy o aktualizację WordPress."
127
 
128
+ #: vendor/wpdesk/wp-basic-requirements/src/Basic_Requirement_Checker.php:176
129
  #, php-format
130
+ msgid ""
131
+ "The &#8220;%s&#8221; plugin cannot run on WooCommerce versions older than "
132
+ "%s. Please update WooCommerce."
133
+ msgstr ""
134
+ "Wtyczka &#8220;%s&#8221; nie może działać w wersjach WooCommerce starszych "
135
+ "niż %s. Prosimy o aktualizację WooCommerce."
136
 
137
+ #: vendor/wpdesk/wp-basic-requirements/src/Basic_Requirement_Checker.php:180
138
  #, php-format
139
+ msgid ""
140
+ "The &#8220;%s&#8221; plugin cannot run without OpenSSL module version at "
141
+ "least %s. Please update OpenSSL module."
142
+ msgstr ""
143
+ "Wtyczka &#8220;%s&#8221; nie może działać bez aktywacji OpenSSL co najmniej "
144
+ "w wersji %s. Zaktualizuj wersję OpenSSL."
145
 
146
+ #: vendor/wpdesk/wp-basic-requirements/src/Basic_Requirement_Checker.php:268
147
  #, php-format
148
+ msgid ""
149
+ "The &#8220;%s&#8221; plugin cannot run without %s active. Please install and "
150
+ "activate %s plugin."
151
  msgstr ""
152
+ "Wtyczka &#8220;%s&#8221; nie może działać bez aktywacji %s. Zainstaluj i "
153
+ "aktywuj wtyczkę %s."
154
 
155
+ #: vendor/wpdesk/wp-basic-requirements/src/Basic_Requirement_Checker.php:304
156
  #, php-format
157
  msgid ""
158
+ "The &#8220;%s&#8221; plugin cannot run without %s php module installed. "
159
+ "Please contact your host and ask them to install %s."
160
  msgstr ""
161
+ "Wtyczka &#8220;%s&#8221; nie może działać bez modułu php: %s. Skontaktuj się "
162
+ "z administratorem hostingu i poproś o instalację %s."
163
 
164
+ #: vendor/wpdesk/wp-basic-requirements/src/Basic_Requirement_Checker.php:332
165
  #, php-format
166
+ msgid ""
167
+ "The &#8220;%s&#8221; plugin cannot run without %s php setting set to %s. "
168
+ "Please contact your host and ask them to set %s."
169
+ msgstr ""
170
+ "Wtyczka &#8220;%s&#8221; nie może działać bez ustawienia php %s ustawionego "
171
+ "na %s. Skontaktuj się z administratorem hostingu i poproś o ustawienie %s."
172
 
173
+ #: vendor/wpdesk/wp-logs/src/WP/WPCapture.php:25
174
  #, php-format
175
+ msgid ""
176
+ "Can not enable WP Desk Debug log! Cannot create directory %s or this "
177
+ "directory is not writeable!"
178
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
179
 
180
+ #: vendor/wpdesk/wp-logs/src/WP/WPCapture.php:44
 
 
 
 
181
  #, php-format
182
+ msgid "Can not enable WP Desk Debug log! Cannot create file %s!"
183
+ msgstr ""
184
 
185
+ #: vendor/wpdesk/wp-logs/src/deprecated/wpdesk-logger.php:70
186
+ #, fuzzy
187
+ #| msgid "Enabled"
188
+ msgid "Disabled"
189
+ msgstr "Włączona"
190
 
191
+ #: vendor/wpdesk/wp-logs/src/deprecated/wpdesk-logger.php:71
192
+ msgid "Emergency"
193
+ msgstr ""
194
 
195
+ #: vendor/wpdesk/wp-logs/src/deprecated/wpdesk-logger.php:72
196
+ msgid "Alert"
197
+ msgstr ""
198
 
199
+ #: vendor/wpdesk/wp-logs/src/deprecated/wpdesk-logger.php:73
200
+ msgid "Critical"
201
+ msgstr ""
202
 
203
+ #: vendor/wpdesk/wp-logs/src/deprecated/wpdesk-logger.php:74
204
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/bulk-actions.php:196
205
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/bulk-actions.php:226
206
+ msgid "Error"
207
+ msgstr "Błąd"
208
 
209
+ #: vendor/wpdesk/wp-logs/src/deprecated/wpdesk-logger.php:75
210
+ msgid "Warning"
 
211
  msgstr ""
 
 
212
 
213
+ #: vendor/wpdesk/wp-logs/src/deprecated/wpdesk-logger.php:76
214
+ msgid "Notice"
215
+ msgstr ""
216
 
217
+ #: vendor/wpdesk/wp-logs/src/deprecated/wpdesk-logger.php:77
218
+ msgid "Info"
219
+ msgstr ""
 
220
 
221
+ #: vendor/wpdesk/wp-logs/src/deprecated/wpdesk-logger.php:78
222
+ #, fuzzy
223
+ #| msgid "Debug mode"
224
+ msgid "Debug"
225
+ msgstr "Tryb debug"
226
 
227
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-ajax.php:98
228
  #, php-format
229
+ msgid "%1$s Shipment plan exceeded. %2$sPlease upgrade your plan →%3$s"
230
+ msgstr "%1$s Przekroczono plan FS Connect %2$sProszę zmień swój plan →%3$s"
231
 
232
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-ajax.php:124
233
+ msgid "Shipment cannot be saved for this status!"
234
+ msgstr "Przesyłki nie można zapisać w tym statusie!"
 
235
 
236
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-ajax.php:131
237
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/metabox/ajax.php:52
238
+ msgid "Saved"
239
+ msgstr "Zapisano"
240
 
241
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-ajax.php:152
242
  #, php-format
243
+ msgid "Shipment created.%1$sFS Connect plan usage: %2$s/%3$s shipments"
244
+ msgstr ""
245
+ "Przesyłka utworzona.%1$sWykorzystanie planu FS Connect: %2$s/%3$s przesyłek"
246
 
247
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-ajax.php:193
248
+ msgid "Canceled"
249
+ msgstr "Anulowana"
 
250
 
251
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-attachments-ajax.php:59
252
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-attachments-ajax.php:124
253
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-attachments-ajax.php:175
254
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/metabox/ajax.php:22
255
+ msgid "Unknown error!"
256
+ msgstr "Nieznany błąd!"
257
 
258
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-attachments-ajax.php:63
259
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-attachments-ajax.php:128
260
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-attachments-ajax.php:179
261
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/metabox/ajax.php:25
262
+ msgid "Nonce verification error! Invalid request."
263
+ msgstr "Błąd weryfikacji nonce! Nieprawidłowe żądanie."
264
 
265
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-attachments-ajax.php:74
266
+ msgid "Attachment type not selected!"
267
+ msgstr "Typ załącznika nie został wybrany!"
268
 
269
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-attachments-ajax.php:76
270
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-attachments-ajax.php:155
271
+ msgid "Attachment not found!"
272
+ msgstr "Załącznik nie został znaleziony!"
273
 
274
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-attachments-ajax.php:78
275
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-attachments-ajax.php:136
276
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-attachments-ajax.php:186
277
+ msgid "Shipment not found!"
278
+ msgstr "Przesyłka nie została znaleziona!"
279
 
280
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-attachments-ajax.php:107
281
+ msgid "Attachment added"
282
+ msgstr "Załącznik został dodany"
 
 
 
283
 
284
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-attachments-ajax.php:153
285
+ msgid "Attachment deleted"
286
+ msgstr "Załącznik został usunięty"
287
 
288
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-attachments-ajax.php:197
289
+ #, php-format
290
+ msgid "Unable to send documents: %1$s"
291
+ msgstr "Nie można wysłać dokumentów: %1$s"
292
 
293
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-attachments-ajax.php:207
294
+ msgid "Attachments send"
295
+ msgstr "Załączniki zostały wysłane"
296
 
297
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-message-formatter.php:42
298
+ #, php-format
299
+ msgid "%1$s notice"
300
+ msgstr "%1$s komunikat"
301
 
302
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-metabox-attachments.php:37
303
+ msgid "Attachments"
304
+ msgstr "Załączniki"
305
 
306
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-send.php:191
307
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas.php:372
308
+ msgid "UPS! Something is wrong!"
309
+ msgstr "UPS! Nie działa poprawnie!"
310
 
311
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas.php:242
312
+ #, php-format
313
+ msgid "There was problems on checkout: %1$s"
314
+ msgstr "Pojawił się problem na stronie zamówienia: %1$s"
315
 
316
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas.php:335
317
+ #, php-format
318
+ msgid "%1$s Shipment %2$s was created."
319
+ msgstr "%1$s Przesyłka %2$s została utworzona."
320
 
321
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas.php:353
322
+ #, php-format
323
+ msgid "%1$s Shipment %2$s was canceled."
324
+ msgstr "%1$s Przesyłka %2$s została anulowana."
325
 
326
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas.php:607
327
+ msgid "Label is not avaliable for this shipment."
328
+ msgstr "Etykieta nie jest dostępna dla tej przesyłki."
329
 
330
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/views/order-metabox-actions.php:3
331
+ msgid "Create"
332
+ msgstr "Utwórz"
 
 
333
 
334
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/views/order-metabox-actions.php:4
335
+ msgid "Save"
336
+ msgstr "Zapisz"
337
 
338
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/views/order-metabox-actions.php:11
339
+ msgid "Get Label"
340
+ msgstr "Pobierz etykietę"
 
 
 
 
341
 
342
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/views/order-metabox-actions.php:15
343
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/manifest/views/column-actions.php:2
344
+ #: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:77
345
+ msgid "Cancel"
346
+ msgstr "Anuluj"
347
 
348
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/views/order-metabox-actions.php:22
349
+ msgid "Track:"
350
+ msgstr "Śledź:"
351
 
352
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/views/order-metabox-actions.php:22
353
+ msgid "Click to track shipment"
354
+ msgstr "Kliknij, aby śledzić przesyłkę"
355
 
356
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/views/order-metabox-actions.php:27
357
+ #, php-format
358
+ msgid "%1$sShipping charges:%2$s %3$s"
359
+ msgstr "%1$sKoszt przesyłki:%2$s %3$s"
 
 
360
 
361
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/views/order-metabox-actions.php:31
362
  #, php-format
363
+ msgid "%1$sShipment status:%2$s %3$s"
364
+ msgstr "%1$s Status przesyłki: %2$s %3$s"
365
 
366
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/views/order-metabox-shipment-attachments.php:23
367
+ msgid "Type"
368
+ msgstr "Typ"
369
 
370
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/views/order-metabox-shipment-attachments.php:24
371
+ msgid "Filename"
372
+ msgstr "Nazwa pliku"
 
 
373
 
374
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/views/order-metabox-shipment-attachments.php:25
375
+ msgid "Sent"
376
+ msgstr "Wysłany"
377
 
378
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/views/order-metabox-shipment-attachments.php:37
379
+ msgid "No"
380
+ msgstr "Nie"
 
 
 
 
381
 
382
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/views/order-metabox-shipment-attachments.php:37
383
+ msgid "Yes"
384
+ msgstr ""
385
+ "T\n"
386
+ "ak"
387
 
388
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/views/order-metabox-shipment-attachments.php:46
389
+ msgid "Send"
390
+ msgstr "Wysłany"
391
+
392
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/views/order-metabox-shipment-attachments.php:72
393
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/views/html-order-add_shipping-metabox.php:15
394
+ msgid "Add"
395
+ msgstr "Dodaj"
 
396
 
397
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/views/order-metabox-single-attachment.php:35
398
+ msgid "Delete"
399
+ msgstr "Usuń"
400
+
401
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/checkout-fields/class-saas-checkout-field-collection-points.php:123
402
  msgid "Select point from map"
403
  msgstr "Wybierz punkt z mapy"
404
 
405
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-bad-credentials-exception.php:17
406
  #, php-format
407
  msgid ""
408
  "The Connect Key that you entered is invalid. Please enter a valid key. "
411
  "Wprowadzony klucz Connect jest nieprawidłowy. Proszę wprowadzić prawidłowy "
412
  "klucz. %1$sPobierz swój klucz Connect →%2$s"
413
 
414
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-cache-settings.php:67
415
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-settings-service-checkbox.php:127
416
  msgid "Enable"
417
  msgstr "Włącz"
418
 
419
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-cache-settings.php:68
420
  msgid "Cache"
421
  msgstr "Cache"
422
 
423
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-cache-settings.php:69
424
  msgid "Enables Flexible Shipping Connect cache. Disable only for debugging."
425
  msgstr "Włącza cache Flexible Shipping Connect. Wyłącz tylko do debugowania."
426
 
427
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-connection-status-ajax.php:55
428
  msgid "Something go wrong!"
429
  msgstr "Coś poszło nie tak!"
430
 
431
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-connection-status-ajax.php:61
432
  #, php-format
433
  msgid ""
434
  "Invalid response from Flexible Shipping Connect platform. Response code: "
436
  msgstr ""
437
  "Nieprawidłowa odpowiedź Flexible Shipping Connect. Kod odpowiedzi: %1$s."
438
 
439
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-connection-status-ajax.php:69
440
  msgid "OK"
441
  msgstr "OK"
442
 
443
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-connection-status-field.php:63
444
  msgid "Checking..."
445
  msgstr "Sprawdzanie…"
446
 
447
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-connection-status-field.php:67
448
  msgid "Something go wrong! (AJAX)"
449
  msgstr "Coś poszło nie tak! (AJAX)"
450
 
451
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-connection-status-field.php:70
452
  msgid "Add credentials"
453
  msgstr "Dodaj ustawienia"
454
 
455
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-connection.php:250
456
  msgid ""
457
  "Your store has been connected to Flexible Shipping Connect. Choose from the "
458
  "available shipping integrations below."
460
  "Twój sklep został podłączony do Flexible Shipping Connect. Wybierz jedną z "
461
  "dostępnych poniżej integracji wysyłkowych."
462
 
463
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-connection.php:260
464
  msgid ""
465
  "You are now disconnected from Flexible Shipping Connect. All shipping "
466
  "services have been disabled. To use Flexible Shipping Connect again, please "
470
  "wysyłkowe zostały wyłączone. Aby ponownie użyć Flexible Shipping Connect, "
471
  "wprowadź ważny klucz Connect."
472
 
473
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-connection.php:270
474
  msgid "Your store is already connected to Flexible Shipping Connect!"
475
  msgstr "Twój sklep jest już podłączony do Flexible Shipping Connect!"
476
 
477
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-connection.php:281
478
  #, php-format
479
  msgid ""
480
  "Your store (%1$s) is already registered on another account. You can register "
484
  "zarejestrować swoją domenę tylko na jednym koncie. Jeśli masz pytania, "
485
  "%2$sskontaktuj się z nami%3$s."
486
 
487
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-connection.php:330
488
  #, php-format
489
  msgid "Message from platform: %1$s%2$s%3$s"
490
  msgstr "Komunikat z platformy: %1$s%2$s%3$s"
491
 
492
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-connection.php:342
493
  #, php-format
494
  msgid ""
495
  "FS Connect is undergoing maintenance. To get more information about the "
499
  "temat statusu platformy sprawdź %1$sstatus.flexibleshipping.com &rarr;%2$s"
500
  "%3$s"
501
 
502
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-connection.php:366
503
  msgid ""
504
  "There are some connection problems. Please try again in a few minutes. "
505
  "Thanks!"
506
  msgstr ""
507
  "Chwilowe problemy z połączeniem. Spróbuj ponownie za kilka minut. Dziękujemy!"
508
 
509
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-connection.php:372
510
  #, php-format
511
  msgid ""
512
  "To get more information about the platform status check %1$sstatus."
515
  "Aby uzyskać więcej informacji na temat statusu platformy sprawdź %1$sstatus."
516
  "flexibleshipping.com &rarr;%2$s"
517
 
518
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-connection.php:397
519
  #, php-format
520
  msgid ""
521
  "The Connect Key that you entered is invalid. Please enter a valid key. "
526
  "klucz. %1$sZarejestruj się%3$s lub zaloguj na %2$sistniejące konto%3$s, aby "
527
  "otrzymać klucz."
528
 
529
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-connection.php:578
530
  msgid "Disconnect"
531
  msgstr "Rozłącz"
532
 
533
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-connection.php:582
534
  msgid "Connect"
535
  msgstr "Połącz"
536
 
537
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-free-shipping-metadata-handler.php:36
538
  #, php-format
539
  msgid "%1$s (free shipping)"
540
  msgstr "%1$s (darmowa wysyłka)"
541
 
542
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-live-rates-fallback-metadata-handler.php:37
543
  #, php-format
544
  msgid "%1$s (fallback)"
545
  msgstr "%1$s (stawka awaryjna)"
546
 
547
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-live-rates-handler.php:460
548
  #, php-format
549
  msgid "Flexible Shipping Fallback (%1$s): %2$s"
550
  msgstr "Stawka awaryjna Flexible Shipping (%1$s): %2$s"
551
 
552
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-live-rates-handler.php:513
553
  #, php-format
554
  msgid "Invalid live rates response! Error code: %1$s"
555
  msgstr "Nieprawidłowa odpowiedź dla stawek live! Kod błędu: %1$s"
556
 
557
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-live-rates-handler.php:532
558
  #, php-format
559
  msgid "Live rates response exception %1$s; %2$s occurred while sending request"
560
  msgstr ""
561
  "Zwrócony komunikat błędu dla stawek live: %1$s. Kod błędu dla przesłanego "
562
  "żądania: %2$s"
563
 
564
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-new-courier-settings-section.php:47
565
  #, php-format
566
  msgid "Do not you see your courier? %1$sCheck planned integrations →%2$s"
567
  msgstr "Nie widzisz swojego kuriera? %1$sSprawdź planowane integracje →%2$s"
568
 
569
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-settings-service-checkbox.php:78
570
  msgid "Invalid requireWordpressPluginVersion capability!"
571
  msgstr "Invalid requireWordpressPluginVersion capability!"
572
 
573
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-settings-service-checkbox.php:83
574
  #, php-format
575
  msgid ""
576
  "This integration requires Flexible Shipping Plugin in version %1$s or newer!"
577
  msgstr ""
578
  "Ta integracja wymaga wtyczki Flexible Shipping w wersji %1$s lub nowszej!"
579
 
580
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-settings-service-checkbox.php:92
581
  #, php-format
582
  msgid "Go to %s settings</a>"
583
  msgstr "Przejdź do ustawień %s</a>"
584
 
585
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-settings-service-checkbox.php:110
586
  #, php-format
587
  msgid "%1$s%2$s (new)%3$s"
588
  msgstr "%1$s%2$s (nowość)%3$s"
589
 
590
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-settings.php:87
591
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/multilingual.php:44
592
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/multilingual.php:47
593
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/multilingual.php:50
594
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/flexible-shipping.php:16
595
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/flexible-shipping.php:30
596
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/shipping-method-form.php:79
597
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/shipping-method.php:34
598
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/shipping-method.php:35
599
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/shipping-method.php:53
600
+ msgid "Flexible Shipping"
601
+ msgstr "Flexible Shipping"
602
+
603
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-settings.php:251
604
  msgid "Connect Services"
605
  msgstr "Usługi Connect"
606
 
607
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-settings.php:252
608
  msgid ""
609
  "Enable services to automate shipping and print labels with Flexible Shipping "
610
  "Connect."
612
  "Włącz usługi, aby automatyzować wysyłkę i pobierać etykiety dzięki Flexible "
613
  "Shipping Connect."
614
 
615
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-settings.php:305
616
  msgid "Advanced settings"
617
  msgstr "Ustawienia zaawansowane"
618
 
619
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipment-order-auto-complete.php:59
620
  msgid "Order status changed automatically by Flexible Shipping Plugin."
621
  msgstr ""
622
  "Status zamówienia zmieniony automatycznie przez wtyczkę Flexible Shipping."
623
 
624
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipment-settings-field.php:37
625
  msgid "Create shipments"
626
  msgstr "Utwórz przesyłkę"
627
 
628
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipment-settings-field.php:42
629
  msgid "Manually"
630
  msgstr "Manualnie"
631
 
632
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipment-settings-field.php:43
633
  msgid "Automatically"
634
  msgstr "Automatycznie"
635
 
636
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipment-settings-field.php:45
637
  msgid ""
638
  "Choose to create shipments manually or automatically based on the order "
639
  "status."
641
  "Wybierz opcję ręcznego lub automatycznego tworzenia przesyłek w oparciu o "
642
  "status zamówienia."
643
 
644
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipment-settings-field.php:49
645
  msgid "Order status"
646
  msgstr "Status zamówienia"
647
 
648
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipment-settings-field.php:54
649
  msgid "Select order status for automatic shipment creation."
650
  msgstr "Wybierz status zamówienia do automatycznego tworzenia przesyłek."
651
 
652
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipment-settings-field.php:58
653
  msgid "Complete order"
654
  msgstr "Zamówienie zrealizowane"
655
 
656
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipment-settings-field.php:61
657
  msgid "Enable automatic order status change"
658
  msgstr "Włącz automatyczną zmianę statusu zamówienia"
659
 
660
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipment-settings-field.php:63
661
  msgid "Automatically change order status to completed after creating shipment."
662
  msgstr ""
663
  "Automatyczna zmiana statusu zamówienia na zrealizowane po utworzeniu "
664
  "przesyłki."
665
 
666
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipping-service-settings.php:247
667
  msgid "Invalid format - contact with flexibleshipping.com administrator."
668
  msgstr "Invalid format - contact with flexibleshipping.com administrator."
669
 
670
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipping-service-settings.php:254
671
  #, php-format
672
  msgid "Ups, something is wrong. Error code: %1$s."
673
  msgstr "Ups, coś poszło nie tak. Kod błędu: %1$s."
674
 
675
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipping-service.php:546
676
  msgid "Rates type"
677
  msgstr "Typ stawek"
678
 
679
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipping-service.php:550
680
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipping-service.php:562
681
  msgid "Custom"
682
  msgstr "Własne"
683
 
684
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipping-service.php:554
685
  #, php-format
686
  msgid ""
687
  "Choose custom rates to set a custom shipping cost (this method will be the "
692
  "wysyłki będzie wybrana usługa %1$s). Wybierz stawki Live, jeśli chcesz "
693
  "prezentować usługi i stawki wg. adresu klienta."
694
 
695
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipping-service.php:561
696
  msgid "Live"
697
  msgstr "Live"
698
 
699
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipping-service.php:580
700
  msgid "Custom services"
701
  msgstr "Usługi"
702
 
703
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipping-service.php:584
704
  msgid "Enable services custom settings"
705
  msgstr "Włącz własne ustawienia usług"
706
 
707
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipping-service.php:626
708
  msgid "Fallback"
709
  msgstr "Stawka awaryjna"
710
 
711
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipping-service.php:627
712
  msgid "Enable fallback"
713
  msgstr "Włącz stawkę awaryjną"
714
 
715
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipping-service.php:629
716
  msgid ""
717
  "Enable to offer flat rate cost for shipping so that the user can still "
718
  "checkout, if API returns no matching rates."
720
  "Włącz, aby oferować płaską stawkę wysyłki. Klient będzie mógł zrealizować "
721
  "zamówienia jeśli API nie zwróci żadnych usług."
722
 
723
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipping-service.php:762
724
  #, php-format
725
  msgid "You need to configure the service. %1$sGo to %2$s settings.%3$s"
726
  msgstr "Musisz skonfigurować usługę. %1$sPrzejdź do %2$s ustawień.%3$s"
727
 
728
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipping-services-manager.php:173
729
  #, php-format
730
  msgid "%1$sYour settings have been saved.%2$s"
731
  msgstr "%1$sUstawienia zostały zapisane.%2$s"
732
 
733
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipping-services.php:102
734
  msgid "Services"
735
  msgstr "Usługi"
736
 
737
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-user-registration.php:128
738
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-user-registration.php:129
739
  msgid "Flexible Shipping Connect Registration"
740
  msgstr "Rejestracja Flexible Shipping Connect"
741
 
742
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-user-registration.php:203
743
  msgid ""
744
  "There are some connection problems. Please try again in few minutes. Thanks!"
745
  msgstr ""
746
  "Chwilowe problemy z połączeniem. Spróbuj ponownie za kilka minut. Dziękujemy!"
747
 
748
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-user-registration.php:212
749
  msgid "Please enter a valid email!"
750
  msgstr "Proszę podać poprawny adres e-mail!"
751
 
752
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-user-registration.php:225
753
  #, php-format
754
  msgid ""
755
  "%1$sAccount created, please check your email and click the activation link "
760
  "połączyć (%3$s).%2$s Jeśli nie otrzymałeś e-maila, proszę %4$sskontaktuj się "
761
  "z nami%5$s."
762
 
763
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-user-registration.php:249
764
  #, php-format
765
  msgid ""
766
  "Your store (%1$s) is already registered with another account! You can "
771
  "zarejestrować swoją domenę za pomocą jednego konta. Jeśli masz pytania, "
772
  "%2$sskontaktuj się z nami%3$s."
773
 
774
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-user-registration.php:271
775
  #, php-format
776
  msgid ""
777
  "Our demo does not support Flexible Shipping Connect registration. Try FS "
780
  "Nasze demo nie obsługuje rejestracji Flexible Shipping Connect. Wypróbuj FS "
781
  "Connect za darmo. %1$sSprawdź teraz →%2$s"
782
 
783
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-user-registration.php:298
784
  #, php-format
785
  msgid ""
786
  "Account with this email is already registered! We emailed your Connect Key "
791
  "kluczem Connect do %1$s.<br>Wpisz klucz %2$stutaj%4$s. Możesz również "
792
  "uzyskać klucz logując się na %3$sswoje konto%4$s."
793
 
794
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/class-saas-user-registration.php:316
795
  #, php-format
796
  msgid "Unknown response code from Flexible Shipping Connect API (%s)."
797
  msgstr "Nieznany kod odpowiedzi z API Flexible Shipping Connect (%s)."
798
 
799
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/collection-points/class-saas-collection-points-ajax.php:76
800
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/manifest/cpt-shipping-manifest.php:219
801
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/manifest/cpt-shipping-manifest.php:243
802
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/shipment/cpt-shipment.php:190
803
+ msgid "Invalid nonce!"
804
+ msgstr "Błąd weryfikacji nonce!"
805
+
806
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/collection-points/class-saas-collection-points-map.php:47
807
  msgid "Points can not be found. Check the shipping address."
808
  msgstr "Nie można znaleźć punktów. Sprawdź adres wysyłki."
809
 
810
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/collection-points/class-saas-collection-points-map.php:48
811
  msgid "It's your location"
812
  msgstr "Twoja lokalizacja"
813
 
814
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/collection-points/class-saas-shipping-service-collection-points.php:79
815
  msgid "Cannot get data for this address!"
816
  msgstr "Nie można uzyskać danych dla tego adresu!"
817
 
818
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/collection-points/views/map.php:4
819
  msgid "Select point"
820
  msgstr "Wybierz punkt"
821
 
822
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/collection-points/views/map.php:116
823
  msgid "Select"
824
  msgstr "Wybierz"
825
 
826
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-boxes-content.php:4
827
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-boxes-content.php:5
828
  msgid "Print Labels"
829
  msgstr "Drukuj etykiety"
830
 
831
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-boxes-content.php:6
832
  msgid ""
833
  "Download printable PDF shipping labels directly from WooCommerce orders list "
834
  "in bulk or one by one from order details."
836
  "Pobieraj etykiety wysyłkowe bezpośrednio z listy zamówień WooCommerce lub "
837
  "edycji zamówienia."
838
 
839
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-boxes-content.php:10
840
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-boxes-content.php:11
841
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-flexible-shipping-connect-notice.php:90
842
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-flexible-shipping-connect-notice.php:91
843
  msgid "Calculate Rates"
844
  msgstr "Obliczaj stawki"
845
 
846
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-boxes-content.php:12
847
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-flexible-shipping-connect-notice.php:92
848
  msgid ""
849
  "Calculate shipping rates in real time, and get available service types and "
850
  "expected delivery time based on customer's address."
852
  "Obliczaj stawki wysyłki w czasie rzeczywistym i otrzymuj dostępne rodzaje "
853
  "usług w oparciu o adres klienta."
854
 
855
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-boxes-content.php:16
856
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-boxes-content.php:17
857
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-flexible-shipping-connect-notice.php:96
858
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-flexible-shipping-connect-notice.php:97
859
  msgid "Track Parcels"
860
  msgstr "Śledź przesyłki"
861
 
862
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-boxes-content.php:18
863
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-flexible-shipping-connect-notice.php:98
864
  msgid ""
865
  "Always keep your customers (and yourself) up to date with automatic "
866
  "confirmation emails with tracking link and delivery status."
868
  "Przekazuj linki do śledzenia przesyłki w automatycznych mailach "
869
  "transakcyjnych do klientów."
870
 
871
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-boxes-content.php:22
872
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-boxes-content.php:23
873
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-flexible-shipping-connect-notice.php:102
874
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-flexible-shipping-connect-notice.php:103
875
  msgid "Automate Shipping"
876
  msgstr "Automatyzuj wysyłkę"
877
 
878
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-boxes-content.php:24
879
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-flexible-shipping-connect-notice.php:104
880
  msgid ""
881
  "Automatically create shipments and print labels based on order status. "
882
  "Change order status after shipment creation."
885
  "zamówienia. Status zamówienia zmieni się automatycznie po utworzeniu "
886
  "przesyłki."
887
 
888
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-boxes-content.php:28
889
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-boxes-content.php:29
890
  msgid "Create Shipments"
891
  msgstr "Twórz przesyłki"
892
 
893
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-boxes-content.php:30
894
  msgid ""
895
  "Create shipments with predefined services, sizes and weights automatically "
896
  "filled in from order items."
898
  "Twórz przesyłki z ustawionymi usługami, rozmiarami i wagami automatycznie "
899
  "wypełnionymi z pozycji zamówienia."
900
 
901
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-boxes-content.php:34
902
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-boxes-content.php:35
903
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-flexible-shipping-connect-notice.php:108
904
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-flexible-shipping-connect-notice.php:109
905
  msgid "Manage Orders"
906
  msgstr "Zarządzaj zamówieniami"
907
 
908
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-boxes-content.php:36
909
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-flexible-shipping-connect-notice.php:110
910
  msgid ""
911
  "Get a complete overview of your orders and shipments in your WooCommerce "
912
  "dashboard with shipments statuses and filters."
914
  "Zyskaj możliwość kompletnego zarządzania zamówieniami i przesyłkami "
915
  "bezpośrednio z panelu WooCommerce za pomocą statusów i filtrów."
916
 
917
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-boxes-content.php:43
918
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-flexible-shipping-connect-notice.php:19
919
  msgid "Ship your orders faster with Flexible Shipping Connect"
920
  msgstr "Wysyłaj zamówienia szybciej z Flexible Shipping Connect"
921
 
922
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-boxes-content.php:62
923
  msgid "Sign up now!"
924
  msgstr "Zarejestruj się teraz!"
925
 
926
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-field-saas-connection.php:9
927
  msgid "Flexible Shipping Connect"
928
  msgstr "Flexible Shipping Connect"
929
 
930
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-field-saas-connection.php:16
931
  #, php-format
932
  msgid ""
933
  "Find out more about the possibilities of %1$sFlexible Shipping Connect%2$s."
935
  "Dowiedz się więcej o możliwościach związanych z %1$sFlexible Shipping Connect"
936
  "%2$s."
937
 
938
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-field-saas-connection.php:26
939
  #, php-format
940
  msgid ""
941
  "%1$sRegister%3$s for a new Flexible Shipping Connect account or log in to "
944
  "%1$sZarejestruj%3$s nowe konto Flexible Shipping Connect lub zaloguj się do "
945
  "%2$sswojego konta%3$s, aby otrzymać klucz."
946
 
947
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-field-saas-connection.php:33
948
  msgid "Check how to start with FS Connect &rarr;"
949
  msgstr "Sprawdź jak zacząć z FS Connect &rarr;"
950
 
951
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-flexible-shipping-connect-notice.php:5
952
  msgid "Welcome to new Flexible Shipping Connect installation guide."
953
  msgstr "Witamy w przewodniku o nowym Flexible Shipping Connect."
954
 
955
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-flexible-shipping-connect-notice.php:7
956
  msgid ""
957
  "To complete the installation please click the Sign up for Connect button "
958
  "below."
959
  msgstr ""
960
  "Aby zakończyć instalację, kliknij poniżej przycisk Zarejestruj się w Connect."
961
 
962
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-flexible-shipping-connect-notice.php:9
963
  #, php-format
964
  msgid ""
965
  "The %saccount is free (no credit card needed)%s and allows you to send "
968
  "Konto %sjest bezpłatne (nie wymaga karty kredytowej) %s i pozwala na "
969
  "nadawanie paczek bezpośrednio z panelu WooCommerce!"
970
 
971
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-flexible-shipping-connect-notice.php:11
972
  msgid ""
973
  "If you want to learn more about other benefits, you may click one of the "
974
  "tabs on the left."
976
  "Jeśli chcesz dowiedzieć się więcej o innych korzyściach, możesz kliknąć "
977
  "jedną z zakładek po lewej stronie."
978
 
979
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-flexible-shipping-connect-notice.php:35
980
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-flexible-shipping-connect-notice.php:41
981
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-flexible-shipping-connect-notice.php:47
982
  msgid "soon!"
983
  msgstr "wkrótce!"
984
 
985
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-flexible-shipping-connect-notice.php:56
986
  msgid "Using Flexible Shipping Connect, you can send packages via:"
987
  msgstr ""
988
  "Korzystając z Flexible Shipping Connect, możesz wysyłać paczki za "
989
  "pośrednictwem:"
990
 
991
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-flexible-shipping-connect-notice.php:77
992
  msgid "Read more about possible integrations &rarr;"
993
  msgstr "Przeczytaj więcej o możliwych integracjach &rarr;"
994
 
995
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-flexible-shipping-connect-notice.php:84
996
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-flexible-shipping-connect-notice.php:85
997
  msgid "Create & Print Labels"
998
  msgstr "Twórz i drukuj etykiety"
999
 
1000
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-flexible-shipping-connect-notice.php:86
1001
  msgid ""
1002
  "Create shipments with predefined services, sizes and weights automatically "
1003
  "filled in from order items. Download printable PDF shipping labels directly "
1007
  "wypełnionymi z pozycji zamówienia. Pobieraj etykiety wysyłkowe bezpośrednio "
1008
  "z listy zamówień WooCommerce lub edycji zamówienia."
1009
 
1010
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-flexible-shipping-connect-notice.php:114
1011
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-flexible-shipping-connect-notice.php:115
1012
  msgid "Couriers"
1013
  msgstr "Kurierzy"
1014
 
1015
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-flexible-shipping-connect-notice.php:164
1016
  msgid "Sign up for Connect"
1017
  msgstr "Zarejestruj się w Connect"
1018
 
1019
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-flexible-shipping-connect-notice.php:166
1020
  msgid "Start quick tour"
1021
  msgstr "Rozpocznij przewodnik"
1022
 
1023
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-flexible-shipping-connect-notice.php:166
1024
  msgid "Next feature"
1025
  msgstr "Następna funkcja"
1026
 
1027
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-flexible-shipping-connect-second-notice.php:3
1028
  #, php-format
1029
  msgid ""
1030
  "You never sign up to Flexible Shipping Connect. You may finish the "
1033
  "Nie zarejestrowałeś się w Flexible Shipping Connect. Możesz dokończyć proces "
1034
  "rejestracji tutaj %1$sZarejestruj się w Connect%2$s"
1035
 
1036
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-order-fallback-message.php:1
1037
  msgid "Fallback:"
1038
  msgstr "Stawka awaryjna:"
1039
 
1040
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-order-free-shipping.php:1
1041
  msgid "Free shipping"
1042
  msgstr "Darmowa wysyłka"
1043
 
1044
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-order-message-stock.php:1
1045
  msgid "Additional info:"
1046
  msgstr "Dodatkowe informacje:"
1047
 
1048
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-registration-page.php:4
1049
  #, php-format
1050
  msgid ""
1051
  "You are connected. %1$sGo to Flexible Shipping Connect settings &rarr;%2$s"
1053
  "Jesteś połączony. %1$sPrzejdź do ustawień Flexible Shipping Connect &rarr;"
1054
  "%2$s"
1055
 
1056
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-registration-page.php:10
1057
  msgid "Join Flexible Shipping Connect Now!"
1058
  msgstr "Dołącz do Flexible Shipping Connect!"
1059
 
1060
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-registration-page.php:16
1061
  msgid "Sign up for automatic shipments, label printing, live rates and more!"
1062
  msgstr ""
1063
  "Zarejestruj się, aby automatyzować przesyłkę, drukować etykiety, pobierać "
1064
  "stawki i wiele więcej!"
1065
 
1066
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-registration-page.php:18
1067
  #, php-format
1068
  msgid ""
1069
  "By signing up, you agree to the %1$sTerms of Service%3$s and to %2$sPrivacy "
1072
  "Rejestrując się, zgadzasz się na %1$sTerms of Service%3$s i %2$sPrivacy "
1073
  "Policy%3$s"
1074
 
1075
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-registration-page.php:23
1076
  msgid "Sign Up"
1077
  msgstr "Zarejestruj się"
1078
 
1079
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-saas-connection-form.php:6
1080
  msgid "Connect Key"
1081
  msgstr "Klucz Connect"
1082
 
1083
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-saas-connection-form.php:22
1084
  msgid ""
1085
  "Are you sure you want do disconnect your store from Flexible Shipping "
1086
  "Connect?\\n\\nAll shipping services will be disabled."
1088
  "Czy jesteś pewien, że chcesz odłączyć swój sklep od Flexible Shipping "
1089
  "Connect?\\n\\nWszystkie integracje wysyłkowe zostaną wyłączone."
1090
 
1091
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-shipping-method-info-description-body.php:13
1092
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-shipping-method-info-description.php:16
1093
  msgid "How to use Flexible Shipping?"
1094
  msgstr "Jak używać Flexible Shipping?"
1095
 
1096
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-shipping-method-info-description-body.php:19
1097
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-shipping-method-info-description.php:22
1098
  #, php-format
1099
  msgid ""
1100
  "To add first Flexible Shipping method go to %sShipping zones%s and add "
1103
  "Aby dodać pierwszą metodę Flexible Shipping przejdź do zakładki %sStrefy "
1104
  "wysyłki%s i dodaj Flexible Shipping do strefy wysyłki."
1105
 
1106
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-shipping-method-info-description-body.php:26
1107
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-shipping-method-info-description.php:29
1108
  msgid ""
1109
  "You can start the configuration by clicking the Flexible Shipping link in "
1110
  "the Shipping methods table."
1112
  "Możesz rozpocząć konfigurację klikając na link Flexible Shipping w tabeli "
1113
  "”Metody wysyłki”."
1114
 
1115
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-shipping-method-info-description-body.php:29
1116
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-shipping-method-info-description.php:32
1117
  msgid "Quick Video Overview"
1118
  msgstr "Krótki przewodnik video"
1119
 
1120
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-shipping-method-info-description-body.php:35
1121
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-shipping-method-info-description.php:38
1122
  msgid "More resources"
1123
  msgstr "Więcej informacji"
1124
 
1125
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-shipping-method-info-description-body.php:38
1126
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-shipping-method-info-description.php:41
1127
  msgid "General Settings"
1128
  msgstr "Ustawienia główne"
1129
 
1130
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-shipping-method-info-description-body.php:39
1131
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-shipping-method-info-description.php:42
1132
  msgid "Adding a shipping method"
1133
  msgstr "Dodawanie metody wysyłki"
1134
 
1135
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-shipping-method-info-description-body.php:40
1136
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-shipping-method-info-description.php:43
1137
  msgid "Currency Support"
1138
  msgstr "Waluty"
1139
 
1140
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-shipping-method-info-description-body.php:41
1141
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-shipping-method-info-description.php:44
1142
  msgid "Weight Based Shipping"
1143
  msgstr "Koszt na wagę"
1144
 
1145
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-shipping-method-info-description-body.php:42
1146
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-shipping-method-info-description.php:45
1147
  msgid "Shipping Insurance"
1148
  msgstr "Ubezpieczenie przesyłki"
1149
 
1150
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-shipping-method-info-description-body.php:43
1151
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-shipping-method-info-description.php:46
1152
  msgid "Conditional Cash on Delivery"
1153
  msgstr "Przesyłka za pobraniem"
1154
 
1155
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-shipping-method-info-description.php:49
1156
  msgid "Integrations"
1157
  msgstr "Integracja"
1158
 
1159
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-shipping-method-info-description.php:54
1160
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-shipping-method-info-description.php:58
1161
  msgid "FS Connect"
1162
  msgstr "FS Connect"
1163
 
1164
+ #: vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-shipping-method-info-description.php:60
1165
  msgid "Enable integration with Flexible Shipping Connect"
1166
  msgstr "Włącz integrację z Flexible Shipping Connect"
1167
 
1168
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/admin-notices.php:164
1169
  #, php-format
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1170
  msgid ""
1171
+ "Flexible Shipping has changed the calculation method for shipping rules. "
1172
+ "Currently, the cart value for rules based on price is determined by "
1173
+ "WooCommerce tax option \"Display prices during cart and checkout\". You "
1174
+ "should check the %ssettings%s."
1175
+ msgstr ""
1176
+ "Flexible Shipping: zaktualizowane zostały metody obliczania reguł wysyłki. "
1177
+ "Aktualnie dla reguł opartych na cenie wartość koszyka zostanie obliczona na "
1178
+ "podstawie ustawienia podatków WooCommerce ”Wyświetlanie cen w sklepie”. "
1179
+ "Sprawdź %sustawienia podatków%s."
1180
 
1181
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/admin-notices.php:181
1182
+ msgid ""
1183
+ "Flexible Shipping requires at least version 2.7 of Active Payments plugin."
1184
+ msgstr ""
1185
+ "Flexible Shipping wymaga wtyczki Aktywne płatności w wersji co najmniej 2.7."
1186
 
1187
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/admin-notices.php:196
1188
+ msgid "Flexible Shipping requires at least version 1.2 of eNadawca plugin."
1189
+ msgstr "Flexible Shipping wymaga wtyczki eNadawca w wersji co najmniej 1.2."
1190
 
1191
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/admin-notices.php:211
1192
+ msgid ""
1193
+ "Flexible Shipping requires at least version 1.1 of Paczka w Ruchu plugin."
1194
+ msgstr ""
1195
+ "Flexible Shipping wymaga wtyczki Paczka w Ruchu w wersji co najmniej 1.1."
1196
 
1197
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/admin-notices.php:223
1198
  #, php-format
1199
  msgid ""
1200
+ "You are using WooCommerce Flexible Shipping below 1.4. Please deactivate it "
1201
+ "on %splugins page%s. Read about big changes in Flexible Shipping on %sour "
1202
+ "blog →%s"
1203
  msgstr ""
1204
+ "Masz włączony WooCommerce Flexible Shipping w wersji starszej niż 1.4. "
1205
+ "Wyłącz go na %sstronie wtyczek%s. Przeczytaj o dużej zmianie we Flexible "
1206
+ "Shipping na %snaszym blogu →%s"
1207
 
1208
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/class-order-add-shipping.php:38
1209
+ #, php-format
1210
+ msgid "Shipment for order %1$s, %2$s"
1211
+ msgstr "Przesyłka do zamówienia %s, %s"
1212
 
1213
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/class-order-add-shipping.php:53
1214
+ #, php-format
1215
+ msgid "Added new shipment via metabox. Shipment ID: %s"
1216
+ msgstr "Dodano nową przesyłkę. Numer przesyłki: %s"
1217
 
1218
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/class-order-add-shipping.php:104
1219
+ msgid "Select integration"
1220
+ msgstr "Wybierz integrację"
1221
 
1222
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/class-order-add-shipping.php:113
1223
+ msgid "Add shipping"
1224
+ msgstr "Dodaj przesyłkę"
1225
 
1226
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/manifest/cpt-shipping-manifest.php:60
1227
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/manifest/cpt-shipping-manifest.php:62
1228
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/manifest/cpt-shipping-manifest.php:64
1229
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/manifest/cpt-shipping-manifest.php:97
1230
+ msgid "Shipping Manifests"
1231
+ msgstr "Protokoły nadania"
1232
 
1233
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/manifest/cpt-shipping-manifest.php:61
1234
+ msgid "Shipping Manifest"
1235
+ msgstr "Protokół nadania"
1236
 
1237
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/manifest/cpt-shipping-manifest.php:65
1238
+ msgid "View Shipping Manifests"
1239
+ msgstr "Wyświetl protokół nadania"
1240
 
1241
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/manifest/cpt-shipping-manifest.php:66
1242
+ msgid "Add new Shipping Manifest"
1243
+ msgstr "Dodaj nowy Protokół nadania"
 
 
 
 
1244
 
1245
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/manifest/cpt-shipping-manifest.php:67
1246
+ msgid "Add new Shipping Manifests"
1247
+ msgstr "Dodaj nowe protokoły nadania"
1248
 
1249
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/manifest/cpt-shipping-manifest.php:68
1250
+ msgid "Edit Shipping Manifest"
1251
+ msgstr "Edytuj protokół nadania"
 
1252
 
1253
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/manifest/cpt-shipping-manifest.php:69
1254
+ msgid "Save Shipping Manifest"
1255
+ msgstr "Zapisz protokół nadania"
1256
 
1257
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/manifest/cpt-shipping-manifest.php:70
1258
+ msgid "Search Shipping Manifests"
1259
+ msgstr "Szukaj protokół nadania"
 
 
 
1260
 
1261
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/manifest/cpt-shipping-manifest.php:71
1262
+ msgid "Shipping Manifests not found"
1263
+ msgstr "Nie znaleziono protokołów nadania"
1264
 
1265
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/manifest/cpt-shipping-manifest.php:72
1266
+ msgid "Shipping Manifests not found in trash"
1267
+ msgstr "Nie znaleziono protokołów nadania w koszu"
 
1268
 
1269
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/manifest/cpt-shipping-manifest.php:74
1270
+ msgid "Shipping Manifests."
1271
+ msgstr "Protokoły nadania."
 
1272
 
1273
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/manifest/cpt-shipping-manifest.php:116
1274
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/shipment/cpt-shipment.php:50
1275
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/shipment/cpt-shipment.php:52
1276
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/shipment/cpt-shipment.php:54
1277
+ msgid "Shipments"
1278
+ msgstr "Przesyłki"
1279
 
1280
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/manifest/cpt-shipping-manifest.php:160
1281
+ msgid "Date"
1282
+ msgstr "Data"
 
 
 
 
1283
 
1284
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/manifest/cpt-shipping-manifest.php:161
1285
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/manifest/views/filter-form.php:5
1286
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/shipping-method-form.php:137
1287
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-orders-filter-form.php:5
1288
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-shipping-method-settings.php:15
1289
+ msgid "Integration"
1290
+ msgstr "Integracja"
1291
 
1292
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/manifest/cpt-shipping-manifest.php:162
1293
+ msgid "Number"
1294
+ msgstr "Numer"
 
1295
 
1296
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/manifest/cpt-shipping-manifest.php:163
1297
+ msgid "Shipments count"
1298
+ msgstr "Liczba przesyłek"
1299
 
1300
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/manifest/cpt-shipping-manifest.php:164
1301
+ msgid "Actions"
1302
+ msgstr "Akcje"
1303
 
1304
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/manifest/views/column-actions.php:1
1305
+ msgid "Download"
1306
+ msgstr "Pobierz"
 
1307
 
1308
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/manifest/views/filter-form.php:4
1309
+ msgid "All manifests"
1310
+ msgstr "Wszystkie protokoły nadania"
 
 
 
1311
 
1312
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/manifest/views/manifest-metabox.php:10
1313
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/manifest/views/manifest-metabox.php:50
1314
+ msgid "Order"
1315
+ msgstr "Zamówienie"
 
 
1316
 
1317
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/metabox/ajax.php:29
1318
  msgid "No shipment id!"
1319
  msgstr "Brak id przesyłki!"
1320
 
1321
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/metabox/ajax.php:33
1322
  msgid "No data!"
1323
  msgstr "Brak danych!"
1324
 
1325
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/metabox/ajax.php:55
1326
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/bulk-actions.php:47
1327
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/bulk-actions.php:198
1328
+ msgid "Created"
1329
+ msgstr "Utworzona"
1330
+
1331
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/abstract-rate.php:25
1332
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/first-rate-notice.php:15
1333
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/second-rate-notice.php:15
1334
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/third-rate-notice.php:18
1335
+ #, php-format
1336
+ msgid "%1$sOk, you deserved it%2$s"
1337
+ msgstr "%1$sTak, zasługujecie na nią%2$s"
1338
+
1339
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/abstract-rate.php:35
1340
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/first-rate-notice.php:25
1341
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/second-rate-notice.php:25
1342
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/third-rate-notice.php:28
1343
+ #, php-format
1344
+ msgid "%1$sI already did%2$s"
1345
+ msgstr "%1$sJuż to zrobiłem/am%2$s"
1346
+
1347
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/first-rate-notice.php:38
1348
+ msgid ""
1349
+ "Awesome, you've been using Flexible Shipping for more than 2 weeks. May I "
1350
+ "ask you to give it a 5-star rating on WordPress?"
1351
+ msgstr ""
1352
+ "Fantastycznie, korzystasz z Flexible Shipping już ponad dwa tygodnie. Czy "
1353
+ "mogę Cię prosić o wystawienie 5-gwiazdkowej oceny?"
1354
+
1355
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/second-rate-notice.php:38
1356
+ msgid ""
1357
+ "Awesome, you've been using Flexible Shipping for more than 2 weeks. Could "
1358
+ "you please do me a BIG favor and give it a 5-star rating on WordPress? ~ "
1359
+ "Peter"
1360
+ msgstr ""
1361
+ "Fantastycznie, korzystasz z Flexible Shipping już ponad 2 tygodnie. Czy "
1362
+ "możesz wyświadczyć mi wielką przysługę i wystawić 5-gwiazdkową ocenę? ~ Piotr"
1363
+
1364
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/third-rate-notice.php:41
1365
+ msgid ""
1366
+ "Awesome, you just crossed the 100 orders on Flexible Shipping method. Could "
1367
+ "you please do me a BIG favor and give it a 5-star rating on WordPress? ~ "
1368
+ "Peter"
1369
+ msgstr ""
1370
+ "Fantastycznie, przekroczyłeś 100 zamówień z metodą wysyłki Flexible "
1371
+ "Shipping. Czy możesz wyświadczyć mi wielką przysługę i wystawić 5-gwiazdkową "
1372
+ "ocenę? ~Piotr"
1373
 
1374
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/shipment/class-shipment.php:300
1375
  msgid "Please override shipping_column method!"
1376
  msgstr "Proszę nadpisać metodę shipping_column!"
1377
 
1378
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/shipment/cpt-shipment.php:55
1379
  msgid "View Shipments"
1380
  msgstr "Wyświetl przesyłki"
1381
 
1382
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/shipment/cpt-shipment.php:56
1383
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/shipment/cpt-shipment.php:57
1384
  msgid "Add new Shipment"
1385
  msgstr "Dodaj nową przesyłkę"
1386
 
1387
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/shipment/cpt-shipment.php:58
1388
  msgid "Edit Shipment"
1389
  msgstr "Edytuj przesyłkę"
1390
 
1391
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/shipment/cpt-shipment.php:59
1392
  msgid "Save Shipment"
1393
  msgstr "Zapisz przesyłkę"
1394
 
1395
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/shipment/cpt-shipment.php:60
1396
  msgid "Search Shipments"
1397
  msgstr "Szukaj przesyłek"
1398
 
1399
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/shipment/cpt-shipment.php:61
1400
  msgid "Shipment not found"
1401
  msgstr "Nie znaleziono przesyłki"
1402
 
1403
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/shipment/cpt-shipment.php:62
1404
  msgid "Shipment not found in trash"
1405
  msgstr "Nie znaleziono przesyłki w koszu"
1406
 
1407
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/shipment/cpt-shipment.php:64
1408
  msgid "Shipments."
1409
  msgstr "Przesyłki."
1410
 
1411
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/shipment/cpt-shipment.php:84
1412
  msgctxt "Shipment status"
1413
  msgid "New"
1414
  msgstr "Nowa"
1415
 
1416
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/shipment/cpt-shipment.php:89
1417
  #, php-format
1418
  msgid "New <span class=\"count\">(%s)</span>"
1419
  msgid_plural "New <span class=\"count\">(%s)</span>"
1421
  msgstr[1] "Nowa <span class=\"count\">(%s)</span>"
1422
  msgstr[2] "Nowa <span class=\"count\">(%s)</span>"
1423
 
1424
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/shipment/cpt-shipment.php:92
1425
  msgctxt "Shipment status"
1426
  msgid "Created"
1427
  msgstr "Utworzona"
1428
 
1429
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/shipment/cpt-shipment.php:97
1430
  #, php-format
1431
  msgid "Created <span class=\"count\">(%s)</span>"
1432
  msgid_plural "Created <span class=\"count\">(%s)</span>"
1434
  msgstr[1] "Utworzona <span class=\"count\">(%s)</span>"
1435
  msgstr[2] "Utworzona <span class=\"count\">(%s)</span>"
1436
 
1437
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/shipment/cpt-shipment.php:100
1438
  msgctxt "Shipment status"
1439
  msgid "Confirmed"
1440
  msgstr "Zatwierdzona"
1441
 
1442
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/shipment/cpt-shipment.php:105
1443
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/shipment/cpt-shipment.php:113
1444
  #, php-format
1445
  msgid "Confirmed <span class=\"count\">(%s)</span>"
1446
  msgid_plural "Confirmed <span class=\"count\">(%s)</span>"
1448
  msgstr[1] "Zatwierdzona <span class=\"count\">(%s)</span>"
1449
  msgstr[2] "Zatwierdzona <span class=\"count\">(%s)</span>"
1450
 
1451
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/shipment/cpt-shipment.php:108
1452
  msgctxt "Shipment status"
1453
  msgid "Manifest created"
1454
  msgstr "Protokół nadania utworzony"
1455
 
1456
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/shipment/cpt-shipment.php:116
1457
  msgctxt "Shipment status"
1458
  msgid "Failed"
1459
  msgstr "Błąd"
1460
 
1461
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/shipment/cpt-shipment.php:121
1462
+ #, php-format
1463
+ msgid "Failed <span class=\"count\">(%s)</span>"
1464
+ msgid_plural "Failed <span class=\"count\">(%s)</span>"
1465
+ msgstr[0] "Błąd <span class=\"count\">(%s)</span>"
1466
+ msgstr[1] "Błąd <span class=\"count\">(%s)</span>"
1467
+ msgstr[2] "Błąd <span class=\"count\">(%s)</span>"
1468
+
1469
+ #: vendor/wpdesk/wp-wpdesk-fs-shipment/src/shipment/cpt-shipment.php:136
1470
+ msgid "Shipment data"
1471
+ msgstr "Dane przesyłki"
1472
+
1473
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/abtests/class-pointer-messages.php:53
1474
+ msgid "Watch how to use Flexible Shipping"
1475
+ msgstr "Obejrzyj konfigurację Flexible Shipping"
1476
+
1477
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/abtests/class-pointer-messages.php:71
1478
+ msgid "How to start with Flexible Shipping"
1479
+ msgstr "Jak zacząć z Flexible Shipping?"
1480
+
1481
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/abtests/views/html-pointer-message-fs-text.php:7
1482
+ #, php-format
1483
+ msgid ""
1484
+ "To add first Flexible Shipping method go to %1$sShipping zones%2$s and add "
1485
+ "Flexible Shipping to a shipping zone. More info about %3$sshipping methods"
1486
+ "%4$s."
1487
+ msgstr ""
1488
+ "Aby dodać pierwszą metodę Flexible Shipping przejdź do zakładki %1$sStrefy "
1489
+ "wysyłki%2$s i dodaj Flexible Shipping do strefy wysyłki. Dowiedz się więcej "
1490
+ "o %3$smetodach wysyłki%4$s."
1491
+
1492
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/bulk-actions.php:46
1493
+ msgid "New"
1494
+ msgstr "Nowa"
1495
+
1496
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/bulk-actions.php:48
1497
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/bulk-actions.php:199
1498
+ msgid "Confirmed"
1499
+ msgstr "Zatwierdzona"
1500
+
1501
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/bulk-actions.php:49
1502
+ msgid "Manifest"
1503
+ msgstr "Protokół nadania"
1504
+
1505
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/bulk-actions.php:50
1506
+ msgid "Failed"
1507
+ msgstr "Błąd"
1508
+
1509
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/bulk-actions.php:197
1510
+ msgid "New shipment"
1511
+ msgstr "Nowa"
1512
+
1513
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/bulk-actions.php:200
1514
+ msgid "Manifest created"
1515
+ msgstr "Protokół nadania utworzony"
1516
+
1517
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/bulk-actions.php:255
1518
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/bulk-actions.php:261
1519
+ msgid "Shipping"
1520
+ msgstr "Wysyłka"
1521
+
1522
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/bulk-actions.php:269
1523
+ msgid "Send shipment"
1524
+ msgstr "Nadaj przesyłkę"
1525
+
1526
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/bulk-actions.php:270
1527
+ msgid "Get labels"
1528
+ msgstr "Pobierz etykiety nadawcze"
1529
+
1530
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/bulk-actions.php:272
1531
+ msgid "Create shipping manifest"
1532
+ msgstr "Utwórz protokół nadania"
1533
+
1534
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/bulk-actions.php:294
1535
+ msgid "Shipment created."
1536
+ msgstr "Przesyłka utworzona."
1537
+
1538
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/bulk-actions.php:306
1539
+ msgid "No action performed."
1540
+ msgstr "Nie wykonano żadnych działań."
1541
+
1542
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/bulk-actions.php:326
1543
+ msgid "Label downloaded."
1544
+ msgstr "Etykieta została pobrana."
1545
+
1546
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/bulk-actions.php:347
1547
+ msgid ""
1548
+ "Unable to create temporary zip archive for labels. Check temporary folder "
1549
+ "configuration on server."
1550
+ msgstr ""
1551
+ "Nie można utworzyć tymczasowego archiwum zip dla etykiet. Sprawdź "
1552
+ "konfigurację folderu na serwerze."
1553
+
1554
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/bulk-actions.php:411
1555
+ #, php-format
1556
+ msgid ""
1557
+ "Created manifest: %s (%s). If download not start automatically click %shere"
1558
+ "%s."
1559
+ msgstr ""
1560
+ "Utworzone protokoły nadania: %s (%s). Jeśli pobieranie nie rozpoczęło się "
1561
+ "automatycznie kliknij %stutaj%s."
1562
+
1563
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/bulk-actions.php:423
1564
+ #, php-format
1565
+ msgid "Manifest creation error: %s (%s)."
1566
+ msgstr "Błąd podczas tworzenia protokołu nadania: %s (%s)."
1567
+
1568
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/bulk-actions.php:434
1569
+ msgid "No manifests created."
1570
+ msgstr "Nie zostały utworzone protokoły nadania."
1571
+
1572
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/bulk-actions.php:448
1573
+ #, php-format
1574
+ msgid "Bulk send shipment - processed orders: %d"
1575
+ msgstr "Masowe nadawanie przesyłek - przetworzone zamówienia: %d"
1576
+
1577
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/bulk-actions.php:456
1578
+ #, php-format
1579
+ msgid "Bulk labels - processed orders: %d. No labels for processed orders."
1580
+ msgstr ""
1581
+ "Masowe pobieranie etykiet - przetworzone zamówienia: %d. Brak etykiet dla "
1582
+ "przetworzonych zamówień."
1583
+
1584
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/bulk-actions.php:475
1585
+ #, php-format
1586
+ msgid ""
1587
+ "Bulk labels - processed orders: %d. If download not start automatically "
1588
+ "click %shere%s."
1589
+ msgstr ""
1590
+ "Masowe pobieranie etykiet - przetworzone zamówienia: %d. Jeśli pobieranie "
1591
+ "nie rozpoczęło się automatycznie kliknij %stutaj%s ."
1592
+
1593
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/bulk-actions.php:485
1594
+ #, php-format
1595
+ msgid "Bulk shipping manifest - processed orders: %d"
1596
+ msgstr "Zbiorcze tworzenie protokołów nadania - przetworzone zamówienia: %d"
1597
+
1598
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/csv/class-csv-importer.php:86
1599
+ msgid ""
1600
+ "Sorry, there has been an error. The CSV is invalid or incorrect file type."
1601
+ msgstr ""
1602
+ "Przepraszamy, wystąpił błąd. Plik CSV jest niepoprawny lub typ pliku jest "
1603
+ "nieprawidłowy."
1604
+
1605
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/csv/class-csv-importer.php:92
1606
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/csv/class-csv-importer.php:94
1607
+ msgid "import"
1608
+ msgstr "import"
1609
+
1610
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/csv/class-csv-importer.php:105
1611
+ #, php-format
1612
+ msgid "Free Shipping value %1$s is not valid number. Row number %2$d."
1613
+ msgstr "Wartość darmowej wysyłki %1$s jest niepoprawna. Numer wiersza %2$d."
1614
+
1615
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/csv/class-csv-importer.php:112
1616
+ #, php-format
1617
+ msgid "Maximum Cost value %1$s is not valid number. Row number %2$d."
1618
+ msgstr "Maksymalny koszt %1$s jest niepoprawny. Numer wiersza %2$d."
1619
+
1620
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/csv/class-csv-importer.php:124
1621
+ #, php-format
1622
+ msgid "Invalid value for Calculation Method in row number %d."
1623
+ msgstr "Nieprawidłowa wartość dla Metody obliczania w wierszu %d."
1624
+
1625
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/csv/class-csv-importer.php:154
1626
+ #, php-format
1627
+ msgid "%1$s value %2$s is not valid number. Row number %3$d."
1628
+ msgstr "%1$s wartość %2$s jest niepoprawna. Numer wiersza %3$d."
1629
+
1630
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/csv/class-csv-importer.php:191
1631
  #, php-format
1632
+ msgid "Error while creating shipping class: %1$s, %2$s"
1633
+ msgstr "Błąd podczas tworzenia klasy wysyłkowej: %1$s, %2$s"
 
 
 
 
 
 
 
1634
 
1635
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/csv/class-csv-importer.php:224
1636
  #, php-format
1637
+ msgid "Invalid value for Based On in row number %d."
1638
+ msgstr "Nieprawidłowa wartość dla Oparte na w wierszu %d."
1639
 
1640
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/csv/class-csv-importer.php:291
1641
  #, php-format
1642
+ msgid "Shipping method %1$s imported as %2$s."
1643
+ msgstr "Metoda wysyłki %1$s została zaimportowana jako %2$s."
1644
 
1645
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/logger/class-saas-logger-downloader.php:57
1646
+ msgid "File not exists!"
1647
+ msgstr "Plik nie istnieje!"
1648
+
1649
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/logger/class-saas-logger-downloader.php:60
1650
+ msgid "Insufficient privileges!"
1651
+ msgstr "Niewystarczające uprawnienia!"
1652
+
1653
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/logger/class-saas-logger-settings.php:95
1654
+ msgid "Enable Debug Mode"
1655
+ msgstr "Włącz tryb debug"
1656
+
1657
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/logger/class-saas-logger-settings.php:96
1658
+ msgid "Debug mode"
1659
+ msgstr "Tryb debug"
1660
 
1661
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/logger/class-saas-logger-settings.php:103
1662
  #, php-format
1663
+ msgid "%1$sDownload debug.log file%2$s"
1664
+ msgstr "%1$sPobierz plik debug.log%2$s"
 
1665
 
1666
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/flexible-shipping.php:18
1667
+ #, php-format
1668
+ msgid "See how to %sconfigure Flexible Shipping%s."
1669
+ msgstr "Zobacz jak %sskonfigurować Flexible Shipping%s."
1670
 
1671
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/flexible-shipping.php:21
1672
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/shipping-method-form.php:70
1673
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/shipping-method.php:44
1674
+ msgid "Enable/Disable"
1675
+ msgstr "Włącz/Wyłącz"
1676
 
1677
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/flexible-shipping.php:23
1678
+ msgid "Enable Flexible Shipping"
1679
+ msgstr "Włącz Flexible Shipping"
 
1680
 
1681
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/flexible-shipping.php:27
1682
+ msgid "Shipping title"
1683
+ msgstr "Tytuł"
 
 
1684
 
1685
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/flexible-shipping.php:29
1686
+ msgid "Visible only to admin in WooCommerce settings."
1687
+ msgstr "Widoczny tylko dla admina w ustawieniach WooCommerce."
1688
 
1689
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/flexible-shipping.php:34
1690
+ msgid "Tax Status"
1691
+ msgstr "Status podatku"
1692
 
1693
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/flexible-shipping.php:39
1694
+ msgid "Taxable"
1695
+ msgstr "Opodatkowany"
 
1696
 
1697
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/flexible-shipping.php:40
1698
+ msgctxt "Tax status"
1699
+ msgid "None"
1700
+ msgstr "Brak"
1701
 
1702
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/flexible-shipping.php:44
1703
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/flexible-shipping.php:49
1704
+ msgid "Shipping Methods"
1705
+ msgstr "Metody wysyłki"
1706
 
1707
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/shipping-method-form.php:10
1708
+ msgid "Select shipment class"
1709
+ msgstr "Wybierz klasę wysyłkową"
1710
 
1711
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/shipping-method-form.php:25
1712
+ msgid ""
1713
+ "Integrate with DPD, DHL, InPost, eNadawca Poczta Polska, Paczka w Ruchu."
1714
+ msgstr "Zintegruj z DPD, DHL, InPost, eNadawca Poczta Polska, Paczka w Ruchu."
1715
 
1716
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/shipping-method-form.php:25
1717
  #, php-format
1718
+ msgid "%sAdd integrations%s"
1719
+ msgstr "%sDodaj integracje%s"
1720
+
1721
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/shipping-method-form.php:28
1722
+ msgid "Integrate with DPD."
1723
+ msgstr "Zintegruj z DPD."
1724
 
1725
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/shipping-method-form.php:28
1726
  #, php-format
1727
+ msgid "%sAdd integration%s"
1728
+ msgstr "%sDodaj integrację%s"
1729
 
1730
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/shipping-method-form.php:34
1731
  #, php-format
1732
+ msgid ""
1733
+ "Ship your orders faster with %1$sFlexible Shipping Connect%2$s%3$s%4$sSign "
1734
+ "up now!%5$s"
1735
+ msgstr ""
1736
+ "Wysyłaj zamówienia szybciej z %1$sFlexible Shipping Connect%2$s%3$s"
1737
+ "%4$sZarejestruj się teraz!%5$s"
1738
 
1739
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/shipping-method-form.php:54
1740
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/shipping-method.php:759
1741
+ msgid "Free"
1742
+ msgstr "Bezpłatnie"
1743
 
1744
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/shipping-method-form.php:73
1745
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/shipping-method.php:46
1746
+ msgid "Enable this shipment method"
1747
+ msgstr "Włącz tę metodę wysyłki"
1748
 
1749
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/shipping-method-form.php:76
1750
+ msgid "Method Title"
1751
+ msgstr "Tytuł metody"
1752
 
1753
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/shipping-method-form.php:78
1754
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/shipping-method.php:52
1755
+ msgid "This controls the title which the user sees during checkout."
1756
+ msgstr "Tytuł, który widzi użytkownik podczas składania zamówienia."
1757
 
1758
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/shipping-method-form.php:85
1759
+ msgid "Method Description"
1760
+ msgstr "Opis"
1761
 
1762
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/shipping-method-form.php:87
1763
+ msgid "This controls method description which the user sees during checkout."
1764
+ msgstr "Opis, który widzi użytkownik podczas składania zamówienia."
1765
 
1766
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/shipping-method-form.php:98
1767
+ msgid "Free Shipping"
1768
+ msgstr "Darmowa wysyłka"
 
1769
 
1770
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/shipping-method-form.php:101
1771
+ msgid ""
1772
+ "Enter a minimum order amount for free shipment. This will override the costs "
1773
+ "configured below."
1774
+ msgstr ""
1775
+ "Wpisz minimalną kwotę zamówienia dla bezpłatnej wysyłki. Spowoduje to "
1776
+ "zastąpienie reguł skonfigurowanych poniżej."
1777
 
1778
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/shipping-method-form.php:105
1779
+ msgid "Free Shipping Label"
1780
+ msgstr "Etykieta darmowej wysyłki"
1781
 
1782
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/shipping-method-form.php:108
1783
+ msgid "Enter additional label for shipment when free shipment available."
1784
+ msgstr ""
1785
+ "Wpisz dodatkową etykietę, która zostanie wyświetlona dla darmowej wysyłki."
1786
 
1787
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/shipping-method-form.php:117
1788
+ msgid "Calculation Method"
1789
+ msgstr "Metoda obliczania"
1790
 
1791
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/shipping-method-form.php:119
1792
+ msgid ""
1793
+ "Select how rules will be calculated. If you choose \"sum\" the rules order "
1794
+ "is important."
1795
+ msgstr ""
1796
+ "Wybierz jak będą obliczane reguły. Dla sumy, kolejność reguł ma znaczenie."
1797
 
1798
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/shipping-method-form.php:122
1799
+ msgid "Sum"
1800
+ msgstr "Suma"
1801
+
1802
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/shipping-method-form.php:125
1803
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-shipping-method-settings.php:13
1804
+ msgid "Visibility"
1805
+ msgstr "Wyświetlanie"
1806
+
1807
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/shipping-method-form.php:128
1808
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-shipping-method-settings.php:46
1809
+ msgid "Show only for logged in users"
1810
+ msgstr "Pokaż tylko dla zalogowanych użytkowników"
1811
+
1812
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/shipping-method-form.php:131
1813
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-shipping-method-settings.php:14
1814
+ msgid "Default"
1815
+ msgstr "Domyślnie"
1816
+
1817
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/shipping-method-form.php:134
1818
+ msgid ""
1819
+ "Check the box to set this option as the default selected choice on the cart "
1820
+ "page."
1821
  msgstr ""
1822
+ "Zaznacz, aby ustawić tę metodę wysyłki jako domyślną przy składaniu "
1823
+ "zamówienia."
1824
 
1825
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/shipping-method-form.php:139
1826
+ msgid "Select integration. "
1827
+ msgstr "Wybierz integrację. "
1828
 
1829
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/shipping-method-form.php:142
1830
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-shipping-method-rules.php:7
1831
+ msgid "None"
1832
+ msgstr "Brak"
1833
 
1834
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/shipping-method-form.php:153
1835
+ msgid "Rules"
1836
+ msgstr "Reguły"
1837
+
1838
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/shipping-method-form.php:174
1839
+ msgid "Shipping Zone"
1840
+ msgstr "Strefa wysyłki"
1841
+
1842
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/settings/shipping-method-form.php:188
1843
+ #, php-format
1844
+ msgid "See how to %sconfigure shipment methods%s."
1845
+ msgstr "Zobacz jak %sskonfigurować metody wysyłki %s."
1846
 
1847
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/shipping-method.php:50
1848
  msgid "Shipping Title"
1849
  msgstr "Tytuł"
1850
 
1851
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/shipping-method.php:122
1852
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-shipping-method-rules.php:240
1853
  msgid "Add New"
1854
  msgstr "Dodaj nową"
1855
 
1856
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/shipping-method.php:401
1857
  msgid "New Shipping Method"
1858
  msgstr "Nowa metoda wysyłki"
1859
 
1860
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/shipping-method.php:404
1861
  msgid "Edit Shipping Method"
1862
  msgstr "Edytuj metodę wysyłki"
1863
 
1864
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/shipping-method.php:414
1865
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/shipping-method.php:456
1866
  #, php-format
1867
  msgid "Shipping method %s added."
1868
  msgstr "Metoda wysyłki dodana: %s."
1869
 
1870
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/shipping-method.php:439
1871
  #, php-format
1872
  msgid "Shipping method %s deleted."
1873
  msgstr "Metoda wysyłki usunięta: %s."
1874
 
1875
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/shipping-method.php:442
1876
  msgid "Shipping method not found."
1877
  msgstr "Metoda wysyłki nie znaleziona."
1878
 
1879
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/shipping-method.php:468
1880
  #, php-format
1881
  msgid "Shipping method %s updated."
1882
  msgstr "Metoda wysyłki zaktualizowana: %s."
1883
 
1884
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-ads.php:4
 
 
 
 
 
 
 
 
1885
  msgid "Get Flexible Shipping PRO!"
1886
  msgstr "Kup Flexible Shipping PRO!"
1887
 
1888
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-ads.php:13
1889
  msgid "Shipping Classes support"
1890
  msgstr "Wsparcie klas wysyłkowych"
1891
 
1892
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-ads.php:14
1893
  msgid "Product count based costs"
1894
  msgstr "Koszty oparte o liczbę produktów w koszyku"
1895
 
1896
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-ads.php:15
1897
  msgid "Stopping, Cancelling a rule"
1898
  msgstr "Zatrzymywanie, anulowanie reguł"
1899
 
1900
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-ads.php:16
1901
  msgid "Additional calculation methods"
1902
  msgstr "Dodatkowe rodzaje obliczania kosztów"
1903
 
1904
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-ads.php:19
1905
  msgid "Upgrade Now &rarr;"
1906
  msgstr "Zaktualizuj do wersji PRO &rarr;"
1907
 
1908
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-column-shipping-shipping.php:11
1909
  msgid "Get label for: "
1910
  msgstr "Pobierz etykietę dla "
1911
 
1912
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-column-shipping-shipping.php:14
1913
  msgid "Track shipment for: "
1914
  msgstr "Śledź przesyłkę "
1915
 
1916
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-custom-services.php:14
1917
  msgid "Code"
1918
  msgstr "Kod"
1919
 
1920
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-custom-services.php:15
1921
  msgid "Name"
1922
  msgstr "Nazwa"
1923
 
1924
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-custom-services.php:17
1925
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-shipping-method-settings.php:12
1926
  msgid "Enabled"
1927
  msgstr "Włączona"
1928
 
1929
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-custom-services.php:37
1930
  msgid ""
1931
  "Drag and drop the services to control their display order. Confirm by "
1932
  "clicking Save changes button below."
1934
  "Przeciągnij i upuść usługę, aby zmienić kolejność wyświetlania. Zatwierdź "
1935
  "zmiany klikając Zapisz zmiany poniżej."
1936
 
1937
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-orders-filter-form.php:4
1938
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-orders-filter-form.php:12
1939
  msgid "All shippings"
1940
  msgstr "Wszystkie przesyłki"
1941
 
1942
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-orders-filter-form.php:13
1943
  msgid "Shipment status"
1944
  msgstr "Status przesyłki"
1945
 
1946
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-shipping-method-rules.php:8
 
 
 
 
 
 
 
 
 
 
 
1947
  msgid "Price"
1948
  msgstr "Cena"
1949
 
1950
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-shipping-method-rules.php:9
1951
  msgid "Weight"
1952
  msgstr "Waga"
1953
 
1954
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-shipping-method-rules.php:61
1955
  #, php-format
1956
  msgid ""
1957
  "Check %sFlexible Shipping PRO &rarr;%s to add advanced rules based on "
1961
  "oparte o klasy wysyłkowe, liczbę produktów/pozycji lub naliczać dodatkowe "
1962
  "koszty obsługi/ubezpieczenia."
1963
 
1964
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-shipping-method-rules.php:72
1965
  msgid "Based on"
1966
  msgstr "Oparte na"
1967
 
1968
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-shipping-method-rules.php:73
1969
  msgid "Shipping cost will be calculated based on the selected parameter."
1970
  msgstr "Koszty wysyłki będą obliczane w oparciu o wybrany parametr."
1971
 
1972
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-shipping-method-rules.php:76
1973
  msgid "Min"
1974
  msgstr "Min"
1975
 
1976
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-shipping-method-rules.php:77
1977
  msgid ""
1978
  "Enter minimum value for the &quot;Based on&quot; parameter. Value based on "
1979
  "the price will be calculated by WooCommerce tax settings &quot;Display "
1983
  "na cenie zostanie obliczona wg. ustawienia podatków WooCommerce &quot;"
1984
  "Wyświetlanie cen w koszyku i zamówieniu&quot;"
1985
 
1986
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-shipping-method-rules.php:80
1987
  msgid "Max"
1988
  msgstr "Maks"
1989
 
1990
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-shipping-method-rules.php:81
1991
  msgid ""
1992
  "Enter maximum value for the &quot;Based on&quot; parameter. Value based on "
1993
  "the price will be calculated by WooCommerce tax settings &quot;Display "
1997
  "na cenie zostanie obliczona wg. ustawienia podatków WooCommerce &quot;"
1998
  "Wyświetlanie cen w koszyku i zamówieniu&quot;"
1999
 
2000
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-shipping-method-rules.php:84
2001
  msgid "Cost per<br/>order"
2002
  msgstr "Koszt na<br/>zamówienie"
2003
 
2004
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-shipping-method-rules.php:85
2005
  msgid "Enter shipment cost for this rule."
2006
  msgstr "Wpisz koszt wysyłki dla tej reguły."
2007
 
2008
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-shipping-method-rules.php:160
2009
  msgid "Insert rule"
2010
  msgstr "Dodaj regułę"
2011
 
2012
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-shipping-method-rules.php:161
2013
  msgid "Delete selected rules"
2014
  msgstr "Usuń wybrane reguły"
2015
 
2016
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-shipping-method-rules.php:211
2017
  msgid "No rows selected."
2018
  msgstr "Nie wybrano wierszy."
2019
 
2020
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-shipping-method-rules.php:216
2021
  msgid "Are you sure?"
2022
  msgstr "Na pewno?"
2023
 
2024
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-shipping-method-rules.php:231
2025
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-shipping-method-settings.php:106
2026
  msgid "Shipping Zones"
2027
  msgstr "Strefy wysyłki"
2028
 
2029
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-shipping-method-settings.php:11
2030
  msgid "Title"
2031
  msgstr "Tytuł"
2032
 
2033
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-shipping-method-settings.php:16
2034
  msgid "Select all"
2035
  msgstr "Zaznacz wszystkie"
2036
 
2037
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-shipping-method-settings.php:39
2038
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-shipping-method-settings.php:46
2039
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-shipping-method-settings.php:53
2040
  msgid "yes"
2041
  msgstr "tak"
2042
 
2043
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-shipping-method-settings.php:48
2044
  msgid "Show for all users"
2045
  msgstr "Pokaż dla wszystkich użytkowników"
2046
 
2047
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-shipping-method-settings.php:69
2048
  msgid ""
2049
  "Drag and drop the above shipment methods to control their display order. "
2050
  "Confirm by clicking Save changes button below."
2052
  "Przeciągnij i upuść metody wysyłki, aby ustawić ich kolejność wyświetlania. "
2053
  "Potwierdź przez kliknięcie przycisku Zapisz zmiany poniżej."
2054
 
2055
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-shipping-method-settings.php:74
2056
  msgid "Remove selected"
2057
  msgstr "Usuń zaznaczone"
2058
 
2059
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-shipping-method-settings.php:78
2060
  msgid "Cancel import"
2061
  msgstr "Anuluj import"
2062
 
2063
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-shipping-method-settings.php:79
2064
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-shipping-method-settings.php:80
2065
  msgid "Import"
2066
  msgstr "Importuj"
2067
 
2068
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-shipping-method-settings.php:155
2069
  msgid "Please select shipment methods to remove"
2070
  msgstr "Proszę wybrać metody wysyłki do usunięcia"
2071
 
2072
+ #: vendor/wpdesk/wp-wpdesk-fs-table-rate/src/views/html-shipping-method-settings.php:187
2073
  msgid "Select file to import"
2074
  msgstr "Wybierz plik do importu"
2075
 
2076
+ #: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-connect.php:7
2077
+ #: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-notice.php:5
 
 
 
 
 
 
 
2078
  #, php-format
2079
  msgid "Hey %s,"
2080
  msgstr "Hej %s,"
2081
 
2082
+ #: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-connect.php:8
2083
  msgid ""
2084
  "Please help us improve our plugins! If you opt-in, we will collect some non-"
2085
  "sensitive data and usage information anonymously. If you skip this, that's "
2089
  "zbierać niewrażliwe dane użytkowania anonimowo. Jeśli pominiesz ten krok, w "
2090
  "porządku! Wszystkie wtyczki będą działać."
2091
 
2092
+ #: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-connect.php:13
2093
  msgid "Allow & Continue &rarr;"
2094
  msgstr "Pozwól i kontynuuj &rarr;"
2095
 
2096
+ #: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-connect.php:14
2097
  msgid "Skip"
2098
  msgstr "Pomiń"
2099
 
2100
+ #: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-connect.php:19
2101
  msgid "What permissions are being granted?"
2102
  msgstr "Jakie uprawnienia są przyznawane?"
2103
 
2104
+ #: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-connect.php:26
2105
  msgid "Your Site Overview"
2106
  msgstr "Dane witryny"
2107
 
2108
+ #: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-connect.php:27
2109
  msgid "WP version, PHP info"
2110
  msgstr "Wersja WP, PHP info"
2111
 
2112
+ #: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-connect.php:33
2113
  msgid "Plugin Usage"
2114
  msgstr "Dane użytkowania wtyczek"
2115
 
2116
+ #: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-connect.php:34
2117
  msgid "Current settings and usage information of WP Desk plugins"
2118
  msgstr "Ustawienia i informacje o użytkowaniu wtyczek WP Desk"
2119
 
2120
+ #: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-connect.php:40
2121
  msgid "Your Store Overview"
2122
  msgstr "Ustawienia i informacje o użytkowaniu wtyczek WP Desk"
2123
 
2124
+ #: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-connect.php:41
2125
  msgid "Anonymized and non-sensitive store usage information"
2126
  msgstr "Tylko niewrażliwe i anonimowe dane o użytkowaniu sklepu"
2127
 
2128
+ #: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-connect.php:47
2129
+ #: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-notice.php:7
2130
  msgid "Find out more &raquo;"
2131
  msgstr "Dowiedz się więcej &raquo;"
2132
 
2133
+ #: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:3
2134
  #, php-format
2135
  msgid "You are deactivating %s plugin."
2136
  msgstr "Dezaktywowałeś wtyczkę %s."
2137
 
2138
+ #: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:9
2139
  msgid ""
2140
  " If you have a moment, please let us know why you are deactivating plugin "
2141
  "(anonymous feedback):"
2143
  " Jeśli masz chwilę, prosimy daj nam znać dlaczego dezaktywowałeś wtyczkę "
2144
  "(anonimowa opinia):"
2145
 
2146
+ #: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:16
2147
  msgid "The plugin suddenly stopped working"
2148
  msgstr "Wtyczka nagle przestała działać"
2149
 
2150
+ #: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:24
2151
  msgid "The plugin broke my site"
2152
  msgstr "Wtyczka zepsuła moją stronę"
2153
 
2154
+ #: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:32
2155
  msgid "I found a better plugin"
2156
  msgstr "Znalazłem lepszą wtyczkę"
2157
 
2158
+ #: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:35
2159
  msgid "What's the plugin's name?"
2160
  msgstr "Jaka jest nazwa wtyczki?"
2161
 
2162
+ #: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:43
2163
  msgid "I only needed the plugin for a short period"
2164
  msgstr "Potrzebowałem wtyczki tylko przez krótki okres"
2165
 
2166
+ #: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:51
2167
  msgid "I no longer need the plugin"
2168
  msgstr "Nie potrzebuję już wtyczki"
2169
 
2170
+ #: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:59
2171
  msgid "It's a temporary deactivation. I'm just debugging an issue."
2172
  msgstr "Jest to tymczasowa dezaktywacja, debaguję problem."
2173
 
2174
+ #: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:67
2175
  msgid "Other"
2176
  msgstr "Inny"
2177
 
2178
+ #: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:70
2179
  msgid "Kindly tell us the reason so we can improve"
2180
  msgstr "Napisz nam powód, abyśmy mogli go poprawić"
2181
 
2182
+ #: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:78
2183
  msgid "Skip &amp; Deactivate"
2184
  msgstr "Pomiń i dezaktywuj"
2185
 
2186
+ #: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:92
2187
  msgid "Submit &amp; Deactivate"
2188
  msgstr "Anuluj"
2189
 
2190
+ #: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-notice.php:6
2191
  msgid ""
2192
  "We need your help to improve <strong>WP Desk plugins</strong>, so they are "
2193
  "more useful for you and the rest of <strong>30,000+ users</strong>. By "
2200
  "korzystasz z naszych wtyczek bardzo nam w tym pomożesz. Nie będziemy zbierać "
2201
  "żadnych danych wrażliwych, więc możesz czuć się bezpiecznie."
2202
 
2203
+ #: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-notice.php:10
2204
  msgid "Allow"
2205
  msgstr "Pozwól"
2206
 
2207
+ #: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-opt-out-notice.php:3
2208
  msgid ""
2209
  "You successfully opted out of collecting usage data by WP Desk. If you "
2210
  "change your mind, you can always opt in later in the plugin's quick links."
2213
  "została przyjęta. Jeśli zmienisz zdanie, zawsze możesz włączyć zgodę poprzez "
2214
  "szybkie linki w menu wtyczek."
2215
 
2216
+ #~ msgid "%1$sNot good enough%2$s"
2217
+ #~ msgstr "%1$sNie jest wystarczająco dobra%2$s"
 
 
2218
 
2219
+ #~ msgid "https://wordpress.org/plugins/flexible-shipping/"
2220
+ #~ msgstr "https://pl.wordpress.org/plugins/flexible-shipping/"
 
2221
 
2222
+ #~ msgid ""
2223
+ #~ "Create additional shipment methods in WooCommerce and enable pricing "
2224
+ #~ "based on cart weight or total."
2225
+ #~ msgstr ""
2226
+ #~ "Stwórz dodatkowe metody wysyłki w WooCommerce i włącz obliczanie kosztów "
2227
+ #~ "w oparciu o wagę lub wartość zamówienia."
 
2228
 
2229
+ #~ msgid "WP Desk"
2230
+ #~ msgstr "WP Desk"
 
2231
 
2232
+ #~ msgid "https://www.wpdesk.net/"
2233
+ #~ msgstr "https://www.wpdesk.pl/"
 
2234
 
2235
  #~ msgid "Max value %s is not valid number. Row number %d."
2236
  #~ msgstr "Wartość Maks %s jest niepoprawna. Numer wiersza %d."
2244
  #~ msgid "Value value %s is not valid number. Row number %d."
2245
  #~ msgstr "Wartość w polu Wartość %s jest niepoprawna. Numer wiersza %d."
2246
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2247
  #~ msgid "Section214 Settings"
2248
  #~ msgstr "Section214 Settings"
2249
 
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Flexible Shipping for WooCommerce ===
2
- Contributors: wpdesk, swoboda
3
  Donate link: https://flexibleshipping.com/table-rate/
4
  Tags: table rate, table rate shipping, woocommerce shipping, flexible shipping, woocommerce table rate shipping, cart based shipping, weight shipping, weight based shipping, totals based shipping, order based shipping, shipping zones, shipping classes
5
  Requires at least: 4.5
6
- Tested up to: 5.2.1
7
- Stable tag: 3.4.0
8
  Requires PHP: 5.6
9
  License: GPLv3 or later
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
@@ -175,6 +175,9 @@ If you are upgrading from the old Flexible Shipping version (1.3.2, woo-flexible
175
 
176
  == Changelog ==
177
 
 
 
 
178
  = 3.4.0 - 2019-05-22 =
179
  * Added new filter wpdesk_is_wp_log_capture_permitted
180
 
1
  === Flexible Shipping for WooCommerce ===
2
+ Contributors: wpdesk,swoboda,dyszczo,grola,potreb,martapaw,jablonowski,ospiotr,przemyslawrosa,adriannagr
3
  Donate link: https://flexibleshipping.com/table-rate/
4
  Tags: table rate, table rate shipping, woocommerce shipping, flexible shipping, woocommerce table rate shipping, cart based shipping, weight shipping, weight based shipping, totals based shipping, order based shipping, shipping zones, shipping classes
5
  Requires at least: 4.5
6
+ Tested up to: 5.2.2
7
+ Stable tag: 3.5.0
8
  Requires PHP: 5.6
9
  License: GPLv3 or later
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
175
 
176
  == Changelog ==
177
 
178
+ = 3.5.0 - 2019-07-10 =
179
+ * Most code moved to shared libraries
180
+
181
  = 3.4.0 - 2019-05-22 =
182
  * Added new filter wpdesk_is_wp_log_capture_permitted
183
 
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
- return ComposerAutoloaderInitbcf9b3a05774537e25f626ce421df9f1::getLoader();
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInitf4dee7aa62609d771dab02dd03ffe247::getLoader();
vendor/composer/autoload_classmap.php CHANGED
@@ -158,6 +158,14 @@ return array(
158
  'WPDesk\\ABTesting\\ABTest\\EqualGroupsRandomABTest' => $vendorDir . '/wpdesk/wp-abtesting/src/ABTest/EqualGroupsRandomABTest.php',
159
  'WPDesk\\ABTesting\\ABVariant' => $vendorDir . '/wpdesk/wp-abtesting/src/ABVariant.php',
160
  'WPDesk\\ABTesting\\ABVariant\\BasicABVariant' => $vendorDir . '/wpdesk/wp-abtesting/src/ABVariant/BasicABVariant.php',
 
 
 
 
 
 
 
 
161
  'WPDesk\\Logger\\BasicLoggerFactory' => $vendorDir . '/wpdesk/wp-logs/src/BasicLoggerFactory.php',
162
  'WPDesk\\Logger\\LoggerFacade' => $vendorDir . '/wpdesk/wp-logs/src/LoggerFacade.php',
163
  'WPDesk\\Logger\\LoggerFactory' => $vendorDir . '/wpdesk/wp-logs/src/LoggerFactory.php',
@@ -185,8 +193,10 @@ return array(
185
  'WPDesk\\Persistence\\Wordpress\\WordpressTransientContainer' => $vendorDir . '/wpdesk/wp-persistence/src/Wordpress/WordpressTransientContainer.php',
186
  'WPDesk\\PluginBuilder\\BuildDirector\\LegacyBuildDirector' => $vendorDir . '/wpdesk/wp-builder/src/BuildDirector/LegacyBuildDirector.php',
187
  'WPDesk\\PluginBuilder\\Builder\\AbstractBuilder' => $vendorDir . '/wpdesk/wp-builder/src/Builder/AbstractBuilder.php',
 
188
  'WPDesk\\PluginBuilder\\Builder\\InfoBuilder' => $vendorDir . '/wpdesk/wp-builder/src/Builder/InfoBuilder.php',
189
  'WPDesk\\PluginBuilder\\Plugin\\AbstractPlugin' => $vendorDir . '/wpdesk/wp-builder/src/Plugin/AbstractPlugin.php',
 
190
  'WPDesk\\PluginBuilder\\Plugin\\ActivationTracker' => $vendorDir . '/wpdesk/wp-builder/src/Plugin/ActivationTracker.php',
191
  'WPDesk\\PluginBuilder\\Plugin\\Hookable' => $vendorDir . '/wpdesk/wp-builder/src/Plugin/Hookable.php',
192
  'WPDesk\\PluginBuilder\\Plugin\\HookableCollection' => $vendorDir . '/wpdesk/wp-builder/src/Plugin/HookableCollection.php',
@@ -348,132 +358,130 @@ return array(
348
  'WPDesk\\View\\Resolver\\NullResolver' => $vendorDir . '/wpdesk/wp-view/src/Resolver/NullResolver.php',
349
  'WPDesk\\View\\Resolver\\Resolver' => $vendorDir . '/wpdesk/wp-view/src/Resolver/Resolver.php',
350
  'WPDesk\\View\\Resolver\\WPThemeResolver' => $vendorDir . '/wpdesk/wp-view/src/Resolver/WPThemeResolver.php',
351
- 'WPDesk_Flexible_Shipping' => $baseDir . '/classes/shipping-method.php',
352
- 'WPDesk_Flexible_Shipping_AB_Pointer_Message_Test' => $baseDir . '/classes/abtests/class-ab-pointer-message-test.php',
353
- 'WPDesk_Flexible_Shipping_AB_Tracker_Deactivation_Data' => $baseDir . '/classes/abtests/class-ab-tracker-deactivation-data.php',
354
- 'WPDesk_Flexible_Shipping_AB_Variant_Old' => $baseDir . '/classes/abtests/ab-pointer-message-test/class-ab-variant-old.php',
355
- 'WPDesk_Flexible_Shipping_AB_Variant_With_Pointer_Message_Text' => $baseDir . '/classes/abtests/ab-pointer-message-test/class-ab-variant-with-pointer-message-text.php',
356
- 'WPDesk_Flexible_Shipping_AB_Variant_With_Pointer_Message_Video' => $baseDir . '/classes/abtests/ab-pointer-message-test/class-ab-variant-with-pointer-message-video.php',
357
- 'WPDesk_Flexible_Shipping_AB_Variant_Without_Pointer_Message' => $baseDir . '/classes/abtests/ab-pointer-message-test/class-ab-variant-without-pointer-message.php',
358
- 'WPDesk_Flexible_Shipping_Add_Shipping' => $baseDir . '/classes/class-order-add-shipping.php',
359
- 'WPDesk_Flexible_Shipping_Admin_Notices' => $baseDir . '/classes/admin-notices.php',
360
- 'WPDesk_Flexible_Shipping_Bulk_Actions' => $baseDir . '/classes/bulk-actions.php',
361
- 'WPDesk_Flexible_Shipping_Cancel_Shipment_Exception' => $baseDir . '/classes/shipment/class-cancel-shipment-exception.php',
362
- 'WPDesk_Flexible_Shipping_Checkout_Ajax_Request_Data' => $baseDir . '/classes/checkout/class-checkout-ajax-request-data.php',
363
- 'WPDesk_Flexible_Shipping_Csv_Importer' => $baseDir . '/classes/csv/class-csv-importer.php',
364
- 'WPDesk_Flexible_Shipping_Csv_Importer_Exception' => $baseDir . '/classes/csv/class-csv-importer-exception.php',
365
- 'WPDesk_Flexible_Shipping_Csv_Shipping_Class' => $baseDir . '/classes/csv/class-csv-shipping-class.php',
366
- 'WPDesk_Flexible_Shipping_Export' => $baseDir . '/classes/flexible-shipping-export.php',
367
- 'WPDesk_Flexible_Shipping_Get_Label_Exception' => $baseDir . '/classes/shipment/class-get-label-exception.php',
368
- 'WPDesk_Flexible_Shipping_Label_Not_Available_Exception' => $baseDir . '/classes/shipment/class-label-not-available-exception.php',
369
- 'WPDesk_Flexible_Shipping_Logger_Factory' => $baseDir . '/classes/logger/class-logger-factory.php',
370
- 'WPDesk_Flexible_Shipping_Manifest' => $baseDir . '/classes/manifest/class-manifest.php',
371
- 'WPDesk_Flexible_Shipping_Manifest_FS' => $baseDir . '/classes/manifest/class-manifest-fs.php',
372
- 'WPDesk_Flexible_Shipping_Manifest_Interface' => $baseDir . '/classes/manifest/interface-manifest.php',
373
- 'WPDesk_Flexible_Shipping_Menu' => $baseDir . '/classes/class-menu.php',
374
- 'WPDesk_Flexible_Shipping_Method_Created_Tracker_Deactivation_Data' => $baseDir . '/classes/class-method-created-tracker-deactivation-data.php',
375
- 'WPDesk_Flexible_Shipping_Money_Formatter' => $baseDir . '/classes/shipment/class-money-formatter.php',
376
- 'WPDesk_Flexible_Shipping_Multicurrency' => $baseDir . '/classes/multicurrency.php',
377
- 'WPDesk_Flexible_Shipping_Multilingual' => $baseDir . '/classes/multilingual.php',
378
- 'WPDesk_Flexible_Shipping_Pointer_Messages' => $baseDir . '/classes/class-pointer-messages.php',
379
- 'WPDesk_Flexible_Shipping_SaaS_Add_Shipping_Handler' => $baseDir . '/classes/saas/class-saas-add-shipping-handler.php',
380
- 'WPDesk_Flexible_Shipping_SaaS_Auth_Params' => $baseDir . '/classes/saas/class-saas-auth-params.php',
381
- 'WPDesk_Flexible_Shipping_SaaS_Auth_Platform_Factory' => $baseDir . '/classes/saas/class-saas-platform-factory.php',
382
- 'WPDesk_Flexible_Shipping_SaaS_Bad_Credentials_Exception' => $baseDir . '/classes/saas/class-saas-bad-credentials-exception.php',
383
- 'WPDesk_Flexible_Shipping_SaaS_Cache_Settings' => $baseDir . '/classes/saas/class-saas-cache-settings.php',
384
- 'WPDesk_Flexible_Shipping_SaaS_Checkout_Field_Collection_Points' => $baseDir . '/classes/saas/checkout-fields/class-saas-checkout-field-collection-points.php',
385
- 'WPDesk_Flexible_Shipping_SaaS_Collection_Points_Ajax' => $baseDir . '/classes/saas/collection-points/class-saas-collection-points-ajax.php',
386
- 'WPDesk_Flexible_Shipping_SaaS_Collection_Points_Ajax_Request_Data' => $baseDir . '/classes/saas/collection-points/class-saas-collection-points-ajax-request-data.php',
387
- 'WPDesk_Flexible_Shipping_SaaS_Collection_Points_Map_Loader' => $baseDir . '/classes/saas/collection-points/class-saas-collection-points-map.php',
388
- 'WPDesk_Flexible_Shipping_SaaS_Connection' => $baseDir . '/classes/saas/class-saas-connection.php',
389
- 'WPDesk_Flexible_Shipping_SaaS_Connection_Status_Ajax' => $baseDir . '/classes/saas/class-saas-connection-status-ajax.php',
390
- 'WPDesk_Flexible_Shipping_SaaS_Connection_Status_Field' => $baseDir . '/classes/saas/class-saas-connection-status-field.php',
391
- 'WPDesk_Flexible_Shipping_SaaS_Country_State_Field' => $baseDir . '/classes/saas/class-saas-country-state-field.php',
392
- 'WPDesk_Flexible_Shipping_SaaS_Custom_Services_Settings' => $baseDir . '/classes/saas/class-saas-custom-services-setting.php',
393
- 'WPDesk_Flexible_Shipping_SaaS_Default_Value_Compute_Handler' => $baseDir . '/classes/saas/class-saas-default-value-compute-handler.php',
394
- 'WPDesk_Flexible_Shipping_SaaS_Free_Shipping_Metadata_Handler' => $baseDir . '/classes/saas/class-saas-free-shipping-metadata-handler.php',
395
- 'WPDesk_Flexible_Shipping_SaaS_Live_Rates_Fallback_Metadata_Handler' => $baseDir . '/classes/saas/class-saas-live-rates-fallback-metadata-handler.php',
396
- 'WPDesk_Flexible_Shipping_SaaS_Live_Rates_Handler' => $baseDir . '/classes/saas/class-saas-live-rates-handler.php',
397
- 'WPDesk_Flexible_Shipping_SaaS_Logger_Downloader' => $baseDir . '/classes/logger/class-saas-logger-downloader.php',
398
- 'WPDesk_Flexible_Shipping_SaaS_Logger_Settings' => $baseDir . '/classes/logger/class-saas-logger-settings.php',
399
- 'WPDesk_Flexible_Shipping_SaaS_Maintenance_Mode_Exception' => $baseDir . '/classes/saas/class-saas-maintenance-mode-exception.php',
400
- 'WPDesk_Flexible_Shipping_SaaS_Message_Stock_Metadata_Handler' => $baseDir . '/classes/saas/class-saas-message-stock-metadata-handler.php',
401
- 'WPDesk_Flexible_Shipping_SaaS_New_Courier_Settings_Section' => $baseDir . '/classes/saas/class-saas-new-courier-settings-section.php',
402
- 'WPDesk_Flexible_Shipping_SaaS_Platform_Links' => $baseDir . '/classes/saas/class-saas-platform-links.php',
403
- 'WPDesk_Flexible_Shipping_SaaS_Registration_Second_Notice' => $baseDir . '/classes/saas/class-saas-registration-second-notice.php',
404
- 'WPDesk_Flexible_Shipping_SaaS_Service_Settings_Not_Found' => $baseDir . '/classes/saas/class-saas-service-settings-not-found-exception.php',
405
- 'WPDesk_Flexible_Shipping_SaaS_Services_Manager' => $baseDir . '/classes/saas/class-saas-shipping-services-manager.php',
406
- 'WPDesk_Flexible_Shipping_SaaS_Settings' => $baseDir . '/classes/saas/class-saas-settings.php',
407
- 'WPDesk_Flexible_Shipping_SaaS_Settings_Integration_Checkbox' => $baseDir . '/classes/saas/class-sass-settings-integration-checkbox.php',
408
- 'WPDesk_Flexible_Shipping_SaaS_Settings_Service_Checkbox' => $baseDir . '/classes/saas/class-saas-settings-service-checkbox.php',
409
- 'WPDesk_Flexible_Shipping_SaaS_Shipment_Auto_Create' => $baseDir . '/classes/saas/class-saas-shipment-auto-create.php',
410
- 'WPDesk_Flexible_Shipping_SaaS_Shipment_Order_Auto_Complete' => $baseDir . '/classes/saas/class-saas-shipment-order-auto-complete.php',
411
- 'WPDesk_Flexible_Shipping_SaaS_Shipment_Settings_Field' => $baseDir . '/classes/saas/class-saas-shipment-settings-field.php',
412
- 'WPDesk_Flexible_Shipping_SaaS_Shipping_Checkout_Fields_Checkout' => $baseDir . '/classes/saas/checkout-fields/class-saas-checkout-fields-checkout.php',
413
- 'WPDesk_Flexible_Shipping_SaaS_Shipping_Checkout_Fields_Shipment' => $baseDir . '/classes/saas/checkout-fields/class-saas-checkout-fields-shipment.php',
414
- 'WPDesk_Flexible_Shipping_SaaS_Shipping_Field_Visible_When' => $baseDir . '/classes/saas/checkout-fields/class-saas-field-visible-when.php',
415
- 'WPDesk_Flexible_Shipping_SaaS_Shipping_Field_Visible_When_Checkout' => $baseDir . '/classes/saas/checkout-fields/class-saas-field-visible-when-checkout.php',
416
- 'WPDesk_Flexible_Shipping_SaaS_Shipping_Field_Visible_When_Shipment' => $baseDir . '/classes/saas/checkout-fields/class-saas-field-visible-when-shipment.php',
417
- 'WPDesk_Flexible_Shipping_SaaS_Shipping_Method_Integration_Settings' => $baseDir . '/classes/saas/class-saas-shipping-method-integration-settings.php',
418
- 'WPDesk_Flexible_Shipping_SaaS_Shipping_Service' => $baseDir . '/classes/saas/class-saas-shipping-service.php',
419
- 'WPDesk_Flexible_Shipping_SaaS_Shipping_Service_Collection_Points' => $baseDir . '/classes/saas/collection-points/class-saas-shipping-service-collection-points.php',
420
- 'WPDesk_Flexible_Shipping_SaaS_Shipping_Service_Settings' => $baseDir . '/classes/saas/class-saas-shipping-service-settings.php',
421
- 'WPDesk_Flexible_Shipping_SaaS_Shipping_Services' => $baseDir . '/classes/saas/class-saas-shipping-services.php',
422
- 'WPDesk_Flexible_Shipping_SaaS_Tracker' => $baseDir . '/classes/saas/tracker/class-saas-tracker.php',
423
- 'WPDesk_Flexible_Shipping_SaaS_User_Registration' => $baseDir . '/classes/saas/class-saas-user-registration.php',
424
- 'WPDesk_Flexible_Shipping_Saas_Connection_Aware' => $baseDir . '/classes/saas/interface-saas-connection-aware.php',
425
- 'WPDesk_Flexible_Shipping_Send_Shipment_Exception' => $baseDir . '/classes/shipment/class-send-shipment-exception.php',
426
- 'WPDesk_Flexible_Shipping_Shipment' => $baseDir . '/classes/shipment/class-shipment.php',
427
- 'WPDesk_Flexible_Shipping_Shipment_Ajax' => $baseDir . '/classes/shipment/ajax.php',
428
- 'WPDesk_Flexible_Shipping_Shipment_CPT' => $baseDir . '/classes/shipment/cpt-shipment.php',
429
- 'WPDesk_Flexible_Shipping_Shipment_Counter' => $baseDir . '/classes/shipment/class-shipment-counter.php',
430
- 'WPDesk_Flexible_Shipping_Shipment_Interface' => $baseDir . '/classes/shipment/interface-shipment.php',
431
- 'WPDesk_Flexible_Shipping_Shipment_Plan_Exceeded_Exception' => $baseDir . '/classes/shipment/class-shipment-plan-exceeded-exception.php',
432
- 'WPDesk_Flexible_Shipping_Shipment_Request_Fields' => $baseDir . '/classes/shipment/class-shipment-request-fields.php',
433
- 'WPDesk_Flexible_Shipping_Shipment_Saas' => $baseDir . '/classes/shipment/saas/class-shipment-saas.php',
434
- 'WPDesk_Flexible_Shipping_Shipment_Saas_Ajax' => $baseDir . '/classes/shipment/saas/class-shipment-saas-ajax.php',
435
- 'WPDesk_Flexible_Shipping_Shipment_Saas_Attachments' => $baseDir . '/classes/shipment/saas/class-shipment-saas-attachments.php',
436
- 'WPDesk_Flexible_Shipping_Shipment_Saas_Attachments_Ajax' => $baseDir . '/classes/shipment/saas/class-shipment-saas-attachments-ajax.php',
437
- 'WPDesk_Flexible_Shipping_Shipment_Saas_Attachments_Upload_Dir' => $baseDir . '/classes/shipment/saas/class-shipment-saas-attachments-upload-dir.php',
438
- 'WPDesk_Flexible_Shipping_Shipment_Saas_Message_Formatter' => $baseDir . '/classes/shipment/saas/class-shipment-saas-message-formatter.php',
439
- 'WPDesk_Flexible_Shipping_Shipment_Saas_Metabox' => $baseDir . '/classes/shipment/saas/class-shipment-saas-metabox.php',
440
- 'WPDesk_Flexible_Shipping_Shipment_Saas_Metabox_Attachments' => $baseDir . '/classes/shipment/saas/class-shipment-saas-metabox-attachments.php',
441
- 'WPDesk_Flexible_Shipping_Shipment_Saas_Send' => $baseDir . '/classes/shipment/saas/class-shipment-saas-send.php',
442
- 'WPDesk_Flexible_Shipping_Shipping_Manifest_CPT' => $baseDir . '/classes/manifest/cpt-shipping-manifest.php',
443
- 'WPDesk_Flexible_Shipping_Shipping_Zone_Data_Extractor' => $baseDir . '/classes/class-shipping-zone-data-extractor.php',
444
- 'WPDesk_Flexible_Shipping_Shorcode_Unit_Dimension' => $baseDir . '/classes/class-shortcode-unit-dimension.php',
445
- 'WPDesk_Flexible_Shipping_Shorcode_Unit_Weight' => $baseDir . '/classes/class-shortcode-unit-weight.php',
446
- 'WPDesk_Flexible_Shipping_Tracker' => $baseDir . '/classes/tracker.php',
447
- 'WPDesk_Flexible_Shipping_UK_States' => $baseDir . '/classes/class-uk-states.php',
448
- 'WPDesk_Flexible_Shipping_WooCommerce_Context_Logger' => $baseDir . '/classes/logger/class-woocommerce-context-logger.php',
449
  'WPDesk_Logger' => $vendorDir . '/wpdesk/wp-logs/src/deprecated/wpdesk-logger.php',
450
  'WPDesk_Logger_Factory' => $vendorDir . '/wpdesk/wp-logs/src/deprecated/wpdesk-logger-factory.php',
451
- 'WPDesk_Tracker' => $baseDir . '/inc/wpdesk-tracker/class-wpdesk-tracker.php',
452
- 'WPDesk_Tracker_Data_Provider' => $baseDir . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider.php',
453
- 'WPDesk_Tracker_Data_Provider_Gateways' => $baseDir . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-gateways.php',
454
- 'WPDesk_Tracker_Data_Provider_Identification' => $baseDir . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-identification.php',
455
- 'WPDesk_Tracker_Data_Provider_Identification_Gdpr' => $baseDir . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-identification-gdpr.php',
456
- 'WPDesk_Tracker_Data_Provider_Jetpack' => $baseDir . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-jetpack.php',
457
- 'WPDesk_Tracker_Data_Provider_License_Emails' => $baseDir . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-license-emails.php',
458
- 'WPDesk_Tracker_Data_Provider_Orders' => $baseDir . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-orders.php',
459
- 'WPDesk_Tracker_Data_Provider_Orders_Country' => $baseDir . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-orders-country.php',
460
- 'WPDesk_Tracker_Data_Provider_Orders_Month' => $baseDir . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-orders-month.php',
461
- 'WPDesk_Tracker_Data_Provider_Plugins' => $baseDir . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-plugins.php',
462
- 'WPDesk_Tracker_Data_Provider_Products' => $baseDir . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-products.php',
463
- 'WPDesk_Tracker_Data_Provider_Products_Variations' => $baseDir . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-products-variations.php',
464
- 'WPDesk_Tracker_Data_Provider_Server' => $baseDir . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-server.php',
465
- 'WPDesk_Tracker_Data_Provider_Settings' => $baseDir . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-settings.php',
466
- 'WPDesk_Tracker_Data_Provider_Shipping_Classes' => $baseDir . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-shipping-classes.php',
467
- 'WPDesk_Tracker_Data_Provider_Shipping_Methods' => $baseDir . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-shipping-methods.php',
468
- 'WPDesk_Tracker_Data_Provider_Shipping_Methods_Zones' => $baseDir . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-shipping-methods-zones.php',
469
- 'WPDesk_Tracker_Data_Provider_Templates' => $baseDir . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-templates.php',
470
- 'WPDesk_Tracker_Data_Provider_Theme' => $baseDir . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-theme.php',
471
- 'WPDesk_Tracker_Data_Provider_User_Agent' => $baseDir . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-user-agent.php',
472
- 'WPDesk_Tracker_Data_Provider_Users' => $baseDir . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-users.php',
473
- 'WPDesk_Tracker_Data_Provider_Wordpress' => $baseDir . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-wordpress.php',
474
- 'WPDesk_Tracker_Factory' => $baseDir . '/inc/wpdesk-tracker/class-wpdesk-tracker-factory.php',
475
- 'WPDesk_Tracker_Sender' => $baseDir . '/inc/wpdesk-tracker/sender/class-wpdesk-tracker-sender.php',
476
- 'WPDesk_Tracker_Sender_Exception_WpError' => $baseDir . '/inc/wpdesk-tracker/sender/Exception/class-wpdesk-tracker-sender-exception-wperror.php',
477
- 'WPDesk_Tracker_Sender_Logged' => $baseDir . '/inc/wpdesk-tracker/sender/class-wpdesk-tracker-sender-logged.php',
478
- 'WPDesk_Tracker_Sender_Wordpress_To_WPDesk' => $baseDir . '/inc/wpdesk-tracker/sender/class-wpdesk-tracker-sender-wordpress-to-wpdesk.php',
479
  );
158
  'WPDesk\\ABTesting\\ABTest\\EqualGroupsRandomABTest' => $vendorDir . '/wpdesk/wp-abtesting/src/ABTest/EqualGroupsRandomABTest.php',
159
  'WPDesk\\ABTesting\\ABVariant' => $vendorDir . '/wpdesk/wp-abtesting/src/ABVariant.php',
160
  'WPDesk\\ABTesting\\ABVariant\\BasicABVariant' => $vendorDir . '/wpdesk/wp-abtesting/src/ABVariant/BasicABVariant.php',
161
+ 'WPDesk\\FS\\Rate\\FirstRateNotice' => $vendorDir . '/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/first-rate-notice.php',
162
+ 'WPDesk\\FS\\Rate\\Flexible_Shipping_Order_Counter' => $vendorDir . '/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/order-counter.php',
163
+ 'WPDesk\\FS\\Rate\\RateNotice' => $vendorDir . '/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/abstract-rate.php',
164
+ 'WPDesk\\FS\\Rate\\RateNoticeCreator' => $vendorDir . '/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/rate-notices-creator.php',
165
+ 'WPDesk\\FS\\Rate\\RateNoticeInterface' => $vendorDir . '/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/interface-rate.php',
166
+ 'WPDesk\\FS\\Rate\\SecondRateNotice' => $vendorDir . '/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/second-rate-notice.php',
167
+ 'WPDesk\\FS\\Rate\\ThirdRateNotice' => $vendorDir . '/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/third-rate-notice.php',
168
+ 'WPDesk\\FS\\Rate\\WPDesk_Flexible_Shipping_Rate_Notice' => $vendorDir . '/wpdesk/wp-wpdesk-fs-shipment/src/rate-notice.php',
169
  'WPDesk\\Logger\\BasicLoggerFactory' => $vendorDir . '/wpdesk/wp-logs/src/BasicLoggerFactory.php',
170
  'WPDesk\\Logger\\LoggerFacade' => $vendorDir . '/wpdesk/wp-logs/src/LoggerFacade.php',
171
  'WPDesk\\Logger\\LoggerFactory' => $vendorDir . '/wpdesk/wp-logs/src/LoggerFactory.php',
193
  'WPDesk\\Persistence\\Wordpress\\WordpressTransientContainer' => $vendorDir . '/wpdesk/wp-persistence/src/Wordpress/WordpressTransientContainer.php',
194
  'WPDesk\\PluginBuilder\\BuildDirector\\LegacyBuildDirector' => $vendorDir . '/wpdesk/wp-builder/src/BuildDirector/LegacyBuildDirector.php',
195
  'WPDesk\\PluginBuilder\\Builder\\AbstractBuilder' => $vendorDir . '/wpdesk/wp-builder/src/Builder/AbstractBuilder.php',
196
+ 'WPDesk\\PluginBuilder\\Builder\\InfoActivationBuilder' => $vendorDir . '/wpdesk/wp-builder/src/Builder/InfoActivationBuilder.php',
197
  'WPDesk\\PluginBuilder\\Builder\\InfoBuilder' => $vendorDir . '/wpdesk/wp-builder/src/Builder/InfoBuilder.php',
198
  'WPDesk\\PluginBuilder\\Plugin\\AbstractPlugin' => $vendorDir . '/wpdesk/wp-builder/src/Plugin/AbstractPlugin.php',
199
+ 'WPDesk\\PluginBuilder\\Plugin\\ActivationAware' => $vendorDir . '/wpdesk/wp-builder/src/Plugin/ActivationAware.php',
200
  'WPDesk\\PluginBuilder\\Plugin\\ActivationTracker' => $vendorDir . '/wpdesk/wp-builder/src/Plugin/ActivationTracker.php',
201
  'WPDesk\\PluginBuilder\\Plugin\\Hookable' => $vendorDir . '/wpdesk/wp-builder/src/Plugin/Hookable.php',
202
  'WPDesk\\PluginBuilder\\Plugin\\HookableCollection' => $vendorDir . '/wpdesk/wp-builder/src/Plugin/HookableCollection.php',
358
  'WPDesk\\View\\Resolver\\NullResolver' => $vendorDir . '/wpdesk/wp-view/src/Resolver/NullResolver.php',
359
  'WPDesk\\View\\Resolver\\Resolver' => $vendorDir . '/wpdesk/wp-view/src/Resolver/Resolver.php',
360
  'WPDesk\\View\\Resolver\\WPThemeResolver' => $vendorDir . '/wpdesk/wp-view/src/Resolver/WPThemeResolver.php',
361
+ 'WPDesk_Flexible_Shipping' => $baseDir . '/classes/table-rate/shipping-method.php',
362
+ 'WPDesk_Flexible_Shipping_AB_Pointer_Message_Test' => $baseDir . '/classes/table-rate/abtests/class-ab-pointer-message-test.php',
363
+ 'WPDesk_Flexible_Shipping_AB_Tracker_Deactivation_Data' => $baseDir . '/classes/table-rate/abtests/class-ab-tracker-deactivation-data.php',
364
+ 'WPDesk_Flexible_Shipping_AB_Variant_Old' => $baseDir . '/classes/table-rate/abtests/ab-pointer-message-test/class-ab-variant-old.php',
365
+ 'WPDesk_Flexible_Shipping_AB_Variant_With_Pointer_Message_Text' => $baseDir . '/classes/table-rate/abtests/ab-pointer-message-test/class-ab-variant-with-pointer-message-text.php',
366
+ 'WPDesk_Flexible_Shipping_AB_Variant_With_Pointer_Message_Video' => $baseDir . '/classes/table-rate/abtests/ab-pointer-message-test/class-ab-variant-with-pointer-message-video.php',
367
+ 'WPDesk_Flexible_Shipping_AB_Variant_Without_Pointer_Message' => $baseDir . '/classes/table-rate/abtests/ab-pointer-message-test/class-ab-variant-without-pointer-message.php',
368
+ 'WPDesk_Flexible_Shipping_Add_Shipping' => $vendorDir . '/wpdesk/wp-wpdesk-fs-shipment/src/class-order-add-shipping.php',
369
+ 'WPDesk_Flexible_Shipping_Admin_Notices' => $vendorDir . '/wpdesk/wp-wpdesk-fs-shipment/src/admin-notices.php',
370
+ 'WPDesk_Flexible_Shipping_Bulk_Actions' => $baseDir . '/classes/table-rate/bulk-actions.php',
371
+ 'WPDesk_Flexible_Shipping_Cancel_Shipment_Exception' => $vendorDir . '/wpdesk/wp-wpdesk-fs-shipment/src/exception/class-cancel-shipment-exception.php',
372
+ 'WPDesk_Flexible_Shipping_Checkout_Ajax_Request_Data' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/checkout/class-checkout-ajax-request-data.php',
373
+ 'WPDesk_Flexible_Shipping_Csv_Importer' => $baseDir . '/classes/table-rate/csv/class-csv-importer.php',
374
+ 'WPDesk_Flexible_Shipping_Csv_Importer_Exception' => $baseDir . '/classes/table-rate/csv/class-csv-importer-exception.php',
375
+ 'WPDesk_Flexible_Shipping_Export' => $baseDir . '/classes/table-rate/csv/flexible-shipping-export.php',
376
+ 'WPDesk_Flexible_Shipping_Get_Label_Exception' => $vendorDir . '/wpdesk/wp-wpdesk-fs-shipment/src/exception/class-get-label-exception.php',
377
+ 'WPDesk_Flexible_Shipping_Label_Not_Available_Exception' => $vendorDir . '/wpdesk/wp-wpdesk-fs-shipment/src/exception/class-label-not-available-exception.php',
378
+ 'WPDesk_Flexible_Shipping_Logger_Factory' => $baseDir . '/classes/table-rate/logger/class-logger-factory.php',
379
+ 'WPDesk_Flexible_Shipping_Manifest' => $vendorDir . '/wpdesk/wp-wpdesk-fs-shipment/src/manifest/class-manifest.php',
380
+ 'WPDesk_Flexible_Shipping_Manifest_FS' => $vendorDir . '/wpdesk/wp-wpdesk-fs-shipment/src/manifest/class-manifest-fs.php',
381
+ 'WPDesk_Flexible_Shipping_Manifest_Interface' => $vendorDir . '/wpdesk/wp-wpdesk-fs-shipment/src/manifest/interface-manifest.php',
382
+ 'WPDesk_Flexible_Shipping_Method_Created_Tracker_Deactivation_Data' => $baseDir . '/classes/tracker/class-method-created-tracker-deactivation-data.php',
383
+ 'WPDesk_Flexible_Shipping_Money_Formatter' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/class-money-formatter.php',
384
+ 'WPDesk_Flexible_Shipping_Multicurrency' => $baseDir . '/classes/table-rate/multicurrency.php',
385
+ 'WPDesk_Flexible_Shipping_Multilingual' => $baseDir . '/classes/table-rate/multilingual.php',
386
+ 'WPDesk_Flexible_Shipping_Pointer_Messages' => $baseDir . '/classes/table-rate/abtests/class-pointer-messages.php',
387
+ 'WPDesk_Flexible_Shipping_SaaS_Add_Shipping_Handler' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-add-shipping-handler.php',
388
+ 'WPDesk_Flexible_Shipping_SaaS_Auth_Params' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-auth-params.php',
389
+ 'WPDesk_Flexible_Shipping_SaaS_Auth_Platform_Factory' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-platform-factory.php',
390
+ 'WPDesk_Flexible_Shipping_SaaS_Bad_Credentials_Exception' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-bad-credentials-exception.php',
391
+ 'WPDesk_Flexible_Shipping_SaaS_Cache_Settings' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-cache-settings.php',
392
+ 'WPDesk_Flexible_Shipping_SaaS_Checkout_Field_Collection_Points' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/checkout-fields/class-saas-checkout-field-collection-points.php',
393
+ 'WPDesk_Flexible_Shipping_SaaS_Collection_Points_Ajax' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/collection-points/class-saas-collection-points-ajax.php',
394
+ 'WPDesk_Flexible_Shipping_SaaS_Collection_Points_Ajax_Request_Data' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/collection-points/class-saas-collection-points-ajax-request-data.php',
395
+ 'WPDesk_Flexible_Shipping_SaaS_Collection_Points_Map_Loader' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/collection-points/class-saas-collection-points-map.php',
396
+ 'WPDesk_Flexible_Shipping_SaaS_Connection' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-connection.php',
397
+ 'WPDesk_Flexible_Shipping_SaaS_Connection_Status_Ajax' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-connection-status-ajax.php',
398
+ 'WPDesk_Flexible_Shipping_SaaS_Connection_Status_Field' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-connection-status-field.php',
399
+ 'WPDesk_Flexible_Shipping_SaaS_Country_State_Field' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-country-state-field.php',
400
+ 'WPDesk_Flexible_Shipping_SaaS_Custom_Services_Settings' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-custom-services-setting.php',
401
+ 'WPDesk_Flexible_Shipping_SaaS_Default_Value_Compute_Handler' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-default-value-compute-handler.php',
402
+ 'WPDesk_Flexible_Shipping_SaaS_Free_Shipping_Metadata_Handler' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-free-shipping-metadata-handler.php',
403
+ 'WPDesk_Flexible_Shipping_SaaS_Live_Rates_Fallback_Metadata_Handler' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-live-rates-fallback-metadata-handler.php',
404
+ 'WPDesk_Flexible_Shipping_SaaS_Live_Rates_Handler' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-live-rates-handler.php',
405
+ 'WPDesk_Flexible_Shipping_SaaS_Logger_Downloader' => $baseDir . '/classes/table-rate/logger/class-saas-logger-downloader.php',
406
+ 'WPDesk_Flexible_Shipping_SaaS_Logger_Settings' => $baseDir . '/classes/table-rate/logger/class-saas-logger-settings.php',
407
+ 'WPDesk_Flexible_Shipping_SaaS_Maintenance_Mode_Exception' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-maintenance-mode-exception.php',
408
+ 'WPDesk_Flexible_Shipping_SaaS_Message_Stock_Metadata_Handler' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-message-stock-metadata-handler.php',
409
+ 'WPDesk_Flexible_Shipping_SaaS_New_Courier_Settings_Section' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-new-courier-settings-section.php',
410
+ 'WPDesk_Flexible_Shipping_SaaS_Platform_Links' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-platform-links.php',
411
+ 'WPDesk_Flexible_Shipping_SaaS_Registration_Second_Notice' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-registration-second-notice.php',
412
+ 'WPDesk_Flexible_Shipping_SaaS_Service_Settings_Not_Found' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-service-settings-not-found-exception.php',
413
+ 'WPDesk_Flexible_Shipping_SaaS_Services_Manager' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipping-services-manager.php',
414
+ 'WPDesk_Flexible_Shipping_SaaS_Settings' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-settings.php',
415
+ 'WPDesk_Flexible_Shipping_SaaS_Settings_Integration_Checkbox' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/class-sass-settings-integration-checkbox.php',
416
+ 'WPDesk_Flexible_Shipping_SaaS_Settings_Service_Checkbox' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-settings-service-checkbox.php',
417
+ 'WPDesk_Flexible_Shipping_SaaS_Shipment_Auto_Create' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipment-auto-create.php',
418
+ 'WPDesk_Flexible_Shipping_SaaS_Shipment_Order_Auto_Complete' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipment-order-auto-complete.php',
419
+ 'WPDesk_Flexible_Shipping_SaaS_Shipment_Settings_Field' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipment-settings-field.php',
420
+ 'WPDesk_Flexible_Shipping_SaaS_Shipping_Checkout_Fields_Checkout' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/checkout-fields/class-saas-checkout-fields-checkout.php',
421
+ 'WPDesk_Flexible_Shipping_SaaS_Shipping_Checkout_Fields_Shipment' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/checkout-fields/class-saas-checkout-fields-shipment.php',
422
+ 'WPDesk_Flexible_Shipping_SaaS_Shipping_Field_Visible_When' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/checkout-fields/class-saas-field-visible-when.php',
423
+ 'WPDesk_Flexible_Shipping_SaaS_Shipping_Field_Visible_When_Checkout' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/checkout-fields/class-saas-field-visible-when-checkout.php',
424
+ 'WPDesk_Flexible_Shipping_SaaS_Shipping_Field_Visible_When_Shipment' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/checkout-fields/class-saas-field-visible-when-shipment.php',
425
+ 'WPDesk_Flexible_Shipping_SaaS_Shipping_Method_Integration_Settings' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipping-method-integration-settings.php',
426
+ 'WPDesk_Flexible_Shipping_SaaS_Shipping_Service' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipping-service.php',
427
+ 'WPDesk_Flexible_Shipping_SaaS_Shipping_Service_Collection_Points' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/collection-points/class-saas-shipping-service-collection-points.php',
428
+ 'WPDesk_Flexible_Shipping_SaaS_Shipping_Service_Settings' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipping-service-settings.php',
429
+ 'WPDesk_Flexible_Shipping_SaaS_Shipping_Services' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipping-services.php',
430
+ 'WPDesk_Flexible_Shipping_SaaS_Tracker' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/tracker/class-saas-tracker.php',
431
+ 'WPDesk_Flexible_Shipping_SaaS_User_Registration' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-user-registration.php',
432
+ 'WPDesk_Flexible_Shipping_Saas_Connection_Aware' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/interface-saas-connection-aware.php',
433
+ 'WPDesk_Flexible_Shipping_Send_Shipment_Exception' => $vendorDir . '/wpdesk/wp-wpdesk-fs-shipment/src/exception/class-send-shipment-exception.php',
434
+ 'WPDesk_Flexible_Shipping_Shipment' => $vendorDir . '/wpdesk/wp-wpdesk-fs-shipment/src/shipment/class-shipment.php',
435
+ 'WPDesk_Flexible_Shipping_Shipment_Ajax' => $vendorDir . '/wpdesk/wp-wpdesk-fs-shipment/src/metabox/ajax.php',
436
+ 'WPDesk_Flexible_Shipping_Shipment_CPT' => $vendorDir . '/wpdesk/wp-wpdesk-fs-shipment/src/shipment/cpt-shipment.php',
437
+ 'WPDesk_Flexible_Shipping_Shipment_Counter' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/tracker/class-shipment-counter.php',
438
+ 'WPDesk_Flexible_Shipping_Shipment_Interface' => $vendorDir . '/wpdesk/wp-wpdesk-fs-shipment/src/shipment/interface-shipment.php',
439
+ 'WPDesk_Flexible_Shipping_Shipment_Plan_Exceeded_Exception' => $vendorDir . '/wpdesk/wp-wpdesk-fs-shipment/src/exception/class-shipment-plan-exceeded-exception.php',
440
+ 'WPDesk_Flexible_Shipping_Shipment_Request_Fields' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-request-fields.php',
441
+ 'WPDesk_Flexible_Shipping_Shipment_Saas' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas.php',
442
+ 'WPDesk_Flexible_Shipping_Shipment_Saas_Ajax' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-ajax.php',
443
+ 'WPDesk_Flexible_Shipping_Shipment_Saas_Attachments' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-attachments.php',
444
+ 'WPDesk_Flexible_Shipping_Shipment_Saas_Attachments_Ajax' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-attachments-ajax.php',
445
+ 'WPDesk_Flexible_Shipping_Shipment_Saas_Attachments_Upload_Dir' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-attachments-upload-dir.php',
446
+ 'WPDesk_Flexible_Shipping_Shipment_Saas_Message_Formatter' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-message-formatter.php',
447
+ 'WPDesk_Flexible_Shipping_Shipment_Saas_Metabox' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-metabox.php',
448
+ 'WPDesk_Flexible_Shipping_Shipment_Saas_Metabox_Attachments' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-metabox-attachments.php',
449
+ 'WPDesk_Flexible_Shipping_Shipment_Saas_Send' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-send.php',
450
+ 'WPDesk_Flexible_Shipping_Shipping_Manifest_CPT' => $vendorDir . '/wpdesk/wp-wpdesk-fs-shipment/src/manifest/cpt-shipping-manifest.php',
451
+ 'WPDesk_Flexible_Shipping_Shipping_Zone_Data_Extractor' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas/class-shipping-zone-data-extractor.php',
452
+ 'WPDesk_Flexible_Shipping_Shorcode_Unit_Dimension' => $baseDir . '/classes/table-rate/class-shortcode-unit-dimension.php',
453
+ 'WPDesk_Flexible_Shipping_Shorcode_Unit_Weight' => $baseDir . '/classes/table-rate/class-shortcode-unit-weight.php',
454
+ 'WPDesk_Flexible_Shipping_Tracker' => $baseDir . '/classes/tracker/tracker.php',
455
+ 'WPDesk_Flexible_Shipping_UK_States' => $vendorDir . '/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/class-uk-states.php',
456
+ 'WPDesk_Flexible_Shipping_WooCommerce_Context_Logger' => $baseDir . '/classes/table-rate/logger/class-woocommerce-context-logger.php',
 
 
457
  'WPDesk_Logger' => $vendorDir . '/wpdesk/wp-logs/src/deprecated/wpdesk-logger.php',
458
  'WPDesk_Logger_Factory' => $vendorDir . '/wpdesk/wp-logs/src/deprecated/wpdesk-logger-factory.php',
459
+ 'WPDesk_Tracker' => $vendorDir . '/wpdesk/wp-wpdesk-tracker/src/class-wpdesk-tracker.php',
460
+ 'WPDesk_Tracker_Data_Provider' => $vendorDir . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider.php',
461
+ 'WPDesk_Tracker_Data_Provider_Gateways' => $vendorDir . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-gateways.php',
462
+ 'WPDesk_Tracker_Data_Provider_Identification' => $vendorDir . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-identification.php',
463
+ 'WPDesk_Tracker_Data_Provider_Identification_Gdpr' => $vendorDir . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-identification-gdpr.php',
464
+ 'WPDesk_Tracker_Data_Provider_Jetpack' => $vendorDir . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-jetpack.php',
465
+ 'WPDesk_Tracker_Data_Provider_License_Emails' => $vendorDir . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-license-emails.php',
466
+ 'WPDesk_Tracker_Data_Provider_Orders' => $vendorDir . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-orders.php',
467
+ 'WPDesk_Tracker_Data_Provider_Orders_Country' => $vendorDir . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-orders-country.php',
468
+ 'WPDesk_Tracker_Data_Provider_Orders_Month' => $vendorDir . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-orders-month.php',
469
+ 'WPDesk_Tracker_Data_Provider_Plugins' => $vendorDir . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-plugins.php',
470
+ 'WPDesk_Tracker_Data_Provider_Products' => $vendorDir . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-products.php',
471
+ 'WPDesk_Tracker_Data_Provider_Products_Variations' => $vendorDir . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-products-variations.php',
472
+ 'WPDesk_Tracker_Data_Provider_Server' => $vendorDir . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-server.php',
473
+ 'WPDesk_Tracker_Data_Provider_Settings' => $vendorDir . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-settings.php',
474
+ 'WPDesk_Tracker_Data_Provider_Shipping_Classes' => $vendorDir . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-shipping-classes.php',
475
+ 'WPDesk_Tracker_Data_Provider_Shipping_Methods' => $vendorDir . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-shipping-methods.php',
476
+ 'WPDesk_Tracker_Data_Provider_Shipping_Methods_Zones' => $vendorDir . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-shipping-methods-zones.php',
477
+ 'WPDesk_Tracker_Data_Provider_Templates' => $vendorDir . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-templates.php',
478
+ 'WPDesk_Tracker_Data_Provider_Theme' => $vendorDir . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-theme.php',
479
+ 'WPDesk_Tracker_Data_Provider_User_Agent' => $vendorDir . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-user-agent.php',
480
+ 'WPDesk_Tracker_Data_Provider_Users' => $vendorDir . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-users.php',
481
+ 'WPDesk_Tracker_Data_Provider_Wordpress' => $vendorDir . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-wordpress.php',
482
+ 'WPDesk_Tracker_Factory' => $vendorDir . '/wpdesk/wp-wpdesk-tracker/src/class-wpdesk-tracker-factory.php',
483
+ 'WPDesk_Tracker_Sender' => $vendorDir . '/wpdesk/wp-wpdesk-tracker/src/sender/class-wpdesk-tracker-sender.php',
484
+ 'WPDesk_Tracker_Sender_Exception_WpError' => $vendorDir . '/wpdesk/wp-wpdesk-tracker/src/sender/Exception/class-wpdesk-tracker-sender-exception-wperror.php',
485
+ 'WPDesk_Tracker_Sender_Logged' => $vendorDir . '/wpdesk/wp-wpdesk-tracker/src/sender/class-wpdesk-tracker-sender-logged.php',
486
+ 'WPDesk_Tracker_Sender_Wordpress_To_WPDesk' => $vendorDir . '/wpdesk/wp-wpdesk-tracker/src/sender/class-wpdesk-tracker-sender-wordpress-to-wpdesk.php',
487
  );
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInitbcf9b3a05774537e25f626ce421df9f1
6
  {
7
  private static $loader;
8
 
@@ -19,15 +19,15 @@ class ComposerAutoloaderInitbcf9b3a05774537e25f626ce421df9f1
19
  return self::$loader;
20
  }
21
 
22
- spl_autoload_register(array('ComposerAutoloaderInitbcf9b3a05774537e25f626ce421df9f1', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
- spl_autoload_unregister(array('ComposerAutoloaderInitbcf9b3a05774537e25f626ce421df9f1', 'loadClassLoader'));
25
 
26
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
27
  if ($useStaticLoader) {
28
  require_once __DIR__ . '/autoload_static.php';
29
 
30
- call_user_func(\Composer\Autoload\ComposerStaticInitbcf9b3a05774537e25f626ce421df9f1::getInitializer($loader));
31
  } else {
32
  $map = require __DIR__ . '/autoload_namespaces.php';
33
  foreach ($map as $namespace => $path) {
@@ -48,19 +48,19 @@ class ComposerAutoloaderInitbcf9b3a05774537e25f626ce421df9f1
48
  $loader->register(true);
49
 
50
  if ($useStaticLoader) {
51
- $includeFiles = Composer\Autoload\ComposerStaticInitbcf9b3a05774537e25f626ce421df9f1::$files;
52
  } else {
53
  $includeFiles = require __DIR__ . '/autoload_files.php';
54
  }
55
  foreach ($includeFiles as $fileIdentifier => $file) {
56
- composerRequirebcf9b3a05774537e25f626ce421df9f1($fileIdentifier, $file);
57
  }
58
 
59
  return $loader;
60
  }
61
  }
62
 
63
- function composerRequirebcf9b3a05774537e25f626ce421df9f1($fileIdentifier, $file)
64
  {
65
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
66
  require $file;
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInitf4dee7aa62609d771dab02dd03ffe247
6
  {
7
  private static $loader;
8
 
19
  return self::$loader;
20
  }
21
 
22
+ spl_autoload_register(array('ComposerAutoloaderInitf4dee7aa62609d771dab02dd03ffe247', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
+ spl_autoload_unregister(array('ComposerAutoloaderInitf4dee7aa62609d771dab02dd03ffe247', 'loadClassLoader'));
25
 
26
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
27
  if ($useStaticLoader) {
28
  require_once __DIR__ . '/autoload_static.php';
29
 
30
+ call_user_func(\Composer\Autoload\ComposerStaticInitf4dee7aa62609d771dab02dd03ffe247::getInitializer($loader));
31
  } else {
32
  $map = require __DIR__ . '/autoload_namespaces.php';
33
  foreach ($map as $namespace => $path) {
48
  $loader->register(true);
49
 
50
  if ($useStaticLoader) {
51
+ $includeFiles = Composer\Autoload\ComposerStaticInitf4dee7aa62609d771dab02dd03ffe247::$files;
52
  } else {
53
  $includeFiles = require __DIR__ . '/autoload_files.php';
54
  }
55
  foreach ($includeFiles as $fileIdentifier => $file) {
56
+ composerRequiref4dee7aa62609d771dab02dd03ffe247($fileIdentifier, $file);
57
  }
58
 
59
  return $loader;
60
  }
61
  }
62
 
63
+ function composerRequiref4dee7aa62609d771dab02dd03ffe247($fileIdentifier, $file)
64
  {
65
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
66
  require $file;
vendor/composer/autoload_static.php CHANGED
@@ -4,7 +4,7 @@
4
 
5
  namespace Composer\Autoload;
6
 
7
- class ComposerStaticInitbcf9b3a05774537e25f626ce421df9f1
8
  {
9
  public static $files = array (
10
  '0509b34a4bd7aebefeac629c9dc8a978' => __DIR__ . '/..' . '/wpdesk/wp-notice/src/WPDesk/notice-functions.php',
@@ -244,6 +244,14 @@ class ComposerStaticInitbcf9b3a05774537e25f626ce421df9f1
244
  'WPDesk\\ABTesting\\ABTest\\EqualGroupsRandomABTest' => __DIR__ . '/..' . '/wpdesk/wp-abtesting/src/ABTest/EqualGroupsRandomABTest.php',
245
  'WPDesk\\ABTesting\\ABVariant' => __DIR__ . '/..' . '/wpdesk/wp-abtesting/src/ABVariant.php',
246
  'WPDesk\\ABTesting\\ABVariant\\BasicABVariant' => __DIR__ . '/..' . '/wpdesk/wp-abtesting/src/ABVariant/BasicABVariant.php',
 
 
 
 
 
 
 
 
247
  'WPDesk\\Logger\\BasicLoggerFactory' => __DIR__ . '/..' . '/wpdesk/wp-logs/src/BasicLoggerFactory.php',
248
  'WPDesk\\Logger\\LoggerFacade' => __DIR__ . '/..' . '/wpdesk/wp-logs/src/LoggerFacade.php',
249
  'WPDesk\\Logger\\LoggerFactory' => __DIR__ . '/..' . '/wpdesk/wp-logs/src/LoggerFactory.php',
@@ -271,8 +279,10 @@ class ComposerStaticInitbcf9b3a05774537e25f626ce421df9f1
271
  'WPDesk\\Persistence\\Wordpress\\WordpressTransientContainer' => __DIR__ . '/..' . '/wpdesk/wp-persistence/src/Wordpress/WordpressTransientContainer.php',
272
  'WPDesk\\PluginBuilder\\BuildDirector\\LegacyBuildDirector' => __DIR__ . '/..' . '/wpdesk/wp-builder/src/BuildDirector/LegacyBuildDirector.php',
273
  'WPDesk\\PluginBuilder\\Builder\\AbstractBuilder' => __DIR__ . '/..' . '/wpdesk/wp-builder/src/Builder/AbstractBuilder.php',
 
274
  'WPDesk\\PluginBuilder\\Builder\\InfoBuilder' => __DIR__ . '/..' . '/wpdesk/wp-builder/src/Builder/InfoBuilder.php',
275
  'WPDesk\\PluginBuilder\\Plugin\\AbstractPlugin' => __DIR__ . '/..' . '/wpdesk/wp-builder/src/Plugin/AbstractPlugin.php',
 
276
  'WPDesk\\PluginBuilder\\Plugin\\ActivationTracker' => __DIR__ . '/..' . '/wpdesk/wp-builder/src/Plugin/ActivationTracker.php',
277
  'WPDesk\\PluginBuilder\\Plugin\\Hookable' => __DIR__ . '/..' . '/wpdesk/wp-builder/src/Plugin/Hookable.php',
278
  'WPDesk\\PluginBuilder\\Plugin\\HookableCollection' => __DIR__ . '/..' . '/wpdesk/wp-builder/src/Plugin/HookableCollection.php',
@@ -434,142 +444,140 @@ class ComposerStaticInitbcf9b3a05774537e25f626ce421df9f1
434
  'WPDesk\\View\\Resolver\\NullResolver' => __DIR__ . '/..' . '/wpdesk/wp-view/src/Resolver/NullResolver.php',
435
  'WPDesk\\View\\Resolver\\Resolver' => __DIR__ . '/..' . '/wpdesk/wp-view/src/Resolver/Resolver.php',
436
  'WPDesk\\View\\Resolver\\WPThemeResolver' => __DIR__ . '/..' . '/wpdesk/wp-view/src/Resolver/WPThemeResolver.php',
437
- 'WPDesk_Flexible_Shipping' => __DIR__ . '/../..' . '/classes/shipping-method.php',
438
- 'WPDesk_Flexible_Shipping_AB_Pointer_Message_Test' => __DIR__ . '/../..' . '/classes/abtests/class-ab-pointer-message-test.php',
439
- 'WPDesk_Flexible_Shipping_AB_Tracker_Deactivation_Data' => __DIR__ . '/../..' . '/classes/abtests/class-ab-tracker-deactivation-data.php',
440
- 'WPDesk_Flexible_Shipping_AB_Variant_Old' => __DIR__ . '/../..' . '/classes/abtests/ab-pointer-message-test/class-ab-variant-old.php',
441
- 'WPDesk_Flexible_Shipping_AB_Variant_With_Pointer_Message_Text' => __DIR__ . '/../..' . '/classes/abtests/ab-pointer-message-test/class-ab-variant-with-pointer-message-text.php',
442
- 'WPDesk_Flexible_Shipping_AB_Variant_With_Pointer_Message_Video' => __DIR__ . '/../..' . '/classes/abtests/ab-pointer-message-test/class-ab-variant-with-pointer-message-video.php',
443
- 'WPDesk_Flexible_Shipping_AB_Variant_Without_Pointer_Message' => __DIR__ . '/../..' . '/classes/abtests/ab-pointer-message-test/class-ab-variant-without-pointer-message.php',
444
- 'WPDesk_Flexible_Shipping_Add_Shipping' => __DIR__ . '/../..' . '/classes/class-order-add-shipping.php',
445
- 'WPDesk_Flexible_Shipping_Admin_Notices' => __DIR__ . '/../..' . '/classes/admin-notices.php',
446
- 'WPDesk_Flexible_Shipping_Bulk_Actions' => __DIR__ . '/../..' . '/classes/bulk-actions.php',
447
- 'WPDesk_Flexible_Shipping_Cancel_Shipment_Exception' => __DIR__ . '/../..' . '/classes/shipment/class-cancel-shipment-exception.php',
448
- 'WPDesk_Flexible_Shipping_Checkout_Ajax_Request_Data' => __DIR__ . '/../..' . '/classes/checkout/class-checkout-ajax-request-data.php',
449
- 'WPDesk_Flexible_Shipping_Csv_Importer' => __DIR__ . '/../..' . '/classes/csv/class-csv-importer.php',
450
- 'WPDesk_Flexible_Shipping_Csv_Importer_Exception' => __DIR__ . '/../..' . '/classes/csv/class-csv-importer-exception.php',
451
- 'WPDesk_Flexible_Shipping_Csv_Shipping_Class' => __DIR__ . '/../..' . '/classes/csv/class-csv-shipping-class.php',
452
- 'WPDesk_Flexible_Shipping_Export' => __DIR__ . '/../..' . '/classes/flexible-shipping-export.php',
453
- 'WPDesk_Flexible_Shipping_Get_Label_Exception' => __DIR__ . '/../..' . '/classes/shipment/class-get-label-exception.php',
454
- 'WPDesk_Flexible_Shipping_Label_Not_Available_Exception' => __DIR__ . '/../..' . '/classes/shipment/class-label-not-available-exception.php',
455
- 'WPDesk_Flexible_Shipping_Logger_Factory' => __DIR__ . '/../..' . '/classes/logger/class-logger-factory.php',
456
- 'WPDesk_Flexible_Shipping_Manifest' => __DIR__ . '/../..' . '/classes/manifest/class-manifest.php',
457
- 'WPDesk_Flexible_Shipping_Manifest_FS' => __DIR__ . '/../..' . '/classes/manifest/class-manifest-fs.php',
458
- 'WPDesk_Flexible_Shipping_Manifest_Interface' => __DIR__ . '/../..' . '/classes/manifest/interface-manifest.php',
459
- 'WPDesk_Flexible_Shipping_Menu' => __DIR__ . '/../..' . '/classes/class-menu.php',
460
- 'WPDesk_Flexible_Shipping_Method_Created_Tracker_Deactivation_Data' => __DIR__ . '/../..' . '/classes/class-method-created-tracker-deactivation-data.php',
461
- 'WPDesk_Flexible_Shipping_Money_Formatter' => __DIR__ . '/../..' . '/classes/shipment/class-money-formatter.php',
462
- 'WPDesk_Flexible_Shipping_Multicurrency' => __DIR__ . '/../..' . '/classes/multicurrency.php',
463
- 'WPDesk_Flexible_Shipping_Multilingual' => __DIR__ . '/../..' . '/classes/multilingual.php',
464
- 'WPDesk_Flexible_Shipping_Pointer_Messages' => __DIR__ . '/../..' . '/classes/class-pointer-messages.php',
465
- 'WPDesk_Flexible_Shipping_SaaS_Add_Shipping_Handler' => __DIR__ . '/../..' . '/classes/saas/class-saas-add-shipping-handler.php',
466
- 'WPDesk_Flexible_Shipping_SaaS_Auth_Params' => __DIR__ . '/../..' . '/classes/saas/class-saas-auth-params.php',
467
- 'WPDesk_Flexible_Shipping_SaaS_Auth_Platform_Factory' => __DIR__ . '/../..' . '/classes/saas/class-saas-platform-factory.php',
468
- 'WPDesk_Flexible_Shipping_SaaS_Bad_Credentials_Exception' => __DIR__ . '/../..' . '/classes/saas/class-saas-bad-credentials-exception.php',
469
- 'WPDesk_Flexible_Shipping_SaaS_Cache_Settings' => __DIR__ . '/../..' . '/classes/saas/class-saas-cache-settings.php',
470
- 'WPDesk_Flexible_Shipping_SaaS_Checkout_Field_Collection_Points' => __DIR__ . '/../..' . '/classes/saas/checkout-fields/class-saas-checkout-field-collection-points.php',
471
- 'WPDesk_Flexible_Shipping_SaaS_Collection_Points_Ajax' => __DIR__ . '/../..' . '/classes/saas/collection-points/class-saas-collection-points-ajax.php',
472
- 'WPDesk_Flexible_Shipping_SaaS_Collection_Points_Ajax_Request_Data' => __DIR__ . '/../..' . '/classes/saas/collection-points/class-saas-collection-points-ajax-request-data.php',
473
- 'WPDesk_Flexible_Shipping_SaaS_Collection_Points_Map_Loader' => __DIR__ . '/../..' . '/classes/saas/collection-points/class-saas-collection-points-map.php',
474
- 'WPDesk_Flexible_Shipping_SaaS_Connection' => __DIR__ . '/../..' . '/classes/saas/class-saas-connection.php',
475
- 'WPDesk_Flexible_Shipping_SaaS_Connection_Status_Ajax' => __DIR__ . '/../..' . '/classes/saas/class-saas-connection-status-ajax.php',
476
- 'WPDesk_Flexible_Shipping_SaaS_Connection_Status_Field' => __DIR__ . '/../..' . '/classes/saas/class-saas-connection-status-field.php',
477
- 'WPDesk_Flexible_Shipping_SaaS_Country_State_Field' => __DIR__ . '/../..' . '/classes/saas/class-saas-country-state-field.php',
478
- 'WPDesk_Flexible_Shipping_SaaS_Custom_Services_Settings' => __DIR__ . '/../..' . '/classes/saas/class-saas-custom-services-setting.php',
479
- 'WPDesk_Flexible_Shipping_SaaS_Default_Value_Compute_Handler' => __DIR__ . '/../..' . '/classes/saas/class-saas-default-value-compute-handler.php',
480
- 'WPDesk_Flexible_Shipping_SaaS_Free_Shipping_Metadata_Handler' => __DIR__ . '/../..' . '/classes/saas/class-saas-free-shipping-metadata-handler.php',
481
- 'WPDesk_Flexible_Shipping_SaaS_Live_Rates_Fallback_Metadata_Handler' => __DIR__ . '/../..' . '/classes/saas/class-saas-live-rates-fallback-metadata-handler.php',
482
- 'WPDesk_Flexible_Shipping_SaaS_Live_Rates_Handler' => __DIR__ . '/../..' . '/classes/saas/class-saas-live-rates-handler.php',
483
- 'WPDesk_Flexible_Shipping_SaaS_Logger_Downloader' => __DIR__ . '/../..' . '/classes/logger/class-saas-logger-downloader.php',
484
- 'WPDesk_Flexible_Shipping_SaaS_Logger_Settings' => __DIR__ . '/../..' . '/classes/logger/class-saas-logger-settings.php',
485
- 'WPDesk_Flexible_Shipping_SaaS_Maintenance_Mode_Exception' => __DIR__ . '/../..' . '/classes/saas/class-saas-maintenance-mode-exception.php',
486
- 'WPDesk_Flexible_Shipping_SaaS_Message_Stock_Metadata_Handler' => __DIR__ . '/../..' . '/classes/saas/class-saas-message-stock-metadata-handler.php',
487
- 'WPDesk_Flexible_Shipping_SaaS_New_Courier_Settings_Section' => __DIR__ . '/../..' . '/classes/saas/class-saas-new-courier-settings-section.php',
488
- 'WPDesk_Flexible_Shipping_SaaS_Platform_Links' => __DIR__ . '/../..' . '/classes/saas/class-saas-platform-links.php',
489
- 'WPDesk_Flexible_Shipping_SaaS_Registration_Second_Notice' => __DIR__ . '/../..' . '/classes/saas/class-saas-registration-second-notice.php',
490
- 'WPDesk_Flexible_Shipping_SaaS_Service_Settings_Not_Found' => __DIR__ . '/../..' . '/classes/saas/class-saas-service-settings-not-found-exception.php',
491
- 'WPDesk_Flexible_Shipping_SaaS_Services_Manager' => __DIR__ . '/../..' . '/classes/saas/class-saas-shipping-services-manager.php',
492
- 'WPDesk_Flexible_Shipping_SaaS_Settings' => __DIR__ . '/../..' . '/classes/saas/class-saas-settings.php',
493
- 'WPDesk_Flexible_Shipping_SaaS_Settings_Integration_Checkbox' => __DIR__ . '/../..' . '/classes/saas/class-sass-settings-integration-checkbox.php',
494
- 'WPDesk_Flexible_Shipping_SaaS_Settings_Service_Checkbox' => __DIR__ . '/../..' . '/classes/saas/class-saas-settings-service-checkbox.php',
495
- 'WPDesk_Flexible_Shipping_SaaS_Shipment_Auto_Create' => __DIR__ . '/../..' . '/classes/saas/class-saas-shipment-auto-create.php',
496
- 'WPDesk_Flexible_Shipping_SaaS_Shipment_Order_Auto_Complete' => __DIR__ . '/../..' . '/classes/saas/class-saas-shipment-order-auto-complete.php',
497
- 'WPDesk_Flexible_Shipping_SaaS_Shipment_Settings_Field' => __DIR__ . '/../..' . '/classes/saas/class-saas-shipment-settings-field.php',
498
- 'WPDesk_Flexible_Shipping_SaaS_Shipping_Checkout_Fields_Checkout' => __DIR__ . '/../..' . '/classes/saas/checkout-fields/class-saas-checkout-fields-checkout.php',
499
- 'WPDesk_Flexible_Shipping_SaaS_Shipping_Checkout_Fields_Shipment' => __DIR__ . '/../..' . '/classes/saas/checkout-fields/class-saas-checkout-fields-shipment.php',
500
- 'WPDesk_Flexible_Shipping_SaaS_Shipping_Field_Visible_When' => __DIR__ . '/../..' . '/classes/saas/checkout-fields/class-saas-field-visible-when.php',
501
- 'WPDesk_Flexible_Shipping_SaaS_Shipping_Field_Visible_When_Checkout' => __DIR__ . '/../..' . '/classes/saas/checkout-fields/class-saas-field-visible-when-checkout.php',
502
- 'WPDesk_Flexible_Shipping_SaaS_Shipping_Field_Visible_When_Shipment' => __DIR__ . '/../..' . '/classes/saas/checkout-fields/class-saas-field-visible-when-shipment.php',
503
- 'WPDesk_Flexible_Shipping_SaaS_Shipping_Method_Integration_Settings' => __DIR__ . '/../..' . '/classes/saas/class-saas-shipping-method-integration-settings.php',
504
- 'WPDesk_Flexible_Shipping_SaaS_Shipping_Service' => __DIR__ . '/../..' . '/classes/saas/class-saas-shipping-service.php',
505
- 'WPDesk_Flexible_Shipping_SaaS_Shipping_Service_Collection_Points' => __DIR__ . '/../..' . '/classes/saas/collection-points/class-saas-shipping-service-collection-points.php',
506
- 'WPDesk_Flexible_Shipping_SaaS_Shipping_Service_Settings' => __DIR__ . '/../..' . '/classes/saas/class-saas-shipping-service-settings.php',
507
- 'WPDesk_Flexible_Shipping_SaaS_Shipping_Services' => __DIR__ . '/../..' . '/classes/saas/class-saas-shipping-services.php',
508
- 'WPDesk_Flexible_Shipping_SaaS_Tracker' => __DIR__ . '/../..' . '/classes/saas/tracker/class-saas-tracker.php',
509
- 'WPDesk_Flexible_Shipping_SaaS_User_Registration' => __DIR__ . '/../..' . '/classes/saas/class-saas-user-registration.php',
510
- 'WPDesk_Flexible_Shipping_Saas_Connection_Aware' => __DIR__ . '/../..' . '/classes/saas/interface-saas-connection-aware.php',
511
- 'WPDesk_Flexible_Shipping_Send_Shipment_Exception' => __DIR__ . '/../..' . '/classes/shipment/class-send-shipment-exception.php',
512
- 'WPDesk_Flexible_Shipping_Shipment' => __DIR__ . '/../..' . '/classes/shipment/class-shipment.php',
513
- 'WPDesk_Flexible_Shipping_Shipment_Ajax' => __DIR__ . '/../..' . '/classes/shipment/ajax.php',
514
- 'WPDesk_Flexible_Shipping_Shipment_CPT' => __DIR__ . '/../..' . '/classes/shipment/cpt-shipment.php',
515
- 'WPDesk_Flexible_Shipping_Shipment_Counter' => __DIR__ . '/../..' . '/classes/shipment/class-shipment-counter.php',
516
- 'WPDesk_Flexible_Shipping_Shipment_Interface' => __DIR__ . '/../..' . '/classes/shipment/interface-shipment.php',
517
- 'WPDesk_Flexible_Shipping_Shipment_Plan_Exceeded_Exception' => __DIR__ . '/../..' . '/classes/shipment/class-shipment-plan-exceeded-exception.php',
518
- 'WPDesk_Flexible_Shipping_Shipment_Request_Fields' => __DIR__ . '/../..' . '/classes/shipment/class-shipment-request-fields.php',
519
- 'WPDesk_Flexible_Shipping_Shipment_Saas' => __DIR__ . '/../..' . '/classes/shipment/saas/class-shipment-saas.php',
520
- 'WPDesk_Flexible_Shipping_Shipment_Saas_Ajax' => __DIR__ . '/../..' . '/classes/shipment/saas/class-shipment-saas-ajax.php',
521
- 'WPDesk_Flexible_Shipping_Shipment_Saas_Attachments' => __DIR__ . '/../..' . '/classes/shipment/saas/class-shipment-saas-attachments.php',
522
- 'WPDesk_Flexible_Shipping_Shipment_Saas_Attachments_Ajax' => __DIR__ . '/../..' . '/classes/shipment/saas/class-shipment-saas-attachments-ajax.php',
523
- 'WPDesk_Flexible_Shipping_Shipment_Saas_Attachments_Upload_Dir' => __DIR__ . '/../..' . '/classes/shipment/saas/class-shipment-saas-attachments-upload-dir.php',
524
- 'WPDesk_Flexible_Shipping_Shipment_Saas_Message_Formatter' => __DIR__ . '/../..' . '/classes/shipment/saas/class-shipment-saas-message-formatter.php',
525
- 'WPDesk_Flexible_Shipping_Shipment_Saas_Metabox' => __DIR__ . '/../..' . '/classes/shipment/saas/class-shipment-saas-metabox.php',
526
- 'WPDesk_Flexible_Shipping_Shipment_Saas_Metabox_Attachments' => __DIR__ . '/../..' . '/classes/shipment/saas/class-shipment-saas-metabox-attachments.php',
527
- 'WPDesk_Flexible_Shipping_Shipment_Saas_Send' => __DIR__ . '/../..' . '/classes/shipment/saas/class-shipment-saas-send.php',
528
- 'WPDesk_Flexible_Shipping_Shipping_Manifest_CPT' => __DIR__ . '/../..' . '/classes/manifest/cpt-shipping-manifest.php',
529
- 'WPDesk_Flexible_Shipping_Shipping_Zone_Data_Extractor' => __DIR__ . '/../..' . '/classes/class-shipping-zone-data-extractor.php',
530
- 'WPDesk_Flexible_Shipping_Shorcode_Unit_Dimension' => __DIR__ . '/../..' . '/classes/class-shortcode-unit-dimension.php',
531
- 'WPDesk_Flexible_Shipping_Shorcode_Unit_Weight' => __DIR__ . '/../..' . '/classes/class-shortcode-unit-weight.php',
532
- 'WPDesk_Flexible_Shipping_Tracker' => __DIR__ . '/../..' . '/classes/tracker.php',
533
- 'WPDesk_Flexible_Shipping_UK_States' => __DIR__ . '/../..' . '/classes/class-uk-states.php',
534
- 'WPDesk_Flexible_Shipping_WooCommerce_Context_Logger' => __DIR__ . '/../..' . '/classes/logger/class-woocommerce-context-logger.php',
535
  'WPDesk_Logger' => __DIR__ . '/..' . '/wpdesk/wp-logs/src/deprecated/wpdesk-logger.php',
536
  'WPDesk_Logger_Factory' => __DIR__ . '/..' . '/wpdesk/wp-logs/src/deprecated/wpdesk-logger-factory.php',
537
- 'WPDesk_Tracker' => __DIR__ . '/../..' . '/inc/wpdesk-tracker/class-wpdesk-tracker.php',
538
- 'WPDesk_Tracker_Data_Provider' => __DIR__ . '/../..' . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider.php',
539
- 'WPDesk_Tracker_Data_Provider_Gateways' => __DIR__ . '/../..' . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-gateways.php',
540
- 'WPDesk_Tracker_Data_Provider_Identification' => __DIR__ . '/../..' . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-identification.php',
541
- 'WPDesk_Tracker_Data_Provider_Identification_Gdpr' => __DIR__ . '/../..' . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-identification-gdpr.php',
542
- 'WPDesk_Tracker_Data_Provider_Jetpack' => __DIR__ . '/../..' . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-jetpack.php',
543
- 'WPDesk_Tracker_Data_Provider_License_Emails' => __DIR__ . '/../..' . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-license-emails.php',
544
- 'WPDesk_Tracker_Data_Provider_Orders' => __DIR__ . '/../..' . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-orders.php',
545
- 'WPDesk_Tracker_Data_Provider_Orders_Country' => __DIR__ . '/../..' . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-orders-country.php',
546
- 'WPDesk_Tracker_Data_Provider_Orders_Month' => __DIR__ . '/../..' . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-orders-month.php',
547
- 'WPDesk_Tracker_Data_Provider_Plugins' => __DIR__ . '/../..' . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-plugins.php',
548
- 'WPDesk_Tracker_Data_Provider_Products' => __DIR__ . '/../..' . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-products.php',
549
- 'WPDesk_Tracker_Data_Provider_Products_Variations' => __DIR__ . '/../..' . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-products-variations.php',
550
- 'WPDesk_Tracker_Data_Provider_Server' => __DIR__ . '/../..' . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-server.php',
551
- 'WPDesk_Tracker_Data_Provider_Settings' => __DIR__ . '/../..' . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-settings.php',
552
- 'WPDesk_Tracker_Data_Provider_Shipping_Classes' => __DIR__ . '/../..' . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-shipping-classes.php',
553
- 'WPDesk_Tracker_Data_Provider_Shipping_Methods' => __DIR__ . '/../..' . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-shipping-methods.php',
554
- 'WPDesk_Tracker_Data_Provider_Shipping_Methods_Zones' => __DIR__ . '/../..' . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-shipping-methods-zones.php',
555
- 'WPDesk_Tracker_Data_Provider_Templates' => __DIR__ . '/../..' . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-templates.php',
556
- 'WPDesk_Tracker_Data_Provider_Theme' => __DIR__ . '/../..' . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-theme.php',
557
- 'WPDesk_Tracker_Data_Provider_User_Agent' => __DIR__ . '/../..' . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-user-agent.php',
558
- 'WPDesk_Tracker_Data_Provider_Users' => __DIR__ . '/../..' . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-users.php',
559
- 'WPDesk_Tracker_Data_Provider_Wordpress' => __DIR__ . '/../..' . '/inc/wpdesk-tracker/data_provider/class-wpdesk-tracker-data-provider-wordpress.php',
560
- 'WPDesk_Tracker_Factory' => __DIR__ . '/../..' . '/inc/wpdesk-tracker/class-wpdesk-tracker-factory.php',
561
- 'WPDesk_Tracker_Sender' => __DIR__ . '/../..' . '/inc/wpdesk-tracker/sender/class-wpdesk-tracker-sender.php',
562
- 'WPDesk_Tracker_Sender_Exception_WpError' => __DIR__ . '/../..' . '/inc/wpdesk-tracker/sender/Exception/class-wpdesk-tracker-sender-exception-wperror.php',
563
- 'WPDesk_Tracker_Sender_Logged' => __DIR__ . '/../..' . '/inc/wpdesk-tracker/sender/class-wpdesk-tracker-sender-logged.php',
564
- 'WPDesk_Tracker_Sender_Wordpress_To_WPDesk' => __DIR__ . '/../..' . '/inc/wpdesk-tracker/sender/class-wpdesk-tracker-sender-wordpress-to-wpdesk.php',
565
  );
566
 
567
  public static function getInitializer(ClassLoader $loader)
568
  {
569
  return \Closure::bind(function () use ($loader) {
570
- $loader->prefixLengthsPsr4 = ComposerStaticInitbcf9b3a05774537e25f626ce421df9f1::$prefixLengthsPsr4;
571
- $loader->prefixDirsPsr4 = ComposerStaticInitbcf9b3a05774537e25f626ce421df9f1::$prefixDirsPsr4;
572
- $loader->classMap = ComposerStaticInitbcf9b3a05774537e25f626ce421df9f1::$classMap;
573
 
574
  }, null, ClassLoader::class);
575
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInitf4dee7aa62609d771dab02dd03ffe247
8
  {
9
  public static $files = array (
10
  '0509b34a4bd7aebefeac629c9dc8a978' => __DIR__ . '/..' . '/wpdesk/wp-notice/src/WPDesk/notice-functions.php',
244
  'WPDesk\\ABTesting\\ABTest\\EqualGroupsRandomABTest' => __DIR__ . '/..' . '/wpdesk/wp-abtesting/src/ABTest/EqualGroupsRandomABTest.php',
245
  'WPDesk\\ABTesting\\ABVariant' => __DIR__ . '/..' . '/wpdesk/wp-abtesting/src/ABVariant.php',
246
  'WPDesk\\ABTesting\\ABVariant\\BasicABVariant' => __DIR__ . '/..' . '/wpdesk/wp-abtesting/src/ABVariant/BasicABVariant.php',
247
+ 'WPDesk\\FS\\Rate\\FirstRateNotice' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/first-rate-notice.php',
248
+ 'WPDesk\\FS\\Rate\\Flexible_Shipping_Order_Counter' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/order-counter.php',
249
+ 'WPDesk\\FS\\Rate\\RateNotice' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/abstract-rate.php',
250
+ 'WPDesk\\FS\\Rate\\RateNoticeCreator' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/rate-notices-creator.php',
251
+ 'WPDesk\\FS\\Rate\\RateNoticeInterface' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/interface-rate.php',
252
+ 'WPDesk\\FS\\Rate\\SecondRateNotice' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/second-rate-notice.php',
253
+ 'WPDesk\\FS\\Rate\\ThirdRateNotice' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/third-rate-notice.php',
254
+ 'WPDesk\\FS\\Rate\\WPDesk_Flexible_Shipping_Rate_Notice' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-fs-shipment/src/rate-notice.php',
255
  'WPDesk\\Logger\\BasicLoggerFactory' => __DIR__ . '/..' . '/wpdesk/wp-logs/src/BasicLoggerFactory.php',
256
  'WPDesk\\Logger\\LoggerFacade' => __DIR__ . '/..' . '/wpdesk/wp-logs/src/LoggerFacade.php',
257
  'WPDesk\\Logger\\LoggerFactory' => __DIR__ . '/..' . '/wpdesk/wp-logs/src/LoggerFactory.php',
279
  'WPDesk\\Persistence\\Wordpress\\WordpressTransientContainer' => __DIR__ . '/..' . '/wpdesk/wp-persistence/src/Wordpress/WordpressTransientContainer.php',
280
  'WPDesk\\PluginBuilder\\BuildDirector\\LegacyBuildDirector' => __DIR__ . '/..' . '/wpdesk/wp-builder/src/BuildDirector/LegacyBuildDirector.php',
281
  'WPDesk\\PluginBuilder\\Builder\\AbstractBuilder' => __DIR__ . '/..' . '/wpdesk/wp-builder/src/Builder/AbstractBuilder.php',
282
+ 'WPDesk\\PluginBuilder\\Builder\\InfoActivationBuilder' => __DIR__ . '/..' . '/wpdesk/wp-builder/src/Builder/InfoActivationBuilder.php',
283
  'WPDesk\\PluginBuilder\\Builder\\InfoBuilder' => __DIR__ . '/..' . '/wpdesk/wp-builder/src/Builder/InfoBuilder.php',
284
  'WPDesk\\PluginBuilder\\Plugin\\AbstractPlugin' => __DIR__ . '/..' . '/wpdesk/wp-builder/src/Plugin/AbstractPlugin.php',
285
+ 'WPDesk\\PluginBuilder\\Plugin\\ActivationAware' => __DIR__ . '/..' . '/wpdesk/wp-builder/src/Plugin/ActivationAware.php',
286
  'WPDesk\\PluginBuilder\\Plugin\\ActivationTracker' => __DIR__ . '/..' . '/wpdesk/wp-builder/src/Plugin/ActivationTracker.php',
287
  'WPDesk\\PluginBuilder\\Plugin\\Hookable' => __DIR__ . '/..' . '/wpdesk/wp-builder/src/Plugin/Hookable.php',
288
  'WPDesk\\PluginBuilder\\Plugin\\HookableCollection' => __DIR__ . '/..' . '/wpdesk/wp-builder/src/Plugin/HookableCollection.php',
444
  'WPDesk\\View\\Resolver\\NullResolver' => __DIR__ . '/..' . '/wpdesk/wp-view/src/Resolver/NullResolver.php',
445
  'WPDesk\\View\\Resolver\\Resolver' => __DIR__ . '/..' . '/wpdesk/wp-view/src/Resolver/Resolver.php',
446
  'WPDesk\\View\\Resolver\\WPThemeResolver' => __DIR__ . '/..' . '/wpdesk/wp-view/src/Resolver/WPThemeResolver.php',
447
+ 'WPDesk_Flexible_Shipping' => __DIR__ . '/../..' . '/classes/table-rate/shipping-method.php',
448
+ 'WPDesk_Flexible_Shipping_AB_Pointer_Message_Test' => __DIR__ . '/../..' . '/classes/table-rate/abtests/class-ab-pointer-message-test.php',
449
+ 'WPDesk_Flexible_Shipping_AB_Tracker_Deactivation_Data' => __DIR__ . '/../..' . '/classes/table-rate/abtests/class-ab-tracker-deactivation-data.php',
450
+ 'WPDesk_Flexible_Shipping_AB_Variant_Old' => __DIR__ . '/../..' . '/classes/table-rate/abtests/ab-pointer-message-test/class-ab-variant-old.php',
451
+ 'WPDesk_Flexible_Shipping_AB_Variant_With_Pointer_Message_Text' => __DIR__ . '/../..' . '/classes/table-rate/abtests/ab-pointer-message-test/class-ab-variant-with-pointer-message-text.php',
452
+ 'WPDesk_Flexible_Shipping_AB_Variant_With_Pointer_Message_Video' => __DIR__ . '/../..' . '/classes/table-rate/abtests/ab-pointer-message-test/class-ab-variant-with-pointer-message-video.php',
453
+ 'WPDesk_Flexible_Shipping_AB_Variant_Without_Pointer_Message' => __DIR__ . '/../..' . '/classes/table-rate/abtests/ab-pointer-message-test/class-ab-variant-without-pointer-message.php',
454
+ 'WPDesk_Flexible_Shipping_Add_Shipping' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-fs-shipment/src/class-order-add-shipping.php',
455
+ 'WPDesk_Flexible_Shipping_Admin_Notices' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-fs-shipment/src/admin-notices.php',
456
+ 'WPDesk_Flexible_Shipping_Bulk_Actions' => __DIR__ . '/../..' . '/classes/table-rate/bulk-actions.php',
457
+ 'WPDesk_Flexible_Shipping_Cancel_Shipment_Exception' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-fs-shipment/src/exception/class-cancel-shipment-exception.php',
458
+ 'WPDesk_Flexible_Shipping_Checkout_Ajax_Request_Data' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/checkout/class-checkout-ajax-request-data.php',
459
+ 'WPDesk_Flexible_Shipping_Csv_Importer' => __DIR__ . '/../..' . '/classes/table-rate/csv/class-csv-importer.php',
460
+ 'WPDesk_Flexible_Shipping_Csv_Importer_Exception' => __DIR__ . '/../..' . '/classes/table-rate/csv/class-csv-importer-exception.php',
461
+ 'WPDesk_Flexible_Shipping_Export' => __DIR__ . '/../..' . '/classes/table-rate/csv/flexible-shipping-export.php',
462
+ 'WPDesk_Flexible_Shipping_Get_Label_Exception' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-fs-shipment/src/exception/class-get-label-exception.php',
463
+ 'WPDesk_Flexible_Shipping_Label_Not_Available_Exception' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-fs-shipment/src/exception/class-label-not-available-exception.php',
464
+ 'WPDesk_Flexible_Shipping_Logger_Factory' => __DIR__ . '/../..' . '/classes/table-rate/logger/class-logger-factory.php',
465
+ 'WPDesk_Flexible_Shipping_Manifest' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-fs-shipment/src/manifest/class-manifest.php',
466
+ 'WPDesk_Flexible_Shipping_Manifest_FS' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-fs-shipment/src/manifest/class-manifest-fs.php',
467
+ 'WPDesk_Flexible_Shipping_Manifest_Interface' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-fs-shipment/src/manifest/interface-manifest.php',
468
+ 'WPDesk_Flexible_Shipping_Method_Created_Tracker_Deactivation_Data' => __DIR__ . '/../..' . '/classes/tracker/class-method-created-tracker-deactivation-data.php',
469
+ 'WPDesk_Flexible_Shipping_Money_Formatter' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/class-money-formatter.php',
470
+ 'WPDesk_Flexible_Shipping_Multicurrency' => __DIR__ . '/../..' . '/classes/table-rate/multicurrency.php',
471
+ 'WPDesk_Flexible_Shipping_Multilingual' => __DIR__ . '/../..' . '/classes/table-rate/multilingual.php',
472
+ 'WPDesk_Flexible_Shipping_Pointer_Messages' => __DIR__ . '/../..' . '/classes/table-rate/abtests/class-pointer-messages.php',
473
+ 'WPDesk_Flexible_Shipping_SaaS_Add_Shipping_Handler' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-add-shipping-handler.php',
474
+ 'WPDesk_Flexible_Shipping_SaaS_Auth_Params' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-auth-params.php',
475
+ 'WPDesk_Flexible_Shipping_SaaS_Auth_Platform_Factory' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-platform-factory.php',
476
+ 'WPDesk_Flexible_Shipping_SaaS_Bad_Credentials_Exception' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-bad-credentials-exception.php',
477
+ 'WPDesk_Flexible_Shipping_SaaS_Cache_Settings' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-cache-settings.php',
478
+ 'WPDesk_Flexible_Shipping_SaaS_Checkout_Field_Collection_Points' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/checkout-fields/class-saas-checkout-field-collection-points.php',
479
+ 'WPDesk_Flexible_Shipping_SaaS_Collection_Points_Ajax' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/collection-points/class-saas-collection-points-ajax.php',
480
+ 'WPDesk_Flexible_Shipping_SaaS_Collection_Points_Ajax_Request_Data' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/collection-points/class-saas-collection-points-ajax-request-data.php',
481
+ 'WPDesk_Flexible_Shipping_SaaS_Collection_Points_Map_Loader' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/collection-points/class-saas-collection-points-map.php',
482
+ 'WPDesk_Flexible_Shipping_SaaS_Connection' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-connection.php',
483
+ 'WPDesk_Flexible_Shipping_SaaS_Connection_Status_Ajax' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-connection-status-ajax.php',
484
+ 'WPDesk_Flexible_Shipping_SaaS_Connection_Status_Field' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-connection-status-field.php',
485
+ 'WPDesk_Flexible_Shipping_SaaS_Country_State_Field' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-country-state-field.php',
486
+ 'WPDesk_Flexible_Shipping_SaaS_Custom_Services_Settings' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-custom-services-setting.php',
487
+ 'WPDesk_Flexible_Shipping_SaaS_Default_Value_Compute_Handler' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-default-value-compute-handler.php',
488
+ 'WPDesk_Flexible_Shipping_SaaS_Free_Shipping_Metadata_Handler' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-free-shipping-metadata-handler.php',
489
+ 'WPDesk_Flexible_Shipping_SaaS_Live_Rates_Fallback_Metadata_Handler' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-live-rates-fallback-metadata-handler.php',
490
+ 'WPDesk_Flexible_Shipping_SaaS_Live_Rates_Handler' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-live-rates-handler.php',
491
+ 'WPDesk_Flexible_Shipping_SaaS_Logger_Downloader' => __DIR__ . '/../..' . '/classes/table-rate/logger/class-saas-logger-downloader.php',
492
+ 'WPDesk_Flexible_Shipping_SaaS_Logger_Settings' => __DIR__ . '/../..' . '/classes/table-rate/logger/class-saas-logger-settings.php',
493
+ 'WPDesk_Flexible_Shipping_SaaS_Maintenance_Mode_Exception' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-maintenance-mode-exception.php',
494
+ 'WPDesk_Flexible_Shipping_SaaS_Message_Stock_Metadata_Handler' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-message-stock-metadata-handler.php',
495
+ 'WPDesk_Flexible_Shipping_SaaS_New_Courier_Settings_Section' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-new-courier-settings-section.php',
496
+ 'WPDesk_Flexible_Shipping_SaaS_Platform_Links' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-platform-links.php',
497
+ 'WPDesk_Flexible_Shipping_SaaS_Registration_Second_Notice' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-registration-second-notice.php',
498
+ 'WPDesk_Flexible_Shipping_SaaS_Service_Settings_Not_Found' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-service-settings-not-found-exception.php',
499
+ 'WPDesk_Flexible_Shipping_SaaS_Services_Manager' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipping-services-manager.php',
500
+ 'WPDesk_Flexible_Shipping_SaaS_Settings' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-settings.php',
501
+ 'WPDesk_Flexible_Shipping_SaaS_Settings_Integration_Checkbox' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/class-sass-settings-integration-checkbox.php',
502
+ 'WPDesk_Flexible_Shipping_SaaS_Settings_Service_Checkbox' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-settings-service-checkbox.php',
503
+ 'WPDesk_Flexible_Shipping_SaaS_Shipment_Auto_Create' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipment-auto-create.php',
504
+ 'WPDesk_Flexible_Shipping_SaaS_Shipment_Order_Auto_Complete' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipment-order-auto-complete.php',
505
+ 'WPDesk_Flexible_Shipping_SaaS_Shipment_Settings_Field' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipment-settings-field.php',
506
+ 'WPDesk_Flexible_Shipping_SaaS_Shipping_Checkout_Fields_Checkout' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/checkout-fields/class-saas-checkout-fields-checkout.php',
507
+ 'WPDesk_Flexible_Shipping_SaaS_Shipping_Checkout_Fields_Shipment' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/checkout-fields/class-saas-checkout-fields-shipment.php',
508
+ 'WPDesk_Flexible_Shipping_SaaS_Shipping_Field_Visible_When' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/checkout-fields/class-saas-field-visible-when.php',
509
+ 'WPDesk_Flexible_Shipping_SaaS_Shipping_Field_Visible_When_Checkout' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/checkout-fields/class-saas-field-visible-when-checkout.php',
510
+ 'WPDesk_Flexible_Shipping_SaaS_Shipping_Field_Visible_When_Shipment' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/checkout-fields/class-saas-field-visible-when-shipment.php',
511
+ 'WPDesk_Flexible_Shipping_SaaS_Shipping_Method_Integration_Settings' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipping-method-integration-settings.php',
512
+ 'WPDesk_Flexible_Shipping_SaaS_Shipping_Service' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipping-service.php',
513
+ 'WPDesk_Flexible_Shipping_SaaS_Shipping_Service_Collection_Points' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/collection-points/class-saas-shipping-service-collection-points.php',
514
+ 'WPDesk_Flexible_Shipping_SaaS_Shipping_Service_Settings' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipping-service-settings.php',
515
+ 'WPDesk_Flexible_Shipping_SaaS_Shipping_Services' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-shipping-services.php',
516
+ 'WPDesk_Flexible_Shipping_SaaS_Tracker' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/tracker/class-saas-tracker.php',
517
+ 'WPDesk_Flexible_Shipping_SaaS_User_Registration' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/class-saas-user-registration.php',
518
+ 'WPDesk_Flexible_Shipping_Saas_Connection_Aware' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/interface-saas-connection-aware.php',
519
+ 'WPDesk_Flexible_Shipping_Send_Shipment_Exception' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-fs-shipment/src/exception/class-send-shipment-exception.php',
520
+ 'WPDesk_Flexible_Shipping_Shipment' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-fs-shipment/src/shipment/class-shipment.php',
521
+ 'WPDesk_Flexible_Shipping_Shipment_Ajax' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-fs-shipment/src/metabox/ajax.php',
522
+ 'WPDesk_Flexible_Shipping_Shipment_CPT' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-fs-shipment/src/shipment/cpt-shipment.php',
523
+ 'WPDesk_Flexible_Shipping_Shipment_Counter' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/tracker/class-shipment-counter.php',
524
+ 'WPDesk_Flexible_Shipping_Shipment_Interface' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-fs-shipment/src/shipment/interface-shipment.php',
525
+ 'WPDesk_Flexible_Shipping_Shipment_Plan_Exceeded_Exception' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-fs-shipment/src/exception/class-shipment-plan-exceeded-exception.php',
526
+ 'WPDesk_Flexible_Shipping_Shipment_Request_Fields' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-request-fields.php',
527
+ 'WPDesk_Flexible_Shipping_Shipment_Saas' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas.php',
528
+ 'WPDesk_Flexible_Shipping_Shipment_Saas_Ajax' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-ajax.php',
529
+ 'WPDesk_Flexible_Shipping_Shipment_Saas_Attachments' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-attachments.php',
530
+ 'WPDesk_Flexible_Shipping_Shipment_Saas_Attachments_Ajax' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-attachments-ajax.php',
531
+ 'WPDesk_Flexible_Shipping_Shipment_Saas_Attachments_Upload_Dir' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-attachments-upload-dir.php',
532
+ 'WPDesk_Flexible_Shipping_Shipment_Saas_Message_Formatter' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-message-formatter.php',
533
+ 'WPDesk_Flexible_Shipping_Shipment_Saas_Metabox' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-metabox.php',
534
+ 'WPDesk_Flexible_Shipping_Shipment_Saas_Metabox_Attachments' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-metabox-attachments.php',
535
+ 'WPDesk_Flexible_Shipping_Shipment_Saas_Send' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas/class-shipment-saas-send.php',
536
+ 'WPDesk_Flexible_Shipping_Shipping_Manifest_CPT' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-fs-shipment/src/manifest/cpt-shipping-manifest.php',
537
+ 'WPDesk_Flexible_Shipping_Shipping_Zone_Data_Extractor' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas/class-shipping-zone-data-extractor.php',
538
+ 'WPDesk_Flexible_Shipping_Shorcode_Unit_Dimension' => __DIR__ . '/../..' . '/classes/table-rate/class-shortcode-unit-dimension.php',
539
+ 'WPDesk_Flexible_Shipping_Shorcode_Unit_Weight' => __DIR__ . '/../..' . '/classes/table-rate/class-shortcode-unit-weight.php',
540
+ 'WPDesk_Flexible_Shipping_Tracker' => __DIR__ . '/../..' . '/classes/tracker/tracker.php',
541
+ 'WPDesk_Flexible_Shipping_UK_States' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/class-uk-states.php',
542
+ 'WPDesk_Flexible_Shipping_WooCommerce_Context_Logger' => __DIR__ . '/../..' . '/classes/table-rate/logger/class-woocommerce-context-logger.php',
 
 
543
  'WPDesk_Logger' => __DIR__ . '/..' . '/wpdesk/wp-logs/src/deprecated/wpdesk-logger.php',
544
  'WPDesk_Logger_Factory' => __DIR__ . '/..' . '/wpdesk/wp-logs/src/deprecated/wpdesk-logger-factory.php',
545
+ 'WPDesk_Tracker' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-tracker/src/class-wpdesk-tracker.php',
546
+ 'WPDesk_Tracker_Data_Provider' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider.php',
547
+ 'WPDesk_Tracker_Data_Provider_Gateways' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-gateways.php',
548
+ 'WPDesk_Tracker_Data_Provider_Identification' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-identification.php',
549
+ 'WPDesk_Tracker_Data_Provider_Identification_Gdpr' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-identification-gdpr.php',
550
+ 'WPDesk_Tracker_Data_Provider_Jetpack' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-jetpack.php',
551
+ 'WPDesk_Tracker_Data_Provider_License_Emails' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-license-emails.php',
552
+ 'WPDesk_Tracker_Data_Provider_Orders' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-orders.php',
553
+ 'WPDesk_Tracker_Data_Provider_Orders_Country' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-orders-country.php',
554
+ 'WPDesk_Tracker_Data_Provider_Orders_Month' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-orders-month.php',
555
+ 'WPDesk_Tracker_Data_Provider_Plugins' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-plugins.php',
556
+ 'WPDesk_Tracker_Data_Provider_Products' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-products.php',
557
+ 'WPDesk_Tracker_Data_Provider_Products_Variations' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-products-variations.php',
558
+ 'WPDesk_Tracker_Data_Provider_Server' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-server.php',
559
+ 'WPDesk_Tracker_Data_Provider_Settings' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-settings.php',
560
+ 'WPDesk_Tracker_Data_Provider_Shipping_Classes' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-shipping-classes.php',
561
+ 'WPDesk_Tracker_Data_Provider_Shipping_Methods' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-shipping-methods.php',
562
+ 'WPDesk_Tracker_Data_Provider_Shipping_Methods_Zones' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-shipping-methods-zones.php',
563
+ 'WPDesk_Tracker_Data_Provider_Templates' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-templates.php',
564
+ 'WPDesk_Tracker_Data_Provider_Theme' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-theme.php',
565
+ 'WPDesk_Tracker_Data_Provider_User_Agent' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-user-agent.php',
566
+ 'WPDesk_Tracker_Data_Provider_Users' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-users.php',
567
+ 'WPDesk_Tracker_Data_Provider_Wordpress' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-tracker/src/data_provider/class-wpdesk-tracker-data-provider-wordpress.php',
568
+ 'WPDesk_Tracker_Factory' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-tracker/src/class-wpdesk-tracker-factory.php',
569
+ 'WPDesk_Tracker_Sender' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-tracker/src/sender/class-wpdesk-tracker-sender.php',
570
+ 'WPDesk_Tracker_Sender_Exception_WpError' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-tracker/src/sender/Exception/class-wpdesk-tracker-sender-exception-wperror.php',
571
+ 'WPDesk_Tracker_Sender_Logged' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-tracker/src/sender/class-wpdesk-tracker-sender-logged.php',
572
+ 'WPDesk_Tracker_Sender_Wordpress_To_WPDesk' => __DIR__ . '/..' . '/wpdesk/wp-wpdesk-tracker/src/sender/class-wpdesk-tracker-sender-wordpress-to-wpdesk.php',
573
  );
574
 
575
  public static function getInitializer(ClassLoader $loader)
576
  {
577
  return \Closure::bind(function () use ($loader) {
578
+ $loader->prefixLengthsPsr4 = ComposerStaticInitf4dee7aa62609d771dab02dd03ffe247::$prefixLengthsPsr4;
579
+ $loader->prefixDirsPsr4 = ComposerStaticInitf4dee7aa62609d771dab02dd03ffe247::$prefixDirsPsr4;
580
+ $loader->classMap = ComposerStaticInitf4dee7aa62609d771dab02dd03ffe247::$classMap;
581
 
582
  }, null, ClassLoader::class);
583
  }
vendor/composer/installed.json CHANGED
@@ -344,17 +344,17 @@
344
  },
345
  {
346
  "name": "wpdesk/wp-basic-requirements",
347
- "version": "2.3.1",
348
- "version_normalized": "2.3.1.0",
349
  "source": {
350
  "type": "git",
351
  "url": "https://gitlab.com/wpdesk/wp-basic-requirements.git",
352
- "reference": "97216ee83f871426669ac57b40cc666fdf61d7cc"
353
  },
354
  "dist": {
355
  "type": "zip",
356
- "url": "https://gitlab.com/api/v4/projects/wpdesk%2Fwp-basic-requirements/repository/archive.zip?sha=97216ee83f871426669ac57b40cc666fdf61d7cc",
357
- "reference": "97216ee83f871426669ac57b40cc666fdf61d7cc",
358
  "shasum": ""
359
  },
360
  "require": {
@@ -369,7 +369,7 @@
369
  "wimg/php-compatibility": "^8",
370
  "wp-coding-standards/wpcs": "^0.14.1"
371
  },
372
- "time": "2019-03-25T13:11:11+00:00",
373
  "type": "library",
374
  "installation-source": "dist",
375
  "notification-url": "https://packagist.org/downloads/",
@@ -382,17 +382,17 @@
382
  },
383
  {
384
  "name": "wpdesk/wp-builder",
385
- "version": "1.1",
386
- "version_normalized": "1.1.0.0",
387
  "source": {
388
  "type": "git",
389
  "url": "https://gitlab.com/wpdesk/wp-builder.git",
390
- "reference": "7e54daed6f86260705fa65d2668ae65f9e66114f"
391
  },
392
  "dist": {
393
  "type": "zip",
394
- "url": "https://gitlab.com/api/v4/projects/wpdesk%2Fwp-builder/repository/archive.zip?sha=7e54daed6f86260705fa65d2668ae65f9e66114f",
395
- "reference": "7e54daed6f86260705fa65d2668ae65f9e66114f",
396
  "shasum": ""
397
  },
398
  "require": {
@@ -407,7 +407,7 @@
407
  "wimg/php-compatibility": "^8",
408
  "wp-coding-standards/wpcs": "^0.14.1"
409
  },
410
- "time": "2018-10-18T13:11:44+00:00",
411
  "type": "library",
412
  "installation-source": "dist",
413
  "autoload": {
@@ -530,17 +530,17 @@
530
  },
531
  {
532
  "name": "wpdesk/wp-notice",
533
- "version": "3.0",
534
- "version_normalized": "3.0.0.0",
535
  "source": {
536
  "type": "git",
537
  "url": "https://gitlab.com/wpdesk/wp-notice.git",
538
- "reference": "49b651f53fa0a64295bdeaa2e427e8add7114a62"
539
  },
540
  "dist": {
541
  "type": "zip",
542
- "url": "https://gitlab.com/api/v4/projects/wpdesk%2Fwp-notice/repository/archive.zip?sha=49b651f53fa0a64295bdeaa2e427e8add7114a62",
543
- "reference": "49b651f53fa0a64295bdeaa2e427e8add7114a62",
544
  "shasum": ""
545
  },
546
  "require": {
@@ -555,7 +555,7 @@
555
  "wimg/php-compatibility": "^8",
556
  "wp-coding-standards/wpcs": "^0.14.1"
557
  },
558
- "time": "2019-02-21T11:12:53+00:00",
559
  "type": "library",
560
  "installation-source": "dist",
561
  "autoload": {
@@ -764,5 +764,133 @@
764
  "email": "krzysiek@wpdesk.pl"
765
  }
766
  ]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
767
  }
768
  ]
344
  },
345
  {
346
  "name": "wpdesk/wp-basic-requirements",
347
+ "version": "2.4.0",
348
+ "version_normalized": "2.4.0.0",
349
  "source": {
350
  "type": "git",
351
  "url": "https://gitlab.com/wpdesk/wp-basic-requirements.git",
352
+ "reference": "b006b922d8a646ede04a0ef0426783095822797a"
353
  },
354
  "dist": {
355
  "type": "zip",
356
+ "url": "https://gitlab.com/api/v4/projects/wpdesk%2Fwp-basic-requirements/repository/archive.zip?sha=b006b922d8a646ede04a0ef0426783095822797a",
357
+ "reference": "b006b922d8a646ede04a0ef0426783095822797a",
358
  "shasum": ""
359
  },
360
  "require": {
369
  "wimg/php-compatibility": "^8",
370
  "wp-coding-standards/wpcs": "^0.14.1"
371
  },
372
+ "time": "2019-06-05T07:55:53+00:00",
373
  "type": "library",
374
  "installation-source": "dist",
375
  "notification-url": "https://packagist.org/downloads/",
382
  },
383
  {
384
  "name": "wpdesk/wp-builder",
385
+ "version": "1.2.0",
386
+ "version_normalized": "1.2.0.0",
387
  "source": {
388
  "type": "git",
389
  "url": "https://gitlab.com/wpdesk/wp-builder.git",
390
+ "reference": "3d11d9e2b2bf5d8c9f6ae9e1626f1077800f9ccd"
391
  },
392
  "dist": {
393
  "type": "zip",
394
+ "url": "https://gitlab.com/api/v4/projects/wpdesk%2Fwp-builder/repository/archive.zip?sha=3d11d9e2b2bf5d8c9f6ae9e1626f1077800f9ccd",
395
+ "reference": "3d11d9e2b2bf5d8c9f6ae9e1626f1077800f9ccd",
396
  "shasum": ""
397
  },
398
  "require": {
407
  "wimg/php-compatibility": "^8",
408
  "wp-coding-standards/wpcs": "^0.14.1"
409
  },
410
+ "time": "2019-06-27T07:47:17+00:00",
411
  "type": "library",
412
  "installation-source": "dist",
413
  "autoload": {
530
  },
531
  {
532
  "name": "wpdesk/wp-notice",
533
+ "version": "3.1",
534
+ "version_normalized": "3.1.0.0",
535
  "source": {
536
  "type": "git",
537
  "url": "https://gitlab.com/wpdesk/wp-notice.git",
538
+ "reference": "9424a1280525a78a6468036dc6bdafc3183245ec"
539
  },
540
  "dist": {
541
  "type": "zip",
542
+ "url": "https://gitlab.com/api/v4/projects/wpdesk%2Fwp-notice/repository/archive.zip?sha=9424a1280525a78a6468036dc6bdafc3183245ec",
543
+ "reference": "9424a1280525a78a6468036dc6bdafc3183245ec",
544
  "shasum": ""
545
  },
546
  "require": {
555
  "wimg/php-compatibility": "^8",
556
  "wp-coding-standards/wpcs": "^0.14.1"
557
  },
558
+ "time": "2019-06-25T12:08:40+00:00",
559
  "type": "library",
560
  "installation-source": "dist",
561
  "autoload": {
764
  "email": "krzysiek@wpdesk.pl"
765
  }
766
  ]
767
+ },
768
+ {
769
+ "name": "wpdesk/wp-wpdesk-connect",
770
+ "version": "1.1.0",
771
+ "version_normalized": "1.1.0.0",
772
+ "source": {
773
+ "type": "git",
774
+ "url": "https://gitlab.com/wpdesk/wp-wpdesk-connect.git",
775
+ "reference": "f3d64b41570fc17f71cfa234835456a0d430bc6c"
776
+ },
777
+ "dist": {
778
+ "type": "zip",
779
+ "url": "https://gitlab.com/api/v4/projects/wpdesk%2Fwp-wpdesk-connect/repository/archive.zip?sha=f3d64b41570fc17f71cfa234835456a0d430bc6c",
780
+ "reference": "f3d64b41570fc17f71cfa234835456a0d430bc6c",
781
+ "shasum": ""
782
+ },
783
+ "require": {
784
+ "php": ">=5.6",
785
+ "psr/log": "^1.1",
786
+ "wpdesk/wp-builder": "^1.1",
787
+ "wpdesk/wp-view": "^1.0",
788
+ "wpdesk/wp-wpdesk-fs-shipment": "^1.0"
789
+ },
790
+ "require-dev": {
791
+ "10up/wp_mock": "^0.3",
792
+ "mockery/mockery": "^1.2",
793
+ "phpunit/phpunit": "<7",
794
+ "squizlabs/php_codesniffer": "^3.4.2",
795
+ "wp-coding-standards/wpcs": "^0.14.1"
796
+ },
797
+ "time": "2019-06-18T09:41:59+00:00",
798
+ "type": "library",
799
+ "installation-source": "dist",
800
+ "autoload": {
801
+ "classmap": [
802
+ "src"
803
+ ]
804
+ },
805
+ "notification-url": "https://packagist.org/downloads/",
806
+ "authors": [
807
+ {
808
+ "name": "Krzysiek",
809
+ "email": "krzysiek@wpdesk.pl"
810
+ }
811
+ ]
812
+ },
813
+ {
814
+ "name": "wpdesk/wp-wpdesk-fs-shipment",
815
+ "version": "1.0.3",
816
+ "version_normalized": "1.0.3.0",
817
+ "source": {
818
+ "type": "git",
819
+ "url": "https://gitlab.com/wpdesk/wp-wpdesk-fs-shipment.git",
820
+ "reference": "1d011bdcac0821c6e86d99ab123ee34e81382d35"
821
+ },
822
+ "dist": {
823
+ "type": "zip",
824
+ "url": "https://gitlab.com/api/v4/projects/wpdesk%2Fwp-wpdesk-fs-shipment/repository/archive.zip?sha=1d011bdcac0821c6e86d99ab123ee34e81382d35",
825
+ "reference": "1d011bdcac0821c6e86d99ab123ee34e81382d35",
826
+ "shasum": ""
827
+ },
828
+ "require": {
829
+ "php": ">=5.6"
830
+ },
831
+ "require-dev": {
832
+ "10up/wp_mock": "^0.3",
833
+ "mockery/mockery": "^1.2",
834
+ "phpunit/phpunit": "<7",
835
+ "squizlabs/php_codesniffer": "^3.4.2",
836
+ "wp-coding-standards/wpcs": "^0.14.1"
837
+ },
838
+ "time": "2019-07-08T08:28:27+00:00",
839
+ "type": "library",
840
+ "installation-source": "dist",
841
+ "autoload": {
842
+ "classmap": [
843
+ "src"
844
+ ]
845
+ },
846
+ "notification-url": "https://packagist.org/downloads/",
847
+ "authors": [
848
+ {
849
+ "name": "Krzysiek",
850
+ "email": "krzysiek@wpdesk.pl"
851
+ }
852
+ ]
853
+ },
854
+ {
855
+ "name": "wpdesk/wp-wpdesk-tracker",
856
+ "version": "1.0.3",
857
+ "version_normalized": "1.0.3.0",
858
+ "source": {
859
+ "type": "git",
860
+ "url": "https://gitlab.com/wpdesk/wp-wpdesk-tracker.git",
861
+ "reference": "04e8933a047245b37fc77991e330361613e8dd63"
862
+ },
863
+ "dist": {
864
+ "type": "zip",
865
+ "url": "https://gitlab.com/api/v4/projects/wpdesk%2Fwp-wpdesk-tracker/repository/archive.zip?sha=04e8933a047245b37fc77991e330361613e8dd63",
866
+ "reference": "04e8933a047245b37fc77991e330361613e8dd63",
867
+ "shasum": ""
868
+ },
869
+ "require": {
870
+ "php": ">=5.5"
871
+ },
872
+ "require-dev": {
873
+ "10up/wp_mock": "*",
874
+ "mockery/mockery": "*",
875
+ "phpunit/phpunit": "<7",
876
+ "squizlabs/php_codesniffer": "^3.0.2",
877
+ "wimg/php-compatibility": "^8",
878
+ "wp-coding-standards/wpcs": "^0.14.1"
879
+ },
880
+ "time": "2019-04-23T13:16:55+00:00",
881
+ "type": "library",
882
+ "installation-source": "dist",
883
+ "autoload": {
884
+ "classmap": [
885
+ "src/"
886
+ ]
887
+ },
888
+ "notification-url": "https://packagist.org/downloads/",
889
+ "authors": [
890
+ {
891
+ "name": "Krzysiek",
892
+ "email": "krzysiek@wpdesk.pl"
893
+ }
894
+ ]
895
  }
896
  ]
vendor/wpdesk/wp-basic-requirements/CHANGELOG.md CHANGED
@@ -1,4 +1,8 @@
1
- ## [2.3.0] - 2019-03-25
 
 
 
 
2
  ### Fixed
3
  - Backward compatibility
4
 
1
+ ## [2.4.0] - 2019-06-04
2
+ ### Added
3
+ - Plugin name in plugin info
4
+
5
+ ## [2.3.1] - 2019-03-25
6
  ### Fixed
7
  - Backward compatibility
8
 
vendor/wpdesk/wp-basic-requirements/src/Plugin/Plugin_Info.php CHANGED
@@ -34,6 +34,9 @@ class WPDesk_Plugin_Info implements WPDesk_Translatable, WPDesk_Buildable, WPDes
34
  /** @var string */
35
  private $product_id;
36
 
 
 
 
37
  /** @var \DateTimeInterface */
38
  private $release_date;
39
 
@@ -110,6 +113,20 @@ class WPDesk_Plugin_Info implements WPDesk_Translatable, WPDesk_Buildable, WPDes
110
  $this->product_id = $product_id;
111
  }
112
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
113
  /**
114
  * @return DateTimeInterface
115
  */
@@ -148,7 +165,7 @@ class WPDesk_Plugin_Info implements WPDesk_Translatable, WPDesk_Buildable, WPDes
148
  /**
149
  * @param $value
150
  */
151
- public function set_text_domain($value) {
152
  $this->text_domain = $value;
153
  }
154
  }
34
  /** @var string */
35
  private $product_id;
36
 
37
+ /** @var string */
38
+ private $plugin_name;
39
+
40
  /** @var \DateTimeInterface */
41
  private $release_date;
42
 
113
  $this->product_id = $product_id;
114
  }
115
 
116
+ /**
117
+ * @return string
118
+ */
119
+ public function get_plugin_name() {
120
+ return $this->plugin_name;
121
+ }
122
+
123
+ /**
124
+ * @param string $plugin_name
125
+ */
126
+ public function set_plugin_name( $plugin_name ) {
127
+ $this->plugin_name = $plugin_name;
128
+ }
129
+
130
  /**
131
  * @return DateTimeInterface
132
  */
165
  /**
166
  * @param $value
167
  */
168
+ public function set_text_domain( $value ) {
169
  $this->text_domain = $value;
170
  }
171
  }
vendor/wpdesk/wp-builder/CHANGELOG.md ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ ## [1.2.0] - 2019-06-26
2
+ ### Added
3
+ - InfoActivationBuilder with capability to set info if plugin subscription is active
vendor/wpdesk/wp-builder/src/Builder/InfoActivationBuilder.php ADDED
@@ -0,0 +1,82 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WPDesk\PluginBuilder\Builder;
4
+
5
+ use WPDesk\PluginBuilder\Plugin\AbstractPlugin;
6
+ use WPDesk\PluginBuilder\Plugin\ActivationAware;
7
+ use WPDesk\PluginBuilder\Storage\PluginStorage;
8
+
9
+ /**
10
+ * Builder that have info about activations
11
+ *
12
+ * Warning: We can't extend InfoBuilder.php as some old plugins(without wp-flow) will load the old version od InfoBuilder class that have private plugin property.
13
+ *
14
+ * @package WPDesk\PluginBuilder\Builder
15
+ */
16
+ class InfoActivationBuilder extends AbstractBuilder
17
+ {
18
+ const FILTER_PLUGIN_CLASS = 'wp_builder_plugin_class';
19
+ const HOOK_BEFORE_PLUGIN_INIT = 'wp_builder_before_plugin_init';
20
+ const HOOK_AFTER_PLUGIN_INIT = 'wp_builder_before_init';
21
+
22
+ /** @var AbstractPlugin */
23
+ private $plugin;
24
+
25
+ /** @var \WPDesk_Buildable */
26
+ private $info;
27
+
28
+ /** @var string */
29
+ protected $storage_id;
30
+
31
+ /**
32
+ * @var bool
33
+ */
34
+ private $is_active;
35
+
36
+ /**
37
+ * @param \WPDesk_Buildable $info
38
+ * @param bool $is_active
39
+ */
40
+ public function __construct(\WPDesk_Buildable $info, $is_active)
41
+ {
42
+ $this->info = $info;
43
+ $this->storage_id = $info->get_class_name();
44
+ $this->is_active = $is_active;
45
+ }
46
+
47
+ /**
48
+ * Builds instance of plugin
49
+ */
50
+ public function build_plugin()
51
+ {
52
+ $class_name = apply_filters(self::FILTER_PLUGIN_CLASS, $this->info->get_class_name());
53
+
54
+ /** @var AbstractPlugin $plugin */
55
+ $this->plugin = new $class_name($this->info);
56
+ if ($this->plugin instanceof ActivationAware && $this->is_active) {
57
+ $this->plugin->set_active();
58
+ }
59
+
60
+ return $this->plugin;
61
+ }
62
+
63
+ public function store_plugin(PluginStorage $storage)
64
+ {
65
+ $storage->add_to_storage($this->storage_id, $this->plugin);
66
+ }
67
+
68
+ public function init_plugin()
69
+ {
70
+ do_action(self::HOOK_BEFORE_PLUGIN_INIT, $this->plugin);
71
+ $this->plugin->init();
72
+ do_action(self::HOOK_AFTER_PLUGIN_INIT, $this->plugin);
73
+ }
74
+
75
+ /**
76
+ * @return AbstractPlugin
77
+ */
78
+ public function get_plugin()
79
+ {
80
+ return $this->plugin;
81
+ }
82
+ }
vendor/wpdesk/wp-builder/src/Builder/InfoBuilder.php CHANGED
@@ -5,6 +5,11 @@ namespace WPDesk\PluginBuilder\Builder;
5
  use WPDesk\PluginBuilder\Plugin\AbstractPlugin;
6
  use WPDesk\PluginBuilder\Storage\PluginStorage;
7
 
 
 
 
 
 
8
  class InfoBuilder extends AbstractBuilder {
9
  const FILTER_PLUGIN_CLASS = 'wp_builder_plugin_class';
10
  const HOOK_BEFORE_PLUGIN_INIT = 'wp_builder_before_plugin_init';
5
  use WPDesk\PluginBuilder\Plugin\AbstractPlugin;
6
  use WPDesk\PluginBuilder\Storage\PluginStorage;
7
 
8
+ /**
9
+ * @deprecated Should not be used as some old plugins are using it and we can't touch this.
10
+ *
11
+ * @package WPDesk\PluginBuilder\Builder
12
+ */
13
  class InfoBuilder extends AbstractBuilder {
14
  const FILTER_PLUGIN_CLASS = 'wp_builder_plugin_class';
15
  const HOOK_BEFORE_PLUGIN_INIT = 'wp_builder_before_plugin_init';
vendor/wpdesk/wp-builder/src/Plugin/ActivationAware.php ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WPDesk\PluginBuilder\Plugin;
4
+
5
+ /**
6
+ * It means that this class is should know about subscription activation
7
+ *
8
+ * @package WPDesk\PluginBuilder\Plugin
9
+ */
10
+ interface ActivationAware {
11
+
12
+ /**
13
+ * Set the activation flag to true
14
+ *
15
+ * @return void
16
+ */
17
+ public function set_active();
18
+
19
+ /**
20
+ * Is subscription active?
21
+ *
22
+ * @return bool
23
+ */
24
+ public function is_active();
25
+
26
+ }
27
+
vendor/wpdesk/wp-builder/src/Plugin/ActivationTracker.php CHANGED
@@ -2,7 +2,11 @@
2
 
3
  namespace WPDesk\PluginBuilder\Plugin;
4
 
5
-
 
 
 
 
6
  class ActivationTracker {
7
 
8
  /**
2
 
3
  namespace WPDesk\PluginBuilder\Plugin;
4
 
5
+ /**
6
+ * @deprecated nobody uses it :) And also this library is not a place for this class
7
+ *
8
+ * @package WPDesk\PluginBuilder\Plugin
9
+ */
10
  class ActivationTracker {
11
 
12
  /**
vendor/wpdesk/wp-builder/src/Plugin/PluginAccess.php CHANGED
@@ -2,6 +2,9 @@
2
 
3
  namespace WPDesk\PluginBuilder\Plugin;
4
 
 
 
 
5
  trait PluginAccess {
6
  /**
7
  * Plugin.
2
 
3
  namespace WPDesk\PluginBuilder\Plugin;
4
 
5
+ /**
6
+ * @package WPDesk\PluginBuilder\Plugin
7
+ */
8
  trait PluginAccess {
9
  /**
10
  * Plugin.
vendor/wpdesk/wp-builder/src/Plugin/TemplateLoad.php CHANGED
@@ -2,6 +2,11 @@
2
 
3
  namespace WPDesk\PluginBuilder\Plugin;
4
 
 
 
 
 
 
5
  trait TemplateLoad {
6
 
7
  /**
2
 
3
  namespace WPDesk\PluginBuilder\Plugin;
4
 
5
+ /**
6
+ * @deprecated Use wpdesk/wp-view
7
+ *
8
+ * @package WPDesk\PluginBuilder\Plugin
9
+ */
10
  trait TemplateLoad {
11
 
12
  /**
vendor/wpdesk/wp-builder/src/Storage/StaticStorage.php CHANGED
@@ -4,6 +4,11 @@ namespace WPDesk\PluginBuilder\Storage;
4
 
5
  use WPDesk\PluginBuilder\Plugin\AbstractPlugin;
6
 
 
 
 
 
 
7
  class StaticStorage implements PluginStorage {
8
  protected static $instances = [];
9
 
@@ -26,9 +31,8 @@ class StaticStorage implements PluginStorage {
26
  public function get_from_storage( $class ) {
27
  if ( isset( self::$instances[ $class ] ) ) {
28
  return self::$instances[ $class ];
29
- } else {
30
- throw new Exception\ClassNotExists( "Class {$class} not exists in storage" );
31
  }
 
32
  }
33
  }
34
 
4
 
5
  use WPDesk\PluginBuilder\Plugin\AbstractPlugin;
6
 
7
+ /**
8
+ * Can store plugin instances in static variable
9
+ *
10
+ * @package WPDesk\PluginBuilder\Storage
11
+ */
12
  class StaticStorage implements PluginStorage {
13
  protected static $instances = [];
14
 
31
  public function get_from_storage( $class ) {
32
  if ( isset( self::$instances[ $class ] ) ) {
33
  return self::$instances[ $class ];
 
 
34
  }
35
+ throw new Exception\ClassNotExists( "Class {$class} not exists in storage" );
36
  }
37
  }
38
 
vendor/wpdesk/wp-notice/CHANGELOG.md ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ ## [3.1.0] - 2019-06-25
2
+ ### Added
3
+ - close notice on .notice-dismiss-link class
4
+ - source field in ajax action
vendor/wpdesk/wp-notice/assets/js/notice.js CHANGED
@@ -1,12 +1,14 @@
1
  jQuery( document ).on( 'click', '.notice-dismiss', function() {
2
  var notice_name = jQuery(this).closest('div.notice').data('notice-name');
 
3
  if ('' !== notice_name) {
4
  jQuery.ajax({
5
  url: ajaxurl,
6
  type: 'post',
7
  data: {
8
  action: 'wpdesk_notice_dismiss',
9
- notice_name: notice_name
 
10
  },
11
  success: function (response) {
12
  }
@@ -14,3 +16,7 @@ jQuery( document ).on( 'click', '.notice-dismiss', function() {
14
  }
15
  });
16
 
 
 
 
 
1
  jQuery( document ).on( 'click', '.notice-dismiss', function() {
2
  var notice_name = jQuery(this).closest('div.notice').data('notice-name');
3
+ var source = jQuery(this).closest('div.notice').data('source');
4
  if ('' !== notice_name) {
5
  jQuery.ajax({
6
  url: ajaxurl,
7
  type: 'post',
8
  data: {
9
  action: 'wpdesk_notice_dismiss',
10
+ notice_name: notice_name,
11
+ source: source,
12
  },
13
  success: function (response) {
14
  }
16
  }
17
  });
18
 
19
+ jQuery( document ).on( 'click', '.notice-dismiss-link', function() {
20
+ jQuery(this).closest('div.notice').data('source',jQuery(this).data('source'));
21
+ jQuery(this).closest('div.notice').find('.notice-dismiss').click();
22
+ });
vendor/wpdesk/wp-notice/assets/js/notice.min.js CHANGED
@@ -1 +1 @@
1
- jQuery(document).on("click",".notice-dismiss",function(){var a=jQuery(this).closest("div.notice").data("notice-name");if(""!==a){jQuery.ajax({url:ajaxurl,type:"post",data:{action:"wpdesk_notice_dismiss",notice_name:a},success:function(b){}})}});
1
+ jQuery(document).on("click",".notice-dismiss",function(){var a=jQuery(this).closest("div.notice").data("notice-name");var b=jQuery(this).closest("div.notice").data("source");if(""!==a){jQuery.ajax({url:ajaxurl,type:"post",data:{action:"wpdesk_notice_dismiss",notice_name:a,source:b},success:function(c){}})}});jQuery(document).on("click",".notice-dismiss-link",function(){jQuery(this).closest("div.notice").data("source",jQuery(this).data("source"));jQuery(this).closest("div.notice").find(".notice-dismiss").click()});
vendor/wpdesk/wp-notice/src/WPDesk/Notice/AjaxHandler.php CHANGED
@@ -18,8 +18,9 @@ class AjaxHandler implements HookablePluginDependant
18
  use PluginAccess;
19
 
20
  const POST_FIELD_NOTICE_NAME = 'notice_name';
 
21
 
22
- const SCRIPTS_VERSION = '2';
23
  const SCRIPT_HANDLE = 'wpdesk_notice';
24
 
25
  /**
@@ -82,11 +83,18 @@ class AjaxHandler implements HookablePluginDependant
82
  {
83
  if (isset($_POST[self::POST_FIELD_NOTICE_NAME])) {
84
  $noticeName = $_POST[self::POST_FIELD_NOTICE_NAME];
 
 
 
 
 
 
 
85
  update_option(
86
  PermanentDismissibleNotice::OPTION_NAME_PREFIX . $noticeName,
87
  PermanentDismissibleNotice::OPTION_VALUE_DISMISSED
88
  );
89
- do_action('wpdesk_notice_dismissed_notice', $noticeName);
90
  }
91
  if (defined('DOING_AJAX') && DOING_AJAX) {
92
  die();
18
  use PluginAccess;
19
 
20
  const POST_FIELD_NOTICE_NAME = 'notice_name';
21
+ const POST_FIELD_SOURCE = 'source';
22
 
23
+ const SCRIPTS_VERSION = '4';
24
  const SCRIPT_HANDLE = 'wpdesk_notice';
25
 
26
  /**
83
  {
84
  if (isset($_POST[self::POST_FIELD_NOTICE_NAME])) {
85
  $noticeName = $_POST[self::POST_FIELD_NOTICE_NAME];
86
+
87
+ if (isset($_POST[self::POST_FIELD_SOURCE])) {
88
+ $source = $_POST[ self::POST_FIELD_SOURCE ];
89
+ } else {
90
+ $source = null;
91
+ }
92
+
93
  update_option(
94
  PermanentDismissibleNotice::OPTION_NAME_PREFIX . $noticeName,
95
  PermanentDismissibleNotice::OPTION_VALUE_DISMISSED
96
  );
97
+ do_action('wpdesk_notice_dismissed_notice', $noticeName, $source);
98
  }
99
  if (defined('DOING_AJAX') && DOING_AJAX) {
100
  die();
vendor/wpdesk/wp-wpdesk-connect/.gitignore ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ /vendor/
2
+ .idea
3
+ build-coverage
4
+ swagger
5
+ composer.lock
vendor/wpdesk/wp-wpdesk-connect/CHANGELOG.md ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ ## [1.1.0] - 2019-06-17
2
+ ### Added
3
+ - Refactor so the platform factory can be injected
4
+
5
+ ## [1.0.0] - 2019-06-17
6
+ ### Added
7
+ - Init
vendor/wpdesk/wp-wpdesk-connect/apigen.neon ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ destination: docs
2
+ templateConfig: /app/theme-woocommerce/config.neon
3
+ extensions: [php]
4
+ source:
5
+ - classes
6
+ exclude:
7
+ - vendor
8
+ - tests
9
+ - languages
10
+
11
+ charset: [UTF-8]
12
+ main: Wordpress plugin
13
+ title: Plugin template more info
14
+ baseUrl: "/"
15
+
16
+ templateTheme: default
17
+ php: false
18
+ sourceCode: false
19
+ tree: true
20
+ deprecated: false
21
+ todo: false
22
+ download: false
23
+
24
+ accessLevels:
25
+ - public
26
+ - private
27
+ - protected
vendor/wpdesk/wp-wpdesk-connect/composer.json ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "wpdesk/wp-wpdesk-connect",
3
+ "authors": [
4
+ {
5
+ "name": "Krzysiek",
6
+ "email": "krzysiek@wpdesk.pl"
7
+ }
8
+ ],
9
+ "require": {
10
+ "php": ">=5.6",
11
+ "psr/log": "^1.1",
12
+ "wpdesk/wp-view": "^1.0",
13
+ "wpdesk/wp-builder": "^1.1",
14
+ "wpdesk/wp-wpdesk-fs-shipment": "^1.0"
15
+ },
16
+ "require-dev": {
17
+ "phpunit/phpunit": "<7",
18
+ "wp-coding-standards/wpcs": "^0.14.1",
19
+ "squizlabs/php_codesniffer": "^3.4.2",
20
+ "mockery/mockery": "^1.2",
21
+ "10up/wp_mock": "^0.3"
22
+ },
23
+ "autoload": {
24
+ "classmap": ["src"]
25
+ },
26
+ "autoload-dev": {
27
+ },
28
+ "scripts": {
29
+ "phpunit-unit": "phpunit --configuration phpunit-unit.xml --coverage-text --colors=never",
30
+ "phpunit-unit-fast": "phpunit --configuration phpunit-unit.xml --no-coverage",
31
+ "phpunit-integration": "phpunit --configuration phpunit-integration.xml --coverage-text --colors=never",
32
+ "phpunit-integration-fast": "phpunit --configuration phpunit-integration.xml --no-coverage"
33
+ }
34
+ }
vendor/wpdesk/wp-wpdesk-connect/phpunit-integration.xml ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <phpunit bootstrap="tests/integration/bootstrap.php"
2
+ backupGlobals="false"
3
+ >
4
+ <testsuites>
5
+ <testsuite>
6
+ <directory prefix="Test" suffix=".php">./tests/integration</directory>
7
+ </testsuite>
8
+ </testsuites>
9
+
10
+ <filter>
11
+ <whitelist>
12
+ <directory suffix=".php">src</directory>
13
+ </whitelist>
14
+ </filter>
15
+
16
+ <logging>
17
+ <log type="junit" target="build-coverage/report.junit.xml"/>
18
+ <log type="coverage-html" target="build-coverage/coverage" charset="UTF-8" yui="true" highlight="true"/>
19
+ <log type="coverage-text" target="build-coverage/coverage.txt"/>
20
+ <log type="coverage-clover" target="build-coverage/clover.xml"/>
21
+ </logging>
22
+
23
+ <php>
24
+ <env name="WP_DEVELOP_DIR" value="/tmp/wordpress-develop"/>
25
+ <env name="WC_DEVELOP_DIR" value="/tmp/woocommerce"/>
26
+ </php>
27
+
28
+ </phpunit>
vendor/wpdesk/wp-wpdesk-connect/phpunit-unit.xml ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <phpunit bootstrap="tests/unit/bootstrap.php">
2
+ <testsuites>
3
+ <testsuite>
4
+ <directory prefix="Test" suffix=".php">./tests/unit/</directory>
5
+ </testsuite>
6
+ </testsuites>
7
+
8
+ <filter>
9
+ <whitelist>
10
+ <directory suffix=".php">src</directory>
11
+ </whitelist>
12
+ </filter>
13
+
14
+ <logging>
15
+ <log type="junit" target="build-coverage/report.junit.xml"/>
16
+ <log type="coverage-html" target="build-coverage/coverage" charset="UTF-8" yui="true" highlight="true"/>
17
+ <log type="coverage-text" target="build-coverage/coverage.txt"/>
18
+ <log type="coverage-clover" target="build-coverage/clover.xml"/>
19
+ </logging>
20
+
21
+ </phpunit>
{classes → vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration}/class-uk-states.php RENAMED
File without changes
{classes/shipment → vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration/saas}/class-shipment-request-fields.php RENAMED
File without changes
{classes/shipment → vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration}/saas/class-shipment-saas-ajax.php RENAMED
File without changes
{classes/shipment → vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration}/saas/class-shipment-saas-attachments-ajax.php RENAMED
File without changes
{classes/shipment → vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration}/saas/class-shipment-saas-attachments-upload-dir.php RENAMED
File without changes
{classes/shipment → vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration}/saas/class-shipment-saas-attachments.php RENAMED
File without changes
{classes/shipment → vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration}/saas/class-shipment-saas-message-formatter.php RENAMED
File without changes
{classes/shipment → vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration}/saas/class-shipment-saas-metabox-attachments.php RENAMED
File without changes
{classes/shipment → vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration}/saas/class-shipment-saas-metabox.php RENAMED
@@ -13,12 +13,18 @@ class WPDesk_Flexible_Shipping_Shipment_Saas_Metabox {
13
  private $shipment;
14
 
15
  /**
16
- * WPDesk_Flexible_Shipping_Shipment_Saas_Ajax constructor.
17
  *
18
- * @param WPDesk_Flexible_Shipping_Shipment_Saas $shipment Shipment.
19
  */
20
- public function __construct( WPDesk_Flexible_Shipping_Shipment_Saas $shipment ) {
 
 
 
 
 
21
  $this->shipment = $shipment;
 
22
  }
23
 
24
  /**
@@ -138,7 +144,7 @@ class WPDesk_Flexible_Shipping_Shipment_Saas_Metabox {
138
  } elseif ( $e instanceof WPDesk_Flexible_Shipping_SaaS_Service_Settings_Not_Found ) {
139
  $error_message = $shipping_service->prepare_settings_not_found_message();
140
  } else {
141
- $saas_connection = new WPDesk_Flexible_Shipping_SaaS_Connection();
142
  if ( $e instanceof WPDesk_Flexible_Shipping_SaaS_Maintenance_Mode_Exception ) {
143
  $maintenance_context = new \WPDesk\SaasPlatformClient\Response\Maintenance\MaintenanceResponseContext( $e->get_response() );
144
  $error_message = $saas_connection->prepare_maintenance_notice(
13
  private $shipment;
14
 
15
  /**
16
+ * Platform factory.
17
  *
18
+ * @var WPDesk_Flexible_Shipping_SaaS_Auth_Platform_Factory
19
  */
20
+ private $platform_factory;
21
+
22
+ public function __construct(
23
+ WPDesk_Flexible_Shipping_Shipment_Saas $shipment,
24
+ WPDesk_Flexible_Shipping_SaaS_Auth_Platform_Factory $platform_factory = null
25
+ ) {
26
  $this->shipment = $shipment;
27
+ $this->platform_factory = $platform_factory;
28
  }
29
 
30
  /**
144
  } elseif ( $e instanceof WPDesk_Flexible_Shipping_SaaS_Service_Settings_Not_Found ) {
145
  $error_message = $shipping_service->prepare_settings_not_found_message();
146
  } else {
147
+ $saas_connection = new WPDesk_Flexible_Shipping_SaaS_Connection(null, null, $this->platform_factory);
148
  if ( $e instanceof WPDesk_Flexible_Shipping_SaaS_Maintenance_Mode_Exception ) {
149
  $maintenance_context = new \WPDesk\SaasPlatformClient\Response\Maintenance\MaintenanceResponseContext( $e->get_response() );
150
  $error_message = $saas_connection->prepare_maintenance_notice(
{classes/shipment → vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration}/saas/class-shipment-saas-send.php RENAMED
File without changes
{classes/shipment → vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration}/saas/class-shipment-saas.php RENAMED
@@ -46,6 +46,13 @@ class WPDesk_Flexible_Shipping_Shipment_Saas
46
  */
47
  private static $saas_platform_links;
48
 
 
 
 
 
 
 
 
49
  /**
50
  * Shipping method.
51
  *
@@ -105,6 +112,10 @@ class WPDesk_Flexible_Shipping_Shipment_Saas
105
  self::$saas_platform_links = $saas_platform_links;
106
  }
107
 
 
 
 
 
108
  /**
109
  * Save field data from shipping method.
110
  *
@@ -253,7 +264,7 @@ class WPDesk_Flexible_Shipping_Shipment_Saas
253
  * @return string
254
  */
255
  public function get_order_metabox_content() {
256
- $metabox = new WPDesk_Flexible_Shipping_Shipment_Saas_Metabox( $this );
257
  return $metabox->get_order_metabox_content();
258
  }
259
 
@@ -303,11 +314,13 @@ class WPDesk_Flexible_Shipping_Shipment_Saas
303
  * @return \WPDesk\SaasPlatformClient\Platform
304
  */
305
  public function get_platform() {
 
 
306
 
307
- $this->logger = WPDesk_Flexible_Shipping_Logger_Factory::create_logger();
 
308
 
309
- $platform_factory = new WPDesk_Flexible_Shipping_SaaS_Auth_Platform_Factory( $this->logger );
310
- $platform = $platform_factory->get_platform();
311
 
312
  return $platform;
313
  }
46
  */
47
  private static $saas_platform_links;
48
 
49
+ /**
50
+ * Platform factory.
51
+ *
52
+ * @var WPDesk_Flexible_Shipping_SaaS_Auth_Platform_Factory
53
+ */
54
+ private static $platform_factory;
55
+
56
  /**
57
  * Shipping method.
58
  *
112
  self::$saas_platform_links = $saas_platform_links;
113
  }
114
 
115
+ public static function set_platform_factory( WPDesk_Flexible_Shipping_SaaS_Auth_Platform_Factory $platform_factory ) {
116
+ self::$platform_factory = $platform_factory;
117
+ }
118
+
119
  /**
120
  * Save field data from shipping method.
121
  *
264
  * @return string
265
  */
266
  public function get_order_metabox_content() {
267
+ $metabox = new WPDesk_Flexible_Shipping_Shipment_Saas_Metabox( $this, self::$platform_factory );
268
  return $metabox->get_order_metabox_content();
269
  }
270
 
314
  * @return \WPDesk\SaasPlatformClient\Platform
315
  */
316
  public function get_platform() {
317
+ if ( ! self::$platform_factory instanceof WPDesk_Flexible_Shipping_SaaS_Auth_Platform_Factory ) {
318
+ $this->logger = WPDesk_Flexible_Shipping_Logger_Factory::create_logger();
319
 
320
+ $platform_factory = new WPDesk_Flexible_Shipping_SaaS_Auth_Platform_Factory( $this->logger );
321
+ }
322
 
323
+ $platform = $platform_factory->get_platform();
 
324
 
325
  return $platform;
326
  }
{classes/shipment → vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration}/saas/views/order-metabox-actions.php RENAMED
File without changes
{classes/shipment → vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration}/saas/views/order-metabox-connection-error.php RENAMED
File without changes
{classes/shipment → vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration}/saas/views/order-metabox-fieldset-replicable.php RENAMED
File without changes
{classes/shipment → vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration}/saas/views/order-metabox-fieldset.php RENAMED
File without changes
{classes/shipment → vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration}/saas/views/order-metabox-shipment-attachments.php RENAMED
File without changes
{classes/shipment → vendor/wpdesk/wp-wpdesk-connect/src/saas-fs-integration}/saas/views/order-metabox-single-attachment.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/checkout-fields/class-saas-checkout-field-collection-points.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/checkout-fields/class-saas-checkout-fields-checkout.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/checkout-fields/class-saas-checkout-fields-shipment.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/checkout-fields/class-saas-field-visible-when-checkout.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/checkout-fields/class-saas-field-visible-when-shipment.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/checkout-fields/class-saas-field-visible-when.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src/saas}/checkout/class-checkout-ajax-request-data.php RENAMED
File without changes
{classes/shipment → vendor/wpdesk/wp-wpdesk-connect/src/saas}/class-money-formatter.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-add-shipping-handler.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-auth-params.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-bad-credentials-exception.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-cache-settings.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-connection-status-ajax.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-connection-status-field.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-connection.php RENAMED
@@ -1,5 +1,7 @@
1
  <?php
2
 
 
 
3
  if ( ! defined( 'ABSPATH' ) ) {
4
  exit;
5
  } // Exit if accessed directly
@@ -64,32 +66,35 @@ if ( ! class_exists( 'WPDesk_Flexible_Shipping_SaaS_Settings_Connection' ) ) {
64
  private $saas_platform_links;
65
 
66
  /**
67
- * Logger.
68
  *
69
- * @var \Psr\Log\LoggerInterface
70
  */
71
- private $logger;
72
 
73
  /**
74
- * WPDesk_Flexible_Shipping_SaaS_Connection constructor.
75
  *
76
- * @param \Psr\Log\LoggerInterface $logger Logger.
77
- * @param WPDesk_Flexible_Shipping_SaaS_Platform_Links $saas_platform_links Links.
78
  */
 
 
79
  public function __construct(
80
- \Psr\Log\LoggerInterface $logger = null,
81
- WPDesk_Flexible_Shipping_SaaS_Platform_Links $saas_platform_links = null
 
82
  ) {
83
 
84
  if ( null === $saas_platform_links ) {
85
  $saas_platform_links = new WPDesk_Flexible_Shipping_SaaS_Platform_Links();
86
  }
87
  $this->saas_platform_links = $saas_platform_links;
 
88
 
89
  if ( null !== $logger ) {
90
  $this->logger = $logger;
91
  } else {
92
- $this->logger = WPDesk_Flexible_Shipping_Logger_Factory::create_logger();
93
  }
94
  $this->saas_shipping_services = new WPDesk_Flexible_Shipping_SaaS_Shipping_Services(
95
  $this,
@@ -221,9 +226,11 @@ if ( ! class_exists( 'WPDesk_Flexible_Shipping_SaaS_Settings_Connection' ) ) {
221
  * @return \WPDesk\SaasPlatformClient\Platform
222
  */
223
  public function get_platform() {
224
- $platform_factory = new WPDesk_Flexible_Shipping_SaaS_Auth_Platform_Factory( $this->logger );
 
 
225
 
226
- return $platform_factory->get_platform();
227
  }
228
 
229
  /**
1
  <?php
2
 
3
+ use Psr\Log\LoggerInterface;
4
+
5
  if ( ! defined( 'ABSPATH' ) ) {
6
  exit;
7
  } // Exit if accessed directly
66
  private $saas_platform_links;
67
 
68
  /**
69
+ * Platform factory.
70
  *
71
+ * @var WPDesk_Flexible_Shipping_SaaS_Auth_Platform_Factory
72
  */
73
+ private $platform_factory;
74
 
75
  /**
76
+ * Logger.
77
  *
78
+ * @var LoggerInterface
 
79
  */
80
+ private $logger;
81
+
82
  public function __construct(
83
+ LoggerInterface $logger = null,
84
+ WPDesk_Flexible_Shipping_SaaS_Platform_Links $saas_platform_links = null,
85
+ WPDesk_Flexible_Shipping_SaaS_Auth_Platform_Factory $platform_factory = null
86
  ) {
87
 
88
  if ( null === $saas_platform_links ) {
89
  $saas_platform_links = new WPDesk_Flexible_Shipping_SaaS_Platform_Links();
90
  }
91
  $this->saas_platform_links = $saas_platform_links;
92
+ $this->platform_factory = $platform_factory;
93
 
94
  if ( null !== $logger ) {
95
  $this->logger = $logger;
96
  } else {
97
+ $this->logger = new \Psr\Log\NullLogger();
98
  }
99
  $this->saas_shipping_services = new WPDesk_Flexible_Shipping_SaaS_Shipping_Services(
100
  $this,
226
  * @return \WPDesk\SaasPlatformClient\Platform
227
  */
228
  public function get_platform() {
229
+ if ( ! $this->platform_factory instanceof WPDesk_Flexible_Shipping_SaaS_Auth_Platform_Factory ) {
230
+ $this->platform_factory = new WPDesk_Flexible_Shipping_SaaS_Auth_Platform_Factory( $this->logger );
231
+ }
232
 
233
+ return $this->platform_factory->get_platform();
234
  }
235
 
236
  /**
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-country-state-field.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-custom-services-setting.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-default-value-compute-handler.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-free-shipping-metadata-handler.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-live-rates-fallback-metadata-handler.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-live-rates-handler.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-maintenance-mode-exception.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-message-stock-metadata-handler.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-new-courier-settings-section.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-platform-factory.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-platform-links.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-registration-second-notice.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-service-settings-not-found-exception.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-settings-service-checkbox.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-settings.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-shipment-auto-create.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-shipment-order-auto-complete.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-shipment-settings-field.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-shipping-method-integration-settings.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-shipping-service-settings.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-shipping-service.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-shipping-services-manager.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-shipping-services.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-saas-user-registration.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/class-sass-settings-integration-checkbox.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src/saas}/class-shipping-zone-data-extractor.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/collection-points/class-saas-collection-points-ajax-request-data.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/collection-points/class-saas-collection-points-ajax.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/collection-points/class-saas-collection-points-map.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/collection-points/class-saas-shipping-service-collection-points.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/collection-points/views/map.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/interface-saas-connection-aware.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/tracker/class-saas-tracker.php RENAMED
File without changes
{classes/shipment → vendor/wpdesk/wp-wpdesk-connect/src/saas/tracker}/class-shipment-counter.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/views/html-boxes-content.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/views/html-field-connection-status.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/views/html-field-saas-connection.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/views/html-flexible-shipping-connect-notice.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/views/html-flexible-shipping-connect-second-notice.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/views/html-order-fallback-message.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/views/html-order-free-shipping.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/views/html-order-message-stock.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/views/html-registration-page.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/views/html-saas-connection-form.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/views/html-settings-connect-script.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/views/html-settings-long-row.php RENAMED
File without changes
vendor/wpdesk/wp-wpdesk-connect/src/saas/views/html-shipping-method-info-description-body.php ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ $pl = get_locale() === 'pl_PL';
3
+ $youtube_url = 'https://www.youtube.com/embed/qsFvYoiNDgU';
4
+ $general_settings_url = $pl ? 'https://www.wpdesk.pl/docs/flexible-shipping-pro-woocommerce-docs/?utm_source=flexible-shipping-info&utm_medium=link&utm_campaign=flexible-shipping-resources-box&utm_content=general-settings#Ustawienia_glowne' : 'https://docs.flexibleshipping.com/article/25-general-settings/?utm_campaign=flexible-shipping&utm_source=user-site&utm_medium=link&utm_term=general-settings&utm_content=fs-configuration-flexibleshippingtablerate';
5
+ $adding_a_shipping_method_url = $pl ? 'https://www.wpdesk.pl/docs/flexible-shipping-pro-woocommerce-docs/?utm_source=flexible-shipping-info&utm_medium=link&utm_campaign=flexible-shipping-resources-box&utm_content=adding-a-shipping-method#Metody_wysylki' : 'https://docs.flexibleshipping.com/article/29-shipping-methods/?utm_campaign=flexible-shipping&utm_source=user-site&utm_medium=link&utm_term=adding-a-shipping-method&utm_content=fs-configuration-flexibleshippingtablerate';
6
+ $currency_support_url = $pl ? 'https://www.wpdesk.pl/docs/flexible-shipping-pro-woocommerce-docs/?utm_source=flexible-shipping-info&utm_medium=link&utm_campaign=flexible-shipping-resources-box&utm_content=currency-support#Waluty' : 'https://docs.flexibleshipping.com/article/30-currency-support/?utm_campaign=flexible-shipping&utm_source=user-site&utm_medium=link&utm_term=currency-support&utm_content=fs-configuration-flexibleshippingtablerate';
7
+ $weight_based_shipping_url = $pl ? 'https://www.wpdesk.pl/docs/flexible-shipping-pro-woocommerce-docs/?utm_source=flexible-shipping-info&utm_medium=link&utm_campaign=flexible-shipping-resources-box&utm_content=weight-based-shipping#Koszt_na_wage' : 'https://docs.flexibleshipping.com/article/32-weight-based-shipping-woocommerce/?utm_campaign=flexible-shipping&utm_source=user-site&utm_medium=link&utm_term=weight-based-shipping&utm_content=fs-configuration-flexibleshippingtablerate';
8
+ $shipping_insurance_url = $pl ? 'https://www.wpdesk.pl/docs/flexible-shipping-pro-woocommerce-docs/?utm_source=flexible-shipping-info&utm_medium=link&utm_campaign=flexible-shipping-resources-box&utm_content=shipping-insurance#Ubezpieczenie_przesylki' : 'https://docs.flexibleshipping.com/article/34-shipping-insurance/?utm_campaign=flexible-shipping&utm_source=user-site&utm_medium=link&utm_term=shipping-insurance&utm_content=fs-configuration-flexibleshippingtablerate';
9
+ $conditional_cash_on_delivery_url = $pl ? 'https://www.wpdesk.pl/docs/flexible-shipping-pro-woocommerce-docs/?utm_source=flexible-shipping-info&utm_medium=link&utm_campaign=flexible-shipping-resources-box&utm_content=conditional-cash-on-delivery#Przesylka_za_pobraniem' : 'https://docs.flexibleshipping.com/article/35-conditional-cash-on-delivery/?utm_campaign=flexible-shipping&utm_source=user-site&utm_medium=link&utm_term=contitional-cash-on-delivery&utm_content=fs-configuration-flexibleshippingtablerate';
10
+ ?>
11
+
12
+ <div class="fs-box">
13
+ <h3 class="wc-settings-sub-title"><?php _e( 'How to use Flexible Shipping?', 'flexible-shipping' ); ?></h3>
14
+
15
+ <ol>
16
+ <li>
17
+ <?php
18
+ echo sprintf(
19
+ __( 'To add first Flexible Shipping method go to %sShipping zones%s and add Flexible Shipping to a shipping zone.', 'flexible-shipping' ),
20
+ '<a href="' . admin_url( 'admin.php?page=wc-settings&tab=shipping&section' ) . '">',
21
+ '</a>'
22
+ );
23
+ ?>
24
+ </li>
25
+
26
+ <li><?php _e( 'You can start the configuration by clicking the Flexible Shipping link in the Shipping methods table.', 'flexible-shipping' ); ?></li>
27
+ </ol>
28
+
29
+ <h4><?php _e( 'Quick Video Overview', 'flexible-shipping' ); ?></h4>
30
+
31
+ <div class="flexible-shipping-video">
32
+ <iframe width="688" height="387" src="<?php echo $youtube_url?>?rel=0&amp;showinfo=0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
33
+ </div>
34
+
35
+ <h4><?php _e( 'More resources', 'flexible-shipping' ); ?></h4>
36
+
37
+ <ul>
38
+ <li><a href="<?php echo $general_settings_url; ?>"><?php _e( 'General Settings', 'flexible-shipping' ); ?></a></li>
39
+ <li><a href="<?php echo $adding_a_shipping_method_url; ?>"><?php _e( 'Adding a shipping method', 'flexible-shipping' ); ?></a></li>
40
+ <li><a href="<?php echo $currency_support_url; ?>"><?php _e( 'Currency Support', 'flexible-shipping' ); ?></a></li>
41
+ <li><a href="<?php echo $weight_based_shipping_url; ?>"><?php _e( 'Weight Based Shipping', 'flexible-shipping' ); ?></a></li>
42
+ <li><a href="<?php echo $shipping_insurance_url; ?>"><?php _e( 'Shipping Insurance', 'flexible-shipping' ); ?></a></li>
43
+ <li><a href="<?php echo $conditional_cash_on_delivery_url; ?>"><?php _e( 'Conditional Cash on Delivery', 'flexible-shipping' ); ?></a></li>
44
+ </ul>
45
+ </div>
{classes → vendor/wpdesk/wp-wpdesk-connect/src}/saas/views/html-shipping-method-info-description.php RENAMED
File without changes
vendor/wpdesk/wp-wpdesk-fs-shipment/.gitignore ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ /vendor/
2
+ .idea
3
+ build-coverage
4
+ swagger
5
+ composer.lock
vendor/wpdesk/wp-wpdesk-fs-shipment/CHANGELOG.md ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## [1.0.3] - 2019-07-08
2
+ ### Changed
3
+ - Added close counter to rate notice
4
+
5
+ ## [1.0.2] - 2019-07-03
6
+ ### Changed
7
+ - Added rate notice with variants
8
+
9
+ ## [1.0.1] - 2019-06-26
10
+ ### Changed
11
+ - Moved html-order-add_shipping-metabox.php here
12
+
13
+ ## [1.0.0] - 2019-06-17
14
+ ### Added
15
+ - Init
vendor/wpdesk/wp-wpdesk-fs-shipment/apigen.neon ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ destination: docs
2
+ templateConfig: /app/theme-woocommerce/config.neon
3
+ extensions: [php]
4
+ source:
5
+ - classes
6
+ exclude:
7
+ - vendor
8
+ - tests
9
+ - languages
10
+
11
+ charset: [UTF-8]
12
+ main: Wordpress plugin
13
+ title: Plugin template more info
14
+ baseUrl: "/"
15
+
16
+ templateTheme: default
17
+ php: false
18
+ sourceCode: false
19
+ tree: true
20
+ deprecated: false
21
+ todo: false
22
+ download: false
23
+
24
+ accessLevels:
25
+ - public
26
+ - private
27
+ - protected
vendor/wpdesk/wp-wpdesk-fs-shipment/composer.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "wpdesk/wp-wpdesk-fs-shipment",
3
+ "authors": [
4
+ {
5
+ "name": "Krzysiek",
6
+ "email": "krzysiek@wpdesk.pl"
7
+ }
8
+ ],
9
+ "require": {
10
+ "php": ">=5.6"
11
+ },
12
+ "require-dev": {
13
+ "phpunit/phpunit": "<7",
14
+ "wp-coding-standards/wpcs": "^0.14.1",
15
+ "squizlabs/php_codesniffer": "^3.4.2",
16
+ "mockery/mockery": "^1.2",
17
+ "10up/wp_mock": "^0.3"
18
+ },
19
+ "autoload": {
20
+ "classmap": ["src"]
21
+ },
22
+ "autoload-dev": {
23
+ },
24
+ "scripts": {
25
+ "phpunit-unit": "phpunit --configuration phpunit-unit.xml --coverage-text --colors=never",
26
+ "phpunit-unit-fast": "phpunit --configuration phpunit-unit.xml --no-coverage",
27
+ "phpunit-integration": "phpunit --configuration phpunit-integration.xml --coverage-text --colors=never",
28
+ "phpunit-integration-fast": "phpunit --configuration phpunit-integration.xml --no-coverage"
29
+ }
30
+ }
vendor/wpdesk/wp-wpdesk-fs-shipment/phpunit-integration.xml ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <phpunit bootstrap="tests/integration/bootstrap.php"
2
+ backupGlobals="false"
3
+ >
4
+ <testsuites>
5
+ <testsuite>
6
+ <directory prefix="Test" suffix=".php">./tests/integration</directory>
7
+ </testsuite>
8
+ </testsuites>
9
+
10
+ <filter>
11
+ <whitelist>
12
+ <directory suffix=".php">src</directory>
13
+ </whitelist>
14
+ </filter>
15
+
16
+ <logging>
17
+ <log type="junit" target="build-coverage/report.junit.xml"/>
18
+ <log type="coverage-html" target="build-coverage/coverage" charset="UTF-8" yui="true" highlight="true"/>
19
+ <log type="coverage-text" target="build-coverage/coverage.txt"/>
20
+ <log type="coverage-clover" target="build-coverage/clover.xml"/>
21
+ </logging>
22
+
23
+ <php>
24
+ <env name="WP_DEVELOP_DIR" value="/tmp/wordpress-develop"/>
25
+ <env name="WC_DEVELOP_DIR" value="/tmp/woocommerce"/>
26
+ </php>
27
+
28
+ </phpunit>
vendor/wpdesk/wp-wpdesk-fs-shipment/phpunit-unit.xml ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <phpunit bootstrap="tests/unit/bootstrap.php">
2
+ <testsuites>
3
+ <testsuite>
4
+ <directory prefix="Test" suffix=".php">./tests/unit/</directory>
5
+ </testsuite>
6
+ </testsuites>
7
+
8
+ <filter>
9
+ <whitelist>
10
+ <directory suffix=".php">src</directory>
11
+ </whitelist>
12
+ </filter>
13
+
14
+ <logging>
15
+ <log type="junit" target="build-coverage/report.junit.xml"/>
16
+ <log type="coverage-html" target="build-coverage/coverage" charset="UTF-8" yui="true" highlight="true"/>
17
+ <log type="coverage-text" target="build-coverage/coverage.txt"/>
18
+ <log type="coverage-clover" target="build-coverage/clover.xml"/>
19
+ </logging>
20
+
21
+ </phpunit>
{classes → vendor/wpdesk/wp-wpdesk-fs-shipment/src}/admin-notices.php RENAMED
@@ -33,13 +33,6 @@ if ( ! class_exists( 'WPDesk_Flexible_Shipping_Admin_Notices' ) ) {
33
  */
34
  const BASED_ON_VALUE = 'value';
35
 
36
- /**
37
- *
38
- */
39
- const SETTINGS_CHECKED_OPTION_NAME_FS_RATE = 'flexible_shipping_rate_plugin';
40
-
41
- const PLUGIN_RATE_NOTICE_NAME = 'flexible_shipping_rate_plugin';
42
-
43
  /**
44
  * @var Flexible_Shipping_Plugin
45
  */
@@ -68,8 +61,6 @@ if ( ! class_exists( 'WPDesk_Flexible_Shipping_Admin_Notices' ) ) {
68
  add_action( 'admin_notices', array( $this, 'admin_notices_taxes' ) );
69
 
70
  add_action( 'wp_ajax_flexible_shipping_taxes_notice', array( $this, 'wp_ajax_flexible_shipping_taxes_notice' ) );
71
-
72
- add_action( 'current_screen', [ $this, 'admin_notices_fs_rate' ] );
73
  }
74
 
75
  /**
@@ -242,84 +233,5 @@ if ( ! class_exists( 'WPDesk_Flexible_Shipping_Admin_Notices' ) ) {
242
  printf( '<div class="%1$s"><p>%2$s</p></div>', $class, $message );
243
  }
244
 
245
- /**
246
- * @return bool
247
- */
248
- public function is_admin_notice_fs_rate_dismissed() {
249
- if ( get_option( self::SETTINGS_CHECKED_OPTION_NAME_FS_RATE, '0' ) === '1' ) {
250
- return true;
251
- }
252
- return false;
253
- }
254
-
255
- /**
256
- * Check for which screen display notice
257
- *
258
- * @return bool
259
- */
260
- private function display_fs_rate_notice_for_screen() {
261
- $screen = get_current_screen();
262
- $show = false;
263
- if ( 'woocommerce_page_wc-settings' === $screen->id && isset( $_GET['tab'] ) && 'shipping' === $_GET['tab'] ) {
264
- $show = true;
265
- }
266
- return $show;
267
- }
268
-
269
- /**
270
- * Is past a week after activation
271
- *
272
- * @return bool
273
- */
274
- private function is_past_a_week_after_activation() {
275
- $method_creation_date = strtotime( get_option( 'flexible_shipping_method_creation_date', current_time( 'mysql' ) ) );
276
- $current_date = strtotime( current_time( 'mysql' ) );
277
- $difference = $current_date - $method_creation_date;
278
- $days = (int) floor( $difference / ( 60 * 60 * 24 ) );
279
- if ( $days > 6 ) {
280
- return true;
281
- }
282
-
283
- return false;
284
- }
285
-
286
- /**
287
- * Show FS rate notice.
288
- */
289
- public function admin_notices_fs_rate() {
290
- if ( $this->display_fs_rate_notice_for_screen() && $this->is_past_a_week_after_activation() && ! $this->is_admin_notice_fs_rate_dismissed() ) {
291
- $class = 'notice notice-info is-dismissible flexible-shipping-rate-notice';
292
- $message = __( 'Awesome, you\'ve been using Flexible Shipping for more than 1 week. May I ask you to give it a 5-star rating on WordPress?', 'flexible-shipping' );
293
- $actions[] = sprintf(
294
- __( '%1$sOk, you deserved it%2$s', 'flexible-shipping' ),
295
- '<a target="_blank" href="' . esc_url( 'https://wpde.sk/fs-rate' ) . '">',
296
- '</a>'
297
- );
298
- $actions[] = sprintf(
299
- __( '%1$sI already did%2$s', 'flexible-shipping' ),
300
- '<a class="close-fs-rate-notice" href="#">',
301
- '</a>'
302
- );
303
- $actions[] = sprintf(
304
- __( '%1$sNot good enough%2$s', 'flexible-shipping' ),
305
- '<a class="fs-not-good" href="#">',
306
- '</a>'
307
- );
308
- $message .= '<br/>';
309
- $message .= implode( ' | ', $actions );
310
-
311
- new \WPDesk\Notice\PermanentDismissibleNotice(
312
- $message,
313
- self::PLUGIN_RATE_NOTICE_NAME,
314
- \WPDesk\Notice\Notice::NOTICE_TYPE_INFO,
315
- 10,
316
- array(
317
- 'class' => self::PLUGIN_RATE_NOTICE_NAME,
318
- 'id' => self::PLUGIN_RATE_NOTICE_NAME,
319
- )
320
- );
321
- }
322
- }
323
-
324
  }
325
  }
33
  */
34
  const BASED_ON_VALUE = 'value';
35
 
 
 
 
 
 
 
 
36
  /**
37
  * @var Flexible_Shipping_Plugin
38
  */
61
  add_action( 'admin_notices', array( $this, 'admin_notices_taxes' ) );
62
 
63
  add_action( 'wp_ajax_flexible_shipping_taxes_notice', array( $this, 'wp_ajax_flexible_shipping_taxes_notice' ) );
 
 
64
  }
65
 
66
  /**
233
  printf( '<div class="%1$s"><p>%2$s</p></div>', $class, $message );
234
  }
235
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
236
  }
237
  }
{classes → vendor/wpdesk/wp-wpdesk-fs-shipment/src}/class-order-add-shipping.php RENAMED
File without changes
{classes/shipment → vendor/wpdesk/wp-wpdesk-fs-shipment/src/exception}/class-cancel-shipment-exception.php RENAMED
File without changes
{classes/shipment → vendor/wpdesk/wp-wpdesk-fs-shipment/src/exception}/class-get-label-exception.php RENAMED
File without changes
{classes/shipment → vendor/wpdesk/wp-wpdesk-fs-shipment/src/exception}/class-label-not-available-exception.php RENAMED
File without changes
{classes/shipment → vendor/wpdesk/wp-wpdesk-fs-shipment/src/exception}/class-send-shipment-exception.php RENAMED
File without changes
{classes/shipment → vendor/wpdesk/wp-wpdesk-fs-shipment/src/exception}/class-shipment-plan-exceeded-exception.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-fs-shipment/src}/manifest/class-manifest-fs.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-fs-shipment/src}/manifest/class-manifest.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-fs-shipment/src}/manifest/cpt-shipping-manifest.php RENAMED
@@ -145,7 +145,7 @@ class WPDesk_Flexible_Shipping_Shipping_Manifest_CPT {
145
  foreach ( $shipments_array as $shipment_id ) {
146
  $shipments[] = fs_get_shipment( $shipment_id );
147
  }
148
- include('views/manifest-metabox.php');
149
  /*
150
  echo "<pre>";
151
  print_r($shipments);
@@ -187,7 +187,7 @@ class WPDesk_Flexible_Shipping_Shipping_Manifest_CPT {
187
  }
188
  if ( $column == 'external_number' ) {
189
  $download_manifest_url = admin_url('edit.php?post_type=shipping_manifest&flexible_shipping_download_manifest=' . $manifest->get_id() . '&nonce=' . wp_create_nonce('flexible_shipping_download_manifest'));
190
- include('views/column-number.php');
191
  }
192
  if ( $column == 'shipment_count' ) {
193
  echo count( $manifest->get_meta( '_shipments', array() ) );
@@ -196,7 +196,7 @@ class WPDesk_Flexible_Shipping_Shipping_Manifest_CPT {
196
  if ( $manifest->get_status() != 'trash' ) {
197
  $download_manifest_url = admin_url('edit.php?post_type=shipping_manifest&flexible_shipping_download_manifest=' . $manifest->get_id() . '&nonce=' . wp_create_nonce('flexible_shipping_download_manifest'));
198
  $cancel_url = admin_url('edit.php?post_type=shipping_manifest&flexible_shipping_cancel_manifest=' . $manifest->get_id() . '&nonce=' . wp_create_nonce('flexible_shipping_cancel_manifest'));
199
- include('views/column-actions.php');
200
  }
201
  }
202
  }
145
  foreach ( $shipments_array as $shipment_id ) {
146
  $shipments[] = fs_get_shipment( $shipment_id );
147
  }
148
+ include( 'views/manifest-metabox.php' );
149
  /*
150
  echo "<pre>";
151
  print_r($shipments);
187
  }
188
  if ( $column == 'external_number' ) {
189
  $download_manifest_url = admin_url('edit.php?post_type=shipping_manifest&flexible_shipping_download_manifest=' . $manifest->get_id() . '&nonce=' . wp_create_nonce('flexible_shipping_download_manifest'));
190
+ include( 'views/column-number.php' );
191
  }
192
  if ( $column == 'shipment_count' ) {
193
  echo count( $manifest->get_meta( '_shipments', array() ) );
196
  if ( $manifest->get_status() != 'trash' ) {
197
  $download_manifest_url = admin_url('edit.php?post_type=shipping_manifest&flexible_shipping_download_manifest=' . $manifest->get_id() . '&nonce=' . wp_create_nonce('flexible_shipping_download_manifest'));
198
  $cancel_url = admin_url('edit.php?post_type=shipping_manifest&flexible_shipping_cancel_manifest=' . $manifest->get_id() . '&nonce=' . wp_create_nonce('flexible_shipping_cancel_manifest'));
199
+ include( 'views/column-actions.php' );
200
  }
201
  }
202
  }
vendor/wpdesk/wp-wpdesk-fs-shipment/src/manifest/functions.php ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
4
+
5
+
6
+ function fs_manifest_integration_exists( $integration ) {
7
+ $class_name = 'WPDesk_Flexible_Shipping_Manifest' . '_' . $integration ;
8
+ if ( class_exists( $class_name ) ) {
9
+ return true;
10
+ }
11
+ return false;
12
+ }
13
+
14
+
15
+ function fs_create_manifest( $integration ) {
16
+ $post_title = sprintf( __( 'Shipping manifest %s, %s', 'flexible-shipping' ), $integration, date_i18n( get_option( 'date_format' ) ) );
17
+ $post_title = apply_filters( 'flexible_shipping_manifest_post_title_'. $integration, $post_title );
18
+ $manifest_post = array(
19
+ 'post_title' => $post_title,
20
+ 'post_type' => 'shipping_manifest',
21
+ 'post_status' => 'publish',
22
+ );
23
+ $manifest_id = wp_insert_post( $manifest_post );
24
+ update_post_meta( $manifest_id, '_integration', $integration );
25
+ return fs_get_manifest( $manifest_id );
26
+ }
27
+
28
+ /**
29
+ * @param $manifest_id
30
+ * @return WPDesk_Flexible_Shipping_Manifest
31
+ */
32
+ function fs_get_manifest( $manifest_id ) {
33
+ $integration = get_post_meta( $manifest_id, '_integration', true );
34
+ $class_name = 'WPDesk_Flexible_Shipping_Manifest';
35
+ if ( class_exists( $class_name . '_' . $integration ) ) {
36
+ $class_name = $class_name . '_' . $integration;
37
+ }
38
+ else {
39
+ $class_name = 'WPDesk_Flexible_Shipping_Manifest_FS';
40
+ }
41
+ return new $class_name( $manifest_id );
42
+ }
43
+
44
+ function fs_delete_manifest( $manifest ) {
45
+ $shipments_posts = get_posts( array(
46
+ 'posts_per_page' => -1,
47
+ 'post_type' => 'shipment',
48
+ 'post_status' => 'any',
49
+ 'meta_key' => '_manifest',
50
+ 'meta_value' => $manifest->get_id()
51
+ ) );
52
+ foreach ( $shipments_posts as $shipment_post ) {
53
+ $shipment = fs_get_shipment( $shipment_post->ID );
54
+ $shipment->delete_meta( '_manifest' );
55
+ $shipment->update_status('fs-confirmed' );
56
+ $shipment->save();
57
+ }
58
+ $manifest->set_meta( '_shipments', array() );
59
+ $manifest->update_status( 'trash' );
60
+ $manifest->save();
61
+ }
62
+
{classes → vendor/wpdesk/wp-wpdesk-fs-shipment/src}/manifest/interface-manifest.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-fs-shipment/src}/manifest/views/column-actions.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-fs-shipment/src}/manifest/views/column-number.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-fs-shipment/src}/manifest/views/filter-form.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-fs-shipment/src}/manifest/views/manifest-metabox.php RENAMED
File without changes
{classes/shipment → vendor/wpdesk/wp-wpdesk-fs-shipment/src/metabox}/ajax.php RENAMED
File without changes
vendor/wpdesk/wp-wpdesk-fs-shipment/src/rate-notice.php ADDED
@@ -0,0 +1,126 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WPDesk\FS\Rate;
4
+
5
+ /**
6
+ * Display rate notice.
7
+ */
8
+ class WPDesk_Flexible_Shipping_Rate_Notice implements \WPDesk\PluginBuilder\Plugin\Hookable {
9
+
10
+ const FIRST_NOTICE_MIN_ORDERS = 100;
11
+ const CLOSE_TEMPORARY_NOTICE_NUMBER = 'close-temporary-notice-number';
12
+ const CLOSE_TEMPORARY_NOTICE_DATE = 'close-temporary-notice-date';
13
+ const CLOSE_ALREADY_DID = 'already-did';
14
+
15
+ const SETTINGS_OPTION_DISMISSED_COUNT = 'flexible_shipping_rate_dismissed_count';
16
+
17
+ const SETTINGS_RATE_NOTICE_VARIANT_ID = 'flexible_shipping_rate_notice_variant_id';
18
+
19
+ const SETTINGS_OPTION_RATE_NOTICE_DATE_DISMISS = 'flexible_shipping_rate_notice_date_dismiss';
20
+ const SETTINGS_OPTION_RATE_NOTICE_NUMBER_DISMISS = 'flexible_shipping_rate_notice_number_dismiss';
21
+
22
+ /**
23
+ * Hooks.
24
+ */
25
+ public function hooks() {
26
+ add_action( 'admin_notices', array( $this, 'add_admin_notice_action' ) );
27
+ add_action( 'wpdesk_notice_dismissed_notice', array( $this, 'reset_rate_variant_action' ), 10, 2 );
28
+ add_action( 'wp_ajax_flexible_shipping_rate_notice', array( $this, 'wp_ajax_flexible_shipping_rate_notice' ) );
29
+ add_action( 'wp_ajax_flexible_shipping_close_rate_notice', array( $this, 'wp_ajax_flexible_shipping_close_rate_notice' ) );
30
+ }
31
+
32
+ /**
33
+ * Reset rate variant
34
+ *
35
+ * @param string $notice_name Notice name.
36
+ * @param string $source Sorcue.
37
+ */
38
+ public function reset_rate_variant_action( $notice_name, $source ) {
39
+ $variant_id = get_option( self::SETTINGS_RATE_NOTICE_VARIANT_ID );
40
+ if ( 'flexible_shipping_rate_plugin' !== $notice_name ) {
41
+ return false;
42
+ }
43
+
44
+ $dismissed_count = (int) get_option( self::SETTINGS_OPTION_DISMISSED_COUNT, 0 );
45
+
46
+ if ( ( empty( $source ) || self::CLOSE_TEMPORARY_NOTICE_DATE === $source ) && ( $variant_id === FirstRateNotice::SETTINGS_VARIANT_ID || $variant_id === SecondRateNotice::SETTINGS_VARIANT_ID ) ) {
47
+ update_option( self::SETTINGS_OPTION_RATE_NOTICE_DATE_DISMISS, date( "Y-m-d H:i:s", strtotime( 'NOW + 2 weeks' ) ) );
48
+ delete_option( \WPDesk\Notice\PermanentDismissibleNotice::OPTION_NAME_PREFIX . $notice_name );
49
+ update_option( self::SETTINGS_OPTION_DISMISSED_COUNT, 1 );
50
+ } elseif ( ( empty( $source ) || self::CLOSE_TEMPORARY_NOTICE_NUMBER === $source ) && $variant_id === ThirdRateNotice::SETTINGS_VARIANT_ID ) {
51
+ update_option( Flexible_Shipping_Order_Counter::FS_ORDER_COUNTER, 0 );
52
+ delete_option( \WPDesk\Notice\PermanentDismissibleNotice::OPTION_NAME_PREFIX . $notice_name );
53
+ update_option( self::SETTINGS_OPTION_DISMISSED_COUNT, 1 );
54
+ } elseif ( self::CLOSE_ALREADY_DID === $source ) {
55
+ update_option( \WPDesk\Notice\PermanentDismissibleNotice::OPTION_NAME_PREFIX . $notice_name, 1 );
56
+ }
57
+
58
+ if ( $dismissed_count > 0 ) {
59
+ update_option( \WPDesk\Notice\PermanentDismissibleNotice::OPTION_NAME_PREFIX . $notice_name, 1 );
60
+ }
61
+
62
+ }
63
+
64
+
65
+
66
+ /**
67
+ * Should display notice.
68
+ *
69
+ * @return bool
70
+ */
71
+ private function should_display_notice() {
72
+ $current_screen = get_current_screen();
73
+ $display_on_screens = [ 'shop_order', 'edit-shop_order', 'woocommerce_page_wc-settings' ];
74
+ if ( ! empty( $current_screen ) && in_array( $current_screen->id, $display_on_screens, true ) ) {
75
+ return true;
76
+ }
77
+ return false;
78
+ }
79
+
80
+ /**
81
+ * Generate rate notice variant ID
82
+ *
83
+ * @return string
84
+ */
85
+ private function generate_rate_notice_variant_id()
86
+ {
87
+ $variant = get_option(self::SETTINGS_RATE_NOTICE_VARIANT_ID, '0');
88
+ if ( $variant === '0' ) {
89
+ $variant = 'notice_' . mt_rand(1, 3);
90
+ add_option( self::SETTINGS_RATE_NOTICE_VARIANT_ID, $variant );
91
+ $this->set_notice_defaults( $variant );
92
+ }
93
+ return $variant;
94
+ }
95
+
96
+ /**
97
+ * Set defaults for notice
98
+ *
99
+ * @param string $variant Variant ID.
100
+ */
101
+ private function set_notice_defaults( $variant ) {
102
+ if( 'notice_3' !== $variant ) {
103
+ add_option( self::SETTINGS_OPTION_RATE_NOTICE_DATE_DISMISS, date( "Y-m-d H:i:s", strtotime('NOW + 2 weeks') ) );
104
+ } else {
105
+ add_option( Flexible_Shipping_Order_Counter::FS_ORDER_COUNTER, 0 );
106
+ }
107
+ }
108
+
109
+ /**
110
+ * Add admin notice.
111
+ */
112
+ public function add_admin_notice_action()
113
+ {
114
+ $variant = $this->generate_rate_notice_variant_id();
115
+ if ( $this->should_display_notice() ) {
116
+ $creator = new \WPDesk\FS\Rate\RateNoticeCreator();
117
+ $instance = $creator->create( $variant );
118
+ if( $instance->should_show_message() ) {
119
+ $instance->show_message();
120
+ }
121
+
122
+ }
123
+ }
124
+
125
+
126
+ }
vendor/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/abstract-rate.php ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WPDesk\FS\Rate;
4
+
5
+ abstract class RateNotice implements RateNoticeInterface {
6
+
7
+ const NOTICE_NAME = 'flexible_shipping_rate_plugin';
8
+
9
+ const CLOSE_TEMPORARY_NOTICE = 'close-temporary-notice-date';
10
+
11
+ /**
12
+ * Get message
13
+ *
14
+ * @return mixed
15
+ */
16
+ abstract protected function get_message();
17
+
18
+ /**
19
+ * Action links
20
+ *
21
+ * @return array
22
+ */
23
+ protected function action_links() {
24
+ $actions[] = sprintf(
25
+ __( '%1$sOk, you deserved it%2$s', 'flexible-shipping' ),
26
+ '<a target="_blank" href="' . esc_url( 'https://wpde.sk/fs-rate' ) . '">',
27
+ '</a>'
28
+ );
29
+ $actions[] = sprintf(
30
+ __( '%1$sNope, maybe later%2$s', 'flexible-shipping' ),
31
+ '<a data-type="date" class="fs-close-temporary-notice notice-dismiss-link" data-source="' . self::CLOSE_TEMPORARY_NOTICE . '" href="#">',
32
+ '</a>'
33
+ );
34
+ $actions[] = sprintf(
35
+ __( '%1$sI already did%2$s', 'flexible-shipping' ),
36
+ '<a class="close-rate-notice notice-dismiss-link" data-source="already-did" href="#">',
37
+ '</a>'
38
+ );
39
+ return $actions;
40
+ }
41
+
42
+ /**
43
+ * Should show message
44
+ *
45
+ * @return bool
46
+ */
47
+ public function should_show_message() {
48
+ return true;
49
+ }
50
+
51
+ /**
52
+ * Show admin notice
53
+ *
54
+ * @return string|void
55
+ */
56
+ public function show_message() {
57
+ new \WPDesk\Notice\PermanentDismissibleNotice(
58
+ $this->get_message(),
59
+ self::NOTICE_NAME,
60
+ \WPDesk\Notice\Notice::NOTICE_TYPE_INFO,
61
+ 10,
62
+ array(
63
+ 'class' => self::NOTICE_NAME,
64
+ 'id' => self::NOTICE_NAME,
65
+ )
66
+ );
67
+ }
68
+
69
+ }
vendor/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/first-rate-notice.php ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WPDesk\FS\Rate;
4
+
5
+ class FirstRateNotice extends RateNotice
6
+ {
7
+
8
+ const SETTINGS_VARIANT_ID = 'notice_1';
9
+
10
+ /**
11
+ * Action links
12
+ *
13
+ * @return array
14
+ */
15
+ protected function action_links() {
16
+ $actions[] = sprintf(
17
+ __( '%1$sOk, you deserved it%2$s', 'flexible-shipping' ),
18
+ '<a target="_blank" href="' . esc_url( 'https://wpde.sk/fs-rate-1' ) . '">',
19
+ '</a>'
20
+ );
21
+ $actions[] = sprintf(
22
+ __( '%1$sNope, maybe later%2$s', 'flexible-shipping' ),
23
+ '<a data-type="date" class="fs-close-temporary-notice notice-dismiss-link" data-source="' . self::CLOSE_TEMPORARY_NOTICE . '" href="#">',
24
+ '</a>'
25
+ );
26
+ $actions[] = sprintf(
27
+ __( '%1$sI already did%2$s', 'flexible-shipping' ),
28
+ '<a class="close-rate-notice notice-dismiss-link" data-source="already-did" href="#">',
29
+ '</a>'
30
+ );
31
+
32
+ return $actions;
33
+ }
34
+
35
+ /**
36
+ * Should show message
37
+ *
38
+ * @return bool
39
+ */
40
+ public function should_show_message() {
41
+ $notice_date_dissmis = get_option( WPDesk_Flexible_Shipping_Rate_Notice::SETTINGS_OPTION_RATE_NOTICE_DATE_DISMISS, date( "Y-m-d H:i:s", strtotime( 'NOW + 2 weeks' ) ) );
42
+ $notice_date = strtotime( $notice_date_dissmis );
43
+ $current_date = strtotime( 'NOW' );
44
+ $difference = $current_date - $notice_date;
45
+ $days = (int) floor( $difference / ( 60 * 60 * 24 ) );
46
+ if ( $days > 0 ) {
47
+ return true;
48
+ }
49
+
50
+ return false;
51
+ }
52
+
53
+ /**
54
+ * Get rate message
55
+ *
56
+ * @return string
57
+ */
58
+ protected function get_message() {
59
+ $message = __( 'Awesome, you\'ve been using Flexible Shipping for more than 2 weeks. May I ask you to give it a 5-star rating on WordPress?', 'flexible-shipping' );
60
+ $message .= '<br/>';
61
+ $message .= implode( ' | ', $this->action_links() );
62
+ return $message;
63
+ }
64
+
65
+ }
vendor/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/interface-rate.php ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WPDesk\FS\Rate;
4
+
5
+ interface RateNoticeInterface {
6
+
7
+
8
+ /**
9
+ * Show message
10
+ *
11
+ * @return string
12
+ */
13
+ public function show_message();
14
+
15
+
16
+ /**
17
+ * Should show message
18
+ *
19
+ * @return bool
20
+ */
21
+ public function should_show_message();
22
+
23
+ }
vendor/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/order-counter.php ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WPDesk\FS\Rate;
4
+
5
+ /**
6
+ * Counts orders with FS shipping method.
7
+ */
8
+ class Flexible_Shipping_Order_Counter implements \WPDesk\PluginBuilder\Plugin\Hookable {
9
+
10
+ const ORDER_STATUS_COMPLETED = 'completed';
11
+ const FS_ORDER_COUNTER = 'flexible_shipping_rate_notice_counter';
12
+ const FS_METHOD = 'flexible_shipping';
13
+
14
+ /**
15
+ * Hooks.
16
+ */
17
+ public function hooks() {
18
+ add_action( 'woocommerce_order_status_changed', array( $this, 'count_order_for_fs_methods' ), 10, 4 );
19
+ }
20
+
21
+ /**
22
+ * Count order.
23
+ *
24
+ * @param WC_Order $order .
25
+ */
26
+ private function count_order( $order ) {
27
+ update_option( self::FS_ORDER_COUNTER, intval( get_option( self::FS_ORDER_COUNTER, '0' ) ) + 1 );
28
+ $order->update_meta_data( self::FS_ORDER_COUNTER, 1 );
29
+ $order->save();
30
+ }
31
+
32
+ /**
33
+ * Count orders for FS methods.
34
+ *
35
+ * @param int $order_id Order ID.
36
+ * @param string $status_from Status from.
37
+ * @param string $status_to Status to.
38
+ * @param WC_Order $order Order.
39
+ */
40
+ public function count_order_for_fs_methods( $order_id, $status_from, $status_to, $order ) {
41
+ if ( self::ORDER_STATUS_COMPLETED === $status_to ) {
42
+ $shipping_methods = $order->get_shipping_methods();
43
+ foreach ( $shipping_methods as $shipping_method ) {
44
+ if ( self::FS_METHOD === $shipping_method->get_method_id() ) {
45
+ if ( '' === $order->get_meta( self::FS_ORDER_COUNTER ) ) {
46
+ $this->count_order( $order );
47
+ }
48
+ }
49
+ }
50
+ }
51
+ }
52
+
53
+ }
vendor/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/rate-notices-creator.php ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WPDesk\FS\Rate;
4
+
5
+ class RateNoticeCreator {
6
+
7
+ const SETTINGS_RATE_NOTICE_VARIANT_ID = 'flexible_shipping_rate_notice_variant_id';
8
+
9
+ /**
10
+ * Create rate variant
11
+ *
12
+ * @param string $notice_id Variant ID.
13
+ *
14
+ * @return RateNoticeInterface;
15
+ */
16
+ public function create( $variant ) {
17
+ switch( $variant ) {
18
+ case FirstRateNotice::SETTINGS_VARIANT_ID: return new FirstRateNotice(); break;
19
+ case SecondRateNotice::SETTINGS_VARIANT_ID: return new SecondRateNotice(); break;
20
+ case ThirdRateNotice::SETTINGS_VARIANT_ID: return new ThirdRateNotice(); break;
21
+ default: return new FirstRateNotice();
22
+ }
23
+ }
24
+ }
vendor/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/second-rate-notice.php ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WPDesk\FS\Rate;
4
+
5
+ class SecondRateNotice extends RateNotice
6
+ {
7
+
8
+ const SETTINGS_VARIANT_ID = 'notice_2';
9
+
10
+ /**
11
+ * Action links
12
+ *
13
+ * @return array
14
+ */
15
+ protected function action_links() {
16
+ $actions[] = sprintf(
17
+ __( '%1$sOk, you deserved it%2$s', 'flexible-shipping' ),
18
+ '<a target="_blank" href="' . esc_url( 'https://wpde.sk/fs-rate-2' ) . '">',
19
+ '</a>'
20
+ );
21
+ $actions[] = sprintf(
22
+ __( '%1$sNope, maybe later%2$s', 'flexible-shipping' ),
23
+ '<a data-type="date" class="fs-close-temporary-notice notice-dismiss-link" data-source="' . self::CLOSE_TEMPORARY_NOTICE . '" href="#">',
24
+ '</a>'
25
+ );
26
+ $actions[] = sprintf(
27
+ __( '%1$sI already did%2$s', 'flexible-shipping' ),
28
+ '<a class="close-rate-notice notice-dismiss-link" data-source="already-did" href="#">',
29
+ '</a>'
30
+ );
31
+
32
+ return $actions;
33
+ }
34
+
35
+ /**
36
+ * Should show message
37
+ *
38
+ * @return bool
39
+ */
40
+ public function should_show_message() {
41
+ $notice_date_dissmis = get_option( WPDesk_Flexible_Shipping_Rate_Notice::SETTINGS_OPTION_RATE_NOTICE_DATE_DISMISS, date( "Y-m-d H:i:s", strtotime( 'NOW + 2 weeks' ) ) );
42
+ $notice_date = strtotime( $notice_date_dissmis );
43
+ $current_date = strtotime( 'NOW' );
44
+ $difference = $current_date - $notice_date;
45
+ $days = (int) floor( $difference / ( 60 * 60 * 24 ) );
46
+ if ( $days > 0 ) {
47
+ return true;
48
+ }
49
+
50
+ return false;
51
+ }
52
+
53
+ /**
54
+ * Get rate message
55
+ *
56
+ * @return string
57
+ */
58
+ protected function get_message() {
59
+ $message = __( 'Awesome, you\'ve been using Flexible Shipping for more than 2 weeks. Could you please do me a BIG favor and give it a 5-star rating on WordPress? ~ Peter', 'flexible-shipping' );
60
+ $message .= '<br/>';
61
+ $message .= implode( ' | ', $this->action_links() );
62
+ return $message;
63
+ }
64
+
65
+ }
vendor/wpdesk/wp-wpdesk-fs-shipment/src/rate-notices/third-rate-notice.php ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WPDesk\FS\Rate;
4
+
5
+ class ThirdRateNotice extends RateNotice
6
+ {
7
+
8
+ const CLOSE_TEMPORARY_NOTICE = 'close-temporary-notice-number';
9
+
10
+ const SETTINGS_VARIANT_ID = 'notice_3';
11
+
12
+ /**
13
+ * Action links
14
+ *
15
+ * @return array
16
+ */
17
+ protected function action_links() {
18
+ $actions[] = sprintf(
19
+ __( '%1$sOk, you deserved it%2$s', 'flexible-shipping' ),
20
+ '<a target="_blank" href="' . esc_url( 'https://wpde.sk/fs-rate-3' ) . '">',
21
+ '</a>'
22
+ );
23
+ $actions[] = sprintf(
24
+ __( '%1$sNope, maybe later%2$s', 'flexible-shipping' ),
25
+ '<a data-type="number" class="fs close-temporary-notice notice-dismiss-link" data-source="' . self::CLOSE_TEMPORARY_NOTICE . '" href="#">',
26
+ '</a>'
27
+ );
28
+ $actions[] = sprintf(
29
+ __( '%1$sI already did%2$s', 'flexible-shipping' ),
30
+ '<a class="close-rate-notice notice-dismiss-link" data-source="already-did" href="#">',
31
+ '</a>'
32
+ );
33
+
34
+ return $actions;
35
+ }
36
+
37
+ /**
38
+ * Should show message
39
+ *
40
+ * @return bool
41
+ */
42
+ public function should_show_message() {
43
+ $total_orders = intval( get_option( Flexible_Shipping_Order_Counter::FS_ORDER_COUNTER, '0' ) );
44
+ if ( $total_orders >= 100 ) {
45
+ return true;
46
+ }
47
+
48
+ return false;
49
+ }
50
+
51
+ /**
52
+ * Get rate message
53
+ *
54
+ * @return string
55
+ */
56
+ protected function get_message() {
57
+ $message = __( 'Awesome, you just crossed the 100 orders on Flexible Shipping method. Could you please do me a BIG favor and give it a 5-star rating on WordPress? ~ Peter', 'flexible-shipping' );
58
+ $message .= '<br/>';
59
+ $message .= implode( ' | ', $this->action_links() );
60
+ return $message;
61
+ }
62
+
63
+ }
{classes → vendor/wpdesk/wp-wpdesk-fs-shipment/src}/shipment/class-shipment.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-fs-shipment/src}/shipment/cpt-shipment.php RENAMED
File without changes
vendor/wpdesk/wp-wpdesk-fs-shipment/src/shipment/functions.php ADDED
@@ -0,0 +1,121 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
4
+
5
+
6
+ function fs_shipment_integration_exists( $integration ) {
7
+ $class_name = apply_filters( 'flexible_shipping_shipment_class', 'WPDesk_Flexible_Shipping_Shipment' . '_' . $integration, $integration );
8
+ if ( class_exists( $class_name ) ) {
9
+ return true;
10
+ }
11
+ return false;
12
+ }
13
+
14
+ /**
15
+ * @param WC_Abstract_Order $order Order.
16
+ * @param array $fs_method Flexible shipping method.
17
+ *
18
+ * @return WPDesk_Flexible_Shipping_Shipment
19
+ */
20
+ function fs_create_shipment( $order, $fs_method ) {
21
+ if ( version_compare( WC_VERSION, '2.7', '<' ) ) {
22
+ $order_id = $order->id;
23
+ }
24
+ else {
25
+ $order_id = $order->get_id();
26
+ }
27
+ $integration = $fs_method['method_integration'];
28
+ $post_title = sprintf( __( 'Shipment for order %s, %s', 'flexible-shipping' ), $order_id, $integration );
29
+ $post_title = apply_filters( 'flexible_shipping_shipment_post_title_'. $integration, $post_title, $fs_method );
30
+ $shipment_post = array(
31
+ 'post_title' => $post_title,
32
+ 'post_type' => 'shipment',
33
+ 'post_status' => 'fs-new',
34
+ 'post_parent' => $order_id
35
+ );
36
+ $shipment_id = wp_insert_post( $shipment_post );
37
+ update_post_meta( $shipment_id, '_integration', $integration );
38
+ return fs_get_shipment( $shipment_id, $order );
39
+ }
40
+
41
+ /**
42
+ * @param $order_id
43
+ * @param string|null $integration
44
+ * @return WPDesk_Flexible_Shipping_Shipment[]|WPDesk_Flexible_Shipping_Shipment_Interface[]
45
+ */
46
+ function fs_get_order_shipments( $order_id, $integration = null ) {
47
+ $shipments_posts_query = array(
48
+ 'posts_per_page' => -1,
49
+ 'post_parent' => $order_id,
50
+ 'post_type' => 'shipment',
51
+ 'post_status' => 'any'
52
+ );
53
+ if ( !empty( $integration ) ) {
54
+ $shipments_posts_query['meta_key'] = '_integration';
55
+ $shipments_posts_query['meta_value'] = $integration;
56
+ }
57
+ $shipments_posts = get_posts( $shipments_posts_query );
58
+ $shipments = array();
59
+ if ( count( $shipments_posts ) ) {
60
+ $order = wc_get_order($order_id);
61
+ foreach ($shipments_posts as $shipment_post) {
62
+ $integration = get_post_meta($shipment_post->ID, '_integration', true);
63
+ if ( fs_shipment_integration_exists( $integration ) ) {
64
+ $shipments[] = fs_get_shipment($shipment_post->ID, $order);
65
+ }
66
+ }
67
+ }
68
+ return $shipments;
69
+ }
70
+
71
+ /**
72
+ * Get shipment.
73
+ *
74
+ * @param int $shipment_id Shipment id.
75
+ * @param WC_Order|null $order Order.
76
+ * @return WPDesk_Flexible_Shipping_Shipment
77
+ */
78
+ function fs_get_shipment( $shipment_id, $order = null ) {
79
+ $integration = get_post_meta( $shipment_id, '_integration', true );
80
+ $class_name = 'WPDesk_Flexible_Shipping_Shipment';
81
+ $integration_class_name = 'WPDesk_Flexible_Shipping_Shipment' . '_' . $integration;
82
+ $integration_class_name = apply_filters( 'flexible_shipping_shipment_class', $integration_class_name, $integration );
83
+ if ( class_exists( $integration_class_name ) ) {
84
+ $class_name = $integration_class_name;
85
+ }
86
+ return new $class_name( $shipment_id, $order );
87
+ }
88
+
89
+ /**
90
+ * @param WC_Abstract_Order $order Order.
91
+ *
92
+ * @return float
93
+ */
94
+ function fs_calculate_order_weight( $order ) {
95
+ $weight = 0;
96
+ if ( sizeof( $order->get_items() ) > 0 ) {
97
+ foreach( $order->get_items() as $item ) {
98
+ if ( $item['product_id'] > 0 ) {
99
+ if ( version_compare( WC_VERSION, '2.7', '<' ) ) {
100
+ $product = $order->get_product_from_item( $item );
101
+ }
102
+ else {
103
+ $product = $item->get_product();
104
+ }
105
+ $product_weight = $product->get_weight();
106
+ if ( ! $product->is_virtual() && is_numeric( $product_weight ) ) {
107
+ $weight += floatval( $product->get_weight() ) * floatval( $item['qty'] );
108
+ }
109
+ }
110
+ }
111
+ }
112
+ return $weight;
113
+ }
114
+
115
+ function fs_calculate_package_weight( $package ) {
116
+ $weight = 0;
117
+ foreach( $package['contents'] as $item ) {
118
+ $weight += floatval( $item['data']->get_weight() ) * floatval( $item['quantity'] );
119
+ }
120
+ return $weight;
121
+ }
{classes → vendor/wpdesk/wp-wpdesk-fs-shipment/src}/shipment/interface-shipment.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-fs-shipment/src}/shipment/views/order-metabox.php RENAMED
File without changes
{classes → vendor/wpdesk/wp-wpdesk-fs-shipment/src}/views/html-order-add_shipping-metabox.php RENAMED
File without changes
vendor/wpdesk/wp-wpdesk-tracker/CHANGELOG.md ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## [1.0.2] - 2019-04-23
2
+ ### Fixed
3
+ - Should enable tracker function
4
+ - Tests
5
+
6
+ ## [1.0.1] - 2019-04-17
7
+ ### Changed
8
+ - Deactivate buttons switched
9
+
10
+ ## [1.0.0] - 2019-04-17
11
+ ### Added
12
+ - First version
vendor/wpdesk/wp-wpdesk-tracker/LICENSE.md ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ MIT License
2
+
3
+ Copyright (c) 2018 wpdesk
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
vendor/wpdesk/wp-wpdesk-tracker/composer.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "wpdesk/wp-wpdesk-tracker",
3
+ "authors": [
4
+ {
5
+ "name": "Krzysiek",
6
+ "email": "krzysiek@wpdesk.pl"
7
+ }
8
+ ],
9
+ "prefer-stable": true,
10
+ "minimum-stability": "stable",
11
+ "require": {
12
+ "php": ">=5.5"
13
+ },
14
+ "require-dev": {
15
+ "phpunit/phpunit": "<7",
16
+ "wp-coding-standards/wpcs": "^0.14.1",
17
+ "squizlabs/php_codesniffer": "^3.0.2",
18
+ "mockery/mockery": "*",
19
+ "10up/wp_mock": "*",
20
+ "wimg/php-compatibility": "^8"
21
+ },
22
+ "autoload": {
23
+ "classmap": ["src/"]
24
+ },
25
+ "autoload-dev": {
26
+ "classmap": ["src", "tests/"]
27
+ },
28
+ "scripts": {
29
+ "test": "echo composer is alive",
30
+ "phpcs": "phpcs",
31
+ "phpunit-unit": "phpunit --configuration phpunit-unit.xml --coverage-text --colors=never",
32
+ "phpunit-unit-fast": "phpunit --configuration phpunit-unit.xml --no-coverage",
33
+ "phpunit-integration": "phpunit --configuration phpunit-integration.xml --coverage-text --colors=never",
34
+ "phpunit-integration-fast": "phpunit --configuration phpunit-integration.xml --no-coverage",
35
+
36
+ "docs": "apigen generate"
37
+ }
38
+ }
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/assets/css/tracker.css RENAMED
File without changes
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/assets/css/tracker.min.css RENAMED
File without changes
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/assets/images/logo.png RENAMED
File without changes
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/assets/images/logo@2x.png RENAMED
File without changes
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/class-wpdesk-tracker-factory.php RENAMED
File without changes
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/class-wpdesk-tracker.php RENAMED
@@ -153,8 +153,15 @@ if ( ! class_exists( 'WPDesk_Tracker' ) ) {
153
  $wpdesk_translation = load_plugin_textdomain( 'wpdesk-tracker', false, $this->plugin_basename . '/inc/wpdesk-tracker/lang' );
154
  }
155
 
 
 
 
 
 
 
 
156
  public function admin_footer() {
157
- if ( ! is_network_admin() && should_enable_wpdesk_tracker() && ! apply_filters( 'wpdesk_tracker_do_not_ask', false ) ) {
158
  $plugins = array(
159
  'wpdesk-helper/wpdesk-helper.php' => 'wpdesk-helper/wpdesk-helper.php'
160
  );
@@ -276,7 +283,7 @@ if ( ! class_exists( 'WPDesk_Tracker' ) ) {
276
  }
277
 
278
  public function admin_notices() {
279
- if ( ! should_enable_wpdesk_tracker() ) {
280
  return;
281
  }
282
  $screen = get_current_screen();
@@ -413,7 +420,7 @@ if ( ! class_exists( 'WPDesk_Tracker' ) ) {
413
  if ( empty( $click_action ) && $options['wpdesk_tracker_agree'] == '0' ) {
414
  return;
415
  }
416
- if ( ! should_enable_wpdesk_tracker() ) {
417
  return;
418
  }
419
  // Dont trigger this on AJAX Requests
153
  $wpdesk_translation = load_plugin_textdomain( 'wpdesk-tracker', false, $this->plugin_basename . '/inc/wpdesk-tracker/lang' );
154
  }
155
 
156
+ /**
157
+ * @return bool
158
+ */
159
+ private function should_enable_wpdesk_tracker() {
160
+ return apply_filters( 'wpdesk_tracker_enabled', true );
161
+ }
162
+
163
  public function admin_footer() {
164
+ if ( ! is_network_admin() && $this->should_enable_wpdesk_tracker() && ! apply_filters( 'wpdesk_tracker_do_not_ask', false ) ) {
165
  $plugins = array(
166
  'wpdesk-helper/wpdesk-helper.php' => 'wpdesk-helper/wpdesk-helper.php'
167
  );
283
  }
284
 
285
  public function admin_notices() {
286
+ if ( ! $this->should_enable_wpdesk_tracker() ) {
287
  return;
288
  }
289
  $screen = get_current_screen();
420
  if ( empty( $click_action ) && $options['wpdesk_tracker_agree'] == '0' ) {
421
  return;
422
  }
423
+ if ( ! $this->should_enable_wpdesk_tracker() ) {
424
  return;
425
  }
426
  // Dont trigger this on AJAX Requests
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-gateways.php RENAMED
File without changes
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-identification-gdpr.php RENAMED
File without changes
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-identification.php RENAMED
File without changes
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-jetpack.php RENAMED
File without changes
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-license-emails.php RENAMED
File without changes
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-orders-country.php RENAMED
File without changes
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-orders-month.php RENAMED
File without changes
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-orders.php RENAMED
File without changes
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-plugins.php RENAMED
File without changes
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-products-variations.php RENAMED
File without changes
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-products.php RENAMED
File without changes
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-server.php RENAMED
File without changes
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-settings.php RENAMED
File without changes
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-shipping-classes.php RENAMED
File without changes
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-shipping-methods-zones.php RENAMED
File without changes
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-shipping-methods.php RENAMED
File without changes
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-templates.php RENAMED
File without changes
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-theme.php RENAMED
File without changes
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-user-agent.php RENAMED
File without changes
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-users.php RENAMED
File without changes
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider-wordpress.php RENAMED
File without changes
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/data_provider/class-wpdesk-tracker-data-provider.php RENAMED
File without changes
vendor/wpdesk/wp-wpdesk-tracker/src/lang/wpdesk-tracker-pl_PL.mo ADDED
Binary file
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/lang/wpdesk-tracker-pl_PL.po RENAMED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Desk Tracker\n"
4
- "POT-Creation-Date: 2018-12-04 22:15+0100\n"
5
- "PO-Revision-Date: 2018-12-04 22:27+0100\n"
6
  "Last-Translator: Piotr Jabłonowski <piotr.jablonowski@wpdesk.net>\n"
7
  "Language-Team: \n"
8
  "Language: pl_PL\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.2\n"
13
  "X-Poedit-Basepath: ../..\n"
14
  "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
15
  "|| n%100>=20) ? 1 : 2);\n"
@@ -20,13 +20,6 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPathExcluded-0: wpdesk-logger.php\n"
22
 
23
- #: functions.php:67
24
- #, php-format
25
- msgid "Redirecting. If page not redirects click %s here %s."
26
- msgstr ""
27
- "Przekierowywanie. Jeśli strona nie przekierowuje cię automatycznie, kliknij "
28
- "%s tu %s."
29
-
30
  #: wpdesk-tracker/views/tracker-connect.php:7
31
  #: wpdesk-tracker/views/tracker-notice.php:5
32
  #, php-format
@@ -40,12 +33,12 @@ msgid ""
40
  "okay! All plugins will work just fine."
41
  msgstr ""
42
  "Proszę pomóż nam udoskonalić nasze wtyczki! Jeśli się zgodzisz, będziemy "
43
- "zbierać niewrażliwe i anonimowe dane użytkowania. Jeśli pominiesz ten krok, "
44
- "w porządku! Wszystkie wtyczki będą działać."
45
 
46
  #: wpdesk-tracker/views/tracker-connect.php:13
47
  msgid "Allow & Continue &rarr;"
48
- msgstr "Pozwól i kontynuuj &rarr;"
49
 
50
  #: wpdesk-tracker/views/tracker-connect.php:14
51
  msgid "Skip"
@@ -94,7 +87,7 @@ msgid ""
94
  " If you have a moment, please let us know why you are deactivating plugin "
95
  "(anonymous feedback):"
96
  msgstr ""
97
- " Jeśli masz chwilę, prosimy daj nam znać dlaczego dezaktywowałeś wtyczkę "
98
  "(anonimowa opinia):"
99
 
100
  #: wpdesk-tracker/views/tracker-deactivate.php:16
@@ -123,7 +116,7 @@ msgstr "Nie potrzebuję już wtyczki"
123
 
124
  #: wpdesk-tracker/views/tracker-deactivate.php:59
125
  msgid "It's a temporary deactivation. I'm just debugging an issue."
126
- msgstr "Jest to tymczasowa dezaktywacja, debaguję problem."
127
 
128
  #: wpdesk-tracker/views/tracker-deactivate.php:67
129
  msgid "Other"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Desk Tracker\n"
4
+ "POT-Creation-Date: 2018-06-20 14:55+0200\n"
5
+ "PO-Revision-Date: 2018-06-20 14:55+0200\n"
6
  "Last-Translator: Piotr Jabłonowski <piotr.jablonowski@wpdesk.net>\n"
7
  "Language-Team: \n"
8
  "Language: pl_PL\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.0.8\n"
13
  "X-Poedit-Basepath: ../..\n"
14
  "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
15
  "|| n%100>=20) ? 1 : 2);\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPathExcluded-0: wpdesk-logger.php\n"
22
 
 
 
 
 
 
 
 
23
  #: wpdesk-tracker/views/tracker-connect.php:7
24
  #: wpdesk-tracker/views/tracker-notice.php:5
25
  #, php-format
33
  "okay! All plugins will work just fine."
34
  msgstr ""
35
  "Proszę pomóż nam udoskonalić nasze wtyczki! Jeśli się zgodzisz, będziemy "
36
+ "zbierać niewrażliwe dane użytkowania anonimowo. Jeśli pominiesz ten krok, w "
37
+ "porządku! Wszystkie wtyczki będą działać."
38
 
39
  #: wpdesk-tracker/views/tracker-connect.php:13
40
  msgid "Allow & Continue &rarr;"
41
+ msgstr "Pozwól i kontunuuj &rarr;"
42
 
43
  #: wpdesk-tracker/views/tracker-connect.php:14
44
  msgid "Skip"
87
  " If you have a moment, please let us know why you are deactivating plugin "
88
  "(anonymous feedback):"
89
  msgstr ""
90
+ "Jeśli masz chwilę, prosimy daj nam znać dlaczego dezaktywowałeś wtyczkę "
91
  "(anonimowa opinia):"
92
 
93
  #: wpdesk-tracker/views/tracker-deactivate.php:16
116
 
117
  #: wpdesk-tracker/views/tracker-deactivate.php:59
118
  msgid "It's a temporary deactivation. I'm just debugging an issue."
119
+ msgstr "Jest to tymczasowa dezaktywacja, debaguję problem"
120
 
121
  #: wpdesk-tracker/views/tracker-deactivate.php:67
122
  msgid "Other"
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/sender/Exception/class-wpdesk-tracker-sender-exception-wperror.php RENAMED
File without changes
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/sender/class-wpdesk-tracker-sender-logged.php RENAMED
File without changes
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/sender/class-wpdesk-tracker-sender-wordpress-to-wpdesk.php RENAMED
File without changes
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/sender/class-wpdesk-tracker-sender.php RENAMED
File without changes
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/views/tracker-connect.php RENAMED
File without changes
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/views/tracker-deactivate.php RENAMED
@@ -74,8 +74,8 @@
74
  </div>
75
  </div>
76
  <div class="footer">
77
- <a href="#" class="button button-secondary button-deactivate allow-deactivate"><?php _e( 'Skip &amp; Deactivate', 'wpdesk-tracker' ); ?></a>
78
- <a href="#" class="button button-primary button-close"><?php _e( 'Cancel', 'wpdesk-tracker' ); ?></a>
79
  </div>
80
  </div>
81
  <script type="text/javascript">
74
  </div>
75
  </div>
76
  <div class="footer">
77
+ <a href="#" class="button button-secondary button-close"><?php _e( 'Cancel', 'wpdesk-tracker' ); ?></a>
78
+ <a href="#" class="button button-primary button-deactivate allow-deactivate"><?php _e( 'Skip &amp; Deactivate', 'wpdesk-tracker' ); ?></a>
79
  </div>
80
  </div>
81
  <script type="text/javascript">
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/views/tracker-notice.php RENAMED
@@ -14,7 +14,7 @@
14
  <script type="text/javascript">
15
  jQuery(document).on('click', '#wpdesk_tracker_notice .notice-dismiss',function(e){
16
  e.preventDefault();
17
- console.log('dismiss in plugin');
18
  jQuery.ajax( '<?php echo admin_url('admin-ajax.php'); ?>',
19
  {
20
  type: 'POST',
@@ -27,7 +27,7 @@
27
  })
28
  jQuery(document).on('click', '#wpdesk_tracker_allow_button_notice',function(e){
29
  e.preventDefault();
30
- console.log('allow in plugin');
31
  jQuery.ajax( '<?php echo admin_url('admin-ajax.php'); ?>',
32
  {
33
  type: 'POST',
14
  <script type="text/javascript">
15
  jQuery(document).on('click', '#wpdesk_tracker_notice .notice-dismiss',function(e){
16
  e.preventDefault();
17
+ console.log('dismiss');
18
  jQuery.ajax( '<?php echo admin_url('admin-ajax.php'); ?>',
19
  {
20
  type: 'POST',
27
  })
28
  jQuery(document).on('click', '#wpdesk_tracker_allow_button_notice',function(e){
29
  e.preventDefault();
30
+ console.log('allow');
31
  jQuery.ajax( '<?php echo admin_url('admin-ajax.php'); ?>',
32
  {
33
  type: 'POST',
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/views/tracker-opt-out-notice.php RENAMED
File without changes
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/views/tracker-plugins-footer.php RENAMED
File without changes
{inc/wpdesk-tracker → vendor/wpdesk/wp-wpdesk-tracker/src}/views/tracker-styles.php RENAMED
File without changes