Version Description
- Bugfix: Coupon import without status.
- Enhancement: Performance and UI improvements, text corrections.
Download this release
Release Info
Developer | webtoffee |
Plugin | Order Export & Order Import for WooCommerce |
Version | 2.2.0 |
Comparing to | |
See all releases |
Code changes from version 2.1.9 to 2.2.0
- admin/class-wt-import-export-for-woo-admin.php +6 -0
- admin/js/wt-import-export-for-woo-admin.js +1 -1
- admin/modules/coupon/import/import.php +16 -17
- admin/modules/history/history.php +2 -2
- admin/modules/history/views/_log_list.php +1 -1
- admin/modules/import/import.php +6 -8
- admin/modules/import/views/_import_mapping_page.php +4 -2
- admin/modules/order/import/import.php +1 -0
- admin/partials/_form_field_generator.php +1 -1
- includes/class-wt-import-export-for-woo-activator.php +0 -52
- includes/class-wt-import-export-for-woo.php +1 -1
- languages/order-import-export-for-woocommerce.pot +2172 -0
- languages/wt-import-export-for-woo.pot +0 -0
- order-import-export-for-woocommerce.php +6 -3
- readme.txt +8 -4
admin/class-wt-import-export-for-woo-admin.php
CHANGED
@@ -267,6 +267,12 @@ class Wt_Import_Export_For_Woo_Admin_Basic {
|
|
267 |
$new_advanced_settings[$field_name]=Wt_Iew_Sh::sanitize_data($_POST[$field_name], $validation_key, $validation_rule);
|
268 |
}
|
269 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
270 |
Wt_Import_Export_For_Woo_Basic_Common_Helper::set_advanced_settings($new_advanced_settings);
|
271 |
$out['status']=true;
|
272 |
$out['msg']=__('Settings Updated');
|
267 |
$new_advanced_settings[$field_name]=Wt_Iew_Sh::sanitize_data($_POST[$field_name], $validation_key, $validation_rule);
|
268 |
}
|
269 |
}
|
270 |
+
|
271 |
+
$checkbox_items = array( 'wt_iew_enable_import_log' );
|
272 |
+
foreach ( $checkbox_items as $checkbox_item ){
|
273 |
+
$new_advanced_settings[$checkbox_item] = isset( $new_advanced_settings[$checkbox_item] ) ? $new_advanced_settings[$checkbox_item] : 0;
|
274 |
+
}
|
275 |
+
|
276 |
Wt_Import_Export_For_Woo_Basic_Common_Helper::set_advanced_settings($new_advanced_settings);
|
277 |
$out['status']=true;
|
278 |
$out['msg']=__('Settings Updated');
|
admin/js/wt-import-export-for-woo-admin.js
CHANGED
@@ -557,7 +557,7 @@ var wt_iew_popover=
|
|
557 |
|
558 |
wt_iew_popover.set_active_row(cr_elm);
|
559 |
pp_elm.css({'display':'block','opacity':0, 'top':cr_elm_pos_t,'left':cr_elm_pos_l}).stop(true,true).animate({'left':cr_elm_pos_l+20,'opacity':1}, 500, function(){
|
560 |
-
jQuery('.
|
561 |
});
|
562 |
|
563 |
jQuery('[name="wt_iew_popover_do_action"]').data('click-elm', cr_elm);
|
557 |
|
558 |
wt_iew_popover.set_active_row(cr_elm);
|
559 |
pp_elm.css({'display':'block','opacity':0, 'top':cr_elm_pos_t,'left':cr_elm_pos_l}).stop(true,true).animate({'left':cr_elm_pos_l+20,'opacity':1}, 500, function(){
|
560 |
+
jQuery('.wt_iew_mapping_field_editor_column_search').focus();
|
561 |
});
|
562 |
|
563 |
jQuery('[name="wt_iew_popover_do_action"]').data('click-elm', cr_elm);
|
admin/modules/coupon/import/import.php
CHANGED
@@ -785,6 +785,7 @@ class Wt_Import_Export_For_Woo_Basic_Coupon_Import {
|
|
785 |
// 'id' => 0,
|
786 |
'code' => '',
|
787 |
'amount' => 0,
|
|
|
788 |
'date_created' => null,
|
789 |
'date_modified' => null,
|
790 |
'date_expires' => null,
|
@@ -816,15 +817,13 @@ class Wt_Import_Export_For_Woo_Basic_Coupon_Import {
|
|
816 |
$data = apply_filters('wt_woocommerce_coupon_import_process_item', $data);
|
817 |
|
818 |
$post_id = $data['id'];
|
819 |
-
$
|
820 |
-
|
821 |
-
// $object = $this->get_object($data);
|
822 |
|
823 |
-
if (is_wp_error($
|
824 |
-
return $
|
825 |
}
|
826 |
|
827 |
-
Wt_Import_Export_For_Woo_Basic_Logwriter::write_log($this->parent_module->module_base, 'import', "Found coupon object. ID:".$
|
828 |
|
829 |
$boolean_keys = apply_filters('wt_ier_coupon_boolean_keys', array('exclude_sale_items', 'individual_use', 'free_shipping'));
|
830 |
|
@@ -832,8 +831,8 @@ class Wt_Import_Export_For_Woo_Basic_Coupon_Import {
|
|
832 |
|
833 |
if(in_array($key, $boolean_keys)){
|
834 |
$fn ='set_'.$key;
|
835 |
-
if(method_exists($
|
836 |
-
$
|
837 |
// unset($data[$key]);
|
838 |
}
|
839 |
continue;
|
@@ -841,14 +840,14 @@ class Wt_Import_Export_For_Woo_Basic_Coupon_Import {
|
|
841 |
|
842 |
if(!empty($value)){
|
843 |
$fn ='set_'.$key;
|
844 |
-
if(method_exists($
|
845 |
-
$
|
846 |
// unset($data[$key]);
|
847 |
}
|
848 |
}
|
849 |
}
|
850 |
|
851 |
-
$this->set_meta_data($
|
852 |
|
853 |
$update_post = array(
|
854 |
'ID' => $post_id,
|
@@ -861,14 +860,14 @@ class Wt_Import_Export_For_Woo_Basic_Coupon_Import {
|
|
861 |
if($this->delete_existing){
|
862 |
update_post_meta($post_id, '_wt_delete_existing', 1);
|
863 |
}
|
864 |
-
|
865 |
-
$
|
866 |
-
$
|
867 |
-
|
868 |
-
do_action('wt_woocommerce_import_inserted_coupon_object', $
|
869 |
|
870 |
$result = array(
|
871 |
-
'id' => $
|
872 |
'updated' => $this->merge,
|
873 |
);
|
874 |
return $result;
|
785 |
// 'id' => 0,
|
786 |
'code' => '',
|
787 |
'amount' => 0,
|
788 |
+
'status' => 'draft',
|
789 |
'date_created' => null,
|
790 |
'date_modified' => null,
|
791 |
'date_expires' => null,
|
817 |
$data = apply_filters('wt_woocommerce_coupon_import_process_item', $data);
|
818 |
|
819 |
$post_id = $data['id'];
|
820 |
+
$coupon_object = new WC_Coupon($post_id);
|
|
|
|
|
821 |
|
822 |
+
if (is_wp_error($coupon_object)) {
|
823 |
+
return $coupon_object;
|
824 |
}
|
825 |
|
826 |
+
Wt_Import_Export_For_Woo_Basic_Logwriter::write_log($this->parent_module->module_base, 'import', "Found coupon object. ID:".$coupon_object->get_id());
|
827 |
|
828 |
$boolean_keys = apply_filters('wt_ier_coupon_boolean_keys', array('exclude_sale_items', 'individual_use', 'free_shipping'));
|
829 |
|
831 |
|
832 |
if(in_array($key, $boolean_keys)){
|
833 |
$fn ='set_'.$key;
|
834 |
+
if(method_exists($coupon_object,'set_'.$key)){
|
835 |
+
$coupon_object->$fn($value);
|
836 |
// unset($data[$key]);
|
837 |
}
|
838 |
continue;
|
840 |
|
841 |
if(!empty($value)){
|
842 |
$fn ='set_'.$key;
|
843 |
+
if(method_exists($coupon_object,'set_'.$key)){
|
844 |
+
$coupon_object->$fn($value);
|
845 |
// unset($data[$key]);
|
846 |
}
|
847 |
}
|
848 |
}
|
849 |
|
850 |
+
$this->set_meta_data($coupon_object, $data);
|
851 |
|
852 |
$update_post = array(
|
853 |
'ID' => $post_id,
|
860 |
if($this->delete_existing){
|
861 |
update_post_meta($post_id, '_wt_delete_existing', 1);
|
862 |
}
|
863 |
+
|
864 |
+
$coupon_object = apply_filters('wt_woocommerce_import_pre_insert_coupon_object', $coupon_object, $data);
|
865 |
+
$coupon_object->save();
|
866 |
+
|
867 |
+
do_action('wt_woocommerce_import_inserted_coupon_object', $coupon_object, $data);
|
868 |
|
869 |
$result = array(
|
870 |
+
'id' => $coupon_object->get_id(),
|
871 |
'updated' => $this->merge,
|
872 |
);
|
873 |
return $result;
|
admin/modules/history/history.php
CHANGED
@@ -77,8 +77,8 @@ class Wt_Import_Export_For_Woo_Basic_History
|
|
77 |
$menus[$this->module_base.'_log']=array(
|
78 |
'submenu',
|
79 |
WT_IEW_PLUGIN_ID_BASIC,
|
80 |
-
__('Logs'),
|
81 |
-
__('Logs'),
|
82 |
apply_filters('wt_import_export_allowed_capability', 'import'),
|
83 |
$this->module_id.'_log',
|
84 |
array($this, 'admin_log_page')
|
77 |
$menus[$this->module_base.'_log']=array(
|
78 |
'submenu',
|
79 |
WT_IEW_PLUGIN_ID_BASIC,
|
80 |
+
__('Import Logs'),
|
81 |
+
__('Import Logs'),
|
82 |
apply_filters('wt_import_export_allowed_capability', 'import'),
|
83 |
$this->module_id.'_log',
|
84 |
array($this, 'admin_log_page')
|
admin/modules/history/views/_log_list.php
CHANGED
@@ -13,7 +13,7 @@ if(isset($_GET['wt_iew_delete_log']))
|
|
13 |
}
|
14 |
?>
|
15 |
<div class="wt_iew_history_page">
|
16 |
-
<h2 class="wp-heading-inline"><?php _e('Logs');?></h2>
|
17 |
<p>
|
18 |
<?php _e('Lists developer logs mostly required for debugging purposes. Options to view detailed logs are available along with delete and download(that can be shared with the support team in case of issues).');?>
|
19 |
</p>
|
13 |
}
|
14 |
?>
|
15 |
<div class="wt_iew_history_page">
|
16 |
+
<h2 class="wp-heading-inline"><?php _e('Import Logs');?></h2>
|
17 |
<p>
|
18 |
<?php _e('Lists developer logs mostly required for debugging purposes. Options to view detailed logs are available along with delete and download(that can be shared with the support team in case of issues).');?>
|
19 |
</p>
|
admin/modules/import/import.php
CHANGED
@@ -117,17 +117,15 @@ class Wt_Import_Export_For_Woo_Basic_Import
|
|
117 |
);
|
118 |
$fields['enable_import_log'] = array(
|
119 |
'label' => __("Generate Import log"),
|
120 |
-
'type' => '
|
121 |
-
'
|
122 |
-
1 => __('Yes'),
|
123 |
-
0 => __('No')
|
124 |
-
),
|
125 |
'value' => 1,
|
126 |
'field_name' => 'enable_import_log',
|
127 |
'field_group' => 'advanced_field',
|
128 |
-
'help_text' => __("You can view the logs in the <a href=" . admin_url('admin.php?page=wt_import_export_for_woo_basic_history_log') . "><b>Logs</b></a> section or in History >View logs."),
|
129 |
'validation_rule' => array('type' => 'absint'),
|
130 |
-
);
|
|
|
131 |
$import_methods=array_map(function($vl){ return $vl['title']; }, $this->import_methods);
|
132 |
$fields['default_import_method']=array(
|
133 |
'label'=>__("Default Import method"),
|
@@ -240,7 +238,7 @@ class Wt_Import_Export_For_Woo_Basic_Import
|
|
240 |
'tr_class'=>$file_from_field_arr['tr_class'], //add tr class from parent.Because we need to toggle the tr when parent tr toggles.
|
241 |
'field_name'=>'delimiter_preset',
|
242 |
'sele_vals'=>Wt_Iew_IE_Basic_Helper::_get_csv_delimiters(),
|
243 |
-
'help_text'=>__('
|
244 |
'validation_rule'=>array('type'=>'skip'),
|
245 |
'after_form_field'=>'<input type="text" class="wt_iew_custom_delimiter" name="wt_iew_delimiter" value="," />',
|
246 |
);
|
117 |
);
|
118 |
$fields['enable_import_log'] = array(
|
119 |
'label' => __("Generate Import log"),
|
120 |
+
'type' => 'checkbox',
|
121 |
+
'checkbox_fields' => array( 1 => __( 'Enable', 'wt-import-export-for-woo' ) ),
|
|
|
|
|
|
|
122 |
'value' => 1,
|
123 |
'field_name' => 'enable_import_log',
|
124 |
'field_group' => 'advanced_field',
|
125 |
+
'help_text' => __("You can view the logs in the <a href=" . admin_url('admin.php?page=wt_import_export_for_woo_basic_history_log') . "><b>Import Logs</b></a> section or in History > View logs."),
|
126 |
'validation_rule' => array('type' => 'absint'),
|
127 |
+
);
|
128 |
+
|
129 |
$import_methods=array_map(function($vl){ return $vl['title']; }, $this->import_methods);
|
130 |
$fields['default_import_method']=array(
|
131 |
'label'=>__("Default Import method"),
|
238 |
'tr_class'=>$file_from_field_arr['tr_class'], //add tr class from parent.Because we need to toggle the tr when parent tr toggles.
|
239 |
'field_name'=>'delimiter_preset',
|
240 |
'sele_vals'=>Wt_Iew_IE_Basic_Helper::_get_csv_delimiters(),
|
241 |
+
'help_text'=>__('The character used to separate columns in the CSV file. Takes comma (,) by default.'),
|
242 |
'validation_rule'=>array('type'=>'skip'),
|
243 |
'after_form_field'=>'<input type="text" class="wt_iew_custom_delimiter" name="wt_iew_delimiter" value="," />',
|
244 |
);
|
admin/modules/import/views/_import_mapping_page.php
CHANGED
@@ -67,9 +67,11 @@ if (!defined('ABSPATH')) {
|
|
67 |
<p><?php echo $this->step_description;?></p>
|
68 |
|
69 |
<p class="wt_iew_info_box wt_iew_info">
|
70 |
-
<?php _e('
|
71 |
<br />
|
72 |
-
<?php _e('
|
|
|
|
|
73 |
</p>
|
74 |
|
75 |
<div class="meta_mapping_box">
|
67 |
<p><?php echo $this->step_description;?></p>
|
68 |
|
69 |
<p class="wt_iew_info_box wt_iew_info">
|
70 |
+
-- <?php _e('The first row from your input file is considered as a header for mapping columns and hence will NOT BE imported.');?>
|
71 |
<br />
|
72 |
+
-- <?php _e('Columns are mapped automatically only if a matching header name is found in the input file.');?>
|
73 |
+
<br/>
|
74 |
+
-- <?php _e('In the case of empty fields, you can simply click on the respective field and map the corresponding column from your input file.');?>
|
75 |
</p>
|
76 |
|
77 |
<div class="meta_mapping_box">
|
admin/modules/order/import/import.php
CHANGED
@@ -159,6 +159,7 @@ class Wt_Import_Export_For_Woo_Basic_Order_Import {
|
|
159 |
|
160 |
$this->item_data = array(); // resetting WC default data before parsing new item to avoid merging last parsed item wp_parse_args
|
161 |
|
|
|
162 |
if(isset($mapping_fields['order_id']) && !empty($mapping_fields['order_id'])){
|
163 |
$this->item_data['order_id'] = $this->wt_order_existance_check($mapping_fields['order_id']); // to determine wether merge or import
|
164 |
}
|
159 |
|
160 |
$this->item_data = array(); // resetting WC default data before parsing new item to avoid merging last parsed item wp_parse_args
|
161 |
|
162 |
+
$this->order_id = 0;
|
163 |
if(isset($mapping_fields['order_id']) && !empty($mapping_fields['order_id'])){
|
164 |
$this->item_data['order_id'] = $this->wt_order_existance_check($mapping_fields['order_id']); // to determine wether merge or import
|
165 |
}
|
admin/partials/_form_field_generator.php
CHANGED
@@ -365,7 +365,7 @@ foreach($form_fields as $key=>$value)
|
|
365 |
|
366 |
<div id="<?php echo $dropzone_id;?>" class="wt_iew_dropzone" wt_iew_dropzone_target="#<?php echo $field_id; ?>">
|
367 |
<div class="dz-message">
|
368 |
-
<?php _e('
|
369 |
<?php _e('or'); ?>
|
370 |
<?php _e(' Click and Upload');?>
|
371 |
<br /><br /><div class="wt_iew_dz_file_success"></div> <br />
|
365 |
|
366 |
<div id="<?php echo $dropzone_id;?>" class="wt_iew_dropzone" wt_iew_dropzone_target="#<?php echo $field_id; ?>">
|
367 |
<div class="dz-message">
|
368 |
+
<?php _e('Drag and Drop'); ?>
|
369 |
<?php _e('or'); ?>
|
370 |
<?php _e(' Click and Upload');?>
|
371 |
<br /><br /><div class="wt_iew_dz_file_success"></div> <br />
|
includes/class-wt-import-export-for-woo-activator.php
CHANGED
@@ -103,58 +103,6 @@ class Wt_Import_Export_For_Woo_Basic_Activator_Order {
|
|
103 |
}
|
104 |
//creating table for saving export/import history================
|
105 |
|
106 |
-
//creating table for saving ftp details================
|
107 |
-
$search_query = "SHOW TABLES LIKE %s";
|
108 |
-
$tb='wt_iew_ftp';
|
109 |
-
$like = '%'.$wpdb->prefix.$tb.'%';
|
110 |
-
$table_name = $wpdb->prefix.$tb;
|
111 |
-
if(!$wpdb->get_results($wpdb->prepare($search_query, $like), ARRAY_N))
|
112 |
-
{
|
113 |
-
$sql_settings = "CREATE TABLE IF NOT EXISTS `$table_name` (
|
114 |
-
`id` INT NOT NULL AUTO_INCREMENT,
|
115 |
-
`name` VARCHAR(255) NOT NULL,
|
116 |
-
`server` VARCHAR(255) NOT NULL,
|
117 |
-
`user_name` VARCHAR(255) NOT NULL,
|
118 |
-
`password` VARCHAR(255) NOT NULL,
|
119 |
-
`port` INT NOT NULL DEFAULT '21',
|
120 |
-
`ftps` INT NOT NULL DEFAULT '0',
|
121 |
-
`is_sftp` INT NOT NULL DEFAULT '0',
|
122 |
-
`passive_mode` INT NOT NULL DEFAULT '0',
|
123 |
-
`export_path` VARCHAR(255) NOT NULL,
|
124 |
-
`import_path` VARCHAR(255) NOT NULL,
|
125 |
-
PRIMARY KEY (`id`)
|
126 |
-
) DEFAULT CHARSET=utf8;";
|
127 |
-
dbDelta($sql_settings);
|
128 |
-
}
|
129 |
-
//creating table for saving ftp details================
|
130 |
-
|
131 |
-
|
132 |
-
//creating table for saving cron data================
|
133 |
-
$search_query = "SHOW TABLES LIKE %s";
|
134 |
-
$tb='wt_iew_cron';
|
135 |
-
$like = '%'.$wpdb->prefix.$tb.'%';
|
136 |
-
$table_name = $wpdb->prefix.$tb;
|
137 |
-
if(!$wpdb->get_results($wpdb->prepare($search_query, $like), ARRAY_N))
|
138 |
-
{
|
139 |
-
$sql_settings = "CREATE TABLE IF NOT EXISTS `$table_name` (
|
140 |
-
`id` INT NOT NULL AUTO_INCREMENT,
|
141 |
-
`status` INT NOT NULL DEFAULT '0',
|
142 |
-
`old_status` INT NOT NULL DEFAULT '0',
|
143 |
-
`action_type` VARCHAR(255) NOT NULL,
|
144 |
-
`schedule_type` VARCHAR(50) NOT NULL,
|
145 |
-
`item_type` VARCHAR(255) NOT NULL,
|
146 |
-
`data` LONGTEXT NOT NULL,
|
147 |
-
`start_time` INT NOT NULL,
|
148 |
-
`cron_data` TEXT NOT NULL,
|
149 |
-
`last_run` INT NOT NULL,
|
150 |
-
`next_offset` INT NOT NULL DEFAULT '0',
|
151 |
-
`history_id_list` TEXT NOT NULL,
|
152 |
-
`history_id` INT NOT NULL,
|
153 |
-
PRIMARY KEY (`id`)
|
154 |
-
) DEFAULT CHARSET=utf8;";
|
155 |
-
dbDelta($sql_settings);
|
156 |
-
}
|
157 |
-
//creating table for saving cron data================
|
158 |
}
|
159 |
}
|
160 |
}
|
103 |
}
|
104 |
//creating table for saving export/import history================
|
105 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
106 |
}
|
107 |
}
|
108 |
}
|
includes/class-wt-import-export-for-woo.php
CHANGED
@@ -80,7 +80,7 @@ class Wt_Import_Export_For_Woo_Basic {
|
|
80 |
if ( defined( 'WT_O_IEW_VERSION' ) ) {
|
81 |
$this->version = WT_O_IEW_VERSION;
|
82 |
} else {
|
83 |
-
$this->version = '2.
|
84 |
}
|
85 |
$this->plugin_name = 'wt-import-export-for-woo-basic';
|
86 |
|
80 |
if ( defined( 'WT_O_IEW_VERSION' ) ) {
|
81 |
$this->version = WT_O_IEW_VERSION;
|
82 |
} else {
|
83 |
+
$this->version = '2.2.0';
|
84 |
}
|
85 |
$this->plugin_name = 'wt-import-export-for-woo-basic';
|
86 |
|
languages/order-import-export-for-woocommerce.pot
ADDED
@@ -0,0 +1,2172 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#, fuzzy
|
2 |
+
msgid ""
|
3 |
+
msgstr ""
|
4 |
+
"Project-Id-Version: Order / Coupon / Subscription Export Import Plugin for "
|
5 |
+
"WooCommerce (BASIC)\n"
|
6 |
+
"Report-Msgid-Bugs-To: \n"
|
7 |
+
"POT-Creation-Date: 2022-02-17 17:04+0530\n"
|
8 |
+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
9 |
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
10 |
+
"Language-Team: \n"
|
11 |
+
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
12 |
+
"MIME-Version: 1.0\n"
|
13 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
+
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"X-Generator: Poedit 3.0\n"
|
16 |
+
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && "
|
17 |
+
"n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
18 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
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-Loco-Version: 2.5.0; wp-5.6.1\n"
|
22 |
+
"X-Domain: order-import-export-for-woocommerce\n"
|
23 |
+
"X-Poedit-Basepath: ..\n"
|
24 |
+
"X-Poedit-SearchPath-0: .\n"
|
25 |
+
|
26 |
+
#: admin/class-wt-import-export-for-woo-admin.php:113
|
27 |
+
msgid "Settings updated."
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: admin/class-wt-import-export-for-woo-admin.php:114
|
31 |
+
msgid "All fields are mandatory"
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: admin/class-wt-import-export-for-woo-admin.php:115
|
35 |
+
msgid "Unable to update Settings."
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: admin/class-wt-import-export-for-woo-admin.php:116
|
39 |
+
msgid "Unable to delete template"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: admin/class-wt-import-export-for-woo-admin.php:117
|
43 |
+
msgid "Deleting template..."
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: admin/class-wt-import-export-for-woo-admin.php:118
|
47 |
+
msgid "Value is empty."
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: admin/class-wt-import-export-for-woo-admin.php:119
|
51 |
+
#, php-format
|
52 |
+
msgid ""
|
53 |
+
"An unknown error has occurred! Refer to our %stroubleshooting guide%s for "
|
54 |
+
"assistance."
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: admin/class-wt-import-export-for-woo-admin.php:120
|
58 |
+
msgid "Success."
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: admin/class-wt-import-export-for-woo-admin.php:121
|
62 |
+
msgid "Loading..."
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: admin/class-wt-import-export-for-woo-admin.php:122
|
66 |
+
#: admin/modules/history/history.php:519
|
67 |
+
msgid "Are you sure?"
|
68 |
+
msgstr ""
|
69 |
+
|
70 |
+
#: admin/class-wt-import-export-for-woo-admin.php:123
|
71 |
+
msgid "Use expression as value."
|
72 |
+
msgstr ""
|
73 |
+
|
74 |
+
#: admin/class-wt-import-export-for-woo-admin.php:124
|
75 |
+
#: admin/views/_save_template_popup.php:29
|
76 |
+
#: includes/class-wf-orderimpexp-plugin-uninstall-feedback.php:106
|
77 |
+
msgid "Cancel"
|
78 |
+
msgstr ""
|
79 |
+
|
80 |
+
#: admin/class-wt-import-export-for-woo-admin.php:129
|
81 |
+
#: admin/class-wt-import-export-for-woo-admin.php:134 admin/views/market.php:13
|
82 |
+
msgid "Order, Coupon, Subscription Export Import for WooCommerce"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: admin/class-wt-import-export-for-woo-admin.php:139
|
86 |
+
#: admin/class-wt-import-export-for-woo-admin.php:144
|
87 |
+
#: admin/class-wt-import-export-for-woo-admin.php:149
|
88 |
+
#: admin/class-wt-import-export-for-woo-admin.php:154
|
89 |
+
msgid "Product Import Export Plugin For WooCommerce"
|
90 |
+
msgstr ""
|
91 |
+
|
92 |
+
#: admin/class-wt-import-export-for-woo-admin.php:159
|
93 |
+
msgid "WordPress Users & WooCommerce Customers Import Export"
|
94 |
+
msgstr ""
|
95 |
+
|
96 |
+
#: admin/class-wt-import-export-for-woo-admin.php:180
|
97 |
+
#: admin/class-wt-import-export-for-woo-admin.php:181
|
98 |
+
#: admin/class-wt-import-export-for-woo-admin.php:203
|
99 |
+
#: admin/class-wt-import-export-for-woo-admin.php:204
|
100 |
+
msgid "General Settings"
|
101 |
+
msgstr ""
|
102 |
+
|
103 |
+
#: admin/class-wt-import-export-for-woo-admin.php:251
|
104 |
+
#: admin/class-wt-import-export-for-woo-admin.php:290
|
105 |
+
#: admin/modules/export/export.php:213 admin/modules/export/export.php:475
|
106 |
+
#: admin/modules/history/history.php:97 admin/modules/import/import.php:1097
|
107 |
+
msgid "Error"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: admin/class-wt-import-export-for-woo-admin.php:277
|
111 |
+
msgid "Settings Updated"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: admin/class-wt-import-export-for-woo-admin.php:303
|
115 |
+
msgid "Template deleted successfully"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: admin/class-wt-import-export-for-woo-admin.php:433
|
119 |
+
#: order-import-export-for-woocommerce.php:165
|
120 |
+
msgid "Settings"
|
121 |
+
msgstr ""
|
122 |
+
|
123 |
+
#: admin/class-wt-import-export-for-woo-admin.php:434
|
124 |
+
#: admin/views/admin-settings-help.php:17 admin/views/admin-settings-help.php:20
|
125 |
+
#: order-import-export-for-woocommerce.php:166
|
126 |
+
msgid "Documentation"
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
#: admin/class-wt-import-export-for-woo-admin.php:435
|
130 |
+
#: order-import-export-for-woocommerce.php:167
|
131 |
+
msgid "Support"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: admin/modules/coupon/coupon.php:80
|
135 |
+
msgid ""
|
136 |
+
"Use advanced options from below to decide updates to existing coupons, batch "
|
137 |
+
"import count. You can also save the template file for future imports."
|
138 |
+
msgstr ""
|
139 |
+
|
140 |
+
#: admin/modules/coupon/coupon.php:172
|
141 |
+
msgid "Coupon"
|
142 |
+
msgstr ""
|
143 |
+
|
144 |
+
#: admin/modules/coupon/coupon.php:364
|
145 |
+
msgid "If the coupon exists in the store"
|
146 |
+
msgstr ""
|
147 |
+
|
148 |
+
#: admin/modules/coupon/coupon.php:367 admin/modules/order/order.php:439
|
149 |
+
msgid "Skip"
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: admin/modules/coupon/coupon.php:368 admin/modules/order/order.php:440
|
153 |
+
msgid "Update"
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
#: admin/modules/coupon/coupon.php:374
|
157 |
+
msgid ""
|
158 |
+
"This option will not update the existing coupons and keeps the coupons as is."
|
159 |
+
msgstr ""
|
160 |
+
|
161 |
+
#: admin/modules/coupon/coupon.php:380
|
162 |
+
msgid ""
|
163 |
+
"This option will update the existing coupons as per the data from the input "
|
164 |
+
"file."
|
165 |
+
msgstr ""
|
166 |
+
|
167 |
+
#: admin/modules/coupon/coupon.php:407
|
168 |
+
msgid "Total number of coupons to export"
|
169 |
+
msgstr ""
|
170 |
+
|
171 |
+
#: admin/modules/coupon/coupon.php:408
|
172 |
+
msgid ""
|
173 |
+
"Provide the number of coupons you want to export. e.g. Entering 500 with a "
|
174 |
+
"skip count of 10 will export coupons from 11th to 510th position."
|
175 |
+
msgstr ""
|
176 |
+
|
177 |
+
#: admin/modules/coupon/coupon.php:409
|
178 |
+
msgid "Skip first <i>n</i> coupons"
|
179 |
+
msgstr ""
|
180 |
+
|
181 |
+
#: admin/modules/coupon/coupon.php:410
|
182 |
+
msgid ""
|
183 |
+
"Skips specified number of coupons from the beginning. e.g. Enter 10 to skip "
|
184 |
+
"first 10 coupons from export."
|
185 |
+
msgstr ""
|
186 |
+
|
187 |
+
#: admin/modules/coupon/coupon.php:413
|
188 |
+
msgid "Coupon status"
|
189 |
+
msgstr ""
|
190 |
+
|
191 |
+
#: admin/modules/coupon/coupon.php:414 admin/modules/order/order.php:522
|
192 |
+
msgid "Any status"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: admin/modules/coupon/coupon.php:417
|
196 |
+
msgid "Filter coupons on the basis of status. Multiple statuses can be selected."
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: admin/modules/coupon/coupon.php:423
|
200 |
+
msgid "Coupon type"
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: admin/modules/coupon/coupon.php:424
|
204 |
+
msgid "Any type"
|
205 |
+
msgstr ""
|
206 |
+
|
207 |
+
#: admin/modules/coupon/coupon.php:427
|
208 |
+
msgid "Filter coupons on the basis of type. Multiple types can be selected."
|
209 |
+
msgstr ""
|
210 |
+
|
211 |
+
#: admin/modules/coupon/coupon.php:435
|
212 |
+
msgid "Coupon amount: from"
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: admin/modules/coupon/coupon.php:436
|
216 |
+
msgid "From amount"
|
217 |
+
msgstr ""
|
218 |
+
|
219 |
+
#: admin/modules/coupon/coupon.php:443
|
220 |
+
msgid ""
|
221 |
+
"Minimum Coupon amount : Exports coupons of amount equal to or greater than "
|
222 |
+
"specified amount."
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
#: admin/modules/coupon/coupon.php:450
|
226 |
+
msgid "Coupon amount: to"
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
+
#: admin/modules/coupon/coupon.php:451
|
230 |
+
msgid "To amount"
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: admin/modules/coupon/coupon.php:458
|
234 |
+
msgid ""
|
235 |
+
"Maximum Coupon amount: Exports coupons of amount up to the specified amount."
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: admin/modules/coupon/coupon.php:466
|
239 |
+
msgid "Coupon expiry date: from"
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: admin/modules/coupon/coupon.php:467
|
243 |
+
msgid "From date"
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: admin/modules/coupon/coupon.php:470
|
247 |
+
msgid "Exports coupons that will expire on or after the specified date."
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: admin/modules/coupon/coupon.php:476
|
251 |
+
msgid "Coupon expiry date: to"
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#: admin/modules/coupon/coupon.php:477
|
255 |
+
msgid "To date"
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: admin/modules/coupon/coupon.php:480
|
259 |
+
msgid "Exports coupons that will expire on the specified date."
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: admin/modules/coupon/coupon.php:486
|
263 |
+
msgid "Sort columns"
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: admin/modules/coupon/coupon.php:487
|
267 |
+
msgid "ID"
|
268 |
+
msgstr ""
|
269 |
+
|
270 |
+
#: admin/modules/coupon/coupon.php:490
|
271 |
+
msgid ""
|
272 |
+
"Select the columns on the basis of which you want to sort the exported data in "
|
273 |
+
"the order specified."
|
274 |
+
msgstr ""
|
275 |
+
|
276 |
+
#: admin/modules/coupon/coupon.php:497
|
277 |
+
#: admin/modules/history/views/_history_list.php:55
|
278 |
+
msgid "Sort by"
|
279 |
+
msgstr ""
|
280 |
+
|
281 |
+
#: admin/modules/coupon/coupon.php:498
|
282 |
+
msgid "ASC"
|
283 |
+
msgstr ""
|
284 |
+
|
285 |
+
#: admin/modules/coupon/coupon.php:501
|
286 |
+
msgid ""
|
287 |
+
"Sort the exported data based on the above selected columns. Defaulted to "
|
288 |
+
"ascending order."
|
289 |
+
msgstr ""
|
290 |
+
|
291 |
+
#: admin/modules/coupon/import/import.php:317
|
292 |
+
msgid "Invalid discount type"
|
293 |
+
msgstr ""
|
294 |
+
|
295 |
+
#: admin/modules/coupon/import/import.php:887
|
296 |
+
#: admin/modules/history/views/_log_table.php:29
|
297 |
+
msgid "Invalid product type."
|
298 |
+
msgstr ""
|
299 |
+
|
300 |
+
#: admin/modules/coupon/import/import.php:911
|
301 |
+
#, php-format
|
302 |
+
msgid "Invalid product ID %d."
|
303 |
+
msgstr ""
|
304 |
+
|
305 |
+
#: admin/modules/export/classes/class-export-ajax.php:119
|
306 |
+
#: admin/modules/export/views/_export_mapping_page.php:27
|
307 |
+
#: admin/modules/import/classes/class-import-ajax.php:248
|
308 |
+
#: admin/modules/import/views/_import_mapping_page.php:96
|
309 |
+
msgid "Drag to rearrange the columns"
|
310 |
+
msgstr ""
|
311 |
+
|
312 |
+
#: admin/modules/export/classes/class-export-ajax.php:265
|
313 |
+
#: admin/modules/import/classes/class-import-ajax.php:504
|
314 |
+
msgid "Please enter a different name"
|
315 |
+
msgstr ""
|
316 |
+
|
317 |
+
#: admin/modules/export/classes/class-export-ajax.php:268
|
318 |
+
#: admin/modules/import/classes/class-import-ajax.php:507
|
319 |
+
msgid "Template with same name already exists"
|
320 |
+
msgstr ""
|
321 |
+
|
322 |
+
#: admin/modules/export/classes/class-export-ajax.php:303
|
323 |
+
#: admin/modules/import/classes/class-import-ajax.php:542
|
324 |
+
msgid "Template updated successfully"
|
325 |
+
msgstr ""
|
326 |
+
|
327 |
+
#: admin/modules/export/classes/class-export-ajax.php:321
|
328 |
+
#: admin/modules/import/classes/class-import-ajax.php:560
|
329 |
+
msgid "Template saved successfully"
|
330 |
+
msgstr ""
|
331 |
+
|
332 |
+
#: admin/modules/export/classes/class-export-ajax.php:622
|
333 |
+
#: admin/modules/import/classes/class-import-ajax.php:917
|
334 |
+
msgid "Back"
|
335 |
+
msgstr ""
|
336 |
+
|
337 |
+
#: admin/modules/export/classes/class-export-ajax.php:635
|
338 |
+
#: admin/modules/export/export.php:362
|
339 |
+
#: admin/modules/import/classes/class-import-ajax.php:930
|
340 |
+
#: admin/modules/import/import.php:391
|
341 |
+
msgid "Step"
|
342 |
+
msgstr ""
|
343 |
+
|
344 |
+
#: admin/modules/export/classes/class-export-ajax.php:642
|
345 |
+
#: admin/modules/import/classes/class-import-ajax.php:937
|
346 |
+
msgid "Or"
|
347 |
+
msgstr ""
|
348 |
+
|
349 |
+
#: admin/modules/export/classes/class-export-ajax.php:661
|
350 |
+
#: admin/modules/export/classes/class-export-ajax.php:679
|
351 |
+
#: admin/modules/import/classes/class-import-ajax.php:956
|
352 |
+
#: admin/modules/import/classes/class-import-ajax.php:974
|
353 |
+
msgid "Save template"
|
354 |
+
msgstr ""
|
355 |
+
|
356 |
+
#: admin/modules/export/classes/class-export-ajax.php:665
|
357 |
+
#: admin/modules/import/classes/class-import-ajax.php:960
|
358 |
+
#: admin/views/_save_template_popup.php:13
|
359 |
+
msgid "Save"
|
360 |
+
msgstr ""
|
361 |
+
|
362 |
+
#: admin/modules/export/classes/class-export-ajax.php:669
|
363 |
+
#: admin/modules/import/classes/class-import-ajax.php:964
|
364 |
+
msgid "Save As"
|
365 |
+
msgstr ""
|
366 |
+
|
367 |
+
#: admin/modules/export/classes/class-export-ajax.php:691
|
368 |
+
msgid "Export images"
|
369 |
+
msgstr ""
|
370 |
+
|
371 |
+
#: admin/modules/export/classes/class-export-ajax.php:700
|
372 |
+
#: admin/modules/export/export.php:145 admin/modules/export/export.php:156
|
373 |
+
#: admin/modules/export/export.php:157
|
374 |
+
#: admin/modules/export/views/_export_header.php:8
|
375 |
+
#: admin/modules/export/views/main.php:29 admin/modules/history/history.php:41
|
376 |
+
msgid "Export"
|
377 |
+
msgstr ""
|
378 |
+
|
379 |
+
#: admin/modules/export/export.php:42 admin/modules/import/import.php:48
|
380 |
+
msgid "CSV"
|
381 |
+
msgstr ""
|
382 |
+
|
383 |
+
#: admin/modules/export/export.php:43
|
384 |
+
msgid "XML"
|
385 |
+
msgstr ""
|
386 |
+
|
387 |
+
#: admin/modules/export/export.php:50 admin/modules/import/import.php:57
|
388 |
+
msgid "Select a post type"
|
389 |
+
msgstr ""
|
390 |
+
|
391 |
+
#: admin/modules/export/export.php:51
|
392 |
+
msgid ""
|
393 |
+
"Export and download the data for the respective post type into a CSV file. As "
|
394 |
+
"per the selected post type, we can use this exported CSV file to import data "
|
395 |
+
"to your site."
|
396 |
+
msgstr ""
|
397 |
+
|
398 |
+
#: admin/modules/export/export.php:54
|
399 |
+
#: admin/modules/export/views/_export_method_export_page.php:19
|
400 |
+
msgid "Select an export method"
|
401 |
+
msgstr ""
|
402 |
+
|
403 |
+
#: admin/modules/export/export.php:55
|
404 |
+
msgid ""
|
405 |
+
"Choose from the options below to continue with your export: quick export from "
|
406 |
+
"DB, based on a pre-saved template or a new export with advanced options."
|
407 |
+
msgstr ""
|
408 |
+
|
409 |
+
#: admin/modules/export/export.php:58
|
410 |
+
msgid "Filter data"
|
411 |
+
msgstr ""
|
412 |
+
|
413 |
+
#: admin/modules/export/export.php:59
|
414 |
+
msgid "Filter data that needs to be exported as per the below criteria."
|
415 |
+
msgstr ""
|
416 |
+
|
417 |
+
#: admin/modules/export/export.php:62
|
418 |
+
msgid "Map and reorder export columns"
|
419 |
+
msgstr ""
|
420 |
+
|
421 |
+
#: admin/modules/export/export.php:63
|
422 |
+
msgid ""
|
423 |
+
"You can edit the default export column names. Drag and reorder the columns if "
|
424 |
+
"needed. If you are exporting via the pre-saved template method, column names "
|
425 |
+
"and values that were saved most recently will appear on the screen."
|
426 |
+
msgstr ""
|
427 |
+
|
428 |
+
#: admin/modules/export/export.php:66
|
429 |
+
msgid "Advanced options/Batch export"
|
430 |
+
msgstr ""
|
431 |
+
|
432 |
+
#: admin/modules/export/export.php:67
|
433 |
+
msgid ""
|
434 |
+
"You can save the template file for future exports or proceed with the export."
|
435 |
+
msgstr ""
|
436 |
+
|
437 |
+
#: admin/modules/export/export.php:83
|
438 |
+
msgid "Quick export"
|
439 |
+
msgstr ""
|
440 |
+
|
441 |
+
#: admin/modules/export/export.php:83
|
442 |
+
msgid "Exports all the basic fields."
|
443 |
+
msgstr ""
|
444 |
+
|
445 |
+
#: admin/modules/export/export.php:84 admin/modules/import/import.php:76
|
446 |
+
msgid "Pre-saved template"
|
447 |
+
msgstr ""
|
448 |
+
|
449 |
+
#: admin/modules/export/export.php:84
|
450 |
+
msgid ""
|
451 |
+
"Exports data as per the specifications(filters, selective column,mapping etc) "
|
452 |
+
"of the template saved during the previous Advanced exports. To change the "
|
453 |
+
"settings, move to filter data."
|
454 |
+
msgstr ""
|
455 |
+
|
456 |
+
#: admin/modules/export/export.php:85
|
457 |
+
msgid "Advanced export"
|
458 |
+
msgstr ""
|
459 |
+
|
460 |
+
#: admin/modules/export/export.php:85
|
461 |
+
msgid ""
|
462 |
+
"Exports data after a detailed process of filtration, column selection and "
|
463 |
+
"advanced options. The configured settings can be saved as a template for "
|
464 |
+
"future exports."
|
465 |
+
msgstr ""
|
466 |
+
|
467 |
+
#: admin/modules/export/export.php:118
|
468 |
+
msgid "Default Export method"
|
469 |
+
msgstr ""
|
470 |
+
|
471 |
+
#: admin/modules/export/export.php:124
|
472 |
+
msgid "Select the default method of export."
|
473 |
+
msgstr ""
|
474 |
+
|
475 |
+
#: admin/modules/export/export.php:127
|
476 |
+
msgid "Default Export batch count"
|
477 |
+
msgstr ""
|
478 |
+
|
479 |
+
#: admin/modules/export/export.php:131
|
480 |
+
msgid "Provide the default count for the records to be exported in a batch."
|
481 |
+
msgstr ""
|
482 |
+
|
483 |
+
#: admin/modules/export/export.php:146
|
484 |
+
msgid "WebToffee Import Export (Basic)"
|
485 |
+
msgstr ""
|
486 |
+
|
487 |
+
#: admin/modules/export/export.php:232
|
488 |
+
msgid "Limit"
|
489 |
+
msgstr ""
|
490 |
+
|
491 |
+
#: admin/modules/export/export.php:237
|
492 |
+
msgid ""
|
493 |
+
"The actual number of records you want to export. e.g. A limit of 500 with an "
|
494 |
+
"offset 10 will export records from 11th to 510th position."
|
495 |
+
msgstr ""
|
496 |
+
|
497 |
+
#: admin/modules/export/export.php:242
|
498 |
+
msgid "Offset"
|
499 |
+
msgstr ""
|
500 |
+
|
501 |
+
#: admin/modules/export/export.php:245
|
502 |
+
msgid "0"
|
503 |
+
msgstr ""
|
504 |
+
|
505 |
+
#: admin/modules/export/export.php:246
|
506 |
+
msgid ""
|
507 |
+
"Specify the number of records that should be skipped from the beginning. e.g. "
|
508 |
+
"An offset of 10 skips the first 10 records."
|
509 |
+
msgstr ""
|
510 |
+
|
511 |
+
#: admin/modules/export/export.php:258 admin/modules/import/import.php:179
|
512 |
+
msgid "Local"
|
513 |
+
msgstr ""
|
514 |
+
|
515 |
+
#: admin/modules/export/export.php:275
|
516 |
+
msgid "Export in batches of"
|
517 |
+
msgstr ""
|
518 |
+
|
519 |
+
#: admin/modules/export/export.php:280
|
520 |
+
#, php-format
|
521 |
+
msgid ""
|
522 |
+
"The number of records that the server will process for every iteration within "
|
523 |
+
"the configured timeout interval. If the export fails due to timeout you can "
|
524 |
+
"lower this number accordingly and try again. Defaulted to %d records."
|
525 |
+
msgstr ""
|
526 |
+
|
527 |
+
#: admin/modules/export/export.php:359 admin/modules/import/import.php:388
|
528 |
+
msgid "Choosed template: "
|
529 |
+
msgstr ""
|
530 |
+
|
531 |
+
#: admin/modules/export/export.php:360
|
532 |
+
msgid "Please select an export method."
|
533 |
+
msgstr ""
|
534 |
+
|
535 |
+
#: admin/modules/export/export.php:361
|
536 |
+
#: admin/modules/export/views/_export_method_export_page.php:14
|
537 |
+
msgid "Please select an export template."
|
538 |
+
msgstr ""
|
539 |
+
|
540 |
+
#: admin/modules/export/export.php:363 admin/modules/import/import.php:392
|
541 |
+
msgid "Please select an FTP profile."
|
542 |
+
msgstr ""
|
543 |
+
|
544 |
+
#: admin/modules/export/export.php:488 admin/modules/history/history.php:36
|
545 |
+
#: admin/modules/import/import.php:1050
|
546 |
+
msgid "Finished"
|
547 |
+
msgstr ""
|
548 |
+
|
549 |
+
#: admin/modules/export/export.php:662
|
550 |
+
#, php-format
|
551 |
+
msgid "Uploading to %s"
|
552 |
+
msgstr ""
|
553 |
+
|
554 |
+
#: admin/modules/export/export.php:668
|
555 |
+
msgid "Export file processing completed"
|
556 |
+
msgstr ""
|
557 |
+
|
558 |
+
#: admin/modules/export/export.php:675
|
559 |
+
msgid "You can manage exports from History section."
|
560 |
+
msgstr ""
|
561 |
+
|
562 |
+
#: admin/modules/export/export.php:678
|
563 |
+
msgid "Download file"
|
564 |
+
msgstr ""
|
565 |
+
|
566 |
+
#: admin/modules/export/export.php:704
|
567 |
+
#, php-format
|
568 |
+
msgid "Exporting...(%d out of %d)"
|
569 |
+
msgstr ""
|
570 |
+
|
571 |
+
#: admin/modules/export/views/_export_mapping_page.php:10
|
572 |
+
#: admin/modules/import/views/_import_mapping_page.php:79
|
573 |
+
msgid "Default fields"
|
574 |
+
msgstr ""
|
575 |
+
|
576 |
+
#: admin/modules/export/views/_export_mapping_page.php:11
|
577 |
+
#: admin/modules/export/views/_export_mapping_page.php:86
|
578 |
+
#: admin/modules/import/views/_import_mapping_page.php:80
|
579 |
+
#: admin/modules/import/views/_import_mapping_page.php:293
|
580 |
+
msgid " columns(s) selected"
|
581 |
+
msgstr ""
|
582 |
+
|
583 |
+
#: admin/modules/export/views/_export_mapping_page.php:21
|
584 |
+
#: admin/modules/export/views/_export_meta_step_page.php:16
|
585 |
+
#: admin/modules/import/views/_import_mapping_page.php:90
|
586 |
+
#: admin/modules/import/views/_import_meta_step_page.php:16
|
587 |
+
msgid "Column"
|
588 |
+
msgstr ""
|
589 |
+
|
590 |
+
#: admin/modules/export/views/_export_mapping_page.php:22
|
591 |
+
#: admin/modules/export/views/_export_meta_step_page.php:17
|
592 |
+
#: admin/modules/import/views/_import_mapping_page.php:91
|
593 |
+
#: admin/modules/import/views/_import_meta_step_page.php:17
|
594 |
+
msgid "Column name"
|
595 |
+
msgstr ""
|
596 |
+
|
597 |
+
#: admin/modules/export/views/_export_mapping_page.php:53
|
598 |
+
#: admin/modules/export/views/_export_meta_step_page.php:49
|
599 |
+
#: admin/modules/import/views/_import_mapping_page.php:259
|
600 |
+
#: admin/modules/import/views/_import_meta_step_page.php:36
|
601 |
+
msgid "No fields found."
|
602 |
+
msgstr ""
|
603 |
+
|
604 |
+
#: admin/modules/export/views/_export_method_export_page.php:10
|
605 |
+
msgid "Please select an export method"
|
606 |
+
msgstr ""
|
607 |
+
|
608 |
+
#: admin/modules/export/views/_export_method_export_page.php:42
|
609 |
+
msgid "Include fields from the respective groups"
|
610 |
+
msgstr ""
|
611 |
+
|
612 |
+
#: admin/modules/export/views/_export_method_export_page.php:67
|
613 |
+
msgid ""
|
614 |
+
"Enabling any of these ensures that all the fields from the respective groups "
|
615 |
+
"are included in your export."
|
616 |
+
msgstr ""
|
617 |
+
|
618 |
+
#: admin/modules/export/views/_export_method_export_page.php:73
|
619 |
+
msgid "Export template"
|
620 |
+
msgstr ""
|
621 |
+
|
622 |
+
#: admin/modules/export/views/_export_method_export_page.php:76
|
623 |
+
#: admin/modules/import/views/_import_method_import_page.php:38
|
624 |
+
msgid "Select a template"
|
625 |
+
msgstr ""
|
626 |
+
|
627 |
+
#: admin/modules/export/views/_export_post_type_page.php:9
|
628 |
+
#: admin/modules/import/views/_import_post_type_page.php:9
|
629 |
+
msgid "Please select a post type"
|
630 |
+
msgstr ""
|
631 |
+
|
632 |
+
#: admin/modules/export/views/_export_post_type_page.php:13
|
633 |
+
msgid "Select a post type to export"
|
634 |
+
msgstr ""
|
635 |
+
|
636 |
+
#: admin/modules/export/views/_export_post_type_page.php:16
|
637 |
+
#: admin/modules/import/views/_import_post_type_page.php:16
|
638 |
+
msgid "Select post type"
|
639 |
+
msgstr ""
|
640 |
+
|
641 |
+
#: admin/modules/export/views/main.php:31 admin/modules/import/views/main.php:41
|
642 |
+
msgid "Developed by"
|
643 |
+
msgstr ""
|
644 |
+
|
645 |
+
#: admin/modules/export/views/main.php:41 admin/modules/import/views/main.php:51
|
646 |
+
msgid "Unable to handle Re-Run request."
|
647 |
+
msgstr ""
|
648 |
+
|
649 |
+
#: admin/modules/history/history.php:35
|
650 |
+
msgid "Running/Incomplete"
|
651 |
+
msgstr ""
|
652 |
+
|
653 |
+
#: admin/modules/history/history.php:37
|
654 |
+
msgid "Failed"
|
655 |
+
msgstr ""
|
656 |
+
|
657 |
+
#: admin/modules/history/history.php:42
|
658 |
+
#: admin/modules/import/classes/class-import-ajax.php:983
|
659 |
+
#: admin/modules/import/import.php:263 admin/modules/import/import.php:264
|
660 |
+
#: admin/modules/import/views/_import_header.php:8
|
661 |
+
#: admin/modules/import/views/main.php:39
|
662 |
+
msgid "Import"
|
663 |
+
msgstr ""
|
664 |
+
|
665 |
+
#: admin/modules/history/history.php:43
|
666 |
+
msgid "Image Export"
|
667 |
+
msgstr ""
|
668 |
+
|
669 |
+
#: admin/modules/history/history.php:71 admin/modules/history/history.php:72
|
670 |
+
msgid "History"
|
671 |
+
msgstr ""
|
672 |
+
|
673 |
+
#: admin/modules/history/history.php:80 admin/modules/history/history.php:81
|
674 |
+
#: admin/modules/history/views/_log_list.php:16
|
675 |
+
msgid "Import Logs"
|
676 |
+
msgstr ""
|
677 |
+
|
678 |
+
#: admin/modules/history/history.php:167
|
679 |
+
#, php-format
|
680 |
+
msgid ""
|
681 |
+
"Please check the Generate import log is enabled under <a target = \"_blank\" "
|
682 |
+
"href=\"%s\">settings</a>"
|
683 |
+
msgstr ""
|
684 |
+
|
685 |
+
#: admin/modules/history/history.php:205
|
686 |
+
msgid "Advanced options"
|
687 |
+
msgstr ""
|
688 |
+
|
689 |
+
#: admin/modules/history/history.php:210
|
690 |
+
msgid "Auto delete history"
|
691 |
+
msgstr ""
|
692 |
+
|
693 |
+
#: admin/modules/history/history.php:213 admin/modules/order/order.php:379
|
694 |
+
#: admin/modules/order/order.php:469 admin/partials/_form_field_generator.php:321
|
695 |
+
msgid "Yes"
|
696 |
+
msgstr ""
|
697 |
+
|
698 |
+
#: admin/modules/history/history.php:214 admin/modules/order/order.php:380
|
699 |
+
#: admin/modules/order/order.php:470 admin/partials/_form_field_generator.php:322
|
700 |
+
msgid "No"
|
701 |
+
msgstr ""
|
702 |
+
|
703 |
+
#: admin/modules/history/history.php:219
|
704 |
+
msgid ""
|
705 |
+
"Enabling this option will delete records from the history section upon "
|
706 |
+
"reaching the count mentioned in Maximum entries."
|
707 |
+
msgstr ""
|
708 |
+
|
709 |
+
#: admin/modules/history/history.php:228
|
710 |
+
msgid "Maximum entries"
|
711 |
+
msgstr ""
|
712 |
+
|
713 |
+
#: admin/modules/history/history.php:236
|
714 |
+
msgid ""
|
715 |
+
"Indicates the maximum records to retain in history. Limit the number of "
|
716 |
+
"records with status ‘Finished’. E.g On giving an input of 50, the system will "
|
717 |
+
"retain(not delete) the latest 50 records with status ‘Finished’. Any other "
|
718 |
+
"record with a different status will not be retained."
|
719 |
+
msgstr ""
|
720 |
+
|
721 |
+
#: admin/modules/history/history.php:356
|
722 |
+
#: admin/modules/history/views/_history_list.php:110
|
723 |
+
msgid "Post type"
|
724 |
+
msgstr ""
|
725 |
+
|
726 |
+
#: admin/modules/history/history.php:363
|
727 |
+
#: admin/modules/history/views/_history_list.php:109
|
728 |
+
msgid "Action type"
|
729 |
+
msgstr ""
|
730 |
+
|
731 |
+
#: admin/modules/history/history.php:370
|
732 |
+
#: admin/modules/history/views/_history_list.php:113
|
733 |
+
#: admin/modules/history/views/_log_table.php:44
|
734 |
+
msgid "Status"
|
735 |
+
msgstr ""
|
736 |
+
|
737 |
+
#: admin/modules/history/history.php:390
|
738 |
+
msgid "Date descending"
|
739 |
+
msgstr ""
|
740 |
+
|
741 |
+
#: admin/modules/history/history.php:391
|
742 |
+
msgid "Date ascending"
|
743 |
+
msgstr ""
|
744 |
+
|
745 |
+
#: admin/modules/history/history.php:822
|
746 |
+
msgid " record(s)"
|
747 |
+
msgstr ""
|
748 |
+
|
749 |
+
#: admin/modules/history/views/_history_list.php:7
|
750 |
+
#: admin/views/admin-settings-marketing.php:128
|
751 |
+
#: admin/views/admin-settings-marketing.php:436
|
752 |
+
msgid "Import/Export history"
|
753 |
+
msgstr ""
|
754 |
+
|
755 |
+
#: admin/modules/history/views/_history_list.php:10
|
756 |
+
msgid ""
|
757 |
+
"Lists the runs and the status corresponding to every import/export with "
|
758 |
+
"options to re-run, view detailed log or delete entry."
|
759 |
+
msgstr ""
|
760 |
+
|
761 |
+
#: admin/modules/history/views/_history_list.php:21
|
762 |
+
msgid "Filter"
|
763 |
+
msgstr ""
|
764 |
+
|
765 |
+
#: admin/modules/history/views/_history_list.php:32
|
766 |
+
msgid "All"
|
767 |
+
msgstr ""
|
768 |
+
|
769 |
+
#: admin/modules/history/views/_history_list.php:68
|
770 |
+
msgid "Max record/page"
|
771 |
+
msgstr ""
|
772 |
+
|
773 |
+
#: admin/modules/history/views/_history_list.php:82
|
774 |
+
#: admin/modules/history/views/_history_list.php:92
|
775 |
+
msgid "Apply"
|
776 |
+
msgstr ""
|
777 |
+
|
778 |
+
#: admin/modules/history/views/_history_list.php:89
|
779 |
+
msgid "Bulk Actions"
|
780 |
+
msgstr ""
|
781 |
+
|
782 |
+
#: admin/modules/history/views/_history_list.php:90
|
783 |
+
#: admin/modules/history/views/_history_list.php:150
|
784 |
+
#: admin/modules/history/views/_log_list.php:56
|
785 |
+
#: admin/views/admin-settings-pre-saved-templates.php:60
|
786 |
+
msgid "Delete"
|
787 |
+
msgstr ""
|
788 |
+
|
789 |
+
#: admin/modules/history/views/_history_list.php:106
|
790 |
+
msgid "No."
|
791 |
+
msgstr ""
|
792 |
+
|
793 |
+
#: admin/modules/history/views/_history_list.php:108
|
794 |
+
msgid "Id"
|
795 |
+
msgstr ""
|
796 |
+
|
797 |
+
#: admin/modules/history/views/_history_list.php:111
|
798 |
+
msgid "Started at"
|
799 |
+
msgstr ""
|
800 |
+
|
801 |
+
#: admin/modules/history/views/_history_list.php:116
|
802 |
+
#, php-format
|
803 |
+
msgid "%sSuccess%s - Process completed successfully"
|
804 |
+
msgstr ""
|
805 |
+
|
806 |
+
#: admin/modules/history/views/_history_list.php:117
|
807 |
+
#, php-format
|
808 |
+
msgid ""
|
809 |
+
"%sFailed%s - Failed process triggered due to connection/permission or similar "
|
810 |
+
"issues(unable to establish FTP/DB connection, write permission issues etc.)"
|
811 |
+
msgstr ""
|
812 |
+
|
813 |
+
#: admin/modules/history/views/_history_list.php:118
|
814 |
+
#, php-format
|
815 |
+
msgid ""
|
816 |
+
"%sRunning/Incomplete%s - Process that are running currently or that may have "
|
817 |
+
"been terminated unknowingly(e.g, closing a browser tab while in progress etc)"
|
818 |
+
msgstr ""
|
819 |
+
|
820 |
+
#: admin/modules/history/views/_history_list.php:122
|
821 |
+
#: admin/modules/history/views/_log_list.php:44
|
822 |
+
msgid "Actions"
|
823 |
+
msgstr ""
|
824 |
+
|
825 |
+
#: admin/modules/history/views/_history_list.php:124
|
826 |
+
msgid ""
|
827 |
+
"Re-run will take the user to the respective screen depending on the "
|
828 |
+
"corresponding action type and the user can initiate the process accordingly."
|
829 |
+
msgstr ""
|
830 |
+
|
831 |
+
#: admin/modules/history/views/_history_list.php:146
|
832 |
+
msgid "Unknown"
|
833 |
+
msgstr ""
|
834 |
+
|
835 |
+
#: admin/modules/history/views/_history_list.php:164
|
836 |
+
msgid "Re-Run"
|
837 |
+
msgstr ""
|
838 |
+
|
839 |
+
#: admin/modules/history/views/_history_list.php:177
|
840 |
+
#: admin/modules/history/views/settings.php:31
|
841 |
+
msgid "View log"
|
842 |
+
msgstr ""
|
843 |
+
|
844 |
+
#: admin/modules/history/views/_history_list.php:185
|
845 |
+
#: admin/modules/history/views/_log_list.php:58
|
846 |
+
msgid "Download"
|
847 |
+
msgstr ""
|
848 |
+
|
849 |
+
#: admin/modules/history/views/_history_list.php:201
|
850 |
+
#: admin/modules/history/views/_log_table.php:127
|
851 |
+
msgid "No records found."
|
852 |
+
msgstr ""
|
853 |
+
|
854 |
+
#: admin/modules/history/views/_log_list.php:18
|
855 |
+
msgid ""
|
856 |
+
"Lists developer logs mostly required for debugging purposes. Options to view "
|
857 |
+
"detailed logs are available along with delete and download(that can be shared "
|
858 |
+
"with the support team in case of issues)."
|
859 |
+
msgstr ""
|
860 |
+
|
861 |
+
#: admin/modules/history/views/_log_list.php:43
|
862 |
+
msgid "File"
|
863 |
+
msgstr ""
|
864 |
+
|
865 |
+
#: admin/modules/history/views/_log_list.php:57
|
866 |
+
msgid "View"
|
867 |
+
msgstr ""
|
868 |
+
|
869 |
+
#: admin/modules/history/views/_log_list.php:70
|
870 |
+
msgid "No logs found."
|
871 |
+
msgstr ""
|
872 |
+
|
873 |
+
#: admin/modules/history/views/_log_table.php:17
|
874 |
+
msgid "Item with same ID already exists."
|
875 |
+
msgstr ""
|
876 |
+
|
877 |
+
#: admin/modules/history/views/_log_table.php:23
|
878 |
+
msgid "Importing item conflicts with an existing post."
|
879 |
+
msgstr ""
|
880 |
+
|
881 |
+
#: admin/modules/history/views/_log_table.php:43
|
882 |
+
msgid "Row No."
|
883 |
+
msgstr ""
|
884 |
+
|
885 |
+
#: admin/modules/history/views/_log_table.php:45
|
886 |
+
msgid "Message"
|
887 |
+
msgstr ""
|
888 |
+
|
889 |
+
#: admin/modules/history/views/_log_table.php:46
|
890 |
+
#: admin/views/admin-settings-pre-saved-templates.php:45
|
891 |
+
msgid "Item"
|
892 |
+
msgstr ""
|
893 |
+
|
894 |
+
#: admin/modules/history/views/_log_table.php:68
|
895 |
+
msgid "Success"
|
896 |
+
msgstr ""
|
897 |
+
|
898 |
+
#: admin/modules/history/views/_log_table.php:68
|
899 |
+
msgid "Failed/Skipped"
|
900 |
+
msgstr ""
|
901 |
+
|
902 |
+
#: admin/modules/history/views/_log_table.php:105
|
903 |
+
msgid "Please refer"
|
904 |
+
msgstr ""
|
905 |
+
|
906 |
+
#: admin/modules/history/views/_log_table.php:105
|
907 |
+
msgid "this article"
|
908 |
+
msgstr ""
|
909 |
+
|
910 |
+
#: admin/modules/history/views/_log_table.php:105
|
911 |
+
msgid "for troubleshoot."
|
912 |
+
msgstr ""
|
913 |
+
|
914 |
+
#: admin/modules/history/views/_log_table.php:119
|
915 |
+
msgid "Load more."
|
916 |
+
msgstr ""
|
917 |
+
|
918 |
+
#: admin/modules/history/views/_log_table.php:120
|
919 |
+
msgid "Loading...."
|
920 |
+
msgstr ""
|
921 |
+
|
922 |
+
#: admin/modules/import/classes/class-import-ajax.php:165
|
923 |
+
msgid ""
|
924 |
+
"Unable to upload file. Please check write permission of your `wp-content` "
|
925 |
+
"folder."
|
926 |
+
msgstr ""
|
927 |
+
|
928 |
+
#: admin/modules/import/classes/class-import-ajax.php:169
|
929 |
+
#, php-format
|
930 |
+
msgid "File size exceeds the limit. %dMB max"
|
931 |
+
msgstr ""
|
932 |
+
|
933 |
+
#: admin/modules/import/classes/class-import-ajax.php:173
|
934 |
+
#, php-format
|
935 |
+
msgid "Invalid file type. Only %s are allowed."
|
936 |
+
msgstr ""
|
937 |
+
|
938 |
+
#: admin/modules/import/classes/class-import-ajax.php:757
|
939 |
+
msgid "Product taxonomies"
|
940 |
+
msgstr ""
|
941 |
+
|
942 |
+
#: admin/modules/import/classes/class-import-ajax.php:760
|
943 |
+
msgid "New taxonomy: "
|
944 |
+
msgstr ""
|
945 |
+
|
946 |
+
#: admin/modules/import/classes/class-import-ajax.php:766
|
947 |
+
msgid "Custom Field: "
|
948 |
+
msgstr ""
|
949 |
+
|
950 |
+
#: admin/modules/import/classes/class-import-ajax.php:773
|
951 |
+
msgid "Taxonomy attributes"
|
952 |
+
msgstr ""
|
953 |
+
|
954 |
+
#: admin/modules/import/classes/class-import-ajax.php:776
|
955 |
+
msgid "New attribute: "
|
956 |
+
msgstr ""
|
957 |
+
|
958 |
+
#: admin/modules/import/classes/class-import-ajax.php:782
|
959 |
+
msgid "Attribute data: "
|
960 |
+
msgstr ""
|
961 |
+
|
962 |
+
#: admin/modules/import/classes/class-import-ajax.php:787
|
963 |
+
msgid "Attribute default value: "
|
964 |
+
msgstr ""
|
965 |
+
|
966 |
+
#: admin/modules/import/import.php:58
|
967 |
+
msgid "Use a CSV file to import data. As a first step, select the post type."
|
968 |
+
msgstr ""
|
969 |
+
|
970 |
+
#: admin/modules/import/import.php:61
|
971 |
+
msgid "Select import method"
|
972 |
+
msgstr ""
|
973 |
+
|
974 |
+
#: admin/modules/import/import.php:62
|
975 |
+
msgid ""
|
976 |
+
"Choose from the options below to continue with your import: quick import, "
|
977 |
+
"based on a pre-saved template or a new import with advanced options."
|
978 |
+
msgstr ""
|
979 |
+
|
980 |
+
#: admin/modules/import/import.php:65
|
981 |
+
msgid "Map import columns"
|
982 |
+
msgstr ""
|
983 |
+
|
984 |
+
#: admin/modules/import/import.php:66
|
985 |
+
msgid "Map the standard columns with your CSV column names."
|
986 |
+
msgstr ""
|
987 |
+
|
988 |
+
#: admin/modules/import/import.php:69
|
989 |
+
msgid "Advanced options/Batch import"
|
990 |
+
msgstr ""
|
991 |
+
|
992 |
+
#: admin/modules/import/import.php:70
|
993 |
+
msgid ""
|
994 |
+
"Use advanced options from below to decide on the delimiter options, updates to "
|
995 |
+
"existing products, batch import count or schedule an import. You can also save "
|
996 |
+
"the template file for future imports."
|
997 |
+
msgstr ""
|
998 |
+
|
999 |
+
#: admin/modules/import/import.php:75
|
1000 |
+
msgid "Quick import"
|
1001 |
+
msgstr ""
|
1002 |
+
|
1003 |
+
#: admin/modules/import/import.php:75
|
1004 |
+
msgid ""
|
1005 |
+
"Use this option primarily if you exported the input file using the same plugin."
|
1006 |
+
msgstr ""
|
1007 |
+
|
1008 |
+
#: admin/modules/import/import.php:76
|
1009 |
+
msgid ""
|
1010 |
+
"Retains the filter parameters and column specifications as per the chosen "
|
1011 |
+
"template and imports data accordingly."
|
1012 |
+
msgstr ""
|
1013 |
+
|
1014 |
+
#: admin/modules/import/import.php:77
|
1015 |
+
msgid "Advanced Import"
|
1016 |
+
msgstr ""
|
1017 |
+
|
1018 |
+
#: admin/modules/import/import.php:77
|
1019 |
+
msgid ""
|
1020 |
+
"Imports data after a detailed process of filtration, column selection and "
|
1021 |
+
"advanced options. The configured settings can be saved as a template for "
|
1022 |
+
"future imports."
|
1023 |
+
msgstr ""
|
1024 |
+
|
1025 |
+
#: admin/modules/import/import.php:110
|
1026 |
+
msgid "Maximum execution time"
|
1027 |
+
msgstr ""
|
1028 |
+
|
1029 |
+
#: admin/modules/import/import.php:115
|
1030 |
+
msgid ""
|
1031 |
+
"The maximum execution time, in seconds(eg:- 300, 600, 1800, 3600). If set to "
|
1032 |
+
"zero, no time limit is imposed. Increasing this will reduce the chance of "
|
1033 |
+
"export/import timeouts."
|
1034 |
+
msgstr ""
|
1035 |
+
|
1036 |
+
#: admin/modules/import/import.php:119
|
1037 |
+
msgid "Generate Import log"
|
1038 |
+
msgstr ""
|
1039 |
+
|
1040 |
+
#: admin/modules/import/import.php:121
|
1041 |
+
msgid "Enable"
|
1042 |
+
msgstr ""
|
1043 |
+
|
1044 |
+
#: admin/modules/import/import.php:125
|
1045 |
+
msgid "You can view the logs in the <a href="
|
1046 |
+
msgstr ""
|
1047 |
+
|
1048 |
+
#: admin/modules/import/import.php:131
|
1049 |
+
msgid "Default Import method"
|
1050 |
+
msgstr ""
|
1051 |
+
|
1052 |
+
#: admin/modules/import/import.php:137
|
1053 |
+
msgid "Select the default method of import."
|
1054 |
+
msgstr ""
|
1055 |
+
|
1056 |
+
#: admin/modules/import/import.php:140
|
1057 |
+
msgid "Default Import batch count"
|
1058 |
+
msgstr ""
|
1059 |
+
|
1060 |
+
#: admin/modules/import/import.php:144
|
1061 |
+
msgid "Provide the default count for the records to be imported in a batch."
|
1062 |
+
msgstr ""
|
1063 |
+
|
1064 |
+
#: admin/modules/import/import.php:159
|
1065 |
+
msgid "Import in batches of"
|
1066 |
+
msgstr ""
|
1067 |
+
|
1068 |
+
#: admin/modules/import/import.php:163
|
1069 |
+
#, php-format
|
1070 |
+
msgid ""
|
1071 |
+
"The number of records that the server will process for every iteration within "
|
1072 |
+
"the configured timeout interval. If the import fails you can lower this number "
|
1073 |
+
"accordingly and try again. Defaulted to %d records."
|
1074 |
+
msgstr ""
|
1075 |
+
|
1076 |
+
#: admin/modules/import/import.php:195
|
1077 |
+
msgid "Choose file for Import"
|
1078 |
+
msgstr ""
|
1079 |
+
|
1080 |
+
#: admin/modules/import/import.php:211
|
1081 |
+
msgid "Select a file"
|
1082 |
+
msgstr ""
|
1083 |
+
|
1084 |
+
#: admin/modules/import/import.php:233
|
1085 |
+
msgid "Delimiter"
|
1086 |
+
msgstr ""
|
1087 |
+
|
1088 |
+
#: admin/modules/import/import.php:241
|
1089 |
+
msgid ""
|
1090 |
+
"The character used to separate columns in the CSV file. Takes comma (,) by "
|
1091 |
+
"default."
|
1092 |
+
msgstr ""
|
1093 |
+
|
1094 |
+
#: admin/modules/import/import.php:389
|
1095 |
+
msgid "Please select an import method."
|
1096 |
+
msgstr ""
|
1097 |
+
|
1098 |
+
#: admin/modules/import/import.php:390 admin/modules/import/import.php:395
|
1099 |
+
#: admin/modules/import/views/_import_method_import_page.php:9
|
1100 |
+
msgid "Please select an import template."
|
1101 |
+
msgstr ""
|
1102 |
+
|
1103 |
+
#: admin/modules/import/import.php:393
|
1104 |
+
msgid "Please choose import from."
|
1105 |
+
msgstr ""
|
1106 |
+
|
1107 |
+
#: admin/modules/import/import.php:394
|
1108 |
+
msgid "Please choose an import file."
|
1109 |
+
msgstr ""
|
1110 |
+
|
1111 |
+
#: admin/modules/import/import.php:396
|
1112 |
+
msgid "Creating temp file and validating."
|
1113 |
+
msgstr ""
|
1114 |
+
|
1115 |
+
#: admin/modules/import/import.php:397
|
1116 |
+
msgid "Processing input file..."
|
1117 |
+
msgstr ""
|
1118 |
+
|
1119 |
+
#: admin/modules/import/import.php:398
|
1120 |
+
msgid ""
|
1121 |
+
"This column is not present in the import list. Please tick the checkbox to "
|
1122 |
+
"include."
|
1123 |
+
msgstr ""
|
1124 |
+
|
1125 |
+
#: admin/modules/import/import.php:399
|
1126 |
+
msgid "Uploading..."
|
1127 |
+
msgstr ""
|
1128 |
+
|
1129 |
+
#: admin/modules/import/import.php:400
|
1130 |
+
msgid "You are using an outdated browser. Please upgarde your browser."
|
1131 |
+
msgstr ""
|
1132 |
+
|
1133 |
+
#: admin/modules/import/import.php:401
|
1134 |
+
msgid "An error occured."
|
1135 |
+
msgstr ""
|
1136 |
+
|
1137 |
+
#: admin/modules/import/import.php:402
|
1138 |
+
#, php-format
|
1139 |
+
msgid "Invalid file type. Only %s are allowed"
|
1140 |
+
msgstr ""
|
1141 |
+
|
1142 |
+
#: admin/modules/import/import.php:403
|
1143 |
+
msgid "Drop files here or click to upload"
|
1144 |
+
msgstr ""
|
1145 |
+
|
1146 |
+
#: admin/modules/import/import.php:404
|
1147 |
+
#, php-format
|
1148 |
+
msgid "%s Done."
|
1149 |
+
msgstr ""
|
1150 |
+
|
1151 |
+
#: admin/modules/import/import.php:405
|
1152 |
+
msgid "Remove"
|
1153 |
+
msgstr ""
|
1154 |
+
|
1155 |
+
#: admin/modules/import/import.php:511 admin/modules/import/import.php:529
|
1156 |
+
msgid "Unable to create temp file."
|
1157 |
+
msgstr ""
|
1158 |
+
|
1159 |
+
#: admin/modules/import/import.php:533
|
1160 |
+
msgid "Unable to fetch file data."
|
1161 |
+
msgstr ""
|
1162 |
+
|
1163 |
+
#: admin/modules/import/import.php:538
|
1164 |
+
msgid "Unable to create temp directory."
|
1165 |
+
msgstr ""
|
1166 |
+
|
1167 |
+
#: admin/modules/import/import.php:542
|
1168 |
+
msgid "File type not allowed."
|
1169 |
+
msgstr ""
|
1170 |
+
|
1171 |
+
#: admin/modules/import/import.php:546
|
1172 |
+
msgid "File not found."
|
1173 |
+
msgstr ""
|
1174 |
+
|
1175 |
+
#: admin/modules/import/import.php:754
|
1176 |
+
msgid "Temp file missing."
|
1177 |
+
msgstr ""
|
1178 |
+
|
1179 |
+
#: admin/modules/import/import.php:827 admin/modules/import/import.php:1054
|
1180 |
+
#, php-format
|
1181 |
+
msgid "Importing...(%d processed)"
|
1182 |
+
msgstr ""
|
1183 |
+
|
1184 |
+
#: admin/modules/import/import.php:926
|
1185 |
+
msgid "CSV is empty"
|
1186 |
+
msgstr ""
|
1187 |
+
|
1188 |
+
#: admin/modules/import/import.php:1056
|
1189 |
+
msgid "Total success: "
|
1190 |
+
msgstr ""
|
1191 |
+
|
1192 |
+
#: admin/modules/import/import.php:1056
|
1193 |
+
msgid "Total failed: "
|
1194 |
+
msgstr ""
|
1195 |
+
|
1196 |
+
#: admin/modules/import/import.php:1062
|
1197 |
+
msgid "View Details"
|
1198 |
+
msgstr ""
|
1199 |
+
|
1200 |
+
#: admin/modules/import/views/_import_mapping_page.php:7
|
1201 |
+
msgid "Click to use"
|
1202 |
+
msgstr ""
|
1203 |
+
|
1204 |
+
#: admin/modules/import/views/_import_mapping_page.php:15
|
1205 |
+
msgid "Set value for column:"
|
1206 |
+
msgstr ""
|
1207 |
+
|
1208 |
+
#: admin/modules/import/views/_import_mapping_page.php:17
|
1209 |
+
msgid ""
|
1210 |
+
"Select and map any column from the input file or compute values with "
|
1211 |
+
"expressions."
|
1212 |
+
msgstr ""
|
1213 |
+
|
1214 |
+
#: admin/modules/import/views/_import_mapping_page.php:19
|
1215 |
+
msgid "Expression"
|
1216 |
+
msgstr ""
|
1217 |
+
|
1218 |
+
#: admin/modules/import/views/_import_mapping_page.php:22
|
1219 |
+
msgid ""
|
1220 |
+
"Append operators like + * / - () & @ or string constants along with the column "
|
1221 |
+
"names to update the values on import."
|
1222 |
+
msgstr ""
|
1223 |
+
|
1224 |
+
#: admin/modules/import/views/_import_mapping_page.php:23
|
1225 |
+
#, php-format
|
1226 |
+
msgid ""
|
1227 |
+
"Ensure to enclose the expressions in square brackets. E.g. To increase the "
|
1228 |
+
"stock quantity of %sall imported products%s by 5 units, input [{stock}+5] in "
|
1229 |
+
"the stock column."
|
1230 |
+
msgstr ""
|
1231 |
+
|
1232 |
+
#: admin/modules/import/views/_import_mapping_page.php:31
|
1233 |
+
msgid "Input file columns"
|
1234 |
+
msgstr ""
|
1235 |
+
|
1236 |
+
#: admin/modules/import/views/_import_mapping_page.php:33
|
1237 |
+
msgid "Type here to search"
|
1238 |
+
msgstr ""
|
1239 |
+
|
1240 |
+
#: admin/modules/import/views/_import_mapping_page.php:51
|
1241 |
+
msgid "No column found."
|
1242 |
+
msgstr ""
|
1243 |
+
|
1244 |
+
#: admin/modules/import/views/_import_mapping_page.php:55
|
1245 |
+
msgid "Output"
|
1246 |
+
msgstr ""
|
1247 |
+
|
1248 |
+
#: admin/modules/import/views/_import_mapping_page.php:57
|
1249 |
+
msgid ""
|
1250 |
+
"Sample value based on first record from input file. Columns that have no "
|
1251 |
+
"values in the input file may cause syntax errors if used in an expression as "
|
1252 |
+
"above."
|
1253 |
+
msgstr ""
|
1254 |
+
|
1255 |
+
#: admin/modules/import/views/_import_mapping_page.php:70
|
1256 |
+
msgid ""
|
1257 |
+
"The first row from your input file is considered as a header for mapping "
|
1258 |
+
"columns and hence will NOT BE imported."
|
1259 |
+
msgstr ""
|
1260 |
+
|
1261 |
+
#: admin/modules/import/views/_import_mapping_page.php:72
|
1262 |
+
msgid ""
|
1263 |
+
"Columns are mapped automatically only if a matching header name is found in "
|
1264 |
+
"the input file."
|
1265 |
+
msgstr ""
|
1266 |
+
|
1267 |
+
#: admin/modules/import/views/_import_mapping_page.php:74
|
1268 |
+
msgid ""
|
1269 |
+
"In the case of empty fields, you can simply click on the respective field and "
|
1270 |
+
"map the corresponding column from your input file."
|
1271 |
+
msgstr ""
|
1272 |
+
|
1273 |
+
#: admin/modules/import/views/_import_method_import_page.php:13
|
1274 |
+
msgid "Import method"
|
1275 |
+
msgstr ""
|
1276 |
+
|
1277 |
+
#: admin/modules/import/views/_import_method_import_page.php:33
|
1278 |
+
msgid ""
|
1279 |
+
"Ensure the import file has the user's email ID for a successful import. Use "
|
1280 |
+
"default column name <b>user_email</b> or map the column accordingly if you are "
|
1281 |
+
"using a custom column name."
|
1282 |
+
msgstr ""
|
1283 |
+
|
1284 |
+
#: admin/modules/import/views/_import_method_import_page.php:35
|
1285 |
+
msgid "Import template"
|
1286 |
+
msgstr ""
|
1287 |
+
|
1288 |
+
#: admin/modules/import/views/_import_post_type_page.php:13
|
1289 |
+
msgid "Select a post type to import"
|
1290 |
+
msgstr ""
|
1291 |
+
|
1292 |
+
#: admin/modules/import/views/main.php:27
|
1293 |
+
msgid "History Details"
|
1294 |
+
msgstr ""
|
1295 |
+
|
1296 |
+
#: admin/modules/order/import/import.php:1517
|
1297 |
+
#: admin/modules/order/import/import.php:1521
|
1298 |
+
msgid "Unknown Product"
|
1299 |
+
msgstr ""
|
1300 |
+
|
1301 |
+
#: admin/modules/order/import/import.php:1783
|
1302 |
+
#, php-format
|
1303 |
+
msgid "Original order #%s"
|
1304 |
+
msgstr ""
|
1305 |
+
|
1306 |
+
#: admin/modules/order/import/import.php:1843
|
1307 |
+
msgid "Invalid order ID."
|
1308 |
+
msgstr ""
|
1309 |
+
|
1310 |
+
#: admin/modules/order/order.php:83
|
1311 |
+
msgid ""
|
1312 |
+
"Use advanced options from below to decide updates to existing orders, batch "
|
1313 |
+
"import count. You can also save the template file for future imports."
|
1314 |
+
msgstr ""
|
1315 |
+
|
1316 |
+
#: admin/modules/order/order.php:151
|
1317 |
+
msgid "Order"
|
1318 |
+
msgstr ""
|
1319 |
+
|
1320 |
+
#: admin/modules/order/order.php:376
|
1321 |
+
msgid "Exclude already exported"
|
1322 |
+
msgstr ""
|
1323 |
+
|
1324 |
+
#: admin/modules/order/order.php:384
|
1325 |
+
msgid "Option 'Yes' excludes the previously exported orders."
|
1326 |
+
msgstr ""
|
1327 |
+
|
1328 |
+
#: admin/modules/order/order.php:388
|
1329 |
+
msgid "Export line items in"
|
1330 |
+
msgstr ""
|
1331 |
+
|
1332 |
+
#: admin/modules/order/order.php:391
|
1333 |
+
msgid "Default mode"
|
1334 |
+
msgstr ""
|
1335 |
+
|
1336 |
+
#: admin/modules/order/order.php:392
|
1337 |
+
msgid "Separate columns"
|
1338 |
+
msgstr ""
|
1339 |
+
|
1340 |
+
#: admin/modules/order/order.php:393
|
1341 |
+
msgid "Separate rows"
|
1342 |
+
msgstr ""
|
1343 |
+
|
1344 |
+
#: admin/modules/order/order.php:401
|
1345 |
+
msgid ""
|
1346 |
+
"The default option will export each line item details into a single column. "
|
1347 |
+
"This option is mainly used for the order migration purpose."
|
1348 |
+
msgstr ""
|
1349 |
+
|
1350 |
+
#: admin/modules/order/order.php:407
|
1351 |
+
msgid "This option will export each line item details into a separate column."
|
1352 |
+
msgstr ""
|
1353 |
+
|
1354 |
+
#: admin/modules/order/order.php:413
|
1355 |
+
msgid "This option will export each line item details into a separate row."
|
1356 |
+
msgstr ""
|
1357 |
+
|
1358 |
+
#: admin/modules/order/order.php:436
|
1359 |
+
msgid "If order exists in the store"
|
1360 |
+
msgstr ""
|
1361 |
+
|
1362 |
+
#: admin/modules/order/order.php:444
|
1363 |
+
msgid "Orders are matched by their order IDs."
|
1364 |
+
msgstr ""
|
1365 |
+
|
1366 |
+
#: admin/modules/order/order.php:447
|
1367 |
+
msgid ""
|
1368 |
+
"This option will not update the existing orders and keeps the order as is."
|
1369 |
+
msgstr ""
|
1370 |
+
|
1371 |
+
#: admin/modules/order/order.php:453
|
1372 |
+
msgid ""
|
1373 |
+
"This option will update the existing orders as per the data from the input "
|
1374 |
+
"file."
|
1375 |
+
msgstr ""
|
1376 |
+
|
1377 |
+
#: admin/modules/order/order.php:466
|
1378 |
+
msgid "Link products using SKU instead of Product ID"
|
1379 |
+
msgstr ""
|
1380 |
+
|
1381 |
+
#: admin/modules/order/order.php:476
|
1382 |
+
msgid "Links the products of the imported orders by SKU."
|
1383 |
+
msgstr ""
|
1384 |
+
|
1385 |
+
#: admin/modules/order/order.php:482
|
1386 |
+
msgid ""
|
1387 |
+
"Links the products of the imported orders by Product ID. However, the products "
|
1388 |
+
"will not get linked if the Product ID conflicts with the IDs of an existing "
|
1389 |
+
"post type."
|
1390 |
+
msgstr ""
|
1391 |
+
|
1392 |
+
#: admin/modules/order/order.php:505
|
1393 |
+
msgid "Total number of orders to export"
|
1394 |
+
msgstr ""
|
1395 |
+
|
1396 |
+
#: admin/modules/order/order.php:506
|
1397 |
+
msgid ""
|
1398 |
+
"Provide the number of orders you want to export. e.g. Entering 500 with a skip "
|
1399 |
+
"count of 10 will export orders from 11th to 510th position."
|
1400 |
+
msgstr ""
|
1401 |
+
|
1402 |
+
#: admin/modules/order/order.php:507
|
1403 |
+
msgid "Skip first <i>n</i> orders"
|
1404 |
+
msgstr ""
|
1405 |
+
|
1406 |
+
#: admin/modules/order/order.php:508
|
1407 |
+
msgid ""
|
1408 |
+
"Skips specified number of orders from the beginning. e.g. Enter 10 to skip "
|
1409 |
+
"first 10 orders from export."
|
1410 |
+
msgstr ""
|
1411 |
+
|
1412 |
+
#: admin/modules/order/order.php:511
|
1413 |
+
msgid "Order IDs"
|
1414 |
+
msgstr ""
|
1415 |
+
|
1416 |
+
#: admin/modules/order/order.php:512
|
1417 |
+
msgid "Enter order IDs separated by ,"
|
1418 |
+
msgstr ""
|
1419 |
+
|
1420 |
+
#: admin/modules/order/order.php:515
|
1421 |
+
msgid "Enter order IDs separated by comma to export specific orders."
|
1422 |
+
msgstr ""
|
1423 |
+
|
1424 |
+
#: admin/modules/order/order.php:521
|
1425 |
+
msgid "Order status"
|
1426 |
+
msgstr ""
|
1427 |
+
|
1428 |
+
#: admin/modules/order/order.php:525
|
1429 |
+
msgid "Filter orders on the basis of status. Multiple statuses can be selected."
|
1430 |
+
msgstr ""
|
1431 |
+
|
1432 |
+
#: admin/modules/order/order.php:531
|
1433 |
+
msgid "Product"
|
1434 |
+
msgstr ""
|
1435 |
+
|
1436 |
+
#: admin/modules/order/order.php:532
|
1437 |
+
msgid "Search for a product…"
|
1438 |
+
msgstr ""
|
1439 |
+
|
1440 |
+
#: admin/modules/order/order.php:535
|
1441 |
+
msgid ""
|
1442 |
+
"Export orders containing specific products. Input name, ID or SKU of the "
|
1443 |
+
"products contained in the orders you want to export."
|
1444 |
+
msgstr ""
|
1445 |
+
|
1446 |
+
#: admin/modules/order/order.php:541
|
1447 |
+
msgid "Customer"
|
1448 |
+
msgstr ""
|
1449 |
+
|
1450 |
+
#: admin/modules/order/order.php:542
|
1451 |
+
msgid "Search for a customer…"
|
1452 |
+
msgstr ""
|
1453 |
+
|
1454 |
+
#: admin/modules/order/order.php:545
|
1455 |
+
msgid ""
|
1456 |
+
"Export orders of specific customers. Input the customer name or email to "
|
1457 |
+
"specify the customers."
|
1458 |
+
msgstr ""
|
1459 |
+
|
1460 |
+
#: admin/modules/order/order.php:551 admin/views/admin-settings-marketing.php:73
|
1461 |
+
#: admin/views/admin-settings-marketing.php:239
|
1462 |
+
#: admin/views/admin-settings-marketing.php:381
|
1463 |
+
msgid "Coupons"
|
1464 |
+
msgstr ""
|
1465 |
+
|
1466 |
+
#: admin/modules/order/order.php:552
|
1467 |
+
msgid "Search for a coupon…"
|
1468 |
+
msgstr ""
|
1469 |
+
|
1470 |
+
#: admin/modules/order/order.php:555
|
1471 |
+
msgid ""
|
1472 |
+
"Exports orders redeemed with specific coupon codes. Multiple coupon codes can "
|
1473 |
+
"be selected."
|
1474 |
+
msgstr ""
|
1475 |
+
|
1476 |
+
#: admin/modules/order/order.php:562 admin/modules/order/order.php:563
|
1477 |
+
msgid "Date from"
|
1478 |
+
msgstr ""
|
1479 |
+
|
1480 |
+
#: admin/modules/order/order.php:566
|
1481 |
+
msgid "Export orders placed on and after the specified date."
|
1482 |
+
msgstr ""
|
1483 |
+
|
1484 |
+
#: admin/modules/order/order.php:574 admin/modules/order/order.php:575
|
1485 |
+
msgid "Date to"
|
1486 |
+
msgstr ""
|
1487 |
+
|
1488 |
+
#: admin/modules/order/order.php:578
|
1489 |
+
msgid "Export orders placed upto the specified date."
|
1490 |
+
msgstr ""
|
1491 |
+
|
1492 |
+
#: admin/partials/_form_field_generator.php:244
|
1493 |
+
#, php-format
|
1494 |
+
msgid "%1$s (#%2$s – %3$s)"
|
1495 |
+
msgstr ""
|
1496 |
+
|
1497 |
+
#: admin/partials/_form_field_generator.php:356
|
1498 |
+
msgid "Choose a file."
|
1499 |
+
msgstr ""
|
1500 |
+
|
1501 |
+
#: admin/partials/_form_field_generator.php:356
|
1502 |
+
msgid "Select"
|
1503 |
+
msgstr ""
|
1504 |
+
|
1505 |
+
#: admin/partials/_form_field_generator.php:356
|
1506 |
+
msgid "Upload"
|
1507 |
+
msgstr ""
|
1508 |
+
|
1509 |
+
#: admin/partials/_form_field_generator.php:368
|
1510 |
+
msgid "Drag and Drop"
|
1511 |
+
msgstr ""
|
1512 |
+
|
1513 |
+
#: admin/partials/_form_field_generator.php:369
|
1514 |
+
msgid "or"
|
1515 |
+
msgstr ""
|
1516 |
+
|
1517 |
+
#: admin/partials/_form_field_generator.php:370
|
1518 |
+
msgid " Click and Upload"
|
1519 |
+
msgstr ""
|
1520 |
+
|
1521 |
+
#: admin/partials/wt-import-export-for-woo-admin-display.php:10
|
1522 |
+
msgid "Import Export for WooCommerce"
|
1523 |
+
msgstr ""
|
1524 |
+
|
1525 |
+
#: admin/partials/wt-import-export-for-woo-admin-display.php:15
|
1526 |
+
msgid "General"
|
1527 |
+
msgstr ""
|
1528 |
+
|
1529 |
+
#: admin/partials/wt-import-export-for-woo-admin-display.php:16
|
1530 |
+
msgid "Help Guide"
|
1531 |
+
msgstr ""
|
1532 |
+
|
1533 |
+
#: admin/partials/wt-import-export-for-woo-admin-display.php:17
|
1534 |
+
msgid "Pro Upgrade"
|
1535 |
+
msgstr ""
|
1536 |
+
|
1537 |
+
#: admin/views/_save_template_popup.php:13
|
1538 |
+
msgid "Save as"
|
1539 |
+
msgstr ""
|
1540 |
+
|
1541 |
+
#: admin/views/_save_template_popup.php:21
|
1542 |
+
msgid "Please enter name"
|
1543 |
+
msgstr ""
|
1544 |
+
|
1545 |
+
#: admin/views/_save_template_popup.php:25
|
1546 |
+
msgid "Template name"
|
1547 |
+
msgstr ""
|
1548 |
+
|
1549 |
+
#: admin/views/admin-settings-help.php:8
|
1550 |
+
msgid "Help Links"
|
1551 |
+
msgstr ""
|
1552 |
+
|
1553 |
+
#: admin/views/admin-settings-help.php:9
|
1554 |
+
msgid "Sample CSV"
|
1555 |
+
msgstr ""
|
1556 |
+
|
1557 |
+
#: admin/views/admin-settings-help.php:18
|
1558 |
+
msgid "Refer to our documentation to set up and get started."
|
1559 |
+
msgstr ""
|
1560 |
+
|
1561 |
+
#: admin/views/admin-settings-help.php:25
|
1562 |
+
msgid "Help and Support"
|
1563 |
+
msgstr ""
|
1564 |
+
|
1565 |
+
#: admin/views/admin-settings-help.php:26
|
1566 |
+
msgid "We would love to help you on any queries or issues."
|
1567 |
+
msgstr ""
|
1568 |
+
|
1569 |
+
#: admin/views/admin-settings-help.php:28
|
1570 |
+
msgid "Contact Us"
|
1571 |
+
msgstr ""
|
1572 |
+
|
1573 |
+
#: admin/views/admin-settings-marketing.php:8
|
1574 |
+
msgid "One stop solution for all your import-export needs."
|
1575 |
+
msgstr ""
|
1576 |
+
|
1577 |
+
#: admin/views/admin-settings-marketing.php:9
|
1578 |
+
msgid ""
|
1579 |
+
"Upgrade to the premium version and get access to the advanced features with "
|
1580 |
+
"premium support."
|
1581 |
+
msgstr ""
|
1582 |
+
|
1583 |
+
#: admin/views/admin-settings-marketing.php:14
|
1584 |
+
msgid "PRODUCT IMPORT EXPORT PLUGIN FOR WOOCOMMERCE"
|
1585 |
+
msgstr ""
|
1586 |
+
|
1587 |
+
#: admin/views/admin-settings-marketing.php:15
|
1588 |
+
msgid ""
|
1589 |
+
"Imports and exports all product types and reviews. Supports both CSV and XML "
|
1590 |
+
"file formats."
|
1591 |
+
msgstr ""
|
1592 |
+
|
1593 |
+
#: admin/views/admin-settings-marketing.php:17
|
1594 |
+
#: admin/views/admin-settings-marketing.php:28
|
1595 |
+
#: admin/views/admin-settings-marketing.php:39
|
1596 |
+
#: admin/views/admin-settings-marketing.php:507
|
1597 |
+
msgid "Get Premium"
|
1598 |
+
msgstr ""
|
1599 |
+
|
1600 |
+
#: admin/views/admin-settings-marketing.php:18
|
1601 |
+
#: admin/views/admin-settings-marketing.php:29
|
1602 |
+
#: admin/views/admin-settings-marketing.php:40
|
1603 |
+
msgid "Compare with basic"
|
1604 |
+
msgstr ""
|
1605 |
+
|
1606 |
+
#: admin/views/admin-settings-marketing.php:25
|
1607 |
+
msgid "WORDPRESS USERS & WOOCOMMERCE CUSTOMERS IMPORT EXPORT"
|
1608 |
+
msgstr ""
|
1609 |
+
|
1610 |
+
#: admin/views/admin-settings-marketing.php:26
|
1611 |
+
msgid ""
|
1612 |
+
"Import and export all your WordPress User and WooCommerce Customer data in CSV/"
|
1613 |
+
"XML file formats."
|
1614 |
+
msgstr ""
|
1615 |
+
|
1616 |
+
#: admin/views/admin-settings-marketing.php:36
|
1617 |
+
msgid "ORDER, COUPON, SUBSCRIPTION EXPORT IMPORT FOR WOOCOMMERCE"
|
1618 |
+
msgstr ""
|
1619 |
+
|
1620 |
+
#: admin/views/admin-settings-marketing.php:37
|
1621 |
+
msgid "Export or Import WooCommerce orders, Coupons and Subscriptions."
|
1622 |
+
msgstr ""
|
1623 |
+
|
1624 |
+
#: admin/views/admin-settings-marketing.php:57
|
1625 |
+
#: admin/views/admin-settings-marketing.php:223
|
1626 |
+
#: admin/views/admin-settings-marketing.php:365
|
1627 |
+
msgid "Features"
|
1628 |
+
msgstr ""
|
1629 |
+
|
1630 |
+
#: admin/views/admin-settings-marketing.php:58
|
1631 |
+
#: admin/views/admin-settings-marketing.php:224
|
1632 |
+
#: admin/views/admin-settings-marketing.php:366
|
1633 |
+
msgid "Free"
|
1634 |
+
msgstr ""
|
1635 |
+
|
1636 |
+
#: admin/views/admin-settings-marketing.php:59
|
1637 |
+
#: admin/views/admin-settings-marketing.php:225
|
1638 |
+
#: admin/views/admin-settings-marketing.php:367
|
1639 |
+
msgid "Premium"
|
1640 |
+
msgstr ""
|
1641 |
+
|
1642 |
+
#: admin/views/admin-settings-marketing.php:60
|
1643 |
+
#: admin/views/admin-settings-marketing.php:226
|
1644 |
+
#: admin/views/admin-settings-marketing.php:368
|
1645 |
+
msgid "Import Export Suite"
|
1646 |
+
msgstr ""
|
1647 |
+
|
1648 |
+
#: admin/views/admin-settings-marketing.php:65
|
1649 |
+
msgid "Import and export products"
|
1650 |
+
msgstr ""
|
1651 |
+
|
1652 |
+
#: admin/views/admin-settings-marketing.php:70
|
1653 |
+
#: admin/views/admin-settings-marketing.php:236
|
1654 |
+
#: admin/views/admin-settings-marketing.php:378
|
1655 |
+
msgid "Products"
|
1656 |
+
msgstr ""
|
1657 |
+
|
1658 |
+
#: admin/views/admin-settings-marketing.php:71
|
1659 |
+
#: admin/views/admin-settings-marketing.php:237
|
1660 |
+
#: admin/views/admin-settings-marketing.php:379
|
1661 |
+
msgid "Reviews"
|
1662 |
+
msgstr ""
|
1663 |
+
|
1664 |
+
#: admin/views/admin-settings-marketing.php:72
|
1665 |
+
#: admin/views/admin-settings-marketing.php:238
|
1666 |
+
#: admin/views/admin-settings-marketing.php:380
|
1667 |
+
msgid "Orders"
|
1668 |
+
msgstr ""
|
1669 |
+
|
1670 |
+
#: admin/views/admin-settings-marketing.php:74
|
1671 |
+
#: admin/views/admin-settings-marketing.php:240
|
1672 |
+
#: admin/views/admin-settings-marketing.php:382
|
1673 |
+
msgid "Subscriptions"
|
1674 |
+
msgstr ""
|
1675 |
+
|
1676 |
+
#: admin/views/admin-settings-marketing.php:75
|
1677 |
+
#: admin/views/admin-settings-marketing.php:241
|
1678 |
+
#: admin/views/admin-settings-marketing.php:383
|
1679 |
+
msgid "Users"
|
1680 |
+
msgstr ""
|
1681 |
+
|
1682 |
+
#: admin/views/admin-settings-marketing.php:80
|
1683 |
+
msgid "Export and import with product images"
|
1684 |
+
msgstr ""
|
1685 |
+
|
1686 |
+
#: admin/views/admin-settings-marketing.php:86
|
1687 |
+
msgid "Batch import/export"
|
1688 |
+
msgstr ""
|
1689 |
+
|
1690 |
+
#: admin/views/admin-settings-marketing.php:92
|
1691 |
+
msgid "Quick import/export"
|
1692 |
+
msgstr ""
|
1693 |
+
|
1694 |
+
#: admin/views/admin-settings-marketing.php:98
|
1695 |
+
msgid "Bulk product update"
|
1696 |
+
msgstr ""
|
1697 |
+
|
1698 |
+
#: admin/views/admin-settings-marketing.php:104
|
1699 |
+
msgid "Advanced import/export filters"
|
1700 |
+
msgstr ""
|
1701 |
+
|
1702 |
+
#: admin/views/admin-settings-marketing.php:105
|
1703 |
+
#: admin/views/admin-settings-marketing.php:443
|
1704 |
+
msgid "Limited"
|
1705 |
+
msgstr ""
|
1706 |
+
|
1707 |
+
#: admin/views/admin-settings-marketing.php:110
|
1708 |
+
msgid "Option to save a template for future import/exports"
|
1709 |
+
msgstr ""
|
1710 |
+
|
1711 |
+
#: admin/views/admin-settings-marketing.php:116
|
1712 |
+
msgid "Export/Import mapping"
|
1713 |
+
msgstr ""
|
1714 |
+
|
1715 |
+
#: admin/views/admin-settings-marketing.php:122
|
1716 |
+
msgid "Import by uploading CSV"
|
1717 |
+
msgstr ""
|
1718 |
+
|
1719 |
+
#: admin/views/admin-settings-marketing.php:134
|
1720 |
+
msgid "Debug logs"
|
1721 |
+
msgstr ""
|
1722 |
+
|
1723 |
+
#: admin/views/admin-settings-marketing.php:140
|
1724 |
+
#: admin/views/admin-settings-marketing.php:312
|
1725 |
+
#: admin/views/admin-settings-marketing.php:448
|
1726 |
+
msgid "Supports multiple file formats"
|
1727 |
+
msgstr ""
|
1728 |
+
|
1729 |
+
#: admin/views/admin-settings-marketing.php:141
|
1730 |
+
msgid "Only supports CSV"
|
1731 |
+
msgstr ""
|
1732 |
+
|
1733 |
+
#: admin/views/admin-settings-marketing.php:146
|
1734 |
+
msgid "Import/Export file via FTP/SFTP"
|
1735 |
+
msgstr ""
|
1736 |
+
|
1737 |
+
#: admin/views/admin-settings-marketing.php:152
|
1738 |
+
#: admin/views/admin-settings-marketing.php:324
|
1739 |
+
msgid "Import from URL"
|
1740 |
+
msgstr ""
|
1741 |
+
|
1742 |
+
#: admin/views/admin-settings-marketing.php:158
|
1743 |
+
msgid "Export product images as a zip"
|
1744 |
+
msgstr ""
|
1745 |
+
|
1746 |
+
#: admin/views/admin-settings-marketing.php:164
|
1747 |
+
#: admin/views/admin-settings-marketing.php:318
|
1748 |
+
#: admin/views/admin-settings-marketing.php:484
|
1749 |
+
msgid "Choose delimiter"
|
1750 |
+
msgstr ""
|
1751 |
+
|
1752 |
+
#: admin/views/admin-settings-marketing.php:170
|
1753 |
+
msgid "Support for multiple product types"
|
1754 |
+
msgstr ""
|
1755 |
+
|
1756 |
+
#: admin/views/admin-settings-marketing.php:176
|
1757 |
+
msgid "Automatic scheduled import/export"
|
1758 |
+
msgstr ""
|
1759 |
+
|
1760 |
+
#: admin/views/admin-settings-marketing.php:182
|
1761 |
+
msgid "Import/Export hidden meta"
|
1762 |
+
msgstr ""
|
1763 |
+
|
1764 |
+
#: admin/views/admin-settings-marketing.php:188
|
1765 |
+
#: admin/views/admin-settings-marketing.php:342
|
1766 |
+
#: admin/views/admin-settings-marketing.php:490
|
1767 |
+
msgid "Third-party plugin filter support"
|
1768 |
+
msgstr ""
|
1769 |
+
|
1770 |
+
#: admin/views/admin-settings-marketing.php:194
|
1771 |
+
msgid "Import/Export Product ratings"
|
1772 |
+
msgstr ""
|
1773 |
+
|
1774 |
+
#: admin/views/admin-settings-marketing.php:200
|
1775 |
+
msgid "Import/export products reviews"
|
1776 |
+
msgstr ""
|
1777 |
+
|
1778 |
+
#: admin/views/admin-settings-marketing.php:231
|
1779 |
+
msgid "Import/Export Users"
|
1780 |
+
msgstr ""
|
1781 |
+
|
1782 |
+
#: admin/views/admin-settings-marketing.php:246
|
1783 |
+
msgid "Import/Export customers"
|
1784 |
+
msgstr ""
|
1785 |
+
|
1786 |
+
#: admin/views/admin-settings-marketing.php:252
|
1787 |
+
msgid "Retain user password on Import/Export"
|
1788 |
+
msgstr ""
|
1789 |
+
|
1790 |
+
#: admin/views/admin-settings-marketing.php:258
|
1791 |
+
msgid "Bulk update data"
|
1792 |
+
msgstr ""
|
1793 |
+
|
1794 |
+
#: admin/views/admin-settings-marketing.php:264
|
1795 |
+
msgid "Evaluation fields"
|
1796 |
+
msgstr ""
|
1797 |
+
|
1798 |
+
#: admin/views/admin-settings-marketing.php:270
|
1799 |
+
#: admin/views/admin-settings-marketing.php:442
|
1800 |
+
msgid "Advanced filters"
|
1801 |
+
msgstr ""
|
1802 |
+
|
1803 |
+
#: admin/views/admin-settings-marketing.php:271
|
1804 |
+
msgid "Limited options"
|
1805 |
+
msgstr ""
|
1806 |
+
|
1807 |
+
#: admin/views/admin-settings-marketing.php:276
|
1808 |
+
#: admin/views/admin-settings-marketing.php:400
|
1809 |
+
msgid "Quick Import/Export"
|
1810 |
+
msgstr ""
|
1811 |
+
|
1812 |
+
#: admin/views/admin-settings-marketing.php:282
|
1813 |
+
msgid "Import/Export with pre-saved template"
|
1814 |
+
msgstr ""
|
1815 |
+
|
1816 |
+
#: admin/views/admin-settings-marketing.php:288
|
1817 |
+
msgid "View Import/Export history"
|
1818 |
+
msgstr ""
|
1819 |
+
|
1820 |
+
#: admin/views/admin-settings-marketing.php:294
|
1821 |
+
msgid "View debug log"
|
1822 |
+
msgstr ""
|
1823 |
+
|
1824 |
+
#: admin/views/admin-settings-marketing.php:300
|
1825 |
+
#: admin/views/admin-settings-marketing.php:394
|
1826 |
+
msgid "Batch Import/Export"
|
1827 |
+
msgstr ""
|
1828 |
+
|
1829 |
+
#: admin/views/admin-settings-marketing.php:306
|
1830 |
+
msgid "Customer Notification via email"
|
1831 |
+
msgstr ""
|
1832 |
+
|
1833 |
+
#: admin/views/admin-settings-marketing.php:313
|
1834 |
+
#: admin/views/admin-settings-marketing.php:449
|
1835 |
+
msgid "CSV only"
|
1836 |
+
msgstr ""
|
1837 |
+
|
1838 |
+
#: admin/views/admin-settings-marketing.php:330
|
1839 |
+
msgid "Import/export via FTP"
|
1840 |
+
msgstr ""
|
1841 |
+
|
1842 |
+
#: admin/views/admin-settings-marketing.php:336
|
1843 |
+
msgid "Scheduled Import/Export using Cron"
|
1844 |
+
msgstr ""
|
1845 |
+
|
1846 |
+
#: admin/views/admin-settings-marketing.php:373
|
1847 |
+
msgid "Export and Import orders"
|
1848 |
+
msgstr ""
|
1849 |
+
|
1850 |
+
#: admin/views/admin-settings-marketing.php:388
|
1851 |
+
msgid "Export and Import Coupons"
|
1852 |
+
msgstr ""
|
1853 |
+
|
1854 |
+
#: admin/views/admin-settings-marketing.php:406
|
1855 |
+
msgid "Easy Import/export with pre-saved template"
|
1856 |
+
msgstr ""
|
1857 |
+
|
1858 |
+
#: admin/views/admin-settings-marketing.php:412
|
1859 |
+
msgid "Export/Import column mapping"
|
1860 |
+
msgstr ""
|
1861 |
+
|
1862 |
+
#: admin/views/admin-settings-marketing.php:418
|
1863 |
+
msgid "Bulk update of data"
|
1864 |
+
msgstr ""
|
1865 |
+
|
1866 |
+
#: admin/views/admin-settings-marketing.php:424
|
1867 |
+
msgid "Support evaluation fields"
|
1868 |
+
msgstr ""
|
1869 |
+
|
1870 |
+
#: admin/views/admin-settings-marketing.php:430
|
1871 |
+
msgid "View debug logs"
|
1872 |
+
msgstr ""
|
1873 |
+
|
1874 |
+
#: admin/views/admin-settings-marketing.php:454
|
1875 |
+
msgid "Export/Import subscription orders"
|
1876 |
+
msgstr ""
|
1877 |
+
|
1878 |
+
#: admin/views/admin-settings-marketing.php:460
|
1879 |
+
msgid "Import and Export via FTP/SFTP"
|
1880 |
+
msgstr ""
|
1881 |
+
|
1882 |
+
#: admin/views/admin-settings-marketing.php:466
|
1883 |
+
msgid "Scheduled automatic Import/Export using Cron job"
|
1884 |
+
msgstr ""
|
1885 |
+
|
1886 |
+
#: admin/views/admin-settings-marketing.php:472
|
1887 |
+
msgid "Platform independent XML Import/Export"
|
1888 |
+
msgstr ""
|
1889 |
+
|
1890 |
+
#: admin/views/admin-settings-marketing.php:478
|
1891 |
+
msgid "Multiple Import methods"
|
1892 |
+
msgstr ""
|
1893 |
+
|
1894 |
+
#: admin/views/admin-settings-marketing.php:479
|
1895 |
+
msgid "Upload CSV only"
|
1896 |
+
msgstr ""
|
1897 |
+
|
1898 |
+
#: admin/views/admin-settings-marketing.php:505
|
1899 |
+
msgid "Import Export Suite for WooCommerce"
|
1900 |
+
msgstr ""
|
1901 |
+
|
1902 |
+
#: admin/views/admin-settings-marketing.php:506
|
1903 |
+
msgid ""
|
1904 |
+
"WooCommerce Import Export Suite is an all-in-one bundle of plugins with which "
|
1905 |
+
"you can import and export WooCommerce products, product reviews, orders, "
|
1906 |
+
"customers, coupons and subscriptions."
|
1907 |
+
msgstr ""
|
1908 |
+
|
1909 |
+
#: admin/views/admin-settings-pre-saved-templates.php:38
|
1910 |
+
msgid "Import export pre-saved templates"
|
1911 |
+
msgstr ""
|
1912 |
+
|
1913 |
+
#: admin/views/admin-settings-pre-saved-templates.php:44
|
1914 |
+
msgid "Name"
|
1915 |
+
msgstr ""
|
1916 |
+
|
1917 |
+
#: admin/views/admin-settings-pre-saved-templates.php:46
|
1918 |
+
msgid "Type"
|
1919 |
+
msgstr ""
|
1920 |
+
|
1921 |
+
#: admin/views/admin-settings-pre-saved-templates.php:47
|
1922 |
+
msgid "Action"
|
1923 |
+
msgstr ""
|
1924 |
+
|
1925 |
+
#: admin/views/market.php:17
|
1926 |
+
msgid "30 Day Money Back Guarantee"
|
1927 |
+
msgstr ""
|
1928 |
+
|
1929 |
+
#: admin/views/market.php:18
|
1930 |
+
msgid "Fast and Superior Support"
|
1931 |
+
msgstr ""
|
1932 |
+
|
1933 |
+
#: admin/views/market.php:21 order-import-export-for-woocommerce.php:283
|
1934 |
+
msgid "UPGRADE TO PREMIUM"
|
1935 |
+
msgstr ""
|
1936 |
+
|
1937 |
+
#: class-wt-order-review-request.php:54
|
1938 |
+
#, php-format
|
1939 |
+
msgid ""
|
1940 |
+
"Hey, we at %sWebToffee%s would like to thank you for using our plugin. We "
|
1941 |
+
"would really appreciate if you could take a moment to drop a quick review that "
|
1942 |
+
"will inspire us to keep going."
|
1943 |
+
msgstr ""
|
1944 |
+
|
1945 |
+
#: class-wt-order-review-request.php:57
|
1946 |
+
msgid "Remind me later"
|
1947 |
+
msgstr ""
|
1948 |
+
|
1949 |
+
#: class-wt-order-review-request.php:58
|
1950 |
+
msgid "Not interested"
|
1951 |
+
msgstr ""
|
1952 |
+
|
1953 |
+
#: class-wt-order-review-request.php:59
|
1954 |
+
msgid "Review now"
|
1955 |
+
msgstr ""
|
1956 |
+
|
1957 |
+
#: helpers/class-wt-common-helper.php:70
|
1958 |
+
#, php-format
|
1959 |
+
msgid ""
|
1960 |
+
"The %s requires a minimum version of %s %s. Please upgrade the %s accordingly."
|
1961 |
+
msgstr ""
|
1962 |
+
|
1963 |
+
#: helpers/class-wt-import-export-helper.php:21
|
1964 |
+
msgid "Comma"
|
1965 |
+
msgstr ""
|
1966 |
+
|
1967 |
+
#: helpers/class-wt-import-export-helper.php:22
|
1968 |
+
msgid "Semicolon"
|
1969 |
+
msgstr ""
|
1970 |
+
|
1971 |
+
#: helpers/class-wt-import-export-helper.php:23
|
1972 |
+
msgid "Tab"
|
1973 |
+
msgstr ""
|
1974 |
+
|
1975 |
+
#: helpers/class-wt-import-export-helper.php:24
|
1976 |
+
msgid "Space"
|
1977 |
+
msgstr ""
|
1978 |
+
|
1979 |
+
#: helpers/class-wt-import-export-helper.php:25
|
1980 |
+
#: includes/class-wf-orderimpexp-plugin-uninstall-feedback.php:65
|
1981 |
+
msgid "Other"
|
1982 |
+
msgstr ""
|
1983 |
+
|
1984 |
+
#: helpers/class-wt-import-export-helper.php:187
|
1985 |
+
msgid "Refresh the step"
|
1986 |
+
msgstr ""
|
1987 |
+
|
1988 |
+
#: helpers/class-wt-import-export-helper.php:192
|
1989 |
+
msgid "Console form data"
|
1990 |
+
msgstr ""
|
1991 |
+
|
1992 |
+
#: helpers/class-wt-import-export-helper.php:203
|
1993 |
+
msgid "For debugging process"
|
1994 |
+
msgstr ""
|
1995 |
+
|
1996 |
+
#: helpers/class-wt-import-export-helper.php:204
|
1997 |
+
msgid "Debug panel"
|
1998 |
+
msgstr ""
|
1999 |
+
|
2000 |
+
#: includes/class-wf-orderimpexp-plugin-uninstall-feedback.php:23
|
2001 |
+
msgid "Used it successfully. Don't need anymore."
|
2002 |
+
msgstr ""
|
2003 |
+
|
2004 |
+
#: includes/class-wf-orderimpexp-plugin-uninstall-feedback.php:25
|
2005 |
+
msgid "Have used it successfully and aint in need of it anymore"
|
2006 |
+
msgstr ""
|
2007 |
+
|
2008 |
+
#: includes/class-wf-orderimpexp-plugin-uninstall-feedback.php:29
|
2009 |
+
msgid "I couldn't understand how to make it work"
|
2010 |
+
msgstr ""
|
2011 |
+
|
2012 |
+
#: includes/class-wf-orderimpexp-plugin-uninstall-feedback.php:31
|
2013 |
+
msgid "Would you like us to assist you?"
|
2014 |
+
msgstr ""
|
2015 |
+
|
2016 |
+
#: includes/class-wf-orderimpexp-plugin-uninstall-feedback.php:35
|
2017 |
+
msgid "I found a better plugin"
|
2018 |
+
msgstr ""
|
2019 |
+
|
2020 |
+
#: includes/class-wf-orderimpexp-plugin-uninstall-feedback.php:37
|
2021 |
+
msgid "Which plugin?"
|
2022 |
+
msgstr ""
|
2023 |
+
|
2024 |
+
#: includes/class-wf-orderimpexp-plugin-uninstall-feedback.php:41
|
2025 |
+
msgid "The plugin is great, but I need specific feature that you don't support"
|
2026 |
+
msgstr ""
|
2027 |
+
|
2028 |
+
#: includes/class-wf-orderimpexp-plugin-uninstall-feedback.php:43
|
2029 |
+
msgid "Could you tell us more about that feature?"
|
2030 |
+
msgstr ""
|
2031 |
+
|
2032 |
+
#: includes/class-wf-orderimpexp-plugin-uninstall-feedback.php:47
|
2033 |
+
msgid "The plugin is not working"
|
2034 |
+
msgstr ""
|
2035 |
+
|
2036 |
+
#: includes/class-wf-orderimpexp-plugin-uninstall-feedback.php:49
|
2037 |
+
msgid "Could you tell us a bit more whats not working?"
|
2038 |
+
msgstr ""
|
2039 |
+
|
2040 |
+
#: includes/class-wf-orderimpexp-plugin-uninstall-feedback.php:53
|
2041 |
+
msgid "It's not what I was looking for"
|
2042 |
+
msgstr ""
|
2043 |
+
|
2044 |
+
#: includes/class-wf-orderimpexp-plugin-uninstall-feedback.php:59
|
2045 |
+
msgid "The plugin didn't work as expected"
|
2046 |
+
msgstr ""
|
2047 |
+
|
2048 |
+
#: includes/class-wf-orderimpexp-plugin-uninstall-feedback.php:61
|
2049 |
+
msgid "What did you expect?"
|
2050 |
+
msgstr ""
|
2051 |
+
|
2052 |
+
#: includes/class-wf-orderimpexp-plugin-uninstall-feedback.php:67
|
2053 |
+
msgid "Could you tell us a bit more?"
|
2054 |
+
msgstr ""
|
2055 |
+
|
2056 |
+
#: includes/class-wf-orderimpexp-plugin-uninstall-feedback.php:85
|
2057 |
+
msgid "If you have a moment, please let us know why you are deactivating:"
|
2058 |
+
msgstr ""
|
2059 |
+
|
2060 |
+
#: includes/class-wf-orderimpexp-plugin-uninstall-feedback.php:96
|
2061 |
+
msgid ""
|
2062 |
+
"We do not collect any personal data when you submit this form. It's your "
|
2063 |
+
"feedback that we value."
|
2064 |
+
msgstr ""
|
2065 |
+
|
2066 |
+
#: includes/class-wf-orderimpexp-plugin-uninstall-feedback.php:97
|
2067 |
+
msgid "Privacy Policy"
|
2068 |
+
msgstr ""
|
2069 |
+
|
2070 |
+
#: includes/class-wf-orderimpexp-plugin-uninstall-feedback.php:101
|
2071 |
+
msgid "I rather wouldn't say"
|
2072 |
+
msgstr ""
|
2073 |
+
|
2074 |
+
#: includes/class-wf-orderimpexp-plugin-uninstall-feedback.php:104
|
2075 |
+
msgid "Get support"
|
2076 |
+
msgstr ""
|
2077 |
+
|
2078 |
+
#: includes/class-wf-orderimpexp-plugin-uninstall-feedback.php:105
|
2079 |
+
msgid "Submit & Deactivate"
|
2080 |
+
msgstr ""
|
2081 |
+
|
2082 |
+
#: includes/class-wf-orderimpexp-plugin-uninstall-feedback.php:193
|
2083 |
+
msgid "Deactivate and leave a review"
|
2084 |
+
msgstr ""
|
2085 |
+
|
2086 |
+
#: includes/class-wt-non-apache-info.php:43
|
2087 |
+
msgid ""
|
2088 |
+
"Incase of Nginx server, copy the below code into your server config file to "
|
2089 |
+
"restrict public access to the wp-content folder or contact the server team to "
|
2090 |
+
"assist accordingly."
|
2091 |
+
msgstr ""
|
2092 |
+
|
2093 |
+
#: includes/class-wt-order-legacy-menu-moved.php:64
|
2094 |
+
msgid "Remove order legacy menu"
|
2095 |
+
msgstr ""
|
2096 |
+
|
2097 |
+
#: order-import-export-for-woocommerce.php:97
|
2098 |
+
#, php-format
|
2099 |
+
msgid ""
|
2100 |
+
"The <b>WooCommerce</b> plugin must be active for <b>%s / Coupon / Subscription "
|
2101 |
+
"Export Import Plugin for WooCommerce (BASIC)</b> plugin to work. Please <a "
|
2102 |
+
"href=\"%s\" target=\"_blank\">install & activate WooCommerce</a>."
|
2103 |
+
msgstr ""
|
2104 |
+
|
2105 |
+
#: order-import-export-for-woocommerce.php:168
|
2106 |
+
msgid "Premium Upgrade"
|
2107 |
+
msgstr ""
|
2108 |
+
|
2109 |
+
#: order-import-export-for-woocommerce.php:220
|
2110 |
+
#, php-format
|
2111 |
+
msgid ""
|
2112 |
+
"We have introduced a new main menu %sWebToffee Import Export(basic)%s for the "
|
2113 |
+
"%s plugin. Click the button below or dismiss this banner to remove the old "
|
2114 |
+
"menu from %s."
|
2115 |
+
msgstr ""
|
2116 |
+
|
2117 |
+
#: order-import-export-for-woocommerce.php:231
|
2118 |
+
#, php-format
|
2119 |
+
msgid ""
|
2120 |
+
"The <b>%s</b> plugin uploads the imported file into <b>wp-content/"
|
2121 |
+
"webtoffee_import</b> folder. Please ensure that public access restrictions are "
|
2122 |
+
"set in your server for this folder."
|
2123 |
+
msgstr ""
|
2124 |
+
|
2125 |
+
#: order-import-export-for-woocommerce.php:241
|
2126 |
+
msgid "Sample Order CSV"
|
2127 |
+
msgstr ""
|
2128 |
+
|
2129 |
+
#: order-import-export-for-woocommerce.php:242
|
2130 |
+
#: order-import-export-for-woocommerce.php:259
|
2131 |
+
msgid "Familiarize yourself with the sample CSV."
|
2132 |
+
msgstr ""
|
2133 |
+
|
2134 |
+
#: order-import-export-for-woocommerce.php:244
|
2135 |
+
msgid "Get Order CSV"
|
2136 |
+
msgstr ""
|
2137 |
+
|
2138 |
+
#: order-import-export-for-woocommerce.php:258
|
2139 |
+
msgid "Sample Coupon CSV"
|
2140 |
+
msgstr ""
|
2141 |
+
|
2142 |
+
#: order-import-export-for-woocommerce.php:261
|
2143 |
+
msgid "Get Coupon CSV"
|
2144 |
+
msgstr ""
|
2145 |
+
|
2146 |
+
#: order-import-export-for-woocommerce.php:275
|
2147 |
+
msgid "Supports CSV/XML file formats."
|
2148 |
+
msgstr ""
|
2149 |
+
|
2150 |
+
#: order-import-export-for-woocommerce.php:276
|
2151 |
+
msgid "Export and import subscription orders"
|
2152 |
+
msgstr ""
|
2153 |
+
|
2154 |
+
#: order-import-export-for-woocommerce.php:277
|
2155 |
+
msgid "Import and export custom fields and hidden metadata."
|
2156 |
+
msgstr ""
|
2157 |
+
|
2158 |
+
#: order-import-export-for-woocommerce.php:278
|
2159 |
+
msgid "Run scheduled exports via FTP/SFTP."
|
2160 |
+
msgstr ""
|
2161 |
+
|
2162 |
+
#: order-import-export-for-woocommerce.php:279
|
2163 |
+
msgid "Run scheduled imports via URL/FTP/SFTP."
|
2164 |
+
msgstr ""
|
2165 |
+
|
2166 |
+
#: order-import-export-for-woocommerce.php:280
|
2167 |
+
msgid "Tested compatibility with various third-party plugins."
|
2168 |
+
msgstr ""
|
2169 |
+
|
2170 |
+
#: order-import-export-for-woocommerce.php:285
|
2171 |
+
msgid "Get more import export addons >>"
|
2172 |
+
msgstr ""
|
languages/wt-import-export-for-woo.pot
DELETED
File without changes
|
order-import-export-for-woocommerce.php
CHANGED
@@ -6,9 +6,12 @@ Plugin URI: https://wordpress.org/plugins/order-import-export-for-woocommerce/
|
|
6 |
Description: Export and Import Order detail including line items, From and To your WooCommerce Store.
|
7 |
Author: WebToffee
|
8 |
Author URI: https://www.webtoffee.com/product/woocommerce-order-coupon-subscription-export-import/
|
9 |
-
Version: 2.
|
10 |
Text Domain: order-import-export-for-woocommerce
|
11 |
-
|
|
|
|
|
|
|
12 |
License: GPLv3
|
13 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
14 |
*/
|
@@ -45,7 +48,7 @@ if ( !defined( 'WT_IEW_DEBUG_BASIC_TROUBLESHOOT' ) ) {
|
|
45 |
* Start at version 1.0.0 and use SemVer - https://semver.org
|
46 |
* Rename this for your plugin and update it as you release new versions.
|
47 |
*/
|
48 |
-
define( 'WT_O_IEW_VERSION', '2.
|
49 |
|
50 |
/**
|
51 |
* The code that runs during plugin activation.
|
6 |
Description: Export and Import Order detail including line items, From and To your WooCommerce Store.
|
7 |
Author: WebToffee
|
8 |
Author URI: https://www.webtoffee.com/product/woocommerce-order-coupon-subscription-export-import/
|
9 |
+
Version: 2.2.0
|
10 |
Text Domain: order-import-export-for-woocommerce
|
11 |
+
Domain Path: /languages
|
12 |
+
Requires at least: 3.0
|
13 |
+
Requires PHP: 5.6
|
14 |
+
WC tested up to: 6.2
|
15 |
License: GPLv3
|
16 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
17 |
*/
|
48 |
* Start at version 1.0.0 and use SemVer - https://semver.org
|
49 |
* Rename this for your plugin and update it as you release new versions.
|
50 |
*/
|
51 |
+
define( 'WT_O_IEW_VERSION', '2.2.0' );
|
52 |
|
53 |
/**
|
54 |
* The code that runs during plugin activation.
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: order export, woocommerce, order, export, csv, order import, woocommerce e
|
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 5.9
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 2.
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
@@ -28,7 +28,7 @@ The following are functionalities offered by the basic version of the plugin.
|
|
28 |
🔸 Bulk update WooCommerce orders and coupons.
|
29 |
🔸 Compatible with YITH WooCommerce Order Tracking plugin.
|
30 |
🔸 Supports various export filters (order status, product, coupon, customer, date range)
|
31 |
-
🔸 Tested OK with WooCommerce 6.
|
32 |
🔸 Tested OK with WP 5.9
|
33 |
🔸 Tested OK with PHP 8.0
|
34 |
|
@@ -226,6 +226,9 @@ Yes.
|
|
226 |
|
227 |
== Changelog ==
|
228 |
|
|
|
|
|
|
|
229 |
= 2.1.9 =
|
230 |
* Bugfix: CSV mapping issues.
|
231 |
= 2.1.8 =
|
@@ -489,5 +492,6 @@ Yes.
|
|
489 |
|
490 |
== Upgrade Notice ==
|
491 |
|
492 |
-
= 2.
|
493 |
-
* Bugfix:
|
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 5.9
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 2.2.0
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
28 |
🔸 Bulk update WooCommerce orders and coupons.
|
29 |
🔸 Compatible with YITH WooCommerce Order Tracking plugin.
|
30 |
🔸 Supports various export filters (order status, product, coupon, customer, date range)
|
31 |
+
🔸 Tested OK with WooCommerce 6.2
|
32 |
🔸 Tested OK with WP 5.9
|
33 |
🔸 Tested OK with PHP 8.0
|
34 |
|
226 |
|
227 |
== Changelog ==
|
228 |
|
229 |
+
= 2.2.0 =
|
230 |
+
* Bugfix: Coupon import without status.
|
231 |
+
* Enhancement: Performance and UI improvements, text corrections.
|
232 |
= 2.1.9 =
|
233 |
* Bugfix: CSV mapping issues.
|
234 |
= 2.1.8 =
|
492 |
|
493 |
== Upgrade Notice ==
|
494 |
|
495 |
+
= 2.2.0 =
|
496 |
+
* Bugfix: Coupon import without status.
|
497 |
+
* Enhancement: Performance and UI improvements, text corrections.
|