|
|
@@ -3,7 +3,7 @@
|
|
|
* Plugin Name: QDR - Studiou WC Free Photo Product
|
|
|
* Plugin URI: https://www.quadarax.com/plugins/studiou-wc-free-photo-product
|
|
|
* Description: Allows publishing special WooCommerce products with variants and custom raw image upload for photo printing
|
|
|
- * Version: 1.1.7
|
|
|
+ * Version: 1.2.0
|
|
|
* Requires at least: 6.9.4
|
|
|
* Requires PHP: 8.2
|
|
|
* Author: Dalibor Votruba
|
|
|
@@ -21,7 +21,7 @@ if (!defined('WPINC')) {
|
|
|
die;
|
|
|
}
|
|
|
|
|
|
-if (!defined('STUDIOU_WCFPP_VERSION')) define('STUDIOU_WCFPP_VERSION', '1.1.7');
|
|
|
+if (!defined('STUDIOU_WCFPP_VERSION')) define('STUDIOU_WCFPP_VERSION', '1.2.0');
|
|
|
if (!defined('STUDIOU_WCFPP_PLUGIN_DIR')) define('STUDIOU_WCFPP_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
|
|
if (!defined('STUDIOU_WCFPP_PLUGIN_URL')) define('STUDIOU_WCFPP_PLUGIN_URL', plugin_dir_url(__FILE__));
|
|
|
if (!defined('STUDIOU_WCFPP_PLUGIN_BASENAME')) define('STUDIOU_WCFPP_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
|
|
@@ -136,6 +136,8 @@ class Studiou_WC_Free_Photo_Product {
|
|
|
'i18n' => array(
|
|
|
'confirmDelete' => __('Are you sure you want to delete the selected files?', 'studiou-wc-free-photo-product'),
|
|
|
'confirmDeleteSingle' => __('Are you sure you want to delete this file?', 'studiou-wc-free-photo-product'),
|
|
|
+ 'confirmDownloadZip' => __('Download selected files as ZIP archive?', 'studiou-wc-free-photo-product'),
|
|
|
+ 'confirmStatusChange' => __('Are you sure you want to change the status of the selected files?', 'studiou-wc-free-photo-product'),
|
|
|
'noFilesSelected' => __('No files selected.', 'studiou-wc-free-photo-product'),
|
|
|
'statusUpdated' => __('Status updated.', 'studiou-wc-free-photo-product'),
|
|
|
'error' => __('An error occurred.', 'studiou-wc-free-photo-product'),
|
|
|
@@ -166,6 +168,8 @@ class Studiou_WC_Free_Photo_Product {
|
|
|
'i18n' => array(
|
|
|
'confirmDelete' => __('Are you sure you want to delete the selected files?', 'studiou-wc-free-photo-product'),
|
|
|
'confirmDeleteSingle' => __('Are you sure you want to delete this file?', 'studiou-wc-free-photo-product'),
|
|
|
+ 'confirmDownloadZip' => __('Download selected files as ZIP archive?', 'studiou-wc-free-photo-product'),
|
|
|
+ 'confirmStatusChange' => __('Are you sure you want to change the status of the selected files?', 'studiou-wc-free-photo-product'),
|
|
|
'noFilesSelected' => __('No files selected.', 'studiou-wc-free-photo-product'),
|
|
|
'statusUpdated' => __('Status updated.', 'studiou-wc-free-photo-product'),
|
|
|
'error' => __('An error occurred.', 'studiou-wc-free-photo-product'),
|