Version Description
- improvement: added 'WooCommerce Advanced Options' to re-import section
- bug fix: variations title
- bug fix: import first variation image
- bug fix: send order emails after custom fields were imported
- bug fix: updating featured product status
- bug fix: WPML & link all variations option conflict
- bug fix: add _price field for each variation
- bug fix: terms re-count
Download this release
Release Info
Developer | soflyy |
Plugin | Import Products from any XML or CSV to WooCommerce |
Version | 1.3.6 |
Comparing to | |
See all releases |
Code changes from version 1.3.5 to 1.3.6
- actions/pmxi_after_xml_import.php +3 -2
- actions/pmxi_options_tab.php +10 -0
- actions/pmxi_reimport.php +41 -16
- actions/pmxi_reimport_options_after_taxonomies.php +48 -0
- classes/config.php +2 -2
- classes/helper.php +2 -2
- controllers/admin/import.php +2 -2
- controllers/controller.php +2 -2
- controllers/controller/admin.php +2 -2
- filters/wp_all_import_existing_meta_keys.php +18 -0
- i18n/languages/wpai_woocommerce_addon_plugin-de_DE.mo +0 -0
- i18n/languages/wpai_woocommerce_addon_plugin-de_DE.po +1703 -944
- i18n/languages/wpai_woocommerce_addon_plugin-es_ES.mo +0 -0
- i18n/languages/wpai_woocommerce_addon_plugin-es_ES.po +1704 -941
- i18n/languages/wpai_woocommerce_addon_plugin-ja.mo +0 -0
- i18n/languages/wpai_woocommerce_addon_plugin-ja.po +2177 -0
- i18n/languages/wpai_woocommerce_addon_plugin.mo +0 -0
- i18n/languages/wpai_woocommerce_addon_plugin.pot +2177 -0
- models/import/record.php +66 -24
- models/model.php +2 -2
- models/model/list.php +2 -2
- models/model/record.php +2 -2
- plugin.php +100 -4
- readme.txt +15 -5
- static/css/admin-options.css +7 -0
- static/js/admin-options.js +24 -0
actions/pmxi_after_xml_import.php
CHANGED
@@ -6,7 +6,8 @@ function pmwi_pmxi_after_xml_import($import_id)
|
|
6 |
|
7 |
$import->getById($import_id);
|
8 |
|
9 |
-
|
|
|
10 |
{
|
11 |
$product_cats = get_terms( 'product_cat', array( 'hide_empty' => false, 'fields' => 'id=>parent' ) );
|
12 |
|
@@ -15,5 +16,5 @@ function pmwi_pmxi_after_xml_import($import_id)
|
|
15 |
$product_tags = get_terms( 'product_tag', array( 'hide_empty' => false, 'fields' => 'id=>parent' ) );
|
16 |
|
17 |
_wc_term_recount( $product_tags, get_taxonomy( 'product_tag' ), true, false );
|
18 |
-
}
|
19 |
}
|
6 |
|
7 |
$import->getById($import_id);
|
8 |
|
9 |
+
// Re-count WooCommerce Terms
|
10 |
+
if ( ! $import->isEmpty() and in_array($import->options['custom_type'], array('product', 'product_variation')) and ( ($import->options['create_new_records'] and $import->options['is_keep_former_posts'] == 'yes') or ($import->options['is_keep_former_posts'] == 'no' and ( $import->options['update_all_data'] == 'yes' or $import->options['is_update_categories']))))
|
11 |
{
|
12 |
$product_cats = get_terms( 'product_cat', array( 'hide_empty' => false, 'fields' => 'id=>parent' ) );
|
13 |
|
16 |
$product_tags = get_terms( 'product_tag', array( 'hide_empty' => false, 'fields' => 'id=>parent' ) );
|
17 |
|
18 |
_wc_term_recount( $product_tags, get_taxonomy( 'product_tag' ), true, false );
|
19 |
+
}
|
20 |
}
|
actions/pmxi_options_tab.php
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
function pmwi_pmxi_options_tab( $isWizard, $post )
|
3 |
+
{
|
4 |
+
if ( $post['custom_type'] == 'product' && class_exists('WooCommerce') ):
|
5 |
+
|
6 |
+
wp_enqueue_script('pmwi-admin-options-script', PMWI_ROOT_URL . '/static/js/admin-options.js', array('jquery'), PMWI_FREE_VERSION);
|
7 |
+
wp_enqueue_style('pmwi-admin-options-style', PMWI_ROOT_URL . '/static/css/admin-options.css', array(), PMWI_FREE_VERSION);
|
8 |
+
|
9 |
+
endif;
|
10 |
+
}
|
actions/pmxi_reimport.php
CHANGED
@@ -5,7 +5,7 @@ function pmwi_pmxi_reimport($entry, $post){
|
|
5 |
|
6 |
$all_existing_attributes = array();
|
7 |
$hide_taxonomies = array('product_type');
|
8 |
-
$post_taxonomies = array_diff_key(get_taxonomies_by_object_type(array($
|
9 |
if (!empty($post_taxonomies)):
|
10 |
foreach ($post_taxonomies as $ctx): if ("" == $ctx->labels->name or strpos($ctx->name, "pa_") === false) continue;
|
11 |
$all_existing_attributes[] = $ctx->name;
|
@@ -20,33 +20,59 @@ function pmwi_pmxi_reimport($entry, $post){
|
|
20 |
?>
|
21 |
<div class="input">
|
22 |
<input type="hidden" name="is_update_product_type" value="0" />
|
23 |
-
<input type="checkbox" id="is_update_product_type_<?php echo $
|
24 |
-
<label for="is_update_product_type_<?php echo $
|
25 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
<div class="input">
|
27 |
<input type="hidden" name="attributes_list" value="0" />
|
28 |
<input type="hidden" name="is_update_attributes" value="0" />
|
29 |
-
<input type="checkbox" id="is_update_attributes_<?php echo $
|
30 |
-
<label for="is_update_attributes_<?php echo $
|
31 |
-
|
32 |
-
<div class="switcher-target-is_update_attributes_<?php echo $entry; ?>" style="padding-left:17px;">
|
33 |
<div class="input">
|
34 |
-
<input type="radio" id="update_attributes_logic_full_update_<?php echo $
|
35 |
-
<label for="update_attributes_logic_full_update_<?php echo $
|
36 |
</div>
|
37 |
<div class="input">
|
38 |
-
<input type="radio" id="update_attributes_logic_only_<?php echo $
|
39 |
-
<label for="update_attributes_logic_only_<?php echo $
|
40 |
-
<div class="switcher-target-update_attributes_logic_only_<?php echo $
|
41 |
|
42 |
<span class="hidden choosen_values"><?php if (!empty($all_existing_attributes)) echo implode(',', $all_existing_attributes);?></span>
|
43 |
<input class="choosen_input" value="<?php if (!empty($post['attributes_list']) and "only" == $post['update_attributes_logic']) echo implode(',', $post['attributes_list']); ?>" type="hidden" name="attributes_only_list"/>
|
44 |
</div>
|
45 |
</div>
|
46 |
<div class="input">
|
47 |
-
<input type="radio" id="update_attributes_logic_all_except_<?php echo $
|
48 |
-
<label for="update_attributes_logic_all_except_<?php echo $
|
49 |
-
<div class="switcher-target-update_attributes_logic_all_except_<?php echo $
|
50 |
|
51 |
<span class="hidden choosen_values"><?php if (!empty($all_existing_attributes)) echo implode(',', $all_existing_attributes);?></span>
|
52 |
<input class="choosen_input" value="<?php if (!empty($post['attributes_list']) and "all_except" == $post['update_attributes_logic']) echo implode(',', $post['attributes_list']); ?>" type="hidden" name="attributes_except_list"/>
|
@@ -56,4 +82,3 @@ function pmwi_pmxi_reimport($entry, $post){
|
|
56 |
</div>
|
57 |
<?php
|
58 |
}
|
59 |
-
?>
|
5 |
|
6 |
$all_existing_attributes = array();
|
7 |
$hide_taxonomies = array('product_type');
|
8 |
+
$post_taxonomies = array_diff_key(get_taxonomies_by_object_type(array($post_type), 'object'), array_flip($hide_taxonomies));
|
9 |
if (!empty($post_taxonomies)):
|
10 |
foreach ($post_taxonomies as $ctx): if ("" == $ctx->labels->name or strpos($ctx->name, "pa_") === false) continue;
|
11 |
$all_existing_attributes[] = $ctx->name;
|
20 |
?>
|
21 |
<div class="input">
|
22 |
<input type="hidden" name="is_update_product_type" value="0" />
|
23 |
+
<input type="checkbox" id="is_update_product_type_<?php echo $post_type; ?>" name="is_update_product_type" value="1" <?php echo $post['is_update_product_type'] ? 'checked="checked"': '' ?> class="switcher"/>
|
24 |
+
<label for="is_update_product_type_<?php echo $post_type; ?>"><?php _e('Product Type', 'wpai_woocommerce_addon_plugin') ?></label>
|
25 |
</div>
|
26 |
+
|
27 |
+
<?php if ( PMXI_EDITION == 'paid' && version_compare(PMXI_VERSION, '4.4.9-beta-1.7') < 0 || PMXI_EDITION == 'free' && version_compare(PMXI_VERSION, '3.4.5') < 0 ): ?>
|
28 |
+
<div class="input">
|
29 |
+
<input type="hidden" name="attributes_list" value="0" />
|
30 |
+
<input type="hidden" name="is_update_advanced_options" value="0" />
|
31 |
+
<input type="checkbox" id="is_update_advanced_options_<?php echo $post_type; ?>" name="is_update_advanced_options" value="1" <?php echo $post['is_update_advanced_options'] ? 'checked="checked"': '' ?> class="switcher"/>
|
32 |
+
<label for="is_update_advanced_options_<?php echo $post_type; ?>"><?php _e('Advanced WooCommerce Options', 'wpai_woocommerce_addon_plugin') ?></label>
|
33 |
+
<div class="switcher-target-is_update_advanced_options_<?php echo $post_type; ?>" style="padding-left:17px;">
|
34 |
+
<div class="input">
|
35 |
+
<input type="hidden" name="is_update_catalog_visibility" value="0" />
|
36 |
+
<input type="checkbox" id="is_update_catalog_visibility_<?php echo $post_type; ?>" name="is_update_catalog_visibility" value="1" <?php echo $post['is_update_catalog_visibility'] ? 'checked="checked"': '' ?> class="switcher"/>
|
37 |
+
<label for="is_update_catalog_visibility_<?php echo $post_type; ?>"><?php _e('Update Catalog Visibility', 'wpai_woocommerce_addon_plugin') ?></label>
|
38 |
+
</div>
|
39 |
+
<div class="input">
|
40 |
+
<input type="hidden" name="is_update_featured_status" value="0" />
|
41 |
+
<input type="checkbox" id="is_update_featured_status_<?php echo $post_type; ?>" name="is_update_featured_status" value="1" <?php echo $post['is_update_featured_status'] ? 'checked="checked"': '' ?> class="switcher"/>
|
42 |
+
<label for="is_update_featured_status_<?php echo $post_type; ?>"><?php _e('Update Featured Status', 'wpai_woocommerce_addon_plugin') ?></label>
|
43 |
+
</div>
|
44 |
+
</div>
|
45 |
+
<div class="wp_all_import_woocommerce_deprecated_fields_notice_template">
|
46 |
+
<?php _e('As of WooCommerce 3.0 this data is no longer stored as a custom field - use the advanced options above.', 'wpai_woocommerce_addon_plugin'); ?>
|
47 |
+
</div>
|
48 |
+
<div class="wp_all_import_woocommerce_stock_status_notice_template">
|
49 |
+
<?php _e('As of WooCommerce 3.0 stock status is automatically updated when stock is updated.', 'wpai_woocommerce_addon_plugin'); ?>
|
50 |
+
</div>
|
51 |
+
</div>
|
52 |
+
<?php endif; ?>
|
53 |
<div class="input">
|
54 |
<input type="hidden" name="attributes_list" value="0" />
|
55 |
<input type="hidden" name="is_update_attributes" value="0" />
|
56 |
+
<input type="checkbox" id="is_update_attributes_<?php echo $post_type; ?>" name="is_update_attributes" value="1" <?php echo $post['is_update_attributes'] ? 'checked="checked"': '' ?> class="switcher"/>
|
57 |
+
<label for="is_update_attributes_<?php echo $post_type; ?>"><?php _e('Attributes', 'wpai_woocommerce_addon_plugin') ?></label>
|
58 |
+
<div class="switcher-target-is_update_attributes_<?php echo $post_type; ?>" style="padding-left:17px;">
|
|
|
59 |
<div class="input">
|
60 |
+
<input type="radio" id="update_attributes_logic_full_update_<?php echo $post_type; ?>" name="update_attributes_logic" value="full_update" <?php echo ( "full_update" == $post['update_attributes_logic'] ) ? 'checked="checked"': '' ?> class="switcher"/>
|
61 |
+
<label for="update_attributes_logic_full_update_<?php echo $post_type; ?>"><?php _e('Update all Attributes', 'wpai_woocommerce_addon_plugin') ?></label>
|
62 |
</div>
|
63 |
<div class="input">
|
64 |
+
<input type="radio" id="update_attributes_logic_only_<?php echo $post_type; ?>" name="update_attributes_logic" value="only" <?php echo ( "only" == $post['update_attributes_logic'] ) ? 'checked="checked"': '' ?> class="switcher"/>
|
65 |
+
<label for="update_attributes_logic_only_<?php echo $post_type; ?>"><?php _e('Update only these Attributes, leave the rest alone', 'wpai_woocommerce_addon_plugin') ?></label>
|
66 |
+
<div class="switcher-target-update_attributes_logic_only_<?php echo $post_type; ?> pmxi_choosen" style="padding-left:17px;">
|
67 |
|
68 |
<span class="hidden choosen_values"><?php if (!empty($all_existing_attributes)) echo implode(',', $all_existing_attributes);?></span>
|
69 |
<input class="choosen_input" value="<?php if (!empty($post['attributes_list']) and "only" == $post['update_attributes_logic']) echo implode(',', $post['attributes_list']); ?>" type="hidden" name="attributes_only_list"/>
|
70 |
</div>
|
71 |
</div>
|
72 |
<div class="input">
|
73 |
+
<input type="radio" id="update_attributes_logic_all_except_<?php echo $post_type; ?>" name="update_attributes_logic" value="all_except" <?php echo ( "all_except" == $post['update_attributes_logic'] ) ? 'checked="checked"': '' ?> class="switcher"/>
|
74 |
+
<label for="update_attributes_logic_all_except_<?php echo $post_type; ?>"><?php _e('Leave these attributes alone, update all other Attributes', 'wpai_woocommerce_addon_plugin') ?></label>
|
75 |
+
<div class="switcher-target-update_attributes_logic_all_except_<?php echo $post_type; ?> pmxi_choosen" style="padding-left:17px;">
|
76 |
|
77 |
<span class="hidden choosen_values"><?php if (!empty($all_existing_attributes)) echo implode(',', $all_existing_attributes);?></span>
|
78 |
<input class="choosen_input" value="<?php if (!empty($post['attributes_list']) and "all_except" == $post['update_attributes_logic']) echo implode(',', $post['attributes_list']); ?>" type="hidden" name="attributes_except_list"/>
|
82 |
</div>
|
83 |
<?php
|
84 |
}
|
|
actions/pmxi_reimport_options_after_taxonomies.php
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
function pmwi_pmxi_reimport_options_after_taxonomies($post_type, $post){
|
4 |
+
|
5 |
+
if ( ! in_array($post_type, array('product')) and empty($post['is_override_post_type']) or ! class_exists('WooCommerce')) return;
|
6 |
+
|
7 |
+
switch ($post_type)
|
8 |
+
{
|
9 |
+
case 'product':
|
10 |
+
|
11 |
+
if ( version_compare(WOOCOMMERCE_VERSION, '3.0') >= 0 && ( PMXI_EDITION == 'paid' && version_compare(PMXI_VERSION, '4.4.9-beta-1.7') >= 0 || PMXI_EDITION == 'free' && version_compare(PMXI_VERSION, '3.4.5') >= 0 )):
|
12 |
+
|
13 |
+
?>
|
14 |
+
<div class="input">
|
15 |
+
<input type="hidden" name="attributes_list" value="0" />
|
16 |
+
<input type="hidden" name="is_update_advanced_options" value="0" />
|
17 |
+
<input type="checkbox" id="is_update_advanced_options_<?php echo $post_type; ?>" name="is_update_advanced_options" value="1" <?php echo $post['is_update_advanced_options'] ? 'checked="checked"': '' ?> class="switcher"/>
|
18 |
+
<label for="is_update_advanced_options_<?php echo $post_type; ?>"><?php _e('Advanced WooCommerce Options', 'wpai_woocommerce_addon_plugin') ?></label>
|
19 |
+
<div class="switcher-target-is_update_advanced_options_<?php echo $post_type; ?>" style="padding-left:17px;">
|
20 |
+
<div class="input">
|
21 |
+
<input type="hidden" name="is_update_catalog_visibility" value="0" />
|
22 |
+
<input type="checkbox" id="is_update_catalog_visibility_<?php echo $post_type; ?>" name="is_update_catalog_visibility" value="1" <?php echo $post['is_update_catalog_visibility'] ? 'checked="checked"': '' ?> class="switcher"/>
|
23 |
+
<label for="is_update_catalog_visibility_<?php echo $post_type; ?>"><?php _e('Update Catalog Visibility', 'wpai_woocommerce_addon_plugin') ?></label>
|
24 |
+
</div>
|
25 |
+
<div class="input">
|
26 |
+
<input type="hidden" name="is_update_featured_status" value="0" />
|
27 |
+
<input type="checkbox" id="is_update_featured_status_<?php echo $post_type; ?>" name="is_update_featured_status" value="1" <?php echo $post['is_update_featured_status'] ? 'checked="checked"': '' ?> class="switcher"/>
|
28 |
+
<label for="is_update_featured_status_<?php echo $post_type; ?>"><?php _e('Update Featured Status', 'wpai_woocommerce_addon_plugin') ?></label>
|
29 |
+
</div>
|
30 |
+
</div>
|
31 |
+
<div class="wp_all_import_woocommerce_deprecated_fields_notice_template">
|
32 |
+
<?php _e('As of WooCommerce 3.0 this data is no longer stored as a custom field - use the advanced options below.', 'wpai_woocommerce_addon_plugin'); ?>
|
33 |
+
</div>
|
34 |
+
<div class="wp_all_import_woocommerce_stock_status_notice_template">
|
35 |
+
<?php _e('As of WooCommerce 3.0 stock status is automatically updated when stock is updated.', 'wpai_woocommerce_addon_plugin'); ?>
|
36 |
+
</div>
|
37 |
+
</div>
|
38 |
+
<?php
|
39 |
+
|
40 |
+
endif;
|
41 |
+
|
42 |
+
break;
|
43 |
+
|
44 |
+
default:
|
45 |
+
# code...
|
46 |
+
break;
|
47 |
+
}
|
48 |
+
}
|
classes/config.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Class to load config files
|
4 |
-
*
|
5 |
-
* @author
|
6 |
*/
|
7 |
class PMWI_Config implements IteratorAggregate {
|
8 |
/**
|
1 |
<?php
|
2 |
/**
|
3 |
* Class to load config files
|
4 |
+
*
|
5 |
+
* @author Maksym Tsypliakov <maksym.tsypliakov@gmail.com>
|
6 |
*/
|
7 |
class PMWI_Config implements IteratorAggregate {
|
8 |
/**
|
classes/helper.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Helper class which defnes a namespace for some commonly used functions
|
4 |
-
*
|
5 |
-
* @author
|
6 |
*/
|
7 |
class PMWI_Helper {
|
8 |
const GLOB_MARK = 1;
|
1 |
<?php
|
2 |
/**
|
3 |
* Helper class which defnes a namespace for some commonly used functions
|
4 |
+
*
|
5 |
+
* @author Maksym Tsypliakov <maksym.tsypliakov@gmail.com>
|
6 |
*/
|
7 |
class PMWI_Helper {
|
8 |
const GLOB_MARK = 1;
|
controllers/admin/import.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
*
|
4 |
-
* @author
|
5 |
*/
|
6 |
|
7 |
class PMWI_Admin_Import extends PMWI_Controller_Admin
|
1 |
<?php
|
2 |
/**
|
3 |
+
*
|
4 |
+
* @author Maksym Tsypliakov <maksym.tsypliakov@gmail.com>
|
5 |
*/
|
6 |
|
7 |
class PMWI_Admin_Import extends PMWI_Controller_Admin
|
controllers/controller.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Common logic for all shortcodes plugin implements
|
4 |
-
*
|
5 |
-
* @author
|
6 |
*/
|
7 |
abstract class PMWI_Controller {
|
8 |
/**
|
1 |
<?php
|
2 |
/**
|
3 |
* Common logic for all shortcodes plugin implements
|
4 |
+
*
|
5 |
+
* @author Maksym Tsypliakov <maksym.tsypliakov@gmail.com>
|
6 |
*/
|
7 |
abstract class PMWI_Controller {
|
8 |
/**
|
controllers/controller/admin.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Introduce special type for controllers which render pages inside admin area
|
4 |
-
*
|
5 |
-
* @author
|
6 |
*/
|
7 |
abstract class PMWI_Controller_Admin extends PMWI_Controller {
|
8 |
/**
|
1 |
<?php
|
2 |
/**
|
3 |
* Introduce special type for controllers which render pages inside admin area
|
4 |
+
*
|
5 |
+
* @author Maksym Tsypliakov <maksym.tsypliakov@gmail.com>
|
6 |
*/
|
7 |
abstract class PMWI_Controller_Admin extends PMWI_Controller {
|
8 |
/**
|
filters/wp_all_import_existing_meta_keys.php
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
function pmwi_wp_all_import_existing_meta_keys( $existing_meta_keys, $custom_type )
|
4 |
+
{
|
5 |
+
if ( $custom_type == 'product')
|
6 |
+
{
|
7 |
+
$hide_fields = array('_regular_price_tmp', '_sale_price_tmp', '_sale_price_dates_from_tmp', '_sale_price_dates_from_tmp', '_sale_price_dates_to_tmp', '_price_tmp', '_stock_tmp', '_stock_status_tmp', '_product_image_gallery_tmp');
|
8 |
+
if (version_compare(WOOCOMMERCE_VERSION, '3.0') >= 0){
|
9 |
+
$hide_fields[] = '_stock_status';
|
10 |
+
$hide_fields[] = '_visibility';
|
11 |
+
$hide_fields[] = '_featured';
|
12 |
+
}
|
13 |
+
foreach ($existing_meta_keys as $key => $value) {
|
14 |
+
if ( in_array($value, $hide_fields) || strpos($value, '_v_') === 0 ) unset($existing_meta_keys[$key]);
|
15 |
+
}
|
16 |
+
}
|
17 |
+
return $existing_meta_keys;
|
18 |
+
}
|
i18n/languages/wpai_woocommerce_addon_plugin-de_DE.mo
CHANGED
Binary file
|
i18n/languages/wpai_woocommerce_addon_plugin-de_DE.po
CHANGED
@@ -1,1418 +1,2177 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: WP All Import - WooCommerce Add-On Pro\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: Sun Nov 08 2015 17:17:28 GMT+0200 (EET)\n"
|
6 |
-
"PO-Revision-Date: Mon Dec 21 2015 19:49:49 GMT+0200 (EET)\n"
|
7 |
-
"Last-Translator: admin <makstsiplyskov@gmail.loc>\n"
|
8 |
-
"Language-Team: \n"
|
9 |
-
"Language: German\n"
|
10 |
-
"Plural-Forms: nplurals=2; plural=n != 1\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
-
"X-
|
15 |
-
"
|
16 |
-
"
|
17 |
-
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
18 |
-
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
19 |
-
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
20 |
-
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
21 |
-
"X-Loco-Target-Locale: de_DE\n"
|
22 |
-
"X-Generator: Loco - https://localise.biz/\n"
|
23 |
-
"X-Poedit-SearchPath-0: ."
|
24 |
-
|
25 |
-
#: ../../views/admin/import/_tabs/_general.php:25 ../..
|
26 |
-
#: /views/admin/import/_tabs/_general.php:49
|
27 |
-
#, php-format
|
28 |
-
msgid "Regular Price (%s)"
|
29 |
-
msgstr ""
|
30 |
-
|
31 |
-
#: ../../views/admin/import/_tabs/_general.php:29 ../..
|
32 |
-
#: /views/admin/import/_tabs/_general.php:61
|
33 |
-
#, php-format
|
34 |
-
msgid "Sale Price (%s)"
|
35 |
-
msgstr ""
|
36 |
-
|
37 |
-
#: ../../views/admin/import/_tabs/_linked_product.php:5 ../..
|
38 |
-
#: /views/admin/import/_tabs/_linked_product.php:9
|
39 |
-
msgid "Product SKUs, comma separated"
|
40 |
-
msgstr ""
|
41 |
-
|
42 |
-
#: ../../views/admin/import/_tabs/_shipping.php:5
|
43 |
-
#, php-format
|
44 |
-
msgid "Weight (%s)"
|
45 |
-
msgstr ""
|
46 |
-
|
47 |
-
#: ../../views/admin/import/_tabs/_shipping.php:9
|
48 |
-
#, php-format
|
49 |
-
msgid "Dimensions (%s)"
|
50 |
-
msgstr ""
|
51 |
-
|
52 |
-
#: ../../views/admin/import/_tabs/_shipping.php:10
|
53 |
-
msgid "Length"
|
54 |
-
msgstr ""
|
55 |
-
|
56 |
-
#: ../../views/admin/import/_tabs/_shipping.php:11
|
57 |
-
msgid "Width"
|
58 |
-
msgstr ""
|
59 |
-
|
60 |
-
#: ../../views/admin/import/_tabs/_shipping.php:12
|
61 |
-
msgid "Height"
|
62 |
-
msgstr ""
|
63 |
-
|
64 |
-
msgid "WP All Import - WooCommerce Add-On Pro"
|
65 |
-
msgstr "WP All Import - WooCommerce Add-On Pro"
|
66 |
-
|
67 |
-
msgid "http://www.wpallimport.com"
|
68 |
-
msgstr "http://www.wpallimport.com"
|
69 |
-
|
70 |
-
msgid ""
|
71 |
-
"Import to WooCommerce. Adds a section to WP All Import that looks just like "
|
72 |
-
"WooCommerce. Requires WP All Import."
|
73 |
-
msgstr ""
|
74 |
-
"Importiere zu WooCommerce. Fügt einen Abschnitt zu WP All Import hinzu der "
|
75 |
-
"genau wie WooCommerce aussieht. Benötigt WP All Import"
|
76 |
-
|
77 |
-
msgid "Soflyy"
|
78 |
-
msgstr "Soflyy"
|
79 |
|
80 |
-
#:
|
81 |
-
msgid ""
|
82 |
-
"Please de-activate and remove the free version of the WooCommere add-on "
|
83 |
-
"before activating the paid version."
|
84 |
-
msgstr ""
|
85 |
-
"Bitte deaktivieren und entfernen Sie die freie Version von WP All Import "
|
86 |
-
"bevor Sie die bezahlte Version aktivieren."
|
87 |
-
|
88 |
-
#: ../../actions/admin_notices.php:10
|
89 |
-
#, php-format
|
90 |
msgid "<b>%s Plugin</b>: WooCommerce must be installed."
|
91 |
msgstr "<b>%s Plugin:</b> WooCommerce muss installiert sein."
|
92 |
|
93 |
-
#:
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
"target=\"_blank\">http://wordpress.org/plugins/wp-all-import/</a> and the paid "
|
99 |
-
"edition at <a href=\"http://www.wpallimport.com/\">http://www.wpallimport."
|
100 |
-
"com/</a>"
|
101 |
-
msgstr ""
|
102 |
-
"<b>%s Plugin:</b> WP All Import muss installiert sein. Die Kostenlose "
|
103 |
-
"Version von WP All Import finden Sie unter <a href=\"http://wordpress."
|
104 |
-
"org/plugins/wp-all-import/\" target=\"_blank\">http://wordpress.org/plugins/wp-"
|
105 |
-
"all-import/</a> und die bezahlte Version unter <a href=\"http://www."
|
106 |
-
"wpallimport.com/\">http://www.wpallimport.com/</a>"
|
107 |
-
|
108 |
-
#: ../../actions/admin_notices.php:38
|
109 |
-
#, php-format
|
110 |
msgid "<b>%s Plugin</b>: Please update your WP All Import to the latest version"
|
111 |
-
msgstr ""
|
112 |
-
"<b>%s Plugin:</b> Bitte aktualisieren Sie Ihren WP All Import auf die "
|
113 |
-
"neueste Version"
|
114 |
|
115 |
-
#:
|
116 |
-
#, php-format
|
117 |
msgid "<b>%s Plugin</b>: Please update your WooCommerce to the latest version"
|
118 |
-
msgstr ""
|
119 |
-
"<b>%s Plugin:</b> Bitte aktualisieren Sie Ihr WooCommerce auf die neueste "
|
120 |
-
"Version"
|
121 |
|
122 |
-
#:
|
123 |
msgid "Product Type"
|
124 |
msgstr "Produkttyp"
|
125 |
|
126 |
-
#:
|
127 |
msgid "Attributes"
|
128 |
msgstr "Merkmale"
|
129 |
|
130 |
-
#:
|
131 |
-
msgid ""
|
132 |
-
"If Keep Custom Fields box is checked, it will keep all Custom Fields, and "
|
133 |
-
"add any new Custom Fields specified in Custom Fields section, as long as "
|
134 |
-
"they do not overwrite existing fields. If 'Only keep this Custom Fields' is "
|
135 |
-
"specified, it will only keep the specified fields."
|
136 |
-
msgstr ""
|
137 |
-
"Wenn die Box: 'Behalte individuelle Felder' markiert ist, wird es alle "
|
138 |
-
"individuellen Felder behalten und neue hinzufügen die im Abschnitt "
|
139 |
-
"individuelle Felder bestimmt wurden, solange sie bestehende Felder nicht "
|
140 |
-
"überschreiben. Wenn 'Nur dieses individuelle Feld behalten' markiert ist, "
|
141 |
-
"wird es nur die bestimmten Felder behalten."
|
142 |
-
|
143 |
-
#: ../../actions/pmxi_reimport.php:35
|
144 |
msgid "Update all Attributes"
|
145 |
msgstr "Aktualisiere alle Merkmale"
|
146 |
|
147 |
-
#:
|
148 |
msgid "Update only these Attributes, leave the rest alone"
|
149 |
msgstr "Aktualisiere nur diese Merkmale, lasse den Rest in Ruhe"
|
150 |
|
151 |
-
#:
|
152 |
msgid "Leave these attributes alone, update all other Attributes"
|
153 |
msgstr "Lasse diese Merkmale in Ruhe, aktualisiere alle anderen Merkmale"
|
154 |
|
155 |
-
#:
|
156 |
-
|
157 |
-
msgid ""
|
158 |
-
"There is a new version of %1$s available. <a target=\"_blank\" "
|
159 |
-
"class=\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
|
160 |
msgstr ""
|
161 |
-
"Eine neue Version von %1$s ist verfügbar. <a target=\"_blank\" "
|
162 |
-
"class=\"thickbox\" href=\"%2$s\">Details ansehen von %3$s</a>."
|
163 |
|
164 |
-
#:
|
165 |
-
|
166 |
-
msgid ""
|
167 |
-
"There is a new version of %1$s available. <a target=\"_blank\" "
|
168 |
-
"class=\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a "
|
169 |
-
"href=\"%4$s\">update now</a>."
|
170 |
msgstr ""
|
171 |
-
"Eine neue Version von %1$s ist verfügbar. <a target=\"_blank\" "
|
172 |
-
"class=\"thickbox\" href=\"%2$s\">Details ansehen von %3$s</a> oder <a "
|
173 |
-
"href=\"%4$s\">jetzt aktualisieren</a>."
|
174 |
|
175 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
176 |
msgid "You do not have permission to install plugin updates"
|
177 |
msgstr "Sie haben keine Berechtigung um Plug-In Aktualisierungen durchzuführen."
|
178 |
|
179 |
-
#:
|
180 |
msgid "Error"
|
181 |
msgstr "Fehler"
|
182 |
|
183 |
-
#:
|
184 |
-
msgid ""
|
185 |
-
"
|
186 |
-
"order was submitted by a customer, will need to manually restore the item's "
|
187 |
-
"stock."
|
188 |
-
msgstr ""
|
189 |
-
"Dieses Produkt entfernen? Wenn Sie vorher den Lagerbestand dieses Produktes "
|
190 |
-
"verringert haben, oder ein Kunde etwas bestellt hat, wird eine manuelle "
|
191 |
-
"Bearbeitung des Lagerbestandes nötig."
|
192 |
|
193 |
-
#:
|
194 |
msgid "Remove this attribute?"
|
195 |
msgstr "Dieses Merkmal entfernen?"
|
196 |
|
197 |
-
#:
|
198 |
-
#:
|
199 |
-
#:
|
200 |
-
#:
|
|
|
|
|
|
|
201 |
msgid "Name"
|
202 |
msgstr "Name"
|
203 |
|
204 |
-
#:
|
205 |
msgid "Remove"
|
206 |
msgstr "Entfernen"
|
207 |
|
208 |
-
#:
|
209 |
msgid "Click to toggle"
|
210 |
msgstr "Klicken zum Schalten"
|
211 |
|
212 |
-
#:
|
213 |
msgid "Value(s)"
|
214 |
msgstr "Wert(e)"
|
215 |
|
216 |
-
#:
|
217 |
msgid "Enter some text, or some attributes by pipe (|) separating values."
|
218 |
msgstr "Text eingeben, oder einige Merkmale getrennt durch eine Pipe (|)."
|
219 |
|
220 |
-
#:
|
221 |
msgid "Visible on the product page"
|
222 |
msgstr "Sichtbar auf der Produktseite"
|
223 |
|
224 |
-
#:
|
225 |
msgid "Used for variations"
|
226 |
msgstr "Genutzt für Variationen"
|
227 |
|
228 |
-
#:
|
229 |
msgid "Enter a name for the new attribute term:"
|
230 |
msgstr "Namen für das neue Merkmal eingeben"
|
231 |
|
232 |
-
#:
|
233 |
-
msgid ""
|
234 |
-
"
|
235 |
-
"you will need to (optionally) calculate tax rows and cart discounts manually."
|
236 |
-
msgstr ""
|
237 |
-
"Berechne Summen basierend auf bestellten Produkten, Rabatten und "
|
238 |
-
"Lieferkosten? Hinweis, Sie werden (optional) die Spalte der Steuern und "
|
239 |
-
"Einkaufswagen Rabatte manuell berechnen müssen. "
|
240 |
|
241 |
-
#:
|
242 |
-
msgid ""
|
243 |
-
"
|
244 |
-
"country. If no billing/shipping is set it will use the store base country."
|
245 |
-
msgstr ""
|
246 |
-
"Berechne Produktbezogene Steuern? Das wird die Steuern basierend auf das "
|
247 |
-
"Kundenland berechnen. Wenn keine Rechnung/Versendung gesetzt ist, wird das "
|
248 |
-
"Basisland des Shops genutzt."
|
249 |
|
250 |
-
#:
|
251 |
-
msgid ""
|
252 |
-
"
|
253 |
-
"currently entered shipping information."
|
254 |
-
msgstr ""
|
255 |
-
"Kopiere Rechnungsinformationen zur Versandinformation? Das wird alle bisher "
|
256 |
-
"eingegebenen Versandinformationen entfernen."
|
257 |
|
258 |
-
#:
|
259 |
-
msgid ""
|
260 |
-
"
|
261 |
-
"entered billing information."
|
262 |
-
msgstr ""
|
263 |
-
"Lade des Kunden Rechnungsinformation? Das wird alle bisher eingegebenen "
|
264 |
-
"Rechnungsinformationen entfernen."
|
265 |
|
266 |
-
#:
|
267 |
-
msgid ""
|
268 |
-
"
|
269 |
-
"entered shipping information."
|
270 |
-
msgstr ""
|
271 |
-
"Lade des Kunden Versandinformation? Das wird alle bisher eingegebenen "
|
272 |
-
"Versandinformationen entfernen."
|
273 |
|
274 |
-
#:
|
275 |
-
#:
|
276 |
msgid "Featured"
|
277 |
msgstr "Featured"
|
278 |
|
279 |
-
#:
|
|
|
|
|
|
|
280 |
msgid "Meta Name"
|
281 |
msgstr "Meta Name"
|
282 |
|
283 |
-
#:
|
|
|
|
|
|
|
284 |
msgid "Meta Value"
|
285 |
msgstr "Meta Wert"
|
286 |
|
287 |
-
#:
|
288 |
msgid "No customer selected"
|
289 |
msgstr "Kein Kunde gewählt"
|
290 |
|
291 |
-
#:
|
292 |
msgid "Tax Label:"
|
293 |
msgstr "Steuer Kennzeichnung"
|
294 |
|
295 |
-
#:
|
296 |
msgid "Compound:"
|
297 |
msgstr "Mischung:"
|
298 |
|
299 |
-
#:
|
300 |
msgid "Cart Tax:"
|
301 |
msgstr "Einkaufswagen Steuern:"
|
302 |
|
303 |
-
#:
|
304 |
msgid "Shipping Tax:"
|
305 |
msgstr "Versand Steuern:"
|
306 |
|
307 |
-
#:
|
308 |
msgid "WooCommerce Products"
|
309 |
msgstr "WooCommerce Produkte"
|
310 |
|
311 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
312 |
msgid "Composing product data..."
|
313 |
msgstr "Zusammengesetzte Produkt Daten..."
|
314 |
|
315 |
-
#:
|
316 |
msgid "Composing variations attributes..."
|
317 |
msgstr "Zusammengesetzte Merkmal Variationen..."
|
318 |
|
319 |
-
#:
|
320 |
msgid "<b>WARNING</b>: Product SKU must be unique."
|
321 |
msgstr "<b>WARNING</b>: Produkt ID muss einzigartig sein."
|
322 |
|
323 |
-
#:
|
324 |
-
#: /
|
325 |
-
|
326 |
msgid "Variation #%s of %s"
|
327 |
msgstr "Variation #%s von %s"
|
328 |
|
329 |
-
#:
|
330 |
-
#, php-format
|
331 |
msgid "<b>CREATED</b>: %s variations for parent product %s."
|
332 |
msgstr "<b>CREATED</b>: %s Variationen für gegenwärtiges Produkt %s."
|
333 |
|
334 |
-
#:
|
335 |
msgid "- Importing Variations"
|
336 |
msgstr "- Importiere Variationen"
|
337 |
|
338 |
-
#:
|
339 |
-
#, php-format
|
340 |
msgid "- `%s`: variation created successfully"
|
341 |
msgstr "- `%s`: Variation erfolgreich erstellt"
|
342 |
|
343 |
-
#:
|
344 |
-
#, php-format
|
345 |
msgid "- `%s`: variation updated successfully"
|
346 |
msgstr "- `%s`: Variation erfolgreich aktualisiert"
|
347 |
|
348 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
349 |
msgid "- <b>WARNING</b>: Product SKU must be unique."
|
350 |
msgstr "<b>WARNING</b>: Produkt ID muss einzigartig sein."
|
351 |
|
352 |
-
#:
|
353 |
-
|
354 |
-
|
355 |
-
msgstr "- <b>Image SKIPPED</b>: Das Bild %s existiert immer für %s"
|
356 |
|
357 |
-
#:
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
362 |
msgstr ""
|
363 |
-
"- <b>WARNUNG</b>: Datei %s ist kein zulässiges Bild und kann nicht als "
|
364 |
-
"Featured-Bild gesetzt werden"
|
365 |
|
366 |
-
#:
|
367 |
-
#, php-format
|
368 |
msgid "- <b>WARNING</b>: File %s cannot be saved locally as %s"
|
369 |
msgstr "- <b>WARNUNG</b>: Datei %s kann lokal nicht gespeichert werden als %s"
|
370 |
|
371 |
-
#:
|
|
|
|
|
|
|
|
|
372 |
msgid "- <b>WARNING</b>"
|
373 |
msgstr "- <b>WARNUNG</b>"
|
374 |
|
375 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
376 |
msgid "<b>ERROR</b> Could not insert term relationship into the database"
|
377 |
msgstr "<b>ERROR</b> Einfügen von Beziehungen in die Datenbank nicht möglich"
|
378 |
|
379 |
-
#:
|
380 |
-
|
381 |
-
|
382 |
-
"- <b>WARNING</b>: Slug “%s” is not allowed because it is a reserved term. "
|
383 |
-
"Change it, please."
|
384 |
-
msgstr ""
|
385 |
-
"- <b>WARNING</b>: Slug “%s” ist nicht zulässig da es ein reservierter "
|
386 |
-
"Begriff ist. Bitte ändern."
|
387 |
|
388 |
-
#:
|
389 |
-
#, php-format
|
390 |
msgid "- <b>CREATED</b>: Taxonomy attribute “%s” have been successfully created."
|
391 |
msgstr "- <b>CREATED</b>: Taxonomie Merkmal \"%s\" wurde erfolgreich erstellt."
|
392 |
|
393 |
-
#:
|
394 |
-
|
395 |
-
msgid ""
|
396 |
-
"- <b>WARNING</b>: Taxonomy “%s” name is more than 32 characters. Change it, "
|
397 |
-
"please."
|
398 |
msgstr ""
|
399 |
-
"- <b>WARNING</b>: Taxonomie \"%s\" Name ist länger als 32 Zeichen. Bitte "
|
400 |
-
"ändern."
|
401 |
|
402 |
-
#:
|
403 |
-
#, php-format
|
404 |
msgid "- <b>WARNING</b>: Unable to create cloaked link for %s"
|
405 |
msgstr "<b>WARNING</b>:Verhüllten Link erstellen nicht möglich %s"
|
406 |
|
407 |
-
#:
|
408 |
-
msgid "
|
409 |
-
msgstr "
|
410 |
|
411 |
-
#:
|
412 |
-
msgid "
|
413 |
-
msgstr "
|
414 |
|
415 |
-
#:
|
416 |
-
msgid "
|
417 |
-
msgstr "
|
418 |
|
419 |
-
#:
|
420 |
-
msgid "
|
421 |
-
msgstr "
|
422 |
|
423 |
-
#:
|
424 |
-
|
425 |
-
|
|
|
|
|
426 |
|
427 |
-
#:
|
428 |
-
msgid "
|
429 |
-
msgstr "
|
430 |
|
431 |
-
#:
|
432 |
-
msgid ""
|
433 |
-
"The value of presented XPath should be one of the following: ('simple', "
|
434 |
-
"'grouped', 'external', 'variable')."
|
435 |
msgstr ""
|
436 |
-
"Der Wert des gegenwärtigen XPath sollte einer der folgenden sein:('simple', "
|
437 |
-
"'grouped', 'external', 'variable')."
|
438 |
|
439 |
-
#:
|
440 |
-
#:
|
441 |
-
|
442 |
-
|
443 |
-
msgstr "Virtuell"
|
444 |
|
445 |
-
#:
|
446 |
-
|
447 |
-
|
448 |
-
msgid "Downloadable"
|
449 |
-
msgstr "Herunterladbar"
|
450 |
|
451 |
-
#:
|
452 |
-
msgid "
|
453 |
-
msgstr "
|
454 |
|
455 |
-
#:
|
456 |
-
msgid "
|
457 |
-
msgstr "
|
458 |
|
459 |
-
#:
|
460 |
-
|
461 |
-
|
|
|
462 |
|
463 |
-
#:
|
464 |
-
msgid "
|
465 |
-
msgstr "
|
466 |
|
467 |
-
#:
|
468 |
-
|
469 |
-
|
470 |
-
#: /views/admin/import/_tabs/_attributes.php:286
|
471 |
-
msgid "Advanced"
|
472 |
-
msgstr "Erweitert"
|
473 |
|
474 |
-
#:
|
475 |
-
msgid "
|
476 |
-
msgstr "
|
477 |
|
478 |
-
#:
|
479 |
-
msgid "
|
480 |
-
msgstr "
|
481 |
|
482 |
-
#:
|
483 |
-
msgid "
|
484 |
-
msgstr "
|
485 |
|
486 |
-
#:
|
487 |
-
msgid "
|
488 |
-
msgstr "
|
489 |
|
490 |
-
#:
|
491 |
-
msgid "
|
492 |
-
msgstr "
|
493 |
|
494 |
-
#:
|
495 |
-
|
496 |
-
|
497 |
-
#: /views/admin/import/_tabs/_inventory.php:8 ../..
|
498 |
-
#: /views/admin/import/_tabs/_inventory.php:99 ../..
|
499 |
-
#: /views/admin/import/_tabs/_variations.php:154 ../..
|
500 |
-
#: /views/admin/import/_tabs/_variations.php:486 ../..
|
501 |
-
#: /views/admin/import/_tabs/_variations.php:653 ../..
|
502 |
-
#: /views/admin/import/_tabs/_variations.php:715
|
503 |
-
msgid "Yes"
|
504 |
-
msgstr "Ja"
|
505 |
|
506 |
-
#:
|
507 |
-
|
508 |
-
|
509 |
-
#: /views/admin/import/_tabs/_inventory.php:12 ../..
|
510 |
-
#: /views/admin/import/_tabs/_inventory.php:103 ../..
|
511 |
-
#: /views/admin/import/_tabs/_variations.php:158 ../..
|
512 |
-
#: /views/admin/import/_tabs/_variations.php:490 ../..
|
513 |
-
#: /views/admin/import/_tabs/_variations.php:657 ../..
|
514 |
-
#: /views/admin/import/_tabs/_variations.php:719
|
515 |
-
msgid "No"
|
516 |
-
msgstr "Nein"
|
517 |
|
518 |
-
#:
|
519 |
-
|
520 |
-
|
521 |
-
#: /views/admin/import/_tabs/_attributes.php:64 ../..
|
522 |
-
#: /views/admin/import/_tabs/_attributes.php:86 ../..
|
523 |
-
#: /views/admin/import/_tabs/_attributes.php:108 ../..
|
524 |
-
#: /views/admin/import/_tabs/_attributes.php:130 ../..
|
525 |
-
#: /views/admin/import/_tabs/_attributes.php:193 ../..
|
526 |
-
#: /views/admin/import/_tabs/_attributes.php:215 ../..
|
527 |
-
#: /views/admin/import/_tabs/_attributes.php:237 ../..
|
528 |
-
#: /views/admin/import/_tabs/_attributes.php:259 ../..
|
529 |
-
#: /views/admin/import/_tabs/_attributes.php:321 ../..
|
530 |
-
#: /views/admin/import/_tabs/_attributes.php:343 ../..
|
531 |
-
#: /views/admin/import/_tabs/_attributes.php:365 ../..
|
532 |
-
#: /views/admin/import/_tabs/_attributes.php:387 ../..
|
533 |
-
#: /views/admin/import/_tabs/_general.php:123 ../..
|
534 |
-
#: /views/admin/import/_tabs/_general.php:146 ../..
|
535 |
-
#: /views/admin/import/_tabs/_general.php:169 ../..
|
536 |
-
#: /views/admin/import/_tabs/_inventory.php:16 ../..
|
537 |
-
#: /views/admin/import/_tabs/_inventory.php:52 ../..
|
538 |
-
#: /views/admin/import/_tabs/_inventory.php:82 ../..
|
539 |
-
#: /views/admin/import/_tabs/_inventory.php:107 ../..
|
540 |
-
#: /views/admin/import/_tabs/_variations.php:162 ../..
|
541 |
-
#: /views/admin/import/_tabs/_variations.php:210 ../..
|
542 |
-
#: /views/admin/import/_tabs/_variations.php:285 ../..
|
543 |
-
#: /views/admin/import/_tabs/_variations.php:429 ../..
|
544 |
-
#: /views/admin/import/_tabs/_variations.php:494 ../..
|
545 |
-
#: /views/admin/import/_tabs/_variations.php:661 ../..
|
546 |
-
#: /views/admin/import/_tabs/_variations.php:698 ../..
|
547 |
-
#: /views/admin/import/_tabs/_variations.php:723
|
548 |
-
msgid "Set with XPath"
|
549 |
-
msgstr "Gesetzt mit XPath"
|
550 |
|
551 |
-
#:
|
552 |
-
#:
|
553 |
-
|
554 |
-
#: /views/admin/import/_tabs/_attributes.php:91 ../..
|
555 |
-
#: /views/admin/import/_tabs/_attributes.php:113 ../..
|
556 |
-
#: /views/admin/import/_tabs/_attributes.php:135 ../..
|
557 |
-
#: /views/admin/import/_tabs/_attributes.php:198 ../..
|
558 |
-
#: /views/admin/import/_tabs/_attributes.php:220 ../..
|
559 |
-
#: /views/admin/import/_tabs/_attributes.php:242 ../..
|
560 |
-
#: /views/admin/import/_tabs/_attributes.php:264 ../..
|
561 |
-
#: /views/admin/import/_tabs/_attributes.php:326 ../..
|
562 |
-
#: /views/admin/import/_tabs/_attributes.php:348 ../..
|
563 |
-
#: /views/admin/import/_tabs/_attributes.php:370 ../..
|
564 |
-
#: /views/admin/import/_tabs/_attributes.php:392 ../..
|
565 |
-
#: /views/admin/import/_tabs/_general.php:128 ../..
|
566 |
-
#: /views/admin/import/_tabs/_general.php:151 ../..
|
567 |
-
#: /views/admin/import/_tabs/_general.php:174 ../..
|
568 |
-
#: /views/admin/import/_tabs/_inventory.php:21 ../..
|
569 |
-
#: /views/admin/import/_tabs/_inventory.php:112 ../..
|
570 |
-
#: /views/admin/import/_tabs/_variations.php:167 ../..
|
571 |
-
#: /views/admin/import/_tabs/_variations.php:290 ../..
|
572 |
-
#: /views/admin/import/_tabs/_variations.php:434 ../..
|
573 |
-
#: /views/admin/import/_tabs/_variations.php:499 ../..
|
574 |
-
#: /views/admin/import/_tabs/_variations.php:666 ../..
|
575 |
-
#: /views/admin/import/_tabs/_variations.php:728
|
576 |
-
msgid "The value of presented XPath should be one of the following: ('yes', 'no')."
|
577 |
msgstr ""
|
578 |
-
"Der Wert des gegenwärtigen XPath sollte einer der folgenden sein: ('yes', "
|
579 |
-
"'no')."
|
580 |
|
581 |
-
#:
|
582 |
-
|
583 |
-
|
|
|
584 |
|
585 |
-
#:
|
586 |
-
|
587 |
-
|
|
|
588 |
|
589 |
-
#:
|
590 |
-
|
591 |
-
|
|
|
592 |
|
593 |
-
#:
|
594 |
-
|
595 |
-
|
|
|
596 |
|
597 |
-
#:
|
598 |
-
|
599 |
-
|
|
|
600 |
|
601 |
-
#:
|
602 |
-
|
603 |
-
"
|
604 |
-
"'catalog', 'search', 'hidden')."
|
605 |
msgstr ""
|
606 |
-
"Der Wert des gegenwärtigen XPath sollte einer der folgenden sein: ('visible',"
|
607 |
-
" 'catalog', 'search', 'hidden')."
|
608 |
|
609 |
-
#:
|
610 |
-
#:
|
611 |
-
msgid "
|
612 |
-
msgstr "
|
613 |
|
614 |
-
#:
|
615 |
-
|
616 |
-
|
|
|
617 |
|
618 |
-
#:
|
619 |
-
#:
|
620 |
-
|
621 |
-
|
622 |
-
#: /views/admin/import/_tabs/_attributes.php:292 ../..
|
623 |
-
#: /views/admin/import/_tabs/_attributes.php:313 ../..
|
624 |
-
#: /views/admin/import/_tabs/_variations.php:535 ../..
|
625 |
-
#: /views/admin/import/_tabs/_variations.php:569 ../..
|
626 |
-
#: /views/admin/import/_tabs/_variations.php:599
|
627 |
-
msgid "In Variations"
|
628 |
-
msgstr "In Variationen"
|
629 |
|
630 |
-
#:
|
631 |
-
#:
|
632 |
-
|
633 |
-
|
634 |
-
#: /views/admin/import/_tabs/_attributes.php:296 ../..
|
635 |
-
#: /views/admin/import/_tabs/_attributes.php:335 ../..
|
636 |
-
#: /views/admin/import/_tabs/_variations.php:540 ../..
|
637 |
-
#: /views/admin/import/_tabs/_variations.php:573 ../..
|
638 |
-
#: /views/admin/import/_tabs/_variations.php:603
|
639 |
-
msgid "Is Visible"
|
640 |
-
msgstr "Ist Sichtbar"
|
641 |
|
642 |
-
#:
|
643 |
-
#:
|
644 |
-
|
645 |
-
|
646 |
-
#: /views/admin/import/_tabs/_attributes.php:300 ../..
|
647 |
-
#: /views/admin/import/_tabs/_attributes.php:357
|
648 |
-
msgid "Is Taxonomy"
|
649 |
-
msgstr "Ist Taxonomie"
|
650 |
|
651 |
-
#:
|
652 |
-
#:
|
653 |
-
|
654 |
-
|
655 |
-
#: /views/admin/import/_tabs/_attributes.php:304 ../..
|
656 |
-
#: /views/admin/import/_tabs/_attributes.php:379 ../..
|
657 |
-
#: /views/admin/import/_tabs/_variations.php:550 ../..
|
658 |
-
#: /views/admin/import/_tabs/_variations.php:581 ../..
|
659 |
-
#: /views/admin/import/_tabs/_variations.php:611
|
660 |
-
msgid "Auto-Create Terms"
|
661 |
-
msgstr "Werte automatisch erstellen"
|
662 |
|
663 |
-
#:
|
664 |
-
#:
|
665 |
-
#:
|
666 |
-
msgid "
|
667 |
-
msgstr "
|
668 |
|
669 |
-
#:
|
670 |
-
#:
|
671 |
-
|
672 |
-
|
673 |
-
msgstr "Nicht Sichtbar"
|
674 |
|
675 |
-
#:
|
676 |
-
|
677 |
-
|
678 |
-
msgid "Not Taxonomy"
|
679 |
-
msgstr "Keine Taxonomie"
|
680 |
|
681 |
-
#:
|
682 |
-
|
683 |
-
|
684 |
-
msgid "Do Not Create Terms"
|
685 |
-
msgstr "Werte nicht erstellen"
|
686 |
|
687 |
-
#:
|
688 |
-
|
689 |
-
|
690 |
-
msgstr "Hinzufügen"
|
691 |
|
692 |
-
#:
|
693 |
-
|
694 |
-
|
695 |
-
msgstr "Mehr Hinzufügen"
|
696 |
|
697 |
-
#:
|
698 |
-
msgid "
|
699 |
-
msgstr "
|
700 |
|
701 |
-
#:
|
702 |
-
msgid ""
|
703 |
-
"This option will create all possible variations for the presented attributes."
|
704 |
-
" Works just like the Link All Variations option inside WooCommerce."
|
705 |
msgstr ""
|
706 |
-
"Diese Option wird alle möglichen Variationen für die gegenwärtigen Merkmale "
|
707 |
-
"erstellen. Funktioniert genau so wie die \"Verbinde alle Variationen\" Option "
|
708 |
-
"in WooCommerce."
|
709 |
|
710 |
-
#:
|
711 |
-
|
712 |
-
|
713 |
-
msgstr "ID"
|
714 |
|
715 |
-
#:
|
716 |
-
msgid "
|
717 |
-
msgstr "
|
718 |
|
719 |
-
#:
|
720 |
-
msgid "
|
721 |
-
msgstr "
|
722 |
|
723 |
-
#:
|
724 |
-
msgid "
|
725 |
-
msgstr "
|
726 |
|
727 |
-
#:
|
728 |
-
msgid "
|
729 |
msgstr ""
|
730 |
-
"Dieser Text wird auf dem Button gezeigt, der auf das externe Produkt "
|
731 |
-
"verlinkt."
|
732 |
|
733 |
-
#:
|
734 |
-
msgid ""
|
735 |
-
"Prices should be presented as you would enter them manually in WooCommerce - "
|
736 |
-
"with no currency symbol."
|
737 |
msgstr ""
|
738 |
-
"Preise sollten so vorgelegt werden als würden Sie sie manuell in WooCommerce "
|
739 |
-
"eingeben- ohne Währungs Symbol."
|
740 |
|
741 |
-
#:
|
742 |
-
msgid "
|
743 |
-
msgstr "
|
744 |
|
745 |
-
#:
|
746 |
-
|
747 |
-
|
748 |
-
msgstr "Planung"
|
749 |
|
750 |
-
#:
|
751 |
-
msgid "
|
752 |
-
msgstr "
|
753 |
|
754 |
-
#:
|
755 |
-
|
756 |
-
|
757 |
-
msgstr "und"
|
758 |
|
759 |
-
#:
|
760 |
-
#:
|
761 |
-
|
762 |
-
|
|
|
|
|
763 |
|
764 |
-
#:
|
765 |
-
msgid "
|
766 |
-
msgstr "
|
767 |
|
768 |
-
#:
|
769 |
-
|
770 |
-
msgid ""
|
771 |
-
"Leave blank or enter in 100% to keep the price as is. Enter in 110% to "
|
772 |
-
"markup by 10%. Enter in 50% to cut prices in half."
|
773 |
msgstr ""
|
774 |
-
"Leer lassen oder 100% eingeben um den Preis zu lassen. Geben Sie 110% ein "
|
775 |
-
"für 10% Preissteigerung. Geben Sie 50% ein für eine Preishalbierung."
|
776 |
|
777 |
-
#:
|
778 |
-
|
779 |
-
|
780 |
-
msgstr "Geben Sie eine negative Zahl ein zur Preisreduktion."
|
781 |
|
782 |
-
#:
|
783 |
-
msgid "
|
784 |
-
msgstr "
|
785 |
|
786 |
-
#:
|
787 |
-
msgid "
|
788 |
-
msgstr "
|
789 |
|
790 |
-
#:
|
791 |
-
msgid "
|
792 |
-
msgstr "
|
793 |
|
794 |
-
#:
|
795 |
-
msgid ""
|
796 |
-
"Prices must be imported using a period as the decimal separator. If you'd "
|
797 |
-
"like to change the decimal separator you can do so by editing your "
|
798 |
-
"WooCommerce settings."
|
799 |
msgstr ""
|
800 |
-
"Preise müssen mit einem Punkt als Dezimaltrennzeichen importiert werden. "
|
801 |
-
"Wenn Sie Ihr Dezimaltrennzeichen ändern möchten, können Sie das in den "
|
802 |
-
"WooCommerce Einstellungen machen."
|
803 |
|
804 |
-
#:
|
805 |
-
msgid "
|
806 |
msgstr ""
|
807 |
-
"Versuche nicht korrekt formatierte Preise in das WooCommerce Format zu "
|
808 |
-
"Konvertieren."
|
809 |
|
810 |
-
#:
|
811 |
-
msgid ""
|
812 |
-
|
813 |
-
"incorrectly, but this doesn't always work. Try unchecking this option if "
|
814 |
-
"your prices are not appearing correctly, or enter your prices in your import "
|
815 |
-
"file using the same format you would when entering them in WooCommerce."
|
816 |
-
msgstr ""
|
817 |
-
"WP All Import wird versuchen alle unkorrekt formatierten Preise zu "
|
818 |
-
"konvertieren, aber das funktioniert nicht immer. Heben Sie diese Auswahl auf,"
|
819 |
-
" wenn Ihre Preise nicht korrekt erscheinen, oder ändern Sie die Preise in "
|
820 |
-
"dem Importfile indem Sie das selbe Format benutzen das Sie auch in "
|
821 |
-
"WooCommerce eingeben."
|
822 |
-
|
823 |
-
#: ../../views/admin/import/_tabs/_general.php:97
|
824 |
-
msgid "Preview Prices"
|
825 |
-
msgstr "Vorschau Preise"
|
826 |
|
827 |
-
#:
|
828 |
-
|
829 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
830 |
msgstr "Verändere Beschreibung"
|
831 |
|
832 |
-
#:
|
833 |
-
#:
|
834 |
-
#:
|
835 |
msgid "Variation Enabled"
|
836 |
msgstr "Variationen aktiviert"
|
837 |
|
838 |
-
#:
|
839 |
-
#:
|
840 |
-
msgid ""
|
841 |
-
"
|
842 |
-
|
843 |
-
|
844 |
-
|
845 |
-
|
|
|
|
|
846 |
|
847 |
-
#:
|
848 |
-
#:
|
849 |
msgid "Not Virtual"
|
850 |
msgstr "Nicht Virtuell"
|
851 |
|
852 |
-
#:
|
853 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
854 |
msgid "Not Downloadable"
|
855 |
msgstr "Nicht Herunterladbar"
|
856 |
|
857 |
-
#:
|
858 |
-
#:
|
859 |
msgid "File paths"
|
860 |
msgstr "Datei Pfad"
|
861 |
|
862 |
-
#:
|
863 |
-
msgid ""
|
864 |
-
"
|
865 |
-
"contains multiple URLs/paths - i.e. <code>http://files.com/1.doc, http:"
|
866 |
-
"//files.com/2.doc</code>."
|
867 |
-
msgstr ""
|
868 |
-
"Datei Pfad/URLs, durch Komma getrennt. Das Trennzeichen wird genutzt wenn "
|
869 |
-
"ein XML Element mehrere URLs/Pfade hat. Bsp.:<code>http://files.com/1.doc, "
|
870 |
-
"http://files.com/2.doc</code>."
|
871 |
|
872 |
-
#:
|
873 |
-
#:
|
874 |
msgid "File names"
|
875 |
msgstr "Datei Namen"
|
876 |
|
877 |
-
#:
|
878 |
-
#:
|
879 |
-
msgid ""
|
880 |
-
"
|
881 |
-
"contains multiple names - i.e. <code>1.doc, 2.doc</code>."
|
882 |
-
msgstr ""
|
883 |
-
"Datei Namen, durch Komma getrennt. Das Trennzeichen wird genutzt wenn ein "
|
884 |
-
"XML Element mehrere Dateinamen hat. Bsp.: <code>1.doc, 2.doc</code>."
|
885 |
|
886 |
-
#:
|
887 |
-
#:
|
888 |
msgid "Download Limit"
|
889 |
msgstr "Herunterlade Beschränkung"
|
890 |
|
891 |
-
#:
|
892 |
msgid "Leave blank for unlimited re-downloads."
|
893 |
msgstr "Leer lassen für unbeschränkte erneute Downloads."
|
894 |
|
895 |
-
#:
|
896 |
-
#:
|
897 |
msgid "Download Expiry"
|
898 |
msgstr "Download Verfalldatum"
|
899 |
|
900 |
-
#:
|
901 |
msgid "Enter the number of days before a download link expires, or leave blank."
|
902 |
-
msgstr ""
|
903 |
-
"Geben Sie die Zahl der Tage ein, bevor ein Download Link verfällt, oder leer "
|
904 |
-
"lassen."
|
905 |
|
906 |
-
#:
|
907 |
msgid "Download Type"
|
908 |
msgstr "Download Typ"
|
909 |
|
910 |
-
#:
|
911 |
-
msgid ""
|
912 |
-
"
|
913 |
-
"'music')."
|
914 |
-
msgstr ""
|
915 |
-
"Der Wert des gegenwärtigen XPath sollte einer der folgenden sein: "
|
916 |
-
"('application', 'music')."
|
917 |
|
918 |
-
#:
|
919 |
msgid "Tax Status"
|
920 |
msgstr "Steuer Status"
|
921 |
|
922 |
-
#:
|
923 |
msgid "Taxable"
|
924 |
msgstr "Besteuerbar"
|
925 |
|
926 |
-
#:
|
927 |
msgid "Shipping only"
|
928 |
msgstr "Nur Versand"
|
929 |
|
930 |
-
#:
|
931 |
msgid "None"
|
932 |
msgstr "Keine"
|
933 |
|
934 |
-
#:
|
935 |
msgid "Set tax status with XPath"
|
936 |
msgstr "Setzte Steuer Status mit XPath"
|
937 |
|
938 |
-
#:
|
939 |
-
msgid ""
|
940 |
-
"
|
941 |
-
"'none' are the default slugs."
|
942 |
-
msgstr ""
|
943 |
-
"Wert sollte der Slug für den Steuer Status sein - 'Besteuerbar', 'Versenden',"
|
944 |
-
" und 'keine' sind Standard Slugs."
|
945 |
|
946 |
-
#:
|
947 |
-
#:
|
948 |
msgid "Tax Class"
|
949 |
msgstr "Steuer Klasse"
|
950 |
|
951 |
-
#:
|
952 |
-
#:
|
|
|
953 |
msgid "Standard"
|
954 |
msgstr "Standard"
|
955 |
|
956 |
-
#:
|
957 |
msgid "Set tax class with XPath"
|
958 |
msgstr "Setzte Steuer Klasse mit XPath"
|
959 |
|
960 |
-
#:
|
961 |
-
msgid ""
|
962 |
-
"
|
963 |
-
"are the default slugs."
|
964 |
-
msgstr ""
|
965 |
-
"Wert sollte der Slug für die Steuerklasse - 'verringerter Satz' und ' Null "
|
966 |
-
"Satz', sind die Standard Slugs."
|
967 |
|
968 |
-
#:
|
969 |
-
#:
|
970 |
-
#:
|
971 |
msgid "Manage stock?"
|
972 |
msgstr "Lagerbestand verwalten?"
|
973 |
|
974 |
-
#:
|
975 |
-
#:
|
976 |
-
#:
|
977 |
msgid "Stock Qty"
|
978 |
msgstr "Lagerbestand Menge"
|
979 |
|
980 |
-
#:
|
981 |
-
#:
|
982 |
-
#:
|
983 |
msgid "Stock status"
|
984 |
msgstr "Lagerbestand Status"
|
985 |
|
986 |
-
#:
|
987 |
-
#:
|
988 |
-
#:
|
989 |
msgid "In stock"
|
990 |
msgstr "Auf Lager"
|
991 |
|
992 |
-
#:
|
993 |
-
#:
|
994 |
-
#:
|
995 |
msgid "Out of stock"
|
996 |
msgstr "Nicht auf Lager"
|
997 |
|
998 |
-
#:
|
999 |
-
#:
|
1000 |
-
#:
|
1001 |
msgid "Set automatically"
|
1002 |
msgstr "Setze automatisch"
|
1003 |
|
1004 |
-
#:
|
1005 |
-
#:
|
1006 |
-
msgid ""
|
1007 |
-
"
|
1008 |
-
"Stock if Stock Qty is 0 or blank."
|
1009 |
-
msgstr ""
|
1010 |
-
"Setze den Lagerbestand Status auf 'Auf Lager' bei positiver Lagerbestand "
|
1011 |
-
"Menge, und 'Nicht auf Lager' wenn Lagerbestand ist 0 oder Leer."
|
1012 |
|
1013 |
-
#:
|
1014 |
-
#:
|
1015 |
-
#:
|
1016 |
-
msgid ""
|
1017 |
-
"
|
1018 |
-
"'outofstock')."
|
1019 |
-
msgstr ""
|
1020 |
-
"Der Wert des gegenwärtigen XPath sollte einer der folgenden sein: ('instock',"
|
1021 |
-
" 'outofstock')."
|
1022 |
|
1023 |
-
#:
|
|
|
1024 |
msgid "Allow Backorders?"
|
1025 |
msgstr "Lieferrückstand erlauben?"
|
1026 |
|
1027 |
-
#:
|
|
|
1028 |
msgid "Do not allow"
|
1029 |
msgstr "Nicht erlauben"
|
1030 |
|
1031 |
-
#:
|
|
|
1032 |
msgid "Allow, but notify customer"
|
1033 |
msgstr "Erlauben, aber Kunden informieren"
|
1034 |
|
1035 |
-
#:
|
|
|
1036 |
msgid "Allow"
|
1037 |
msgstr "Erlauben"
|
1038 |
|
1039 |
-
#:
|
1040 |
-
|
1041 |
-
"The value of presented XPath should be one of the following: ('no', 'notify',"
|
1042 |
-
" 'yes')."
|
1043 |
-
msgstr ""
|
1044 |
-
"Der Wert des gegenwärtigen XPath sollte einer der folgenden sein: ('no', "
|
1045 |
-
"'notify', 'yes')."
|
1046 |
|
1047 |
-
#:
|
1048 |
msgid "Sold Individually?"
|
1049 |
msgstr "Einzeln Verkaufen?"
|
1050 |
|
1051 |
-
#:
|
1052 |
msgid "Up-Sells"
|
1053 |
msgstr "Up-Sells"
|
1054 |
|
1055 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1056 |
msgid "Cross-Sells"
|
1057 |
msgstr "Cross-Sells"
|
1058 |
|
1059 |
-
#:
|
1060 |
msgid "Choose a grouped product…"
|
1061 |
msgstr "Wähle ein gruppiertes Produkt…"
|
1062 |
|
1063 |
-
#:
|
1064 |
msgid "Grouping"
|
1065 |
msgstr "Gruppieren "
|
1066 |
|
1067 |
-
#:
|
1068 |
msgid "Set this option to make this product part of a grouped product."
|
1069 |
-
msgstr ""
|
1070 |
-
"Setze diese Option um dieses Produkt Teil eines gruppierten Produktes zu "
|
1071 |
-
"machen."
|
1072 |
|
1073 |
-
#:
|
1074 |
msgid "Manual Grouped Product Matching"
|
1075 |
msgstr "Manuell gruppierte Produkte zusammenführen"
|
1076 |
|
1077 |
-
#:
|
1078 |
-
msgid ""
|
1079 |
-
"
|
1080 |
-
"the specified criteria."
|
1081 |
-
msgstr ""
|
1082 |
-
"Produkt wird als Kind eines bereits erstellten Produktes eingefügt, anhand "
|
1083 |
-
"der eingestellten Kriterien."
|
1084 |
|
1085 |
-
#:
|
1086 |
msgid "Match by Post Title"
|
1087 |
msgstr "Zuordnung durch Post Titel"
|
1088 |
|
1089 |
-
#:
|
1090 |
msgid "Match by Custom Field"
|
1091 |
msgstr "Zuordnung durch Individuelles Feld"
|
1092 |
|
1093 |
-
#:
|
1094 |
-
msgid "Value"
|
1095 |
-
msgstr "Wert"
|
1096 |
-
|
1097 |
-
#: ../../views/admin/import/_tabs/_options.php:4
|
1098 |
msgid "Import options"
|
1099 |
msgstr "Import Optionen"
|
1100 |
|
1101 |
-
#:
|
1102 |
msgid "Set out of stock status for missing records"
|
1103 |
msgstr "Setze nicht auf Lager Status bei fehlenden Datensätzen"
|
1104 |
|
1105 |
-
#:
|
1106 |
-
msgid ""
|
1107 |
-
"Option
|
1108 |
-
"product entirely. This option doesn't work when 'Delete missing records' "
|
1109 |
-
"option is enabled."
|
1110 |
-
msgstr ""
|
1111 |
-
"Option um den Lagerbestand Status auf nicht auf Lager zu setzen, anstatt das "
|
1112 |
-
"Produkt ganz zu löschen. Diese Option funktioniert nicht, wenn 'Lösche "
|
1113 |
-
"fehlende Datensätze' ausgewählt wurde."
|
1114 |
|
1115 |
-
#:
|
1116 |
msgid "Disable auto SKU generation"
|
1117 |
msgstr "Deaktiviere automatische ID Generierung"
|
1118 |
|
1119 |
-
#:
|
1120 |
-
msgid ""
|
1121 |
-
"
|
1122 |
-
"algorithm, if SKU option is empty."
|
1123 |
-
msgstr ""
|
1124 |
-
"Plug-In wird KEINE ID automatisch generieren für jedes Produkt das auf dem "
|
1125 |
-
"md5 Algorithmus basiert, wenn die ID Option leer ist."
|
1126 |
|
1127 |
-
#:
|
1128 |
msgid "Don't check for duplicate SKUs"
|
1129 |
msgstr "Kontrolliere nicht für doppelte IDs"
|
1130 |
|
1131 |
-
#:
|
1132 |
-
msgid ""
|
1133 |
-
"
|
1134 |
-
|
1135 |
-
|
1136 |
-
"
|
1137 |
-
msgstr ""
|
1138 |
-
|
1139 |
-
|
1140 |
-
"
|
1141 |
-
|
1142 |
-
|
1143 |
-
|
1144 |
-
|
1145 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1146 |
msgid "Shipping Class"
|
1147 |
msgstr "Versand Klasse"
|
1148 |
|
1149 |
-
#:
|
1150 |
-
#:
|
1151 |
msgid "No shipping class"
|
1152 |
msgstr "Keine Versand Klasse"
|
1153 |
|
1154 |
-
#:
|
1155 |
-
#:
|
1156 |
msgid "Set product shipping class with XPath"
|
1157 |
msgstr "Set Produktversand Klasse mit XPath"
|
1158 |
|
1159 |
-
#:
|
1160 |
-
msgid ""
|
1161 |
-
"Value should be the slug for the shipping class - 'taxable', 'shipping' and "
|
1162 |
-
"'none' are the default slugs."
|
1163 |
msgstr ""
|
1164 |
-
"Wert sollte der Slug für die Versandklasse sein - 'Besteuerbar', 'Versenden',"
|
1165 |
-
" und 'keine' sind Standard Slugs."
|
1166 |
|
1167 |
-
#:
|
1168 |
-
msgid ""
|
1169 |
-
"
|
1170 |
-
"variation is linked to its parent with its parent's SKU or other unique "
|
1171 |
-
"identifier."
|
1172 |
-
msgstr ""
|
1173 |
-
"Alle meine variablen Produkte haben IDs oder eine andere eindeutige Kennung. "
|
1174 |
-
"Jede Variation ist mit seiner übergeordneten Artikelnummer oder mit einer "
|
1175 |
-
"anderen eindeutigen Kennung des übergeordneten verlinkt."
|
1176 |
|
1177 |
-
#:
|
1178 |
msgid "SKU element for parent"
|
1179 |
msgstr "SKU Element für Eltern"
|
1180 |
|
1181 |
-
#:
|
1182 |
msgid "SKU column in the below example."
|
1183 |
msgstr "SKU Spalte in dem folgenden Beispiel."
|
1184 |
|
1185 |
-
#:
|
1186 |
msgid "Parent SKU element for variation"
|
1187 |
msgstr "Eltern ID Element zur Variation"
|
1188 |
|
1189 |
-
#:
|
1190 |
msgid "Parent SKU column in the below example."
|
1191 |
msgstr "Eltern ID Spalte in dem folgenden Beispiel."
|
1192 |
|
1193 |
-
#:
|
1194 |
-
#:
|
1195 |
-
#:
|
1196 |
-
#:
|
1197 |
msgid "Example Data For Use With This Option"
|
1198 |
msgstr "Beispiel Daten für die Verwendung mit dieser Option"
|
1199 |
|
1200 |
-
#:
|
1201 |
-
#:
|
1202 |
-
#:
|
1203 |
-
#:
|
1204 |
msgid "download"
|
1205 |
msgstr "Herunterladen"
|
1206 |
|
1207 |
-
#:
|
1208 |
-
msgid ""
|
1209 |
-
"
|
1210 |
-
"the same for each variation and unique for each product."
|
1211 |
-
msgstr ""
|
1212 |
-
"Alle Produkte mit Variationen sind anhand von einzigartigen IDs gruppiert, "
|
1213 |
-
"diese ID ist die selbe für jede Variation und einzigartig für jedes Produkt."
|
1214 |
-
|
1215 |
-
#: ../../views/admin/import/_tabs/_variations.php:36
|
1216 |
-
msgid "Unique Identifier"
|
1217 |
-
msgstr "Einzigartige ID"
|
1218 |
|
1219 |
-
#:
|
1220 |
msgid "Group ID column in the below example."
|
1221 |
msgstr "Gruppen ID Spalte in dem folgenden Beispiel."
|
1222 |
|
1223 |
-
#:
|
1224 |
-
msgid ""
|
1225 |
-
"
|
1226 |
-
"product."
|
1227 |
-
msgstr ""
|
1228 |
-
"Alle Variationen für ein spezielles Produkt haben den selben Titel wie das "
|
1229 |
-
"Eltern Produkt."
|
1230 |
|
1231 |
-
#:
|
1232 |
-
#:
|
1233 |
msgid "Product Title"
|
1234 |
msgstr "Produkt Titel"
|
1235 |
|
1236 |
-
#:
|
1237 |
-
msgid ""
|
1238 |
-
"
|
1239 |
-
"parent products."
|
1240 |
-
msgstr ""
|
1241 |
-
"Alle Variationen für ein spezielles Produkt haben den selben Titel. Es gibt "
|
1242 |
-
"keine Eltern Produkte."
|
1243 |
|
1244 |
-
#:
|
1245 |
msgid "I'm importing XML and my variations are child XML elements"
|
1246 |
msgstr "Ich importiere XML und meine Variationen sind Kind XML Elemente."
|
1247 |
|
1248 |
-
#:
|
1249 |
msgid "Video Example"
|
1250 |
msgstr "Video Beispiel:"
|
1251 |
|
1252 |
-
#:
|
1253 |
msgid "Variations XPath"
|
1254 |
msgstr "Variationen XPath"
|
1255 |
|
1256 |
-
#:
|
1257 |
msgid "Open XML Tree"
|
1258 |
msgstr "Offener XML Baum"
|
1259 |
|
1260 |
-
#:
|
1261 |
msgid "Add value to the parent SKU"
|
1262 |
msgstr "Wert zu Eltern ID hinzufügen"
|
1263 |
|
1264 |
-
#:
|
1265 |
msgid "Enable this checkbox to combine SKU from parent and variation products."
|
1266 |
-
msgstr ""
|
1267 |
-
"Aktiviere diese Box um IDs von Eltern und Variationen der Produkte zu "
|
1268 |
-
"kombinieren."
|
1269 |
|
1270 |
-
#:
|
1271 |
msgid "Image"
|
1272 |
msgstr "Bild"
|
1273 |
|
1274 |
-
#:
|
1275 |
-
#:
|
1276 |
-
#:
|
1277 |
-
#:
|
1278 |
-
#:
|
1279 |
-
#:
|
1280 |
-
#:
|
1281 |
-
#:
|
1282 |
-
#:
|
1283 |
-
#:
|
1284 |
-
#:
|
1285 |
-
#:
|
1286 |
-
#:
|
1287 |
-
#:
|
1288 |
-
#:
|
1289 |
-
#:
|
1290 |
msgid "XPath Is From Parent"
|
1291 |
msgstr "XPath ist von Eltern"
|
1292 |
|
1293 |
-
#:
|
|
|
|
|
|
|
|
|
1294 |
msgid "Enable this checkbox to determine XPath from parent element."
|
1295 |
msgstr "Aktiviere diese Box um den XPath vom Eltern Element zu bestimmen."
|
1296 |
|
1297 |
-
#:
|
1298 |
-
msgid ""
|
1299 |
-
"
|
1300 |
-
"Out Of Stock if Stock Qty is 0."
|
1301 |
-
msgstr ""
|
1302 |
-
"Setze den Lagerbestand Status auf 'Auf Lager' bei positiver Lagerbestand "
|
1303 |
-
"Menge, und 'Nicht auf Lager' wenn Lagerbestand ist 0."
|
1304 |
|
1305 |
-
#:
|
1306 |
msgid "Regular Price"
|
1307 |
msgstr "Regulärer Preis"
|
1308 |
|
1309 |
-
#:
|
1310 |
msgid "Sale Price"
|
1311 |
msgstr "Angebotspreis"
|
1312 |
|
1313 |
-
#:
|
|
|
|
|
|
|
|
|
1314 |
msgid "Variable Sale Price Dates"
|
1315 |
msgstr "Angebotspreis Datum"
|
1316 |
|
1317 |
-
#:
|
1318 |
msgid "Weight"
|
1319 |
msgstr "Gewicht"
|
1320 |
|
1321 |
-
#:
|
1322 |
msgid "Dimensions (L×W×H)"
|
1323 |
msgstr "Maße ( L x B x H)"
|
1324 |
|
1325 |
-
#:
|
1326 |
-
msgid ""
|
1327 |
-
"
|
1328 |
-
"'shipping', 'none')."
|
1329 |
-
msgstr ""
|
1330 |
-
"Der Wert des XPath sollte einer der folgenden sein: ('taxable', 'shipping', "
|
1331 |
-
"'none')."
|
1332 |
|
1333 |
-
#:
|
1334 |
msgid "Same as parent"
|
1335 |
msgstr "Gleich wie Eltern"
|
1336 |
|
1337 |
-
#:
|
1338 |
msgid "Set product tax class with XPath"
|
1339 |
msgstr "Setzte Produkt Steuer Klasse mit XPath"
|
1340 |
|
1341 |
-
#:
|
1342 |
-
msgid ""
|
1343 |
-
"
|
1344 |
-
" 'zero-rate')."
|
1345 |
-
msgstr ""
|
1346 |
-
"Der Wert des XPath sollte einer der folgenden sein: ('reduced-rate', 'zero-"
|
1347 |
-
"rate')."
|
1348 |
|
1349 |
-
#:
|
1350 |
-
msgid ""
|
1351 |
-
"
|
1352 |
-
"contains few paths/URLs (http://files.com/1.doc, http://files.com/2.doc)."
|
1353 |
-
msgstr ""
|
1354 |
-
"Datei Pfade/URLs, durch Komma getrennt. Die Trennzeichen Option wird genutzt "
|
1355 |
-
"wenn ein SML Element mehrere Pfade/URLs enthält. (http://files.com/1.doc, "
|
1356 |
-
"http://files.com/2.doc)."
|
1357 |
|
1358 |
-
#:
|
1359 |
msgid "Variation Attributes"
|
1360 |
msgstr "Variation Merkmale"
|
1361 |
|
1362 |
-
#:
|
1363 |
-
#:
|
1364 |
-
#:
|
1365 |
msgid "Taxonomy"
|
1366 |
msgstr "Taxonomie"
|
1367 |
|
1368 |
-
#:
|
1369 |
msgid "No matching elements found for XPath expression specified"
|
1370 |
msgstr "Keine passenden Elemente für den XPath Ausdruck gefunden"
|
1371 |
|
1372 |
-
#:
|
1373 |
msgid "Set the default selection in the attributes dropdowns."
|
1374 |
msgstr "Setze die Standard Auswahl in den Merkmal Auswahlfeldern."
|
1375 |
|
1376 |
-
#:
|
1377 |
-
msgid ""
|
1378 |
-
"
|
1379 |
-
"frontend."
|
1380 |
-
msgstr ""
|
1381 |
-
"Die Merkmale für die erste Variation werden automatisch auf dem Frontend "
|
1382 |
-
"gewählt."
|
1383 |
|
1384 |
-
#:
|
1385 |
msgid "Set first variation as the default selection."
|
1386 |
msgstr "Setze die erste Variation als die Standardauswahl."
|
1387 |
|
1388 |
-
#:
|
1389 |
msgid "Set first in stock variation as the default selection."
|
1390 |
msgstr "Setze die erste Variation auf Lager als Standardauswahl."
|
1391 |
|
1392 |
-
#:
|
1393 |
msgid "Do not set default selections for the dropdowns."
|
1394 |
msgstr "Setzen Sie keine Standardauswahl für die Auswahlfelder."
|
1395 |
|
1396 |
-
#:
|
1397 |
msgid "Create products with no variations as simple products."
|
1398 |
msgstr "Erstelle Produkte mit keinen Variationen als einfache Produkte."
|
1399 |
|
1400 |
-
#:
|
1401 |
msgid "Save variation image to the gallery."
|
1402 |
msgstr "Speichere die Bilder der Variationen in der Galerie. "
|
1403 |
|
1404 |
-
#:
|
1405 |
-
msgid ""
|
1406 |
-
"Set _stock
|
1407 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1408 |
msgstr ""
|
1409 |
-
"Set _stock Wert für das Eltern Produkt auf the_stock Wert für die erste "
|
1410 |
-
"Variation."
|
1411 |
|
1412 |
-
#:
|
1413 |
-
msgid ""
|
1414 |
-
|
1415 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1416 |
msgstr ""
|
1417 |
-
|
1418 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
"MIME-Version: 1.0\n"
|
4 |
"Content-Type: text/plain; charset=UTF-8\n"
|
5 |
"Content-Transfer-Encoding: 8bit\n"
|
6 |
+
"X-Generator: POEditor.com\n"
|
7 |
+
"Project-Id-Version: WooCommerce Add-On Pro\n"
|
8 |
+
"Language: de\n"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
|
10 |
+
#: actions/admin_notices.php:10
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
msgid "<b>%s Plugin</b>: WooCommerce must be installed."
|
12 |
msgstr "<b>%s Plugin:</b> WooCommerce muss installiert sein."
|
13 |
|
14 |
+
#: actions/admin_notices.php:24
|
15 |
+
msgid "<b>%s Plugin</b>: WP All Import must be installed. Free edition of WP All Import at <a href=\"http://wordpress.org/plugins/wp-all-import/\" target=\"_blank\">http://wordpress.org/plugins/wp-all-import/</a> and the paid edition at <a href=\"http://www.wpallimport.com/\">http://www.wpallimport.com/</a>"
|
16 |
+
msgstr "<b>%s Plugin:</b> WP All Import muss installiert sein. Die Kostenlose Version von WP All Import finden Sie unter <a href=\"http://wordpress.org/plugins/wp-all-import/\" target=\"_blank\">http://wordpress.org/plugins/wp-all-import/</a> und die bezahlte Version unter <a href=\"http://www.wpallimport.com/\">http://www.wpallimport.com/</a>"
|
17 |
+
|
18 |
+
#: actions/admin_notices.php:38
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
msgid "<b>%s Plugin</b>: Please update your WP All Import to the latest version"
|
20 |
+
msgstr "<b>%s Plugin:</b> Bitte aktualisieren Sie Ihren WP All Import auf die neueste Version"
|
|
|
|
|
21 |
|
22 |
+
#: actions/admin_notices.php:51
|
|
|
23 |
msgid "<b>%s Plugin</b>: Please update your WooCommerce to the latest version"
|
24 |
+
msgstr "<b>%s Plugin:</b> Bitte aktualisieren Sie Ihr WooCommerce auf die neueste Version"
|
|
|
|
|
25 |
|
26 |
+
#: actions/pmxi_reimport.php:29 views/admin/import/product/index.php:16
|
27 |
msgid "Product Type"
|
28 |
msgstr "Produkttyp"
|
29 |
|
30 |
+
#: actions/pmxi_reimport.php:35 views/admin/import/product/index.php:63
|
31 |
msgid "Attributes"
|
32 |
msgstr "Merkmale"
|
33 |
|
34 |
+
#: actions/pmxi_reimport.php:39
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
msgid "Update all Attributes"
|
36 |
msgstr "Aktualisiere alle Merkmale"
|
37 |
|
38 |
+
#: actions/pmxi_reimport.php:43
|
39 |
msgid "Update only these Attributes, leave the rest alone"
|
40 |
msgstr "Aktualisiere nur diese Merkmale, lasse den Rest in Ruhe"
|
41 |
|
42 |
+
#: actions/pmxi_reimport.php:52
|
43 |
msgid "Leave these attributes alone, update all other Attributes"
|
44 |
msgstr "Lasse diese Merkmale in Ruhe, aktualisiere alle anderen Merkmale"
|
45 |
|
46 |
+
#: classes/updater.php:63
|
47 |
+
msgid "View WP All Import - WooCommerce Add-On Pro Changelog"
|
|
|
|
|
|
|
48 |
msgstr ""
|
|
|
|
|
49 |
|
50 |
+
#: classes/updater.php:63
|
51 |
+
msgid "Changelog"
|
|
|
|
|
|
|
|
|
52 |
msgstr ""
|
|
|
|
|
|
|
53 |
|
54 |
+
#: classes/updater.php:258
|
55 |
+
msgid "There is a new version of %1$s available. <a target=\"_blank\" class=\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
|
56 |
+
msgstr "Eine neue Version von %1$s ist verfügbar. <a target=\"_blank\" class=\"thickbox\" href=\"%2$s\">Details ansehen von %3$s</a>."
|
57 |
+
|
58 |
+
#: classes/updater.php:265
|
59 |
+
msgid "There is a new version of %1$s available. <a target=\"_blank\" class=\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s\">update now</a>."
|
60 |
+
msgstr "Eine neue Version von %1$s ist verfügbar. <a target=\"_blank\" class=\"thickbox\" href=\"%2$s\">Details ansehen von %3$s</a> oder <a href=\"%4$s\">jetzt aktualisieren</a>."
|
61 |
+
|
62 |
+
#: classes/updater.php:448
|
63 |
msgid "You do not have permission to install plugin updates"
|
64 |
msgstr "Sie haben keine Berechtigung um Plug-In Aktualisierungen durchzuführen."
|
65 |
|
66 |
+
#: classes/updater.php:448
|
67 |
msgid "Error"
|
68 |
msgstr "Fehler"
|
69 |
|
70 |
+
#: controllers/controller/admin.php:55
|
71 |
+
msgid "Remove this item? If you have previously reduced this item's stock, or this order was submitted by a customer, will need to manually restore the item's stock."
|
72 |
+
msgstr "Dieses Produkt entfernen? Wenn Sie vorher den Lagerbestand dieses Produktes verringert haben, oder ein Kunde etwas bestellt hat, wird eine manuelle Bearbeitung des Lagerbestandes nötig."
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
|
74 |
+
#: controllers/controller/admin.php:56
|
75 |
msgid "Remove this attribute?"
|
76 |
msgstr "Dieses Merkmal entfernen?"
|
77 |
|
78 |
+
#: controllers/controller/admin.php:57
|
79 |
+
#: views/admin/import/options/_reimport_options.php:40
|
80 |
+
#: views/admin/import/options/_reimport_template.php:106
|
81 |
+
#: views/admin/import/product/_tabs/_attributes.php:6
|
82 |
+
#: views/admin/import/product/_tabs/_linked_product.php:90
|
83 |
+
#: views/admin/import/product/_tabs/_variations.php:546
|
84 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:69
|
85 |
msgid "Name"
|
86 |
msgstr "Name"
|
87 |
|
88 |
+
#: controllers/controller/admin.php:58
|
89 |
msgid "Remove"
|
90 |
msgstr "Entfernen"
|
91 |
|
92 |
+
#: controllers/controller/admin.php:59
|
93 |
msgid "Click to toggle"
|
94 |
msgstr "Klicken zum Schalten"
|
95 |
|
96 |
+
#: controllers/controller/admin.php:60
|
97 |
msgid "Value(s)"
|
98 |
msgstr "Wert(e)"
|
99 |
|
100 |
+
#: controllers/controller/admin.php:61
|
101 |
msgid "Enter some text, or some attributes by pipe (|) separating values."
|
102 |
msgstr "Text eingeben, oder einige Merkmale getrennt durch eine Pipe (|)."
|
103 |
|
104 |
+
#: controllers/controller/admin.php:62
|
105 |
msgid "Visible on the product page"
|
106 |
msgstr "Sichtbar auf der Produktseite"
|
107 |
|
108 |
+
#: controllers/controller/admin.php:63
|
109 |
msgid "Used for variations"
|
110 |
msgstr "Genutzt für Variationen"
|
111 |
|
112 |
+
#: controllers/controller/admin.php:64
|
113 |
msgid "Enter a name for the new attribute term:"
|
114 |
msgstr "Namen für das neue Merkmal eingeben"
|
115 |
|
116 |
+
#: controllers/controller/admin.php:65
|
117 |
+
msgid "Calculate totals based on order items, discount amount, and shipping? Note, you will need to (optionally) calculate tax rows and cart discounts manually."
|
118 |
+
msgstr "Berechne Summen basierend auf bestellten Produkten, Rabatten und Lieferkosten? Hinweis, Sie werden (optional) die Spalte der Steuern und Einkaufswagen Rabatte manuell berechnen müssen. "
|
|
|
|
|
|
|
|
|
|
|
119 |
|
120 |
+
#: controllers/controller/admin.php:66
|
121 |
+
msgid "Calculate line taxes? This will calculate taxes based on the customers country. If no billing/shipping is set it will use the store base country."
|
122 |
+
msgstr "Berechne Produktbezogene Steuern? Das wird die Steuern basierend auf das Kundenland berechnen. Wenn keine Rechnung/Versendung gesetzt ist, wird das Basisland des Shops genutzt."
|
|
|
|
|
|
|
|
|
|
|
123 |
|
124 |
+
#: controllers/controller/admin.php:67
|
125 |
+
msgid "Copy billing information to shipping information? This will remove any currently entered shipping information."
|
126 |
+
msgstr "Kopiere Rechnungsinformationen zur Versandinformation? Das wird alle bisher eingegebenen Versandinformationen entfernen."
|
|
|
|
|
|
|
|
|
127 |
|
128 |
+
#: controllers/controller/admin.php:68
|
129 |
+
msgid "Load the customer's billing information? This will remove any currently entered billing information."
|
130 |
+
msgstr "Lade des Kunden Rechnungsinformation? Das wird alle bisher eingegebenen Rechnungsinformationen entfernen."
|
|
|
|
|
|
|
|
|
131 |
|
132 |
+
#: controllers/controller/admin.php:69
|
133 |
+
msgid "Load the customer's shipping information? This will remove any currently entered shipping information."
|
134 |
+
msgstr "Lade des Kunden Versandinformation? Das wird alle bisher eingegebenen Versandinformationen entfernen."
|
|
|
|
|
|
|
|
|
135 |
|
136 |
+
#: controllers/controller/admin.php:70
|
137 |
+
#: views/admin/import/product/_tabs/_advanced.php:44
|
138 |
msgid "Featured"
|
139 |
msgstr "Featured"
|
140 |
|
141 |
+
#: controllers/controller/admin.php:74
|
142 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:277
|
143 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:289
|
144 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:448
|
145 |
msgid "Meta Name"
|
146 |
msgstr "Meta Name"
|
147 |
|
148 |
+
#: controllers/controller/admin.php:75
|
149 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:281
|
150 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:293
|
151 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:452
|
152 |
msgid "Meta Value"
|
153 |
msgstr "Meta Wert"
|
154 |
|
155 |
+
#: controllers/controller/admin.php:76
|
156 |
msgid "No customer selected"
|
157 |
msgstr "Kein Kunde gewählt"
|
158 |
|
159 |
+
#: controllers/controller/admin.php:77
|
160 |
msgid "Tax Label:"
|
161 |
msgstr "Steuer Kennzeichnung"
|
162 |
|
163 |
+
#: controllers/controller/admin.php:78
|
164 |
msgid "Compound:"
|
165 |
msgstr "Mischung:"
|
166 |
|
167 |
+
#: controllers/controller/admin.php:79
|
168 |
msgid "Cart Tax:"
|
169 |
msgstr "Einkaufswagen Steuern:"
|
170 |
|
171 |
+
#: controllers/controller/admin.php:80
|
172 |
msgid "Shipping Tax:"
|
173 |
msgstr "Versand Steuern:"
|
174 |
|
175 |
+
#: filters/pmxi_custom_types.php:7
|
176 |
msgid "WooCommerce Products"
|
177 |
msgstr "WooCommerce Produkte"
|
178 |
|
179 |
+
#: filters/pmxi_custom_types.php:8
|
180 |
+
msgid "WooCommerce Orders"
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: filters/pmxi_custom_types.php:9
|
184 |
+
msgid "WooCommerce Coupons"
|
185 |
+
msgstr ""
|
186 |
+
|
187 |
+
#: libraries/XmlImportWooCommerceProduct.php:43
|
188 |
msgid "Composing product data..."
|
189 |
msgstr "Zusammengesetzte Produkt Daten..."
|
190 |
|
191 |
+
#: libraries/XmlImportWooCommerceProduct.php:261
|
192 |
msgid "Composing variations attributes..."
|
193 |
msgstr "Zusammengesetzte Merkmal Variationen..."
|
194 |
|
195 |
+
#: libraries/XmlImportWooCommerceProduct.php:533
|
196 |
msgid "<b>WARNING</b>: Product SKU must be unique."
|
197 |
msgstr "<b>WARNING</b>: Produkt ID muss einzigartig sein."
|
198 |
|
199 |
+
#: libraries/XmlImportWooCommerceProduct.php:1101
|
200 |
+
#: libraries/XmlImportWooCommerceProduct.php:2294
|
201 |
+
#: libraries/XmlImportWooCommerceProduct.php:2341
|
202 |
msgid "Variation #%s of %s"
|
203 |
msgstr "Variation #%s von %s"
|
204 |
|
205 |
+
#: libraries/XmlImportWooCommerceProduct.php:1871
|
|
|
206 |
msgid "<b>CREATED</b>: %s variations for parent product %s."
|
207 |
msgstr "<b>CREATED</b>: %s Variationen für gegenwärtiges Produkt %s."
|
208 |
|
209 |
+
#: libraries/XmlImportWooCommerceProduct.php:1893
|
210 |
msgid "- Importing Variations"
|
211 |
msgstr "- Importiere Variationen"
|
212 |
|
213 |
+
#: libraries/XmlImportWooCommerceProduct.php:2341
|
|
|
214 |
msgid "- `%s`: variation created successfully"
|
215 |
msgstr "- `%s`: Variation erfolgreich erstellt"
|
216 |
|
217 |
+
#: libraries/XmlImportWooCommerceProduct.php:2347
|
|
|
218 |
msgid "- `%s`: variation updated successfully"
|
219 |
msgstr "- `%s`: Variation erfolgreich aktualisiert"
|
220 |
|
221 |
+
#: libraries/XmlImportWooCommerceProduct.php:2350
|
222 |
+
msgid "Deleting attachments for `%s`"
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
#: libraries/XmlImportWooCommerceProduct.php:2355
|
226 |
+
msgid "Deleting images for `%s`"
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
+
#: libraries/XmlImportWooCommerceProduct.php:2529
|
230 |
msgid "- <b>WARNING</b>: Product SKU must be unique."
|
231 |
msgstr "<b>WARNING</b>: Produkt ID muss einzigartig sein."
|
232 |
|
233 |
+
#: libraries/XmlImportWooCommerceProduct.php:2761
|
234 |
+
msgid "- <b>WARNING</b>: Image %s not found in media gallery."
|
235 |
+
msgstr ""
|
|
|
236 |
|
237 |
+
#: libraries/XmlImportWooCommerceProduct.php:2765
|
238 |
+
msgid "- Using existing image `%s` for post `%s` ..."
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
+
#: libraries/XmlImportWooCommerceProduct.php:2783
|
242 |
+
msgid "- Searching for existing image `%s` in `%s` folder"
|
243 |
+
msgstr ""
|
244 |
+
|
245 |
+
#: libraries/XmlImportWooCommerceProduct.php:2789
|
246 |
+
#: libraries/XmlImportWooCommerceProduct.php:2825
|
247 |
+
msgid "- <b>WARNING</b>: File %s is not a valid image and cannot be set as featured one"
|
248 |
+
msgstr "- <b>WARNUNG</b>: Datei %s ist kein zulässiges Bild und kann nicht als Featured-Bild gesetzt werden"
|
249 |
+
|
250 |
+
#: libraries/XmlImportWooCommerceProduct.php:2793
|
251 |
+
msgid "- Image `%s` has been successfully found"
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#: libraries/XmlImportWooCommerceProduct.php:2799
|
255 |
+
msgid "- Downloading image from `%s`"
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: libraries/XmlImportWooCommerceProduct.php:2809
|
259 |
+
#: libraries/XmlImportWooCommerceProduct.php:2829
|
260 |
+
msgid "- Image `%s` has been successfully downloaded"
|
261 |
msgstr ""
|
|
|
|
|
262 |
|
263 |
+
#: libraries/XmlImportWooCommerceProduct.php:2820
|
|
|
264 |
msgid "- <b>WARNING</b>: File %s cannot be saved locally as %s"
|
265 |
msgstr "- <b>WARNUNG</b>: Datei %s kann lokal nicht gespeichert werden als %s"
|
266 |
|
267 |
+
#: libraries/XmlImportWooCommerceProduct.php:2846
|
268 |
+
msgid "- Creating an attachment for image `%s`"
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
#: libraries/XmlImportWooCommerceProduct.php:2867
|
272 |
msgid "- <b>WARNING</b>"
|
273 |
msgstr "- <b>WARNUNG</b>"
|
274 |
|
275 |
+
#: libraries/XmlImportWooCommerceProduct.php:2900
|
276 |
+
msgid "- Attachment has been successfully updated for image `%s`"
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: libraries/XmlImportWooCommerceProduct.php:2904
|
280 |
+
msgid "- Attachment has been successfully created for image `%s`"
|
281 |
+
msgstr ""
|
282 |
+
|
283 |
+
#: libraries/XmlImportWooCommerceProduct.php:3282
|
284 |
+
msgid "Added to %s list of product ID %d."
|
285 |
+
msgstr ""
|
286 |
+
|
287 |
+
#: libraries/XmlImportWooCommerceProduct.php:3352
|
288 |
msgid "<b>ERROR</b> Could not insert term relationship into the database"
|
289 |
msgstr "<b>ERROR</b> Einfügen von Beziehungen in die Datenbank nicht möglich"
|
290 |
|
291 |
+
#: libraries/XmlImportWooCommerceProduct.php:3664
|
292 |
+
msgid "- <b>WARNING</b>: Slug “%s” is not allowed because it is a reserved term. Change it, please."
|
293 |
+
msgstr "- <b>WARNING</b>: Slug “%s” ist nicht zulässig da es ein reservierter Begriff ist. Bitte ändern."
|
|
|
|
|
|
|
|
|
|
|
294 |
|
295 |
+
#: libraries/XmlImportWooCommerceProduct.php:3697
|
|
|
296 |
msgid "- <b>CREATED</b>: Taxonomy attribute “%s” have been successfully created."
|
297 |
msgstr "- <b>CREATED</b>: Taxonomie Merkmal \"%s\" wurde erfolgreich erstellt."
|
298 |
|
299 |
+
#: libraries/XmlImportWooCommerceProduct.php:3701
|
300 |
+
msgid "- <b>WARNING</b>: Taxonomy “%s” name is more than 28 characters. Change it, please."
|
|
|
|
|
|
|
301 |
msgstr ""
|
|
|
|
|
302 |
|
303 |
+
#: libraries/XmlImportWooCommerceProduct.php:3810
|
|
|
304 |
msgid "- <b>WARNING</b>: Unable to create cloaked link for %s"
|
305 |
msgstr "<b>WARNING</b>:Verhüllten Link erstellen nicht möglich %s"
|
306 |
|
307 |
+
#: libraries/XmlImportWooCommerceProduct.php:3890
|
308 |
+
msgid "Product `%s` with ID `%d` added to %s list."
|
309 |
+
msgstr ""
|
310 |
|
311 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:196
|
312 |
+
msgid "Composing shop order data..."
|
313 |
+
msgstr ""
|
314 |
|
315 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:683
|
316 |
+
msgid "- Importing billing & shipping information for Order ID `%s`."
|
317 |
+
msgstr ""
|
318 |
|
319 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:695
|
320 |
+
msgid "- %s Existing customer with ID `%s` founded for Order `%s`."
|
321 |
+
msgstr ""
|
322 |
|
323 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:701
|
324 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:711
|
325 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:729
|
326 |
+
msgid "- Billing field `%s` has been updated with value `%s` for order `%s` ..."
|
327 |
+
msgstr ""
|
328 |
|
329 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:717
|
330 |
+
msgid "<b>WARNING</b>: Existing customer not found for Order `%s`."
|
331 |
+
msgstr ""
|
332 |
|
333 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:747
|
334 |
+
msgid "- Copying shipping from billing information..."
|
|
|
|
|
335 |
msgstr ""
|
|
|
|
|
336 |
|
337 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:753
|
338 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:771
|
339 |
+
msgid "- Shipping field `%s` has been updated with value `%s` for order `%s` ..."
|
340 |
+
msgstr ""
|
|
|
341 |
|
342 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:812
|
343 |
+
msgid "- %s email notification has beed sent. ..."
|
344 |
+
msgstr ""
|
|
|
|
|
345 |
|
346 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:1036
|
347 |
+
msgid "<b>SKIPPED</b>: %s Existing customer not found for Order `%s`."
|
348 |
+
msgstr ""
|
349 |
|
350 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:1091
|
351 |
+
msgid "<b>SKIPPED</b>: Existing product `%s` not found for Order `%s`."
|
352 |
+
msgstr ""
|
353 |
|
354 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:1330
|
355 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:1474
|
356 |
+
msgid "- <b>WARNING</b> Unable to create order line product."
|
357 |
+
msgstr ""
|
358 |
|
359 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:1594
|
360 |
+
msgid "- <b>WARNING</b> order line fee is not added."
|
361 |
+
msgstr ""
|
362 |
|
363 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:1675
|
364 |
+
msgid "- <b>WARNING</b> Unable to create order coupon line."
|
365 |
+
msgstr ""
|
|
|
|
|
|
|
366 |
|
367 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:1799
|
368 |
+
msgid "- <b>WARNING</b> Unable to create order shipping line."
|
369 |
+
msgstr ""
|
370 |
|
371 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:1902
|
372 |
+
msgid "- <b>WARNING</b> Unable to create order tax line."
|
373 |
+
msgstr ""
|
374 |
|
375 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:1958
|
376 |
+
msgid "WooCommerce"
|
377 |
+
msgstr ""
|
378 |
|
379 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:2048
|
380 |
+
msgid "Search customer by "
|
381 |
+
msgstr ""
|
382 |
|
383 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:2054
|
384 |
+
msgid "username"
|
385 |
+
msgstr ""
|
386 |
|
387 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:2060
|
388 |
+
msgid "email"
|
389 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
390 |
|
391 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:2066
|
392 |
+
msgid "custom field"
|
393 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
394 |
|
395 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:2072
|
396 |
+
msgid "ID"
|
397 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
398 |
|
399 |
+
#: views/admin/import/confirm.php:3
|
400 |
+
#: views/admin/import/options/_reimport_options.php:74
|
401 |
+
msgid "Order status"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
402 |
msgstr ""
|
|
|
|
|
403 |
|
404 |
+
#: views/admin/import/confirm.php:6
|
405 |
+
#: views/admin/import/options/_reimport_options.php:80
|
406 |
+
msgid "Customer Note"
|
407 |
+
msgstr ""
|
408 |
|
409 |
+
#: views/admin/import/confirm.php:9
|
410 |
+
#: views/admin/import/options/_reimport_options.php:85
|
411 |
+
msgid "Dates"
|
412 |
+
msgstr ""
|
413 |
|
414 |
+
#: views/admin/import/confirm.php:12
|
415 |
+
#: views/admin/import/options/_reimport_options.php:90
|
416 |
+
msgid "Billing Details"
|
417 |
+
msgstr ""
|
418 |
|
419 |
+
#: views/admin/import/confirm.php:15
|
420 |
+
#: views/admin/import/options/_reimport_options.php:95
|
421 |
+
msgid "Shipping Details"
|
422 |
+
msgstr ""
|
423 |
|
424 |
+
#: views/admin/import/confirm.php:18
|
425 |
+
#: views/admin/import/options/_reimport_options.php:100
|
426 |
+
msgid "Payment Details"
|
427 |
+
msgstr ""
|
428 |
|
429 |
+
#: views/admin/import/confirm.php:21
|
430 |
+
#: views/admin/import/options/_reimport_options.php:105
|
431 |
+
msgid "Order Notes"
|
|
|
432 |
msgstr ""
|
|
|
|
|
433 |
|
434 |
+
#: views/admin/import/confirm.php:28
|
435 |
+
#: views/admin/import/options/_reimport_options.php:114
|
436 |
+
msgid "Update all products"
|
437 |
+
msgstr ""
|
438 |
|
439 |
+
#: views/admin/import/confirm.php:31
|
440 |
+
#: views/admin/import/options/_reimport_options.php:118
|
441 |
+
msgid "Don't touch existing products, append new products"
|
442 |
+
msgstr ""
|
443 |
|
444 |
+
#: views/admin/import/confirm.php:37
|
445 |
+
#: views/admin/import/options/_reimport_options.php:125
|
446 |
+
msgid "Fees Items"
|
447 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
448 |
|
449 |
+
#: views/admin/import/confirm.php:40
|
450 |
+
#: views/admin/import/options/_reimport_options.php:130
|
451 |
+
msgid "Coupon Items"
|
452 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
453 |
|
454 |
+
#: views/admin/import/confirm.php:43
|
455 |
+
#: views/admin/import/options/_reimport_options.php:135
|
456 |
+
msgid "Shipping Items"
|
457 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
458 |
|
459 |
+
#: views/admin/import/confirm.php:46
|
460 |
+
#: views/admin/import/options/_reimport_options.php:140
|
461 |
+
msgid "Tax Items"
|
462 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
463 |
|
464 |
+
#: views/admin/import/confirm.php:49
|
465 |
+
#: views/admin/import/options/_reimport_options.php:145
|
466 |
+
#: views/admin/import/shop_order/order_items_section.php:39
|
467 |
+
msgid "Refunds"
|
468 |
+
msgstr ""
|
469 |
|
470 |
+
#: views/admin/import/confirm.php:52
|
471 |
+
#: views/admin/import/options/_reimport_options.php:150
|
472 |
+
msgid "Order Total"
|
473 |
+
msgstr ""
|
|
|
474 |
|
475 |
+
#: views/admin/import/confirm.php:59
|
476 |
+
msgid "All advanced custom fields"
|
477 |
+
msgstr ""
|
|
|
|
|
478 |
|
479 |
+
#: views/admin/import/confirm.php:62
|
480 |
+
msgid "Only ACF presented in import options"
|
481 |
+
msgstr ""
|
|
|
|
|
482 |
|
483 |
+
#: views/admin/import/confirm.php:65
|
484 |
+
msgid "Only these ACF : %s"
|
485 |
+
msgstr ""
|
|
|
486 |
|
487 |
+
#: views/admin/import/confirm.php:68
|
488 |
+
msgid "All ACF except these: %s"
|
489 |
+
msgstr ""
|
|
|
490 |
|
491 |
+
#: views/admin/import/confirm.php:78
|
492 |
+
msgid "All custom fields"
|
493 |
+
msgstr ""
|
494 |
|
495 |
+
#: views/admin/import/confirm.php:81
|
496 |
+
msgid "Only these custom fields : %s"
|
|
|
|
|
497 |
msgstr ""
|
|
|
|
|
|
|
498 |
|
499 |
+
#: views/admin/import/confirm.php:84
|
500 |
+
msgid "All custom fields except these: %s"
|
501 |
+
msgstr ""
|
|
|
502 |
|
503 |
+
#: views/admin/import/options/_reimport_options.php:2
|
504 |
+
msgid "When WP All Import finds new or changed data..."
|
505 |
+
msgstr ""
|
506 |
|
507 |
+
#: views/admin/import/options/_reimport_options.php:4
|
508 |
+
msgid "If this import is run again and WP All Import finds new or changed data..."
|
509 |
+
msgstr ""
|
510 |
|
511 |
+
#: views/admin/import/options/_reimport_options.php:9
|
512 |
+
msgid "Create new orders from records newly present in your file"
|
513 |
+
msgstr ""
|
514 |
|
515 |
+
#: views/admin/import/options/_reimport_options.php:11
|
516 |
+
msgid "New orders will only be created when ID column is present and value in ID column is unique."
|
517 |
msgstr ""
|
|
|
|
|
518 |
|
519 |
+
#: views/admin/import/options/_reimport_options.php:18
|
520 |
+
msgid "Delete orders that are no longer present in your file"
|
|
|
|
|
521 |
msgstr ""
|
|
|
|
|
522 |
|
523 |
+
#: views/admin/import/options/_reimport_options.php:20
|
524 |
+
msgid "Records removed from the import file can only be deleted when importing into New Items. This feature cannot be enabled when importing into Existing Items."
|
525 |
+
msgstr ""
|
526 |
|
527 |
+
#: views/admin/import/options/_reimport_options.php:27
|
528 |
+
msgid "Do not remove attachments"
|
529 |
+
msgstr ""
|
|
|
530 |
|
531 |
+
#: views/admin/import/options/_reimport_options.php:32
|
532 |
+
msgid "Do not remove images"
|
533 |
+
msgstr ""
|
534 |
|
535 |
+
#: views/admin/import/options/_reimport_options.php:37
|
536 |
+
msgid "Instead of deletion, set Custom Field"
|
537 |
+
msgstr ""
|
|
|
538 |
|
539 |
+
#: views/admin/import/options/_reimport_options.php:42
|
540 |
+
#: views/admin/import/options/_reimport_template.php:108
|
541 |
+
#: views/admin/import/product/_tabs/_linked_product.php:95
|
542 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:73
|
543 |
+
msgid "Value"
|
544 |
+
msgstr "Wert"
|
545 |
|
546 |
+
#: views/admin/import/options/_reimport_options.php:50
|
547 |
+
msgid "Instead of deletion, change post status to Draft"
|
548 |
+
msgstr ""
|
549 |
|
550 |
+
#: views/admin/import/options/_reimport_options.php:57
|
551 |
+
msgid "Update existing orders with changed data in your file"
|
|
|
|
|
|
|
552 |
msgstr ""
|
|
|
|
|
553 |
|
554 |
+
#: views/admin/import/options/_reimport_options.php:59
|
555 |
+
msgid "These options will only be used if you run this import again later. All data is imported the first time you run an import."
|
556 |
+
msgstr ""
|
|
|
557 |
|
558 |
+
#: views/admin/import/options/_reimport_options.php:63
|
559 |
+
msgid "Update all data"
|
560 |
+
msgstr ""
|
561 |
|
562 |
+
#: views/admin/import/options/_reimport_options.php:66
|
563 |
+
msgid "Choose which data to update"
|
564 |
+
msgstr ""
|
565 |
|
566 |
+
#: views/admin/import/options/_reimport_options.php:69
|
567 |
+
msgid "Unselect All"
|
568 |
+
msgstr ""
|
569 |
|
570 |
+
#: views/admin/import/options/_reimport_options.php:69
|
571 |
+
msgid "Select All"
|
|
|
|
|
|
|
572 |
msgstr ""
|
|
|
|
|
|
|
573 |
|
574 |
+
#: views/admin/import/options/_reimport_options.php:75
|
575 |
+
msgid "Hint: uncheck this box to keep trashed orders in the trash."
|
576 |
msgstr ""
|
|
|
|
|
577 |
|
578 |
+
#: views/admin/import/options/_reimport_options.php:110
|
579 |
+
msgid "Product Items"
|
580 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
581 |
|
582 |
+
#: views/admin/import/options/_reimport_options.php:159
|
583 |
+
msgid "Custom Fields"
|
584 |
+
msgstr ""
|
585 |
+
|
586 |
+
#: views/admin/import/options/_reimport_options.php:160
|
587 |
+
msgid "If Keep Custom Fields box is checked, it will keep all Custom Fields, and add any new Custom Fields specified in Custom Fields section, as long as they do not overwrite existing fields. If 'Only keep this Custom Fields' is specified, it will only keep the specified fields."
|
588 |
+
msgstr "Wenn die Box: 'Behalte individuelle Felder' markiert ist, wird es alle individuellen Felder behalten und neue hinzufügen die im Abschnitt individuelle Felder bestimmt wurden, solange sie bestehende Felder nicht überschreiben. Wenn 'Nur dieses individuelle Feld behalten' markiert ist, wird es nur die bestimmten Felder behalten."
|
589 |
+
|
590 |
+
#: views/admin/import/options/_reimport_options.php:164
|
591 |
+
msgid "Update all Custom Fields"
|
592 |
+
msgstr ""
|
593 |
+
|
594 |
+
#: views/admin/import/options/_reimport_options.php:168
|
595 |
+
msgid "Update only these Custom Fields, leave the rest alone"
|
596 |
+
msgstr ""
|
597 |
+
|
598 |
+
#: views/admin/import/options/_reimport_options.php:176
|
599 |
+
msgid "Leave these fields alone, update all other Custom Fields"
|
600 |
+
msgstr ""
|
601 |
+
|
602 |
+
#: views/admin/import/options/_reimport_template.php:14
|
603 |
+
#: views/admin/import/options/_reimport_template.php:82
|
604 |
+
msgid "Record Matching"
|
605 |
+
msgstr ""
|
606 |
+
|
607 |
+
#: views/admin/import/options/_reimport_template.php:22
|
608 |
+
msgid "Choose how exported data will be re-imported."
|
609 |
+
msgstr ""
|
610 |
+
|
611 |
+
#: views/admin/import/options/_reimport_template.php:28
|
612 |
+
msgid "WP All Import will create new %s for each unique record in your file."
|
613 |
+
msgstr ""
|
614 |
+
|
615 |
+
#: views/admin/import/options/_reimport_template.php:42
|
616 |
+
msgid "WP All Import will associate records in your file with %s it has already created from previous runs of this import based on the Unique Identifier."
|
617 |
+
msgstr ""
|
618 |
+
|
619 |
+
#: views/admin/import/options/_reimport_template.php:45
|
620 |
+
#: views/admin/import/product/_tabs/_variations.php:36
|
621 |
+
msgid "Unique Identifier"
|
622 |
+
msgstr "Einzigartige ID"
|
623 |
+
|
624 |
+
#: views/admin/import/options/_reimport_template.php:51
|
625 |
+
#: views/admin/import/options/_reimport_template.php:62
|
626 |
+
msgid "Auto-detect"
|
627 |
+
msgstr ""
|
628 |
+
|
629 |
+
#: views/admin/import/options/_reimport_template.php:54
|
630 |
+
msgid "Edit"
|
631 |
+
msgstr ""
|
632 |
+
|
633 |
+
#: views/admin/import/options/_reimport_template.php:55
|
634 |
+
msgid "Warning: Are you sure you want to edit the Unique Identifier?"
|
635 |
+
msgstr ""
|
636 |
+
|
637 |
+
#: views/admin/import/options/_reimport_template.php:56
|
638 |
+
msgid "It is recommended you delete all %s associated with this import before editing the unique identifier."
|
639 |
+
msgstr ""
|
640 |
+
|
641 |
+
#: views/admin/import/options/_reimport_template.php:57
|
642 |
+
msgid "Editing the unique identifier will dissociate all existing %s linked to this import. Future runs of the import will result in duplicates, as WP All Import will no longer be able to update these %s."
|
643 |
+
msgstr ""
|
644 |
+
|
645 |
+
#: views/admin/import/options/_reimport_template.php:58
|
646 |
+
msgid "You really should just re-create your import, and pick the right unique identifier to start with."
|
647 |
+
msgstr ""
|
648 |
+
|
649 |
+
#: views/admin/import/options/_reimport_template.php:68
|
650 |
+
msgid "Drag an element, or combo of elements, to the box above. The Unique Identifier should be unique for each record in your file, and should stay the same even if your file is updated. Things like product IDs, titles, and SKUs are good Unique Identifiers because they probably won't change. Don't use a description or price, since that might be changed."
|
651 |
+
msgstr ""
|
652 |
+
|
653 |
+
#: views/admin/import/options/_reimport_template.php:69
|
654 |
+
msgid "If you run this import again with an updated file, the Unique Identifier allows WP All Import to correctly link the records in your updated file with the %s it will create right now. If multiple records in this file have the same Unique Identifier, only the first will be created. The others will be detected as duplicates."
|
655 |
+
msgstr ""
|
656 |
+
|
657 |
+
#: views/admin/import/options/_reimport_template.php:84
|
658 |
+
msgid "WP All Import will merge data into existing %s."
|
659 |
+
msgstr ""
|
660 |
+
|
661 |
+
#: views/admin/import/options/_reimport_template.php:94
|
662 |
+
msgid "Records in your file will be matched with %ss on your site based on..."
|
663 |
+
msgstr ""
|
664 |
+
|
665 |
+
#: views/admin/import/options/_reimport_template.php:99
|
666 |
+
msgid "Title"
|
667 |
+
msgstr ""
|
668 |
+
|
669 |
+
#: views/admin/import/options/_reimport_template.php:101
|
670 |
+
#: views/admin/import/shop_order/order_notes_section.php:31
|
671 |
+
#: views/admin/import/shop_order/order_notes_section.php:95
|
672 |
+
msgid "Content"
|
673 |
+
msgstr ""
|
674 |
+
|
675 |
+
#: views/admin/import/options/_reimport_template.php:104
|
676 |
+
msgid "Custom field"
|
677 |
+
msgstr ""
|
678 |
+
|
679 |
+
#: views/admin/import/options/_reimport_template.php:114
|
680 |
+
msgid "Order ID"
|
681 |
+
msgstr ""
|
682 |
+
|
683 |
+
#: views/admin/import/options/_reimport_template.php:134
|
684 |
+
msgid "Email Notifications for Customers"
|
685 |
+
msgstr ""
|
686 |
+
|
687 |
+
#: views/admin/import/options/_reimport_template.php:141
|
688 |
+
msgid "Block email notifications during import"
|
689 |
+
msgstr ""
|
690 |
+
|
691 |
+
#: views/admin/import/options/_reimport_template.php:142
|
692 |
+
msgid "If enabled, WP All Import will prevent WordPress from sending notification emails to customers when their orders are imported or updated."
|
693 |
+
msgstr ""
|
694 |
+
|
695 |
+
#: views/admin/import/product/_tabs/_advanced.php:5
|
696 |
+
msgid "Purchase Note"
|
697 |
+
msgstr "Hinweis für die Bezahlung"
|
698 |
+
|
699 |
+
#: views/admin/import/product/_tabs/_advanced.php:11
|
700 |
+
msgid "Menu order"
|
701 |
+
msgstr "Menü Reihenfolge"
|
702 |
+
|
703 |
+
#: views/admin/import/product/_tabs/_advanced.php:18
|
704 |
+
msgid "Enable reviews"
|
705 |
+
msgstr "Aktiviere Rezensionen"
|
706 |
+
|
707 |
+
#: views/admin/import/product/_tabs/_advanced.php:22
|
708 |
+
#: views/admin/import/product/_tabs/_advanced.php:48
|
709 |
+
#: views/admin/import/product/_tabs/_general.php:112
|
710 |
+
#: views/admin/import/product/_tabs/_inventory.php:8
|
711 |
+
#: views/admin/import/product/_tabs/_inventory.php:99
|
712 |
+
#: views/admin/import/product/_tabs/_variations.php:155
|
713 |
+
#: views/admin/import/product/_tabs/_variations.php:516
|
714 |
+
#: views/admin/import/product/_tabs/_variations.php:683
|
715 |
+
#: views/admin/import/product/_tabs/_variations.php:745
|
716 |
+
msgid "Yes"
|
717 |
+
msgstr "Ja"
|
718 |
+
|
719 |
+
#: views/admin/import/product/_tabs/_advanced.php:26
|
720 |
+
#: views/admin/import/product/_tabs/_advanced.php:52
|
721 |
+
#: views/admin/import/product/_tabs/_general.php:116
|
722 |
+
#: views/admin/import/product/_tabs/_inventory.php:12
|
723 |
+
#: views/admin/import/product/_tabs/_inventory.php:103
|
724 |
+
#: views/admin/import/product/_tabs/_variations.php:159
|
725 |
+
#: views/admin/import/product/_tabs/_variations.php:520
|
726 |
+
#: views/admin/import/product/_tabs/_variations.php:687
|
727 |
+
#: views/admin/import/product/_tabs/_variations.php:749
|
728 |
+
msgid "No"
|
729 |
+
msgstr "Nein"
|
730 |
+
|
731 |
+
#: views/admin/import/product/_tabs/_advanced.php:30
|
732 |
+
#: views/admin/import/product/_tabs/_advanced.php:56
|
733 |
+
#: views/admin/import/product/_tabs/_advanced.php:90
|
734 |
+
#: views/admin/import/product/_tabs/_attributes.php:64
|
735 |
+
#: views/admin/import/product/_tabs/_attributes.php:86
|
736 |
+
#: views/admin/import/product/_tabs/_attributes.php:108
|
737 |
+
#: views/admin/import/product/_tabs/_attributes.php:130
|
738 |
+
#: views/admin/import/product/_tabs/_attributes.php:193
|
739 |
+
#: views/admin/import/product/_tabs/_attributes.php:215
|
740 |
+
#: views/admin/import/product/_tabs/_attributes.php:237
|
741 |
+
#: views/admin/import/product/_tabs/_attributes.php:259
|
742 |
+
#: views/admin/import/product/_tabs/_attributes.php:321
|
743 |
+
#: views/admin/import/product/_tabs/_attributes.php:343
|
744 |
+
#: views/admin/import/product/_tabs/_attributes.php:365
|
745 |
+
#: views/admin/import/product/_tabs/_attributes.php:387
|
746 |
+
#: views/admin/import/product/_tabs/_general.php:120
|
747 |
+
#: views/admin/import/product/_tabs/_general.php:143
|
748 |
+
#: views/admin/import/product/_tabs/_general.php:166
|
749 |
+
#: views/admin/import/product/_tabs/_inventory.php:16
|
750 |
+
#: views/admin/import/product/_tabs/_inventory.php:52
|
751 |
+
#: views/admin/import/product/_tabs/_inventory.php:82
|
752 |
+
#: views/admin/import/product/_tabs/_inventory.php:107
|
753 |
+
#: views/admin/import/product/_tabs/_variations.php:163
|
754 |
+
#: views/admin/import/product/_tabs/_variations.php:211
|
755 |
+
#: views/admin/import/product/_tabs/_variations.php:240
|
756 |
+
#: views/admin/import/product/_tabs/_variations.php:315
|
757 |
+
#: views/admin/import/product/_tabs/_variations.php:459
|
758 |
+
#: views/admin/import/product/_tabs/_variations.php:524
|
759 |
+
#: views/admin/import/product/_tabs/_variations.php:691
|
760 |
+
#: views/admin/import/product/_tabs/_variations.php:728
|
761 |
+
#: views/admin/import/product/_tabs/_variations.php:753
|
762 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:47
|
763 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:92
|
764 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:60
|
765 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:108
|
766 |
+
#: views/admin/import/shop_order/_tabs/_order_payment.php:19
|
767 |
+
#: views/admin/import/shop_order/order_details_section.php:23
|
768 |
+
#: views/admin/import/shop_order/order_notes_section.php:58
|
769 |
+
#: views/admin/import/shop_order/order_notes_section.php:123
|
770 |
+
msgid "Set with XPath"
|
771 |
+
msgstr "Gesetzt mit XPath"
|
772 |
+
|
773 |
+
#: views/admin/import/product/_tabs/_advanced.php:35
|
774 |
+
#: views/admin/import/product/_tabs/_advanced.php:61
|
775 |
+
#: views/admin/import/product/_tabs/_attributes.php:69
|
776 |
+
#: views/admin/import/product/_tabs/_attributes.php:91
|
777 |
+
#: views/admin/import/product/_tabs/_attributes.php:113
|
778 |
+
#: views/admin/import/product/_tabs/_attributes.php:135
|
779 |
+
#: views/admin/import/product/_tabs/_attributes.php:198
|
780 |
+
#: views/admin/import/product/_tabs/_attributes.php:220
|
781 |
+
#: views/admin/import/product/_tabs/_attributes.php:242
|
782 |
+
#: views/admin/import/product/_tabs/_attributes.php:264
|
783 |
+
#: views/admin/import/product/_tabs/_attributes.php:326
|
784 |
+
#: views/admin/import/product/_tabs/_attributes.php:348
|
785 |
+
#: views/admin/import/product/_tabs/_attributes.php:370
|
786 |
+
#: views/admin/import/product/_tabs/_attributes.php:392
|
787 |
+
#: views/admin/import/product/_tabs/_general.php:125
|
788 |
+
#: views/admin/import/product/_tabs/_general.php:148
|
789 |
+
#: views/admin/import/product/_tabs/_general.php:171
|
790 |
+
#: views/admin/import/product/_tabs/_inventory.php:21
|
791 |
+
#: views/admin/import/product/_tabs/_inventory.php:112
|
792 |
+
#: views/admin/import/product/_tabs/_variations.php:168
|
793 |
+
#: views/admin/import/product/_tabs/_variations.php:320
|
794 |
+
#: views/admin/import/product/_tabs/_variations.php:464
|
795 |
+
#: views/admin/import/product/_tabs/_variations.php:529
|
796 |
+
#: views/admin/import/product/_tabs/_variations.php:696
|
797 |
+
#: views/admin/import/product/_tabs/_variations.php:758
|
798 |
+
msgid "The value of presented XPath should be one of the following: ('yes', 'no')."
|
799 |
+
msgstr "Der Wert des gegenwärtigen XPath sollte einer der folgenden sein: ('yes', 'no')."
|
800 |
+
|
801 |
+
#: views/admin/import/product/_tabs/_advanced.php:70
|
802 |
+
msgid "Catalog visibility"
|
803 |
+
msgstr "Katalog sichtbarkeit"
|
804 |
+
|
805 |
+
#: views/admin/import/product/_tabs/_advanced.php:74
|
806 |
+
msgid "Catalog/search"
|
807 |
+
msgstr "Katalog/Suche"
|
808 |
+
|
809 |
+
#: views/admin/import/product/_tabs/_advanced.php:78
|
810 |
+
msgid "Catalog"
|
811 |
+
msgstr "Katalog"
|
812 |
+
|
813 |
+
#: views/admin/import/product/_tabs/_advanced.php:82
|
814 |
+
msgid "Search"
|
815 |
+
msgstr "Suche"
|
816 |
+
|
817 |
+
#: views/admin/import/product/_tabs/_advanced.php:86
|
818 |
+
msgid "Hidden"
|
819 |
+
msgstr "Versteckt"
|
820 |
+
|
821 |
+
#: views/admin/import/product/_tabs/_advanced.php:95
|
822 |
+
msgid "The value of presented XPath should be one of the following: ('visible', 'catalog', 'search', 'hidden')."
|
823 |
+
msgstr "Der Wert des gegenwärtigen XPath sollte einer der folgenden sein: ('visible', 'catalog', 'search', 'hidden')."
|
824 |
+
|
825 |
+
#: views/admin/import/product/_tabs/_attributes.php:8
|
826 |
+
#: views/admin/import/product/_tabs/_variations.php:547
|
827 |
+
msgid "Values"
|
828 |
+
msgstr "Werte"
|
829 |
+
|
830 |
+
#: views/admin/import/product/_tabs/_attributes.php:9
|
831 |
+
msgid "Separate mutiple values with a |"
|
832 |
+
msgstr "Teile mehrere Werte mit |"
|
833 |
+
|
834 |
+
#: views/admin/import/product/_tabs/_attributes.php:26
|
835 |
+
#: views/admin/import/product/_tabs/_attributes.php:158
|
836 |
+
#: views/admin/import/product/_tabs/_attributes.php:286
|
837 |
+
#: views/admin/import/product/index.php:65
|
838 |
+
msgid "Advanced"
|
839 |
+
msgstr "Erweitert"
|
840 |
+
|
841 |
+
#: views/admin/import/product/_tabs/_attributes.php:32
|
842 |
+
#: views/admin/import/product/_tabs/_attributes.php:56
|
843 |
+
#: views/admin/import/product/_tabs/_attributes.php:164
|
844 |
+
#: views/admin/import/product/_tabs/_attributes.php:185
|
845 |
+
#: views/admin/import/product/_tabs/_attributes.php:292
|
846 |
+
#: views/admin/import/product/_tabs/_attributes.php:313
|
847 |
+
#: views/admin/import/product/_tabs/_variations.php:565
|
848 |
+
#: views/admin/import/product/_tabs/_variations.php:599
|
849 |
+
#: views/admin/import/product/_tabs/_variations.php:629
|
850 |
+
msgid "In Variations"
|
851 |
+
msgstr "In Variationen"
|
852 |
+
|
853 |
+
#: views/admin/import/product/_tabs/_attributes.php:37
|
854 |
+
#: views/admin/import/product/_tabs/_attributes.php:78
|
855 |
+
#: views/admin/import/product/_tabs/_attributes.php:168
|
856 |
+
#: views/admin/import/product/_tabs/_attributes.php:207
|
857 |
+
#: views/admin/import/product/_tabs/_attributes.php:296
|
858 |
+
#: views/admin/import/product/_tabs/_attributes.php:335
|
859 |
+
#: views/admin/import/product/_tabs/_variations.php:570
|
860 |
+
#: views/admin/import/product/_tabs/_variations.php:603
|
861 |
+
#: views/admin/import/product/_tabs/_variations.php:633
|
862 |
+
msgid "Is Visible"
|
863 |
+
msgstr "Ist Sichtbar"
|
864 |
+
|
865 |
+
#: views/admin/import/product/_tabs/_attributes.php:42
|
866 |
+
#: views/admin/import/product/_tabs/_attributes.php:100
|
867 |
+
#: views/admin/import/product/_tabs/_attributes.php:172
|
868 |
+
#: views/admin/import/product/_tabs/_attributes.php:229
|
869 |
+
#: views/admin/import/product/_tabs/_attributes.php:300
|
870 |
+
#: views/admin/import/product/_tabs/_attributes.php:357
|
871 |
+
msgid "Is Taxonomy"
|
872 |
+
msgstr "Ist Taxonomie"
|
873 |
+
|
874 |
+
#: views/admin/import/product/_tabs/_attributes.php:47
|
875 |
+
#: views/admin/import/product/_tabs/_attributes.php:122
|
876 |
+
#: views/admin/import/product/_tabs/_attributes.php:176
|
877 |
+
#: views/admin/import/product/_tabs/_attributes.php:251
|
878 |
+
#: views/admin/import/product/_tabs/_attributes.php:304
|
879 |
+
#: views/admin/import/product/_tabs/_attributes.php:379
|
880 |
+
#: views/admin/import/product/_tabs/_variations.php:580
|
881 |
+
#: views/admin/import/product/_tabs/_variations.php:611
|
882 |
+
#: views/admin/import/product/_tabs/_variations.php:641
|
883 |
+
msgid "Auto-Create Terms"
|
884 |
+
msgstr "Werte automatisch erstellen"
|
885 |
+
|
886 |
+
#: views/admin/import/product/_tabs/_attributes.php:60
|
887 |
+
#: views/admin/import/product/_tabs/_attributes.php:189
|
888 |
+
#: views/admin/import/product/_tabs/_attributes.php:317
|
889 |
+
msgid "Not In Variations"
|
890 |
+
msgstr "Nicht in Variationen"
|
891 |
+
|
892 |
+
#: views/admin/import/product/_tabs/_attributes.php:82
|
893 |
+
#: views/admin/import/product/_tabs/_attributes.php:211
|
894 |
+
#: views/admin/import/product/_tabs/_attributes.php:339
|
895 |
+
msgid "Not Visible"
|
896 |
+
msgstr "Nicht Sichtbar"
|
897 |
+
|
898 |
+
#: views/admin/import/product/_tabs/_attributes.php:104
|
899 |
+
#: views/admin/import/product/_tabs/_attributes.php:233
|
900 |
+
#: views/admin/import/product/_tabs/_attributes.php:361
|
901 |
+
msgid "Not Taxonomy"
|
902 |
+
msgstr "Keine Taxonomie"
|
903 |
+
|
904 |
+
#: views/admin/import/product/_tabs/_attributes.php:126
|
905 |
+
#: views/admin/import/product/_tabs/_attributes.php:255
|
906 |
+
#: views/admin/import/product/_tabs/_attributes.php:383
|
907 |
+
msgid "Do Not Create Terms"
|
908 |
+
msgstr "Werte nicht erstellen"
|
909 |
+
|
910 |
+
#: views/admin/import/product/_tabs/_attributes.php:405
|
911 |
+
#: views/admin/import/product/_tabs/_variations.php:648
|
912 |
+
msgid "add"
|
913 |
+
msgstr "Hinzufügen"
|
914 |
+
|
915 |
+
#: views/admin/import/product/_tabs/_attributes.php:405
|
916 |
+
#: views/admin/import/product/_tabs/_variations.php:648
|
917 |
+
msgid "Add more"
|
918 |
+
msgstr "Mehr Hinzufügen"
|
919 |
+
|
920 |
+
#: views/admin/import/product/_tabs/_attributes.php:414
|
921 |
+
msgid "Link all variations"
|
922 |
+
msgstr "Verbinde alle Variationen"
|
923 |
+
|
924 |
+
#: views/admin/import/product/_tabs/_attributes.php:415
|
925 |
+
msgid "This option will create all possible variations for the presented attributes. Works just like the Link All Variations option inside WooCommerce."
|
926 |
+
msgstr "Diese Option wird alle möglichen Variationen für die gegenwärtigen Merkmale erstellen. Funktioniert genau so wie die \"Verbinde alle Variationen\" Option in WooCommerce."
|
927 |
+
|
928 |
+
#: views/admin/import/product/_tabs/_general.php:4
|
929 |
+
#: views/admin/import/product/_tabs/_variations.php:119
|
930 |
+
msgid "SKU"
|
931 |
+
msgstr "ID"
|
932 |
+
|
933 |
+
#: views/admin/import/product/_tabs/_general.php:10
|
934 |
+
msgid "Product URL"
|
935 |
+
msgstr "Produkt URL"
|
936 |
+
|
937 |
+
#: views/admin/import/product/_tabs/_general.php:12
|
938 |
+
msgid "The external/affiliate link URL to the product."
|
939 |
+
msgstr "Der Externe/Affiliate Link zum Produkt"
|
940 |
+
|
941 |
+
#: views/admin/import/product/_tabs/_general.php:15
|
942 |
+
msgid "Button text"
|
943 |
+
msgstr "Button Text"
|
944 |
+
|
945 |
+
#: views/admin/import/product/_tabs/_general.php:17
|
946 |
+
msgid "This text will be shown on the button linking to the external product."
|
947 |
+
msgstr "Dieser Text wird auf dem Button gezeigt, der auf das externe Produkt verlinkt."
|
948 |
+
|
949 |
+
#: views/admin/import/product/_tabs/_general.php:23
|
950 |
+
#: views/admin/import/product/_tabs/_general.php:46
|
951 |
+
msgid "Regular Price (%s)"
|
952 |
+
msgstr ""
|
953 |
+
|
954 |
+
#: views/admin/import/product/_tabs/_general.php:24
|
955 |
+
msgid "required"
|
956 |
+
msgstr "Benötigt"
|
957 |
+
|
958 |
+
#: views/admin/import/product/_tabs/_general.php:27
|
959 |
+
#: views/admin/import/product/_tabs/_general.php:58
|
960 |
+
msgid "Sale Price (%s)"
|
961 |
+
msgstr ""
|
962 |
+
|
963 |
+
#: views/admin/import/product/_tabs/_general.php:28
|
964 |
+
#: views/admin/import/product/_tabs/_variations.php:263
|
965 |
+
msgid "schedule"
|
966 |
+
msgstr "Planung"
|
967 |
+
|
968 |
+
#: views/admin/import/product/_tabs/_general.php:33
|
969 |
+
msgid "Sale Price Dates"
|
970 |
+
msgstr "Angebotspreis Datum"
|
971 |
+
|
972 |
+
#: views/admin/import/product/_tabs/_general.php:35
|
973 |
+
#: views/admin/import/product/_tabs/_variations.php:296
|
974 |
+
msgid "and"
|
975 |
+
msgstr "und"
|
976 |
+
|
977 |
+
#: views/admin/import/product/_tabs/_general.php:37
|
978 |
+
#: views/admin/import/product/_tabs/_variations.php:298
|
979 |
+
msgid "cancel"
|
980 |
+
msgstr "Abbrechen"
|
981 |
+
|
982 |
+
#: views/admin/import/product/_tabs/_general.php:43
|
983 |
+
msgid " Adjust Prices"
|
984 |
+
msgstr ""
|
985 |
+
|
986 |
+
#: views/admin/import/product/_tabs/_general.php:43
|
987 |
+
msgid "Mark prices up and down, convert prices to currencies."
|
988 |
+
msgstr ""
|
989 |
+
|
990 |
+
#: views/admin/import/product/_tabs/_general.php:52
|
991 |
+
#: views/admin/import/product/_tabs/_general.php:64
|
992 |
+
msgid "Leave blank or enter in 100% to keep the price as is. Enter in 110% to markup by 10%. Enter in 50% to cut prices in half."
|
993 |
+
msgstr "Leer lassen oder 100% eingeben um den Preis zu lassen. Geben Sie 110% ein für 10% Preissteigerung. Geben Sie 50% ein für eine Preishalbierung."
|
994 |
+
|
995 |
+
#: views/admin/import/product/_tabs/_general.php:53
|
996 |
+
#: views/admin/import/product/_tabs/_general.php:65
|
997 |
+
msgid "Enter a negative number to reduce prices."
|
998 |
+
msgstr "Geben Sie eine negative Zahl ein zur Preisreduktion."
|
999 |
+
|
1000 |
+
#: views/admin/import/product/_tabs/_general.php:75
|
1001 |
+
msgid "Remove currency symbols from price"
|
1002 |
+
msgstr "Entfernen Sie die Währungssymbole vom Preis"
|
1003 |
+
|
1004 |
+
#: views/admin/import/product/_tabs/_general.php:76
|
1005 |
+
msgid "Attempt to remove currency symbols from prices."
|
1006 |
+
msgstr ""
|
1007 |
+
|
1008 |
+
#: views/admin/import/product/_tabs/_general.php:82
|
1009 |
+
msgid "Convert decimal separator to a period"
|
1010 |
+
msgstr "Konvertiere Dezimaltrennzeichen zu einem Punkt"
|
1011 |
+
|
1012 |
+
#: views/admin/import/product/_tabs/_general.php:83
|
1013 |
+
msgid "Prices must be imported using a period as the decimal separator. If you'd like to change the decimal separator you can do so by editing your WooCommerce settings."
|
1014 |
+
msgstr "Preise müssen mit einem Punkt als Dezimaltrennzeichen importiert werden. Wenn Sie Ihr Dezimaltrennzeichen ändern möchten, können Sie das in den WooCommerce Einstellungen machen."
|
1015 |
+
|
1016 |
+
#: views/admin/import/product/_tabs/_general.php:89
|
1017 |
+
msgid "Attempt to convert incorrectly formatted prices to WooCommerce format"
|
1018 |
+
msgstr "Versuche nicht korrekt formatierte Preise in das WooCommerce Format zu Konvertieren."
|
1019 |
+
|
1020 |
+
#: views/admin/import/product/_tabs/_general.php:90
|
1021 |
+
msgid "WP All Import will attempt to correct the formatting of prices presented incorrectly, but this doesn't always work. Try unchecking this option if your prices are not appearing correctly, or enter your prices in your import file using the same format you would when entering them in WooCommerce."
|
1022 |
+
msgstr "WP All Import wird versuchen alle unkorrekt formatierten Preise zu konvertieren, aber das funktioniert nicht immer. Heben Sie diese Auswahl auf, wenn Ihre Preise nicht korrekt erscheinen, oder ändern Sie die Preise in dem Importfile indem Sie das selbe Format benutzen das Sie auch in WooCommerce eingeben."
|
1023 |
+
|
1024 |
+
#: views/admin/import/product/_tabs/_general.php:94
|
1025 |
+
msgid "Preview Prices"
|
1026 |
+
msgstr "Vorschau Preise"
|
1027 |
+
|
1028 |
+
#: views/admin/import/product/_tabs/_general.php:101
|
1029 |
+
#: views/admin/import/product/_tabs/_variations.php:139
|
1030 |
+
msgid "Variation Description"
|
1031 |
msgstr "Verändere Beschreibung"
|
1032 |
|
1033 |
+
#: views/admin/import/product/_tabs/_general.php:108
|
1034 |
+
#: views/admin/import/product/_tabs/_variations.php:510
|
1035 |
+
#: views/admin/import/product/_tabs/_variations.php:741
|
1036 |
msgid "Variation Enabled"
|
1037 |
msgstr "Variationen aktiviert"
|
1038 |
|
1039 |
+
#: views/admin/import/product/_tabs/_general.php:108
|
1040 |
+
#: views/admin/import/product/_tabs/_variations.php:741
|
1041 |
+
msgid "This option is the same as the Enabled checkbox when editing an individual variation in WooCommerce."
|
1042 |
+
msgstr "Die Option ist die gleiche wie die aktivierte Checkbox, wenn eine individuelle Variation in WooCommerce editiert wird."
|
1043 |
+
|
1044 |
+
#: views/admin/import/product/_tabs/_general.php:135
|
1045 |
+
#: views/admin/import/product/_tabs/_variations.php:108
|
1046 |
+
#: views/admin/import/product/_tabs/_variations.php:307
|
1047 |
+
msgid "Virtual"
|
1048 |
+
msgstr "Virtuell"
|
1049 |
|
1050 |
+
#: views/admin/import/product/_tabs/_general.php:139
|
1051 |
+
#: views/admin/import/product/_tabs/_variations.php:311
|
1052 |
msgid "Not Virtual"
|
1053 |
msgstr "Nicht Virtuell"
|
1054 |
|
1055 |
+
#: views/admin/import/product/_tabs/_general.php:158
|
1056 |
+
#: views/admin/import/product/_tabs/_variations.php:112
|
1057 |
+
#: views/admin/import/product/_tabs/_variations.php:451
|
1058 |
+
msgid "Downloadable"
|
1059 |
+
msgstr "Herunterladbar"
|
1060 |
+
|
1061 |
+
#: views/admin/import/product/_tabs/_general.php:162
|
1062 |
+
#: views/admin/import/product/_tabs/_variations.php:455
|
1063 |
msgid "Not Downloadable"
|
1064 |
msgstr "Nicht Herunterladbar"
|
1065 |
|
1066 |
+
#: views/admin/import/product/_tabs/_general.php:179
|
1067 |
+
#: views/admin/import/product/_tabs/_variations.php:477
|
1068 |
msgid "File paths"
|
1069 |
msgstr "Datei Pfad"
|
1070 |
|
1071 |
+
#: views/admin/import/product/_tabs/_general.php:182
|
1072 |
+
msgid "File paths/URLs, comma separated. The delimiter is used when an XML element contains multiple URLs/paths - i.e. <code>http://files.com/1.doc, http://files.com/2.doc</code>."
|
1073 |
+
msgstr "Datei Pfad/URLs, durch Komma getrennt. Das Trennzeichen wird genutzt wenn ein XML Element mehrere URLs/Pfade hat. Bsp.:<code>http://files.com/1.doc, http://files.com/2.doc</code>."
|
|
|
|
|
|
|
|
|
|
|
|
|
1074 |
|
1075 |
+
#: views/admin/import/product/_tabs/_general.php:185
|
1076 |
+
#: views/admin/import/product/_tabs/_variations.php:483
|
1077 |
msgid "File names"
|
1078 |
msgstr "Datei Namen"
|
1079 |
|
1080 |
+
#: views/admin/import/product/_tabs/_general.php:188
|
1081 |
+
#: views/admin/import/product/_tabs/_variations.php:486
|
1082 |
+
msgid "File names, comma separated. The delimiter is used when an XML element contains multiple names - i.e. <code>1.doc, 2.doc</code>."
|
1083 |
+
msgstr "Datei Namen, durch Komma getrennt. Das Trennzeichen wird genutzt wenn ein XML Element mehrere Dateinamen hat. Bsp.: <code>1.doc, 2.doc</code>."
|
|
|
|
|
|
|
|
|
1084 |
|
1085 |
+
#: views/admin/import/product/_tabs/_general.php:191
|
1086 |
+
#: views/admin/import/product/_tabs/_variations.php:489
|
1087 |
msgid "Download Limit"
|
1088 |
msgstr "Herunterlade Beschränkung"
|
1089 |
|
1090 |
+
#: views/admin/import/product/_tabs/_general.php:193
|
1091 |
msgid "Leave blank for unlimited re-downloads."
|
1092 |
msgstr "Leer lassen für unbeschränkte erneute Downloads."
|
1093 |
|
1094 |
+
#: views/admin/import/product/_tabs/_general.php:196
|
1095 |
+
#: views/admin/import/product/_tabs/_variations.php:498
|
1096 |
msgid "Download Expiry"
|
1097 |
msgstr "Download Verfalldatum"
|
1098 |
|
1099 |
+
#: views/admin/import/product/_tabs/_general.php:198
|
1100 |
msgid "Enter the number of days before a download link expires, or leave blank."
|
1101 |
+
msgstr "Geben Sie die Zahl der Tage ein, bevor ein Download Link verfällt, oder leer lassen."
|
|
|
|
|
1102 |
|
1103 |
+
#: views/admin/import/product/_tabs/_general.php:201
|
1104 |
msgid "Download Type"
|
1105 |
msgstr "Download Typ"
|
1106 |
|
1107 |
+
#: views/admin/import/product/_tabs/_general.php:203
|
1108 |
+
msgid "The value of presented XPath should be one of the following: ('application', 'music')."
|
1109 |
+
msgstr "Der Wert des gegenwärtigen XPath sollte einer der folgenden sein: ('application', 'music')."
|
|
|
|
|
|
|
|
|
1110 |
|
1111 |
+
#: views/admin/import/product/_tabs/_general.php:211
|
1112 |
msgid "Tax Status"
|
1113 |
msgstr "Steuer Status"
|
1114 |
|
1115 |
+
#: views/admin/import/product/_tabs/_general.php:216
|
1116 |
msgid "Taxable"
|
1117 |
msgstr "Besteuerbar"
|
1118 |
|
1119 |
+
#: views/admin/import/product/_tabs/_general.php:217
|
1120 |
msgid "Shipping only"
|
1121 |
msgstr "Nur Versand"
|
1122 |
|
1123 |
+
#: views/admin/import/product/_tabs/_general.php:218
|
1124 |
msgid "None"
|
1125 |
msgstr "Keine"
|
1126 |
|
1127 |
+
#: views/admin/import/product/_tabs/_general.php:226
|
1128 |
msgid "Set tax status with XPath"
|
1129 |
msgstr "Setzte Steuer Status mit XPath"
|
1130 |
|
1131 |
+
#: views/admin/import/product/_tabs/_general.php:231
|
1132 |
+
msgid "Value should be the slug for the tax status - 'taxable', 'shipping', and 'none' are the default slugs."
|
1133 |
+
msgstr "Wert sollte der Slug für den Steuer Status sein - 'Besteuerbar', 'Versenden', und 'keine' sind Standard Slugs."
|
|
|
|
|
|
|
|
|
1134 |
|
1135 |
+
#: views/admin/import/product/_tabs/_general.php:241
|
1136 |
+
#: views/admin/import/product/_tabs/_variations.php:406
|
1137 |
msgid "Tax Class"
|
1138 |
msgstr "Steuer Klasse"
|
1139 |
|
1140 |
+
#: views/admin/import/product/_tabs/_general.php:249
|
1141 |
+
#: views/admin/import/product/_tabs/_variations.php:413
|
1142 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:12
|
1143 |
msgid "Standard"
|
1144 |
msgstr "Standard"
|
1145 |
|
1146 |
+
#: views/admin/import/product/_tabs/_general.php:265
|
1147 |
msgid "Set tax class with XPath"
|
1148 |
msgstr "Setzte Steuer Klasse mit XPath"
|
1149 |
|
1150 |
+
#: views/admin/import/product/_tabs/_general.php:271
|
1151 |
+
msgid "Value should be the slug for the tax class - 'reduced-rate' and 'zero-rate', are the default slugs."
|
1152 |
+
msgstr "Wert sollte der Slug für die Steuerklasse - 'verringerter Satz' und ' Null Satz', sind die Standard Slugs."
|
|
|
|
|
|
|
|
|
1153 |
|
1154 |
+
#: views/admin/import/product/_tabs/_inventory.php:4
|
1155 |
+
#: views/admin/import/product/_tabs/_variations.php:151
|
1156 |
+
#: views/admin/import/product/_tabs/_variations.php:679
|
1157 |
msgid "Manage stock?"
|
1158 |
msgstr "Lagerbestand verwalten?"
|
1159 |
|
1160 |
+
#: views/admin/import/product/_tabs/_inventory.php:29
|
1161 |
+
#: views/admin/import/product/_tabs/_variations.php:181
|
1162 |
+
#: views/admin/import/product/_tabs/_variations.php:704
|
1163 |
msgid "Stock Qty"
|
1164 |
msgstr "Lagerbestand Menge"
|
1165 |
|
1166 |
+
#: views/admin/import/product/_tabs/_inventory.php:35
|
1167 |
+
#: views/admin/import/product/_tabs/_variations.php:194
|
1168 |
+
#: views/admin/import/product/_tabs/_variations.php:711
|
1169 |
msgid "Stock status"
|
1170 |
msgstr "Lagerbestand Status"
|
1171 |
|
1172 |
+
#: views/admin/import/product/_tabs/_inventory.php:39
|
1173 |
+
#: views/admin/import/product/_tabs/_variations.php:198
|
1174 |
+
#: views/admin/import/product/_tabs/_variations.php:715
|
1175 |
msgid "In stock"
|
1176 |
msgstr "Auf Lager"
|
1177 |
|
1178 |
+
#: views/admin/import/product/_tabs/_inventory.php:43
|
1179 |
+
#: views/admin/import/product/_tabs/_variations.php:202
|
1180 |
+
#: views/admin/import/product/_tabs/_variations.php:719
|
1181 |
msgid "Out of stock"
|
1182 |
msgstr "Nicht auf Lager"
|
1183 |
|
1184 |
+
#: views/admin/import/product/_tabs/_inventory.php:47
|
1185 |
+
#: views/admin/import/product/_tabs/_variations.php:206
|
1186 |
+
#: views/admin/import/product/_tabs/_variations.php:723
|
1187 |
msgid "Set automatically"
|
1188 |
msgstr "Setze automatisch"
|
1189 |
|
1190 |
+
#: views/admin/import/product/_tabs/_inventory.php:48
|
1191 |
+
#: views/admin/import/product/_tabs/_variations.php:724
|
1192 |
+
msgid "Set the stock status to In Stock for positive Stock Qty values, and Out Of Stock if Stock Qty is 0 or blank."
|
1193 |
+
msgstr "Setze den Lagerbestand Status auf 'Auf Lager' bei positiver Lagerbestand Menge, und 'Nicht auf Lager' wenn Lagerbestand ist 0 oder Leer."
|
|
|
|
|
|
|
|
|
1194 |
|
1195 |
+
#: views/admin/import/product/_tabs/_inventory.php:57
|
1196 |
+
#: views/admin/import/product/_tabs/_variations.php:216
|
1197 |
+
#: views/admin/import/product/_tabs/_variations.php:733
|
1198 |
+
msgid "The value of presented XPath should be one of the following: ('instock', 'outofstock')."
|
1199 |
+
msgstr "Der Wert des gegenwärtigen XPath sollte einer der folgenden sein: ('instock', 'outofstock')."
|
|
|
|
|
|
|
|
|
1200 |
|
1201 |
+
#: views/admin/import/product/_tabs/_inventory.php:66
|
1202 |
+
#: views/admin/import/product/_tabs/_variations.php:224
|
1203 |
msgid "Allow Backorders?"
|
1204 |
msgstr "Lieferrückstand erlauben?"
|
1205 |
|
1206 |
+
#: views/admin/import/product/_tabs/_inventory.php:70
|
1207 |
+
#: views/admin/import/product/_tabs/_variations.php:228
|
1208 |
msgid "Do not allow"
|
1209 |
msgstr "Nicht erlauben"
|
1210 |
|
1211 |
+
#: views/admin/import/product/_tabs/_inventory.php:74
|
1212 |
+
#: views/admin/import/product/_tabs/_variations.php:232
|
1213 |
msgid "Allow, but notify customer"
|
1214 |
msgstr "Erlauben, aber Kunden informieren"
|
1215 |
|
1216 |
+
#: views/admin/import/product/_tabs/_inventory.php:78
|
1217 |
+
#: views/admin/import/product/_tabs/_variations.php:236
|
1218 |
msgid "Allow"
|
1219 |
msgstr "Erlauben"
|
1220 |
|
1221 |
+
#: views/admin/import/product/_tabs/_inventory.php:87
|
1222 |
+
#: views/admin/import/product/_tabs/_variations.php:245
|
1223 |
+
msgid "The value of presented XPath should be one of the following: ('no', 'notify', 'yes')."
|
1224 |
+
msgstr "Der Wert des gegenwärtigen XPath sollte einer der folgenden sein: ('no', 'notify', 'yes')."
|
|
|
|
|
|
|
1225 |
|
1226 |
+
#: views/admin/import/product/_tabs/_inventory.php:95
|
1227 |
msgid "Sold Individually?"
|
1228 |
msgstr "Einzeln Verkaufen?"
|
1229 |
|
1230 |
+
#: views/admin/import/product/_tabs/_linked_product.php:4
|
1231 |
msgid "Up-Sells"
|
1232 |
msgstr "Up-Sells"
|
1233 |
|
1234 |
+
#: views/admin/import/product/_tabs/_linked_product.php:6
|
1235 |
+
#: views/admin/import/product/_tabs/_linked_product.php:11
|
1236 |
+
msgid "Products can be matched by SKU, ID, or Title, and must be comma separated."
|
1237 |
+
msgstr ""
|
1238 |
+
|
1239 |
+
#: views/admin/import/product/_tabs/_linked_product.php:9
|
1240 |
msgid "Cross-Sells"
|
1241 |
msgstr "Cross-Sells"
|
1242 |
|
1243 |
+
#: views/admin/import/product/_tabs/_linked_product.php:17
|
1244 |
msgid "Choose a grouped product…"
|
1245 |
msgstr "Wähle ein gruppiertes Produkt…"
|
1246 |
|
1247 |
+
#: views/admin/import/product/_tabs/_linked_product.php:47
|
1248 |
msgid "Grouping"
|
1249 |
msgstr "Gruppieren "
|
1250 |
|
1251 |
+
#: views/admin/import/product/_tabs/_linked_product.php:60
|
1252 |
msgid "Set this option to make this product part of a grouped product."
|
1253 |
+
msgstr "Setze diese Option um dieses Produkt Teil eines gruppierten Produktes zu machen."
|
|
|
|
|
1254 |
|
1255 |
+
#: views/admin/import/product/_tabs/_linked_product.php:67
|
1256 |
msgid "Manual Grouped Product Matching"
|
1257 |
msgstr "Manuell gruppierte Produkte zusammenführen"
|
1258 |
|
1259 |
+
#: views/admin/import/product/_tabs/_linked_product.php:68
|
1260 |
+
msgid "Product will be assigned as the child of an already created product matching the specified criteria."
|
1261 |
+
msgstr "Produkt wird als Kind eines bereits erstellten Produktes eingefügt, anhand der eingestellten Kriterien."
|
|
|
|
|
|
|
|
|
1262 |
|
1263 |
+
#: views/admin/import/product/_tabs/_linked_product.php:75
|
1264 |
msgid "Match by Post Title"
|
1265 |
msgstr "Zuordnung durch Post Titel"
|
1266 |
|
1267 |
+
#: views/admin/import/product/_tabs/_linked_product.php:86
|
1268 |
msgid "Match by Custom Field"
|
1269 |
msgstr "Zuordnung durch Individuelles Feld"
|
1270 |
|
1271 |
+
#: views/admin/import/product/_tabs/_options.php:4
|
|
|
|
|
|
|
|
|
1272 |
msgid "Import options"
|
1273 |
msgstr "Import Optionen"
|
1274 |
|
1275 |
+
#: views/admin/import/product/_tabs/_options.php:10
|
1276 |
msgid "Set out of stock status for missing records"
|
1277 |
msgstr "Setze nicht auf Lager Status bei fehlenden Datensätzen"
|
1278 |
|
1279 |
+
#: views/admin/import/product/_tabs/_options.php:11
|
1280 |
+
msgid "Option to set the stock status to out of stock instead of deleting the product entirely. This option doesn't work when 'Delete missing records' option is enabled."
|
1281 |
+
msgstr "Option um den Lagerbestand Status auf nicht auf Lager zu setzen, anstatt das Produkt ganz zu löschen. Diese Option funktioniert nicht, wenn 'Lösche fehlende Datensätze' ausgewählt wurde."
|
|
|
|
|
|
|
|
|
|
|
|
|
1282 |
|
1283 |
+
#: views/admin/import/product/_tabs/_options.php:17
|
1284 |
msgid "Disable auto SKU generation"
|
1285 |
msgstr "Deaktiviere automatische ID Generierung"
|
1286 |
|
1287 |
+
#: views/admin/import/product/_tabs/_options.php:18
|
1288 |
+
msgid "Plugin will NOT automaticaly generate the SKU for each product based on md5 algorithm, if SKU option is empty."
|
1289 |
+
msgstr "Plug-In wird KEINE ID automatisch generieren für jedes Produkt das auf dem md5 Algorithmus basiert, wenn die ID Option leer ist."
|
|
|
|
|
|
|
|
|
1290 |
|
1291 |
+
#: views/admin/import/product/_tabs/_options.php:23
|
1292 |
msgid "Don't check for duplicate SKUs"
|
1293 |
msgstr "Kontrolliere nicht für doppelte IDs"
|
1294 |
|
1295 |
+
#: views/admin/import/product/_tabs/_options.php:24
|
1296 |
+
msgid "Each product should have a unique SKU. If this box is checked, WP All Import won't check for duplicate SKUs, which speeds up the import process. Make sure the SKU for each of your products is unique. If this box is unchecked, WP All Import will import products with duplicate SKUs with a blank SKU."
|
1297 |
+
msgstr "Jedes Produkt sollte eine einzigartige ID haben. Wenn dieses Feld gesetzt ist, wird WP All Import nicht nach doppelten IDs suchen, was den Import Prozess beschleunigt. Stellen Sie sicher dass jede ID Ihrer Produkte einzigartig ist. Wenn dieses Feld nicht gesetzt ist, wird WP All Import die Produkte mit doppelter ID mit einer leeren ID importieren."
|
1298 |
+
|
1299 |
+
#: views/admin/import/product/_tabs/_shipping.php:5
|
1300 |
+
msgid "Weight (%s)"
|
1301 |
+
msgstr ""
|
1302 |
+
|
1303 |
+
#: views/admin/import/product/_tabs/_shipping.php:9
|
1304 |
+
msgid "Dimensions (%s)"
|
1305 |
+
msgstr ""
|
1306 |
+
|
1307 |
+
#: views/admin/import/product/_tabs/_shipping.php:10
|
1308 |
+
msgid "Length"
|
1309 |
+
msgstr ""
|
1310 |
+
|
1311 |
+
#: views/admin/import/product/_tabs/_shipping.php:11
|
1312 |
+
msgid "Width"
|
1313 |
+
msgstr ""
|
1314 |
+
|
1315 |
+
#: views/admin/import/product/_tabs/_shipping.php:12
|
1316 |
+
msgid "Height"
|
1317 |
+
msgstr ""
|
1318 |
+
|
1319 |
+
#: views/admin/import/product/_tabs/_shipping.php:20
|
1320 |
+
#: views/admin/import/product/_tabs/_variations.php:360
|
1321 |
msgid "Shipping Class"
|
1322 |
msgstr "Versand Klasse"
|
1323 |
|
1324 |
+
#: views/admin/import/product/_tabs/_shipping.php:29
|
1325 |
+
#: views/admin/import/product/_tabs/_variations.php:371
|
1326 |
msgid "No shipping class"
|
1327 |
msgstr "Keine Versand Klasse"
|
1328 |
|
1329 |
+
#: views/admin/import/product/_tabs/_shipping.php:44
|
1330 |
+
#: views/admin/import/product/_tabs/_variations.php:386
|
1331 |
msgid "Set product shipping class with XPath"
|
1332 |
msgstr "Set Produktversand Klasse mit XPath"
|
1333 |
|
1334 |
+
#: views/admin/import/product/_tabs/_shipping.php:49
|
1335 |
+
msgid "Value should be the name, ID, or slug for the shipping class. Default slugs are 'taxable', 'shipping' and 'none'."
|
|
|
|
|
1336 |
msgstr ""
|
|
|
|
|
1337 |
|
1338 |
+
#: views/admin/import/product/_tabs/_variations.php:7
|
1339 |
+
msgid "All my variable products have SKUs or some other unique identifier. Each variation is linked to its parent with its parent's SKU or other unique identifier."
|
1340 |
+
msgstr "Alle meine variablen Produkte haben IDs oder eine andere eindeutige Kennung. Jede Variation ist mit seiner übergeordneten Artikelnummer oder mit einer anderen eindeutigen Kennung des übergeordneten verlinkt."
|
|
|
|
|
|
|
|
|
|
|
|
|
1341 |
|
1342 |
+
#: views/admin/import/product/_tabs/_variations.php:11
|
1343 |
msgid "SKU element for parent"
|
1344 |
msgstr "SKU Element für Eltern"
|
1345 |
|
1346 |
+
#: views/admin/import/product/_tabs/_variations.php:13
|
1347 |
msgid "SKU column in the below example."
|
1348 |
msgstr "SKU Spalte in dem folgenden Beispiel."
|
1349 |
|
1350 |
+
#: views/admin/import/product/_tabs/_variations.php:16
|
1351 |
msgid "Parent SKU element for variation"
|
1352 |
msgstr "Eltern ID Element zur Variation"
|
1353 |
|
1354 |
+
#: views/admin/import/product/_tabs/_variations.php:18
|
1355 |
msgid "Parent SKU column in the below example."
|
1356 |
msgstr "Eltern ID Spalte in dem folgenden Beispiel."
|
1357 |
|
1358 |
+
#: views/admin/import/product/_tabs/_variations.php:21
|
1359 |
+
#: views/admin/import/product/_tabs/_variations.php:41
|
1360 |
+
#: views/admin/import/product/_tabs/_variations.php:60
|
1361 |
+
#: views/admin/import/product/_tabs/_variations.php:78
|
1362 |
msgid "Example Data For Use With This Option"
|
1363 |
msgstr "Beispiel Daten für die Verwendung mit dieser Option"
|
1364 |
|
1365 |
+
#: views/admin/import/product/_tabs/_variations.php:21
|
1366 |
+
#: views/admin/import/product/_tabs/_variations.php:41
|
1367 |
+
#: views/admin/import/product/_tabs/_variations.php:60
|
1368 |
+
#: views/admin/import/product/_tabs/_variations.php:78
|
1369 |
msgid "download"
|
1370 |
msgstr "Herunterladen"
|
1371 |
|
1372 |
+
#: views/admin/import/product/_tabs/_variations.php:31
|
1373 |
+
msgid "All products with variations are grouped with a unique identifier that is the same for each variation and unique for each product."
|
1374 |
+
msgstr "Alle Produkte mit Variationen sind anhand von einzigartigen IDs gruppiert, diese ID ist die selbe für jede Variation und einzigartig für jedes Produkt."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1375 |
|
1376 |
+
#: views/admin/import/product/_tabs/_variations.php:38
|
1377 |
msgid "Group ID column in the below example."
|
1378 |
msgstr "Gruppen ID Spalte in dem folgenden Beispiel."
|
1379 |
|
1380 |
+
#: views/admin/import/product/_tabs/_variations.php:51
|
1381 |
+
msgid "All variations for a particular product have the same title as the parent product."
|
1382 |
+
msgstr "Alle Variationen für ein spezielles Produkt haben den selben Titel wie das Eltern Produkt."
|
|
|
|
|
|
|
|
|
1383 |
|
1384 |
+
#: views/admin/import/product/_tabs/_variations.php:56
|
1385 |
+
#: views/admin/import/product/_tabs/_variations.php:74
|
1386 |
msgid "Product Title"
|
1387 |
msgstr "Produkt Titel"
|
1388 |
|
1389 |
+
#: views/admin/import/product/_tabs/_variations.php:70
|
1390 |
+
msgid "All variations for a particular product have the same title. There are no parent products."
|
1391 |
+
msgstr "Alle Variationen für ein spezielles Produkt haben den selben Titel. Es gibt keine Eltern Produkte."
|
|
|
|
|
|
|
|
|
1392 |
|
1393 |
+
#: views/admin/import/product/_tabs/_variations.php:88
|
1394 |
msgid "I'm importing XML and my variations are child XML elements"
|
1395 |
msgstr "Ich importiere XML und meine Variationen sind Kind XML Elemente."
|
1396 |
|
1397 |
+
#: views/admin/import/product/_tabs/_variations.php:95
|
1398 |
msgid "Video Example"
|
1399 |
msgstr "Video Beispiel:"
|
1400 |
|
1401 |
+
#: views/admin/import/product/_tabs/_variations.php:98
|
1402 |
msgid "Variations XPath"
|
1403 |
msgstr "Variationen XPath"
|
1404 |
|
1405 |
+
#: views/admin/import/product/_tabs/_variations.php:99
|
1406 |
msgid "Open XML Tree"
|
1407 |
msgstr "Offener XML Baum"
|
1408 |
|
1409 |
+
#: views/admin/import/product/_tabs/_variations.php:124
|
1410 |
msgid "Add value to the parent SKU"
|
1411 |
msgstr "Wert zu Eltern ID hinzufügen"
|
1412 |
|
1413 |
+
#: views/admin/import/product/_tabs/_variations.php:125
|
1414 |
msgid "Enable this checkbox to combine SKU from parent and variation products."
|
1415 |
+
msgstr "Aktiviere diese Box um IDs von Eltern und Variationen der Produkte zu kombinieren."
|
|
|
|
|
1416 |
|
1417 |
+
#: views/admin/import/product/_tabs/_variations.php:129
|
1418 |
msgid "Image"
|
1419 |
msgstr "Bild"
|
1420 |
|
1421 |
+
#: views/admin/import/product/_tabs/_variations.php:134
|
1422 |
+
#: views/admin/import/product/_tabs/_variations.php:144
|
1423 |
+
#: views/admin/import/product/_tabs/_variations.php:172
|
1424 |
+
#: views/admin/import/product/_tabs/_variations.php:186
|
1425 |
+
#: views/admin/import/product/_tabs/_variations.php:258
|
1426 |
+
#: views/admin/import/product/_tabs/_variations.php:269
|
1427 |
+
#: views/admin/import/product/_tabs/_variations.php:279
|
1428 |
+
#: views/admin/import/product/_tabs/_variations.php:292
|
1429 |
+
#: views/admin/import/product/_tabs/_variations.php:324
|
1430 |
+
#: views/admin/import/product/_tabs/_variations.php:338
|
1431 |
+
#: views/admin/import/product/_tabs/_variations.php:346
|
1432 |
+
#: views/admin/import/product/_tabs/_variations.php:395
|
1433 |
+
#: views/admin/import/product/_tabs/_variations.php:439
|
1434 |
+
#: views/admin/import/product/_tabs/_variations.php:468
|
1435 |
+
#: views/admin/import/product/_tabs/_variations.php:494
|
1436 |
+
#: views/admin/import/product/_tabs/_variations.php:503
|
1437 |
msgid "XPath Is From Parent"
|
1438 |
msgstr "XPath ist von Eltern"
|
1439 |
|
1440 |
+
#: views/admin/import/product/_tabs/_variations.php:135
|
1441 |
+
msgid "Images are imported according to the options set in the Images section below. There you can import images to the parent products, and here you can import images to the product variations."
|
1442 |
+
msgstr ""
|
1443 |
+
|
1444 |
+
#: views/admin/import/product/_tabs/_variations.php:187
|
1445 |
msgid "Enable this checkbox to determine XPath from parent element."
|
1446 |
msgstr "Aktiviere diese Box um den XPath vom Eltern Element zu bestimmen."
|
1447 |
|
1448 |
+
#: views/admin/import/product/_tabs/_variations.php:207
|
1449 |
+
msgid "Set the stock status to In Stock for positive or blank Stock Qty values, and Out Of Stock if Stock Qty is 0."
|
1450 |
+
msgstr "Setze den Lagerbestand Status auf 'Auf Lager' bei positiver Lagerbestand Menge, und 'Nicht auf Lager' wenn Lagerbestand ist 0."
|
|
|
|
|
|
|
|
|
1451 |
|
1452 |
+
#: views/admin/import/product/_tabs/_variations.php:253
|
1453 |
msgid "Regular Price"
|
1454 |
msgstr "Regulärer Preis"
|
1455 |
|
1456 |
+
#: views/admin/import/product/_tabs/_variations.php:262
|
1457 |
msgid "Sale Price"
|
1458 |
msgstr "Angebotspreis"
|
1459 |
|
1460 |
+
#: views/admin/import/product/_tabs/_variations.php:274
|
1461 |
+
msgid "Wholesale Price ("
|
1462 |
+
msgstr ""
|
1463 |
+
|
1464 |
+
#: views/admin/import/product/_tabs/_variations.php:288
|
1465 |
msgid "Variable Sale Price Dates"
|
1466 |
msgstr "Angebotspreis Datum"
|
1467 |
|
1468 |
+
#: views/admin/import/product/_tabs/_variations.php:333
|
1469 |
msgid "Weight"
|
1470 |
msgstr "Gewicht"
|
1471 |
|
1472 |
+
#: views/admin/import/product/_tabs/_variations.php:342
|
1473 |
msgid "Dimensions (L×W×H)"
|
1474 |
msgstr "Maße ( L x B x H)"
|
1475 |
|
1476 |
+
#: views/admin/import/product/_tabs/_variations.php:391
|
1477 |
+
msgid "The value of presented XPath should be one of the following: ('taxable', 'shipping', 'none')."
|
1478 |
+
msgstr "Der Wert des XPath sollte einer der folgenden sein: ('taxable', 'shipping', 'none')."
|
|
|
|
|
|
|
|
|
1479 |
|
1480 |
+
#: views/admin/import/product/_tabs/_variations.php:419
|
1481 |
msgid "Same as parent"
|
1482 |
msgstr "Gleich wie Eltern"
|
1483 |
|
1484 |
+
#: views/admin/import/product/_tabs/_variations.php:430
|
1485 |
msgid "Set product tax class with XPath"
|
1486 |
msgstr "Setzte Produkt Steuer Klasse mit XPath"
|
1487 |
|
1488 |
+
#: views/admin/import/product/_tabs/_variations.php:435
|
1489 |
+
msgid "The value of presented XPath should be one of the following: ('reduced-rate', 'zero-rate')."
|
1490 |
+
msgstr "Der Wert des XPath sollte einer der folgenden sein: ('reduced-rate', 'zero-rate')."
|
|
|
|
|
|
|
|
|
1491 |
|
1492 |
+
#: views/admin/import/product/_tabs/_variations.php:480
|
1493 |
+
msgid "File paths/URLs, comma separated. The delimiter option uses when xml element contains few paths/URLs (http://files.com/1.doc, http://files.com/2.doc)."
|
1494 |
+
msgstr "Datei Pfade/URLs, durch Komma getrennt. Die Trennzeichen Option wird genutzt wenn ein SML Element mehrere Pfade/URLs enthält. (http://files.com/1.doc, http://files.com/2.doc)."
|
|
|
|
|
|
|
|
|
|
|
1495 |
|
1496 |
+
#: views/admin/import/product/_tabs/_variations.php:538
|
1497 |
msgid "Variation Attributes"
|
1498 |
msgstr "Variation Merkmale"
|
1499 |
|
1500 |
+
#: views/admin/import/product/_tabs/_variations.php:575
|
1501 |
+
#: views/admin/import/product/_tabs/_variations.php:607
|
1502 |
+
#: views/admin/import/product/_tabs/_variations.php:637
|
1503 |
msgid "Taxonomy"
|
1504 |
msgstr "Taxonomie"
|
1505 |
|
1506 |
+
#: views/admin/import/product/_tabs/_variations.php:662
|
1507 |
msgid "No matching elements found for XPath expression specified"
|
1508 |
msgstr "Keine passenden Elemente für den XPath Ausdruck gefunden"
|
1509 |
|
1510 |
+
#: views/admin/import/product/_tabs/_variations.php:770
|
1511 |
msgid "Set the default selection in the attributes dropdowns."
|
1512 |
msgstr "Setze die Standard Auswahl in den Merkmal Auswahlfeldern."
|
1513 |
|
1514 |
+
#: views/admin/import/product/_tabs/_variations.php:771
|
1515 |
+
msgid "The attributes for the first variation will be automatically selected on the frontend."
|
1516 |
+
msgstr "Die Merkmale für die erste Variation werden automatisch auf dem Frontend gewählt."
|
|
|
|
|
|
|
|
|
1517 |
|
1518 |
+
#: views/admin/import/product/_tabs/_variations.php:776
|
1519 |
msgid "Set first variation as the default selection."
|
1520 |
msgstr "Setze die erste Variation als die Standardauswahl."
|
1521 |
|
1522 |
+
#: views/admin/import/product/_tabs/_variations.php:780
|
1523 |
msgid "Set first in stock variation as the default selection."
|
1524 |
msgstr "Setze die erste Variation auf Lager als Standardauswahl."
|
1525 |
|
1526 |
+
#: views/admin/import/product/_tabs/_variations.php:785
|
1527 |
msgid "Do not set default selections for the dropdowns."
|
1528 |
msgstr "Setzen Sie keine Standardauswahl für die Auswahlfelder."
|
1529 |
|
1530 |
+
#: views/admin/import/product/_tabs/_variations.php:791
|
1531 |
msgid "Create products with no variations as simple products."
|
1532 |
msgstr "Erstelle Produkte mit keinen Variationen als einfache Produkte."
|
1533 |
|
1534 |
+
#: views/admin/import/product/_tabs/_variations.php:796
|
1535 |
msgid "Save variation image to the gallery."
|
1536 |
msgstr "Speichere die Bilder der Variationen in der Galerie. "
|
1537 |
|
1538 |
+
#: views/admin/import/product/_tabs/_variations.php:801
|
1539 |
+
msgid "Set _stock value for parent product to the _stock value for the first variation."
|
1540 |
+
msgstr "Set _stock Wert für das Eltern Produkt auf the_stock Wert für die erste Variation."
|
1541 |
+
|
1542 |
+
#: views/admin/import/product/_tabs/_variations.php:802
|
1543 |
+
msgid "This option works when there are no parent products in your feed ( cases 2 and 4 on Variations tab)."
|
1544 |
+
msgstr "Diese Option funktioniert wenn keine Eltern Produkte in Ihrem feed sind (Fall 2 und 4 in Variationen tab)."
|
1545 |
+
|
1546 |
+
#: views/admin/import/product/index.php:4
|
1547 |
+
msgid "WooCommerce Add-On"
|
1548 |
+
msgstr "WooCommerce Add-On"
|
1549 |
+
|
1550 |
+
#: views/admin/import/product/index.php:22
|
1551 |
+
msgid "Simple product"
|
1552 |
+
msgstr "Einfaches Produkt"
|
1553 |
+
|
1554 |
+
#: views/admin/import/product/index.php:23
|
1555 |
+
msgid "Grouped product"
|
1556 |
+
msgstr "Gruppiertes Produkt"
|
1557 |
+
|
1558 |
+
#: views/admin/import/product/index.php:24
|
1559 |
+
msgid "External/Affiliate product"
|
1560 |
+
msgstr "Externes/Affiliate Produkt"
|
1561 |
+
|
1562 |
+
#: views/admin/import/product/index.php:25
|
1563 |
+
msgid "Variable product"
|
1564 |
+
msgstr "Variables Produkt"
|
1565 |
+
|
1566 |
+
#: views/admin/import/product/index.php:39
|
1567 |
+
msgid "Set Product Type With XPath"
|
1568 |
+
msgstr "Setze Produkt Typ mit XPath"
|
1569 |
+
|
1570 |
+
#: views/admin/import/product/index.php:44
|
1571 |
+
msgid "The value of presented XPath should be one of the following: ('simple', 'grouped', 'external', 'variable')."
|
1572 |
+
msgstr "Der Wert des gegenwärtigen XPath sollte einer der folgenden sein:('simple', 'grouped', 'external', 'variable')."
|
1573 |
+
|
1574 |
+
#: views/admin/import/product/index.php:55
|
1575 |
+
msgid "General"
|
1576 |
+
msgstr "Allgemein"
|
1577 |
+
|
1578 |
+
#: views/admin/import/product/index.php:57
|
1579 |
+
msgid "Inventory"
|
1580 |
+
msgstr "Inventar"
|
1581 |
+
|
1582 |
+
#: views/admin/import/product/index.php:59
|
1583 |
+
#: views/admin/import/shop_order/order_bs_section.php:23
|
1584 |
+
#: views/admin/import/shop_order/order_items_section.php:31
|
1585 |
+
msgid "Shipping"
|
1586 |
+
msgstr "Versand"
|
1587 |
+
|
1588 |
+
#: views/admin/import/product/index.php:61
|
1589 |
+
msgid "Linked Products"
|
1590 |
+
msgstr "Verlinkte Produkte"
|
1591 |
+
|
1592 |
+
#: views/admin/import/product/index.php:67
|
1593 |
+
msgid "Variations"
|
1594 |
+
msgstr "Variationen"
|
1595 |
+
|
1596 |
+
#: views/admin/import/product/index.php:69
|
1597 |
+
msgid "Add-On Options"
|
1598 |
+
msgstr "Add-On Optionen"
|
1599 |
+
|
1600 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:6
|
1601 |
+
msgid "Try to load data from existing customer"
|
1602 |
msgstr ""
|
|
|
|
|
1603 |
|
1604 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:7
|
1605 |
+
msgid "If no customer is found the order will be skipped."
|
1606 |
+
msgstr ""
|
1607 |
+
|
1608 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:14
|
1609 |
+
msgid "Match by:"
|
1610 |
+
msgstr ""
|
1611 |
+
|
1612 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:16
|
1613 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:28
|
1614 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:40
|
1615 |
+
#: views/admin/import/shop_order/order_notes_section.php:71
|
1616 |
+
#: views/admin/import/shop_order/order_notes_section.php:137
|
1617 |
+
msgid "Username"
|
1618 |
+
msgstr ""
|
1619 |
+
|
1620 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:17
|
1621 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:140
|
1622 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:237
|
1623 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:52
|
1624 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:90
|
1625 |
+
#: views/admin/import/shop_order/order_notes_section.php:77
|
1626 |
+
#: views/admin/import/shop_order/order_notes_section.php:143
|
1627 |
+
msgid "Email"
|
1628 |
+
msgstr ""
|
1629 |
+
|
1630 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:18
|
1631 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:64
|
1632 |
+
msgid "Custom Field"
|
1633 |
+
msgstr ""
|
1634 |
+
|
1635 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:19
|
1636 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:63
|
1637 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:83
|
1638 |
+
msgid "User ID"
|
1639 |
+
msgstr ""
|
1640 |
+
|
1641 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:38
|
1642 |
+
msgid "Email Address"
|
1643 |
+
msgstr ""
|
1644 |
+
|
1645 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:49
|
1646 |
+
msgid "Field Name"
|
1647 |
+
msgstr ""
|
1648 |
+
|
1649 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:52
|
1650 |
+
msgid "Field Value"
|
1651 |
+
msgstr ""
|
1652 |
+
|
1653 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:70
|
1654 |
+
msgid "If no match found, import as guest customer"
|
1655 |
+
msgstr ""
|
1656 |
+
|
1657 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:76
|
1658 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:173
|
1659 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:26
|
1660 |
+
msgid "First Name"
|
1661 |
+
msgstr ""
|
1662 |
+
|
1663 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:82
|
1664 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:179
|
1665 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:32
|
1666 |
+
msgid "Last Name"
|
1667 |
+
msgstr ""
|
1668 |
+
|
1669 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:90
|
1670 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:187
|
1671 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:40
|
1672 |
+
msgid "Company"
|
1673 |
+
msgstr ""
|
1674 |
+
|
1675 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:98
|
1676 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:195
|
1677 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:48
|
1678 |
+
msgid "Address 1"
|
1679 |
+
msgstr ""
|
1680 |
+
|
1681 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:104
|
1682 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:201
|
1683 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:54
|
1684 |
+
msgid "Address 2"
|
1685 |
+
msgstr ""
|
1686 |
+
|
1687 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:112
|
1688 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:209
|
1689 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:62
|
1690 |
+
msgid "City"
|
1691 |
+
msgstr ""
|
1692 |
+
|
1693 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:118
|
1694 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:215
|
1695 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:68
|
1696 |
+
msgid "Postcode"
|
1697 |
+
msgstr ""
|
1698 |
+
|
1699 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:126
|
1700 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:223
|
1701 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:76
|
1702 |
+
msgid "Country"
|
1703 |
+
msgstr ""
|
1704 |
+
|
1705 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:132
|
1706 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:229
|
1707 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:82
|
1708 |
+
msgid "State/Country"
|
1709 |
+
msgstr ""
|
1710 |
+
|
1711 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:146
|
1712 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:243
|
1713 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:96
|
1714 |
+
msgid "Phone"
|
1715 |
+
msgstr ""
|
1716 |
+
|
1717 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:155
|
1718 |
+
msgid "Orders without a match will be skipped"
|
1719 |
+
msgstr ""
|
1720 |
+
|
1721 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:165
|
1722 |
+
msgid "Import as guest customer"
|
1723 |
+
msgstr ""
|
1724 |
+
|
1725 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:6
|
1726 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:95
|
1727 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:6
|
1728 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:68
|
1729 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:6
|
1730 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:559
|
1731 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:6
|
1732 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:125
|
1733 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:6
|
1734 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:141
|
1735 |
+
#: views/admin/import/shop_order/order_notes_section.php:14
|
1736 |
+
#: views/admin/import/shop_order/order_notes_section.php:176
|
1737 |
+
msgid "Fixed Repeater Mode"
|
1738 |
+
msgstr ""
|
1739 |
+
|
1740 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:23
|
1741 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:54
|
1742 |
+
msgid "Coupon Code"
|
1743 |
+
msgstr ""
|
1744 |
+
|
1745 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:31
|
1746 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:62
|
1747 |
+
msgid "Discount Amount"
|
1748 |
+
msgstr ""
|
1749 |
+
|
1750 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:37
|
1751 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:68
|
1752 |
+
msgid "Discount Amount Tax"
|
1753 |
+
msgstr ""
|
1754 |
+
|
1755 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:80
|
1756 |
+
msgid "Add Another Coupon"
|
1757 |
+
msgstr ""
|
1758 |
+
|
1759 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:88
|
1760 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:61
|
1761 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:552
|
1762 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:118
|
1763 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:134
|
1764 |
+
#: views/admin/import/shop_order/order_notes_section.php:169
|
1765 |
+
msgid "Advanced Options"
|
1766 |
+
msgstr ""
|
1767 |
+
|
1768 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:98
|
1769 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:118
|
1770 |
+
msgid "Multiple coupons separated by"
|
1771 |
+
msgstr ""
|
1772 |
+
|
1773 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:106
|
1774 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:79
|
1775 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:569
|
1776 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:136
|
1777 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:152
|
1778 |
+
#: views/admin/import/shop_order/order_notes_section.php:187
|
1779 |
+
msgid "Variable Repeater Mode"
|
1780 |
+
msgstr ""
|
1781 |
+
|
1782 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:109
|
1783 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:82
|
1784 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:572
|
1785 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:139
|
1786 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:155
|
1787 |
+
#: views/admin/import/shop_order/order_notes_section.php:190
|
1788 |
+
msgid "For each"
|
1789 |
+
msgstr ""
|
1790 |
+
|
1791 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:111
|
1792 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:84
|
1793 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:574
|
1794 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:141
|
1795 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:157
|
1796 |
+
#: views/admin/import/shop_order/order_notes_section.php:192
|
1797 |
+
msgid "do..."
|
1798 |
+
msgstr ""
|
1799 |
+
|
1800 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:20
|
1801 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:37
|
1802 |
+
msgid "Fee Name"
|
1803 |
+
msgstr ""
|
1804 |
+
|
1805 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:26
|
1806 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:43
|
1807 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:29
|
1808 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:76
|
1809 |
+
msgid "Amount"
|
1810 |
+
msgstr ""
|
1811 |
+
|
1812 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:53
|
1813 |
+
msgid "Add Another Fee"
|
1814 |
+
msgstr ""
|
1815 |
+
|
1816 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:71
|
1817 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:91
|
1818 |
+
msgid "Multiple fees separated by"
|
1819 |
+
msgstr ""
|
1820 |
+
|
1821 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:11
|
1822 |
+
msgid "Get data from existing products"
|
1823 |
+
msgstr ""
|
1824 |
+
|
1825 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:12
|
1826 |
+
msgid "If no product is found the order will be skipped."
|
1827 |
+
msgstr ""
|
1828 |
+
|
1829 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:29
|
1830 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:157
|
1831 |
+
msgid "Product SKU"
|
1832 |
+
msgstr ""
|
1833 |
+
|
1834 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:33
|
1835 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:161
|
1836 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:312
|
1837 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:471
|
1838 |
+
msgid "Quantity"
|
1839 |
+
msgstr ""
|
1840 |
+
|
1841 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:39
|
1842 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:167
|
1843 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:318
|
1844 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:477
|
1845 |
+
#: views/admin/import/shop_order/order_items_section.php:35
|
1846 |
+
msgid "Taxes"
|
1847 |
msgstr ""
|
1848 |
+
|
1849 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:55
|
1850 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:99
|
1851 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:175
|
1852 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:335
|
1853 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:380
|
1854 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:485
|
1855 |
+
msgid "Tax Rate Code"
|
1856 |
+
msgstr ""
|
1857 |
+
|
1858 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:62
|
1859 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:106
|
1860 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:182
|
1861 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:342
|
1862 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:387
|
1863 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:492
|
1864 |
+
msgid "Calculate Tax Amount By:"
|
1865 |
+
msgstr ""
|
1866 |
+
|
1867 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:66
|
1868 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:110
|
1869 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:186
|
1870 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:346
|
1871 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:391
|
1872 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:496
|
1873 |
+
msgid "Percentage"
|
1874 |
+
msgstr ""
|
1875 |
+
|
1876 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:77
|
1877 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:121
|
1878 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:197
|
1879 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:357
|
1880 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:402
|
1881 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:507
|
1882 |
+
msgid "Tax amount per unit"
|
1883 |
+
msgstr ""
|
1884 |
+
|
1885 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:88
|
1886 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:132
|
1887 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:208
|
1888 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:368
|
1889 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:413
|
1890 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:518
|
1891 |
+
msgid "Look up tax rate code"
|
1892 |
+
msgstr ""
|
1893 |
+
|
1894 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:89
|
1895 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:133
|
1896 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:209
|
1897 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:369
|
1898 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:414
|
1899 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:519
|
1900 |
+
msgid "If rate code is not found, this tax amount will not be imported."
|
1901 |
+
msgstr ""
|
1902 |
+
|
1903 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:231
|
1904 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:541
|
1905 |
+
msgid "Add Product"
|
1906 |
+
msgstr ""
|
1907 |
+
|
1908 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:242
|
1909 |
+
msgid "Manually import product order data and do not try to match to existing products"
|
1910 |
+
msgstr ""
|
1911 |
+
|
1912 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:243
|
1913 |
+
msgid "The product in this order will not be linked to any existing products."
|
1914 |
+
msgstr ""
|
1915 |
+
|
1916 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:267
|
1917 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:439
|
1918 |
+
msgid "Product Name"
|
1919 |
+
msgstr ""
|
1920 |
+
|
1921 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:300
|
1922 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:459
|
1923 |
+
msgid "Add Product Meta"
|
1924 |
+
msgstr ""
|
1925 |
+
|
1926 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:300
|
1927 |
+
msgid "Add More Product Meta"
|
1928 |
+
msgstr ""
|
1929 |
+
|
1930 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:308
|
1931 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:467
|
1932 |
+
msgid "Price per Unit"
|
1933 |
+
msgstr ""
|
1934 |
+
|
1935 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:562
|
1936 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:581
|
1937 |
+
msgid "Multiple products separated by"
|
1938 |
+
msgstr ""
|
1939 |
+
|
1940 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:6
|
1941 |
+
msgid "Refund Amount"
|
1942 |
+
msgstr ""
|
1943 |
+
|
1944 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:12
|
1945 |
+
msgid "Reason"
|
1946 |
+
msgstr ""
|
1947 |
+
|
1948 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:20
|
1949 |
+
#: views/admin/import/shop_order/order_details_section.php:39
|
1950 |
+
#: views/admin/import/shop_order/order_notes_section.php:39
|
1951 |
+
#: views/admin/import/shop_order/order_notes_section.php:103
|
1952 |
+
msgid "Date"
|
1953 |
+
msgstr ""
|
1954 |
+
|
1955 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:26
|
1956 |
+
msgid "Refund Issued By"
|
1957 |
+
msgstr ""
|
1958 |
+
|
1959 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:30
|
1960 |
+
msgid "Load details from existing user"
|
1961 |
+
msgstr ""
|
1962 |
+
|
1963 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:31
|
1964 |
+
msgid "If no user is matched, refund issuer will be left blank."
|
1965 |
+
msgstr ""
|
1966 |
+
|
1967 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:36
|
1968 |
+
msgid "Match user by:"
|
1969 |
+
msgstr ""
|
1970 |
+
|
1971 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:98
|
1972 |
+
msgid "Leave refund issuer blank"
|
1973 |
+
msgstr ""
|
1974 |
+
|
1975 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:23
|
1976 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:70
|
1977 |
+
msgid "Shipping Name"
|
1978 |
+
msgstr ""
|
1979 |
+
|
1980 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:37
|
1981 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:84
|
1982 |
+
msgid "Shipping Method"
|
1983 |
+
msgstr ""
|
1984 |
+
|
1985 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:53
|
1986 |
+
msgid "Shipping method can be matched by Name or ID: %s. If shipping method is not found then no shipping information will be imported."
|
1987 |
+
msgstr ""
|
1988 |
+
|
1989 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:98
|
1990 |
+
msgid "Shipping method can be matched by Nmae or ID. If shipping method is not found then no shipping information will be imported."
|
1991 |
+
msgstr ""
|
1992 |
+
|
1993 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:110
|
1994 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:126
|
1995 |
+
msgid "Add More"
|
1996 |
+
msgstr ""
|
1997 |
+
|
1998 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:128
|
1999 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:148
|
2000 |
+
msgid "Multiple shipping costs separated by"
|
2001 |
+
msgstr ""
|
2002 |
+
|
2003 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:34
|
2004 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:83
|
2005 |
+
msgid "Tax Rate Amount"
|
2006 |
+
msgstr ""
|
2007 |
+
|
2008 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:40
|
2009 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:89
|
2010 |
+
msgid "Shipping Tax Amount"
|
2011 |
+
msgstr ""
|
2012 |
+
|
2013 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:48
|
2014 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:97
|
2015 |
+
msgid "Tax Rate"
|
2016 |
+
msgstr ""
|
2017 |
+
|
2018 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:66
|
2019 |
+
msgid "Tax rate method can be matched by ID: %s. If tax method is not found then no tax information will be imported."
|
2020 |
+
msgstr ""
|
2021 |
+
|
2022 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:100
|
2023 |
+
msgid "Select"
|
2024 |
+
msgstr ""
|
2025 |
+
|
2026 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:114
|
2027 |
+
msgid "Tax rate method can be matched by ID. If tax method is not found then no tax information will be imported."
|
2028 |
+
msgstr ""
|
2029 |
+
|
2030 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:144
|
2031 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:164
|
2032 |
+
msgid "Multiple taxes separated by"
|
2033 |
+
msgstr ""
|
2034 |
+
|
2035 |
+
#: views/admin/import/shop_order/_tabs/_order_payment.php:8
|
2036 |
+
msgid "Payment Method"
|
2037 |
+
msgstr ""
|
2038 |
+
|
2039 |
+
#: views/admin/import/shop_order/_tabs/_order_payment.php:25
|
2040 |
+
msgid "Payment method can be matched by title or slug: %s. If payment method is not found 'N/A' will be applied to order."
|
2041 |
+
msgstr ""
|
2042 |
+
|
2043 |
+
#: views/admin/import/shop_order/_tabs/_order_payment.php:36
|
2044 |
+
msgid "Transaction ID"
|
2045 |
+
msgstr ""
|
2046 |
+
|
2047 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:6
|
2048 |
+
msgid "Copy from billing"
|
2049 |
+
msgstr ""
|
2050 |
+
|
2051 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:13
|
2052 |
+
msgid "Import shipping address"
|
2053 |
+
msgstr ""
|
2054 |
+
|
2055 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:21
|
2056 |
+
msgid "If order has no shipping info, copy from billing"
|
2057 |
+
msgstr ""
|
2058 |
+
|
2059 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:109
|
2060 |
+
msgid "Customer Provided Note"
|
2061 |
+
msgstr ""
|
2062 |
+
|
2063 |
+
#: views/admin/import/shop_order/_tabs/_order_total.php:5
|
2064 |
+
msgid "Calculate order total automatically"
|
2065 |
+
msgstr ""
|
2066 |
+
|
2067 |
+
#: views/admin/import/shop_order/_tabs/_order_total.php:10
|
2068 |
+
msgid "Set order total manually"
|
2069 |
+
msgstr ""
|
2070 |
+
|
2071 |
+
#: views/admin/import/shop_order/order_bs_section.php:4
|
2072 |
+
msgid "Billing & Shipping Details"
|
2073 |
+
msgstr ""
|
2074 |
+
|
2075 |
+
#: views/admin/import/shop_order/order_bs_section.php:19
|
2076 |
+
msgid "Billing"
|
2077 |
+
msgstr ""
|
2078 |
+
|
2079 |
+
#: views/admin/import/shop_order/order_bs_section.php:27
|
2080 |
+
msgid "Payment"
|
2081 |
+
msgstr ""
|
2082 |
+
|
2083 |
+
#: views/admin/import/shop_order/order_details_section.php:4
|
2084 |
+
msgid "Order Details"
|
2085 |
+
msgstr ""
|
2086 |
+
|
2087 |
+
#: views/admin/import/shop_order/order_details_section.php:13
|
2088 |
+
msgid "Order Status"
|
2089 |
+
msgstr ""
|
2090 |
+
|
2091 |
+
#: views/admin/import/shop_order/order_details_section.php:29
|
2092 |
+
msgid "Order status can be matched by title or slug: %s. If order status is not found 'Pending Payment' will be applied to order."
|
2093 |
+
msgstr ""
|
2094 |
+
|
2095 |
+
#: views/admin/import/shop_order/order_details_section.php:39
|
2096 |
+
#: views/admin/import/shop_order/order_notes_section.php:39
|
2097 |
+
#: views/admin/import/shop_order/order_notes_section.php:103
|
2098 |
+
msgid "Use any format supported by the PHP <b>strtotime</b> function. That means pretty much any human-readable date will work."
|
2099 |
+
msgstr ""
|
2100 |
+
|
2101 |
+
#: views/admin/import/shop_order/order_items_section.php:4
|
2102 |
+
msgid "Order Items"
|
2103 |
+
msgstr ""
|
2104 |
+
|
2105 |
+
#: views/admin/import/shop_order/order_items_section.php:19
|
2106 |
+
msgid "Products"
|
2107 |
+
msgstr ""
|
2108 |
+
|
2109 |
+
#: views/admin/import/shop_order/order_items_section.php:23
|
2110 |
+
msgid "Fees"
|
2111 |
+
msgstr ""
|
2112 |
+
|
2113 |
+
#: views/admin/import/shop_order/order_items_section.php:27
|
2114 |
+
msgid "Coupons"
|
2115 |
+
msgstr ""
|
2116 |
+
|
2117 |
+
#: views/admin/import/shop_order/order_items_section.php:43
|
2118 |
+
msgid "Total"
|
2119 |
+
msgstr ""
|
2120 |
+
|
2121 |
+
#: views/admin/import/shop_order/order_notes_section.php:4
|
2122 |
+
msgid "Notes"
|
2123 |
+
msgstr ""
|
2124 |
+
|
2125 |
+
#: views/admin/import/shop_order/order_notes_section.php:47
|
2126 |
+
#: views/admin/import/shop_order/order_notes_section.php:111
|
2127 |
+
msgid "Visibility"
|
2128 |
+
msgstr ""
|
2129 |
+
|
2130 |
+
#: views/admin/import/shop_order/order_notes_section.php:50
|
2131 |
+
#: views/admin/import/shop_order/order_notes_section.php:115
|
2132 |
+
msgid "Private note"
|
2133 |
+
msgstr ""
|
2134 |
+
|
2135 |
+
#: views/admin/import/shop_order/order_notes_section.php:54
|
2136 |
+
#: views/admin/import/shop_order/order_notes_section.php:119
|
2137 |
+
msgid "Note to customer"
|
2138 |
+
msgstr ""
|
2139 |
+
|
2140 |
+
#: views/admin/import/shop_order/order_notes_section.php:64
|
2141 |
+
#: views/admin/import/shop_order/order_notes_section.php:129
|
2142 |
+
msgid "Use 'private' or 'customer'."
|
2143 |
+
msgstr ""
|
2144 |
+
|
2145 |
+
#: views/admin/import/shop_order/order_notes_section.php:156
|
2146 |
+
msgid "Add Another Note"
|
2147 |
+
msgstr ""
|
2148 |
+
|
2149 |
+
#: views/admin/import/shop_order/order_notes_section.php:179
|
2150 |
+
#: views/admin/import/shop_order/order_notes_section.php:199
|
2151 |
+
msgid "Multiple notes separated by"
|
2152 |
+
msgstr ""
|
2153 |
+
|
2154 |
+
#: wpai-woocommerce-add-on.php:35
|
2155 |
+
msgid "Please de-activate and remove the free version of the WooCommere add-on before activating the paid version."
|
2156 |
+
msgstr "Bitte deaktivieren und entfernen Sie die freie Version von WP All Import bevor Sie die bezahlte Version aktivieren."
|
2157 |
+
|
2158 |
+
#. Plugin Name of the plugin/theme
|
2159 |
+
#:
|
2160 |
+
msgid "WP All Import - WooCommerce Add-On Pro"
|
2161 |
+
msgstr "WP All Import - WooCommerce Add-On Pro"
|
2162 |
+
|
2163 |
+
#. Plugin URI of the plugin/theme
|
2164 |
+
#:
|
2165 |
+
msgid "http://www.wpallimport.com/"
|
2166 |
+
msgstr ""
|
2167 |
+
|
2168 |
+
#. Description of the plugin/theme
|
2169 |
+
#:
|
2170 |
+
msgid "Import to WooCommerce. Adds a section to WP All Import that looks just like WooCommerce. Requires WP All Import."
|
2171 |
+
msgstr "Importiere zu WooCommerce. Fügt einen Abschnitt zu WP All Import hinzu der genau wie WooCommerce aussieht. Benötigt WP All Import"
|
2172 |
+
|
2173 |
+
#. Author of the plugin/theme
|
2174 |
+
#:
|
2175 |
+
msgid "Soflyy"
|
2176 |
+
msgstr "Soflyy"
|
2177 |
+
|
i18n/languages/wpai_woocommerce_addon_plugin-es_ES.mo
CHANGED
Binary file
|
i18n/languages/wpai_woocommerce_addon_plugin-es_ES.po
CHANGED
@@ -1,1414 +1,2177 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: WP All Import - WooCommerce Add-On Pro\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: Sun Nov 08 2015 17:17:28 GMT+0200 (EET)\n"
|
6 |
-
"PO-Revision-Date: Mon Dec 21 2015 19:49:04 GMT+0200 (EET)\n"
|
7 |
-
"Last-Translator: admin <makstsiplyskov@gmail.loc>\n"
|
8 |
-
"Language-Team: \n"
|
9 |
-
"Language: Spanish (Spain)\n"
|
10 |
-
"Plural-Forms: nplurals=2; plural=n != 1\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
-
"X-
|
15 |
-
"
|
16 |
-
"
|
17 |
-
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
18 |
-
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
19 |
-
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
20 |
-
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
21 |
-
"X-Loco-Target-Locale: es_ES\n"
|
22 |
-
"X-Generator: Loco - https://localise.biz/\n"
|
23 |
-
"X-Poedit-SearchPath-0: ."
|
24 |
-
|
25 |
-
#: ../../views/admin/import/_tabs/_general.php:25 ../..
|
26 |
-
#: /views/admin/import/_tabs/_general.php:49
|
27 |
-
#, php-format
|
28 |
-
msgid "Regular Price (%s)"
|
29 |
-
msgstr ""
|
30 |
-
|
31 |
-
#: ../../views/admin/import/_tabs/_general.php:29 ../..
|
32 |
-
#: /views/admin/import/_tabs/_general.php:61
|
33 |
-
#, php-format
|
34 |
-
msgid "Sale Price (%s)"
|
35 |
-
msgstr ""
|
36 |
-
|
37 |
-
#: ../../views/admin/import/_tabs/_linked_product.php:5 ../..
|
38 |
-
#: /views/admin/import/_tabs/_linked_product.php:9
|
39 |
-
msgid "Product SKUs, comma separated"
|
40 |
-
msgstr ""
|
41 |
-
|
42 |
-
#: ../../views/admin/import/_tabs/_shipping.php:5
|
43 |
-
#, php-format
|
44 |
-
msgid "Weight (%s)"
|
45 |
-
msgstr ""
|
46 |
-
|
47 |
-
#: ../../views/admin/import/_tabs/_shipping.php:9
|
48 |
-
#, php-format
|
49 |
-
msgid "Dimensions (%s)"
|
50 |
-
msgstr ""
|
51 |
-
|
52 |
-
#: ../../views/admin/import/_tabs/_shipping.php:10
|
53 |
-
msgid "Length"
|
54 |
-
msgstr ""
|
55 |
-
|
56 |
-
#: ../../views/admin/import/_tabs/_shipping.php:11
|
57 |
-
msgid "Width"
|
58 |
-
msgstr ""
|
59 |
-
|
60 |
-
#: ../../views/admin/import/_tabs/_shipping.php:12
|
61 |
-
msgid "Height"
|
62 |
-
msgstr ""
|
63 |
-
|
64 |
-
msgid "WP All Import - WooCommerce Add-On Pro"
|
65 |
-
msgstr "Todo WP Import - WooCommerce complemento Pro"
|
66 |
-
|
67 |
-
msgid "http://www.wpallimport.com"
|
68 |
-
msgstr "http://www.wpallimport.com"
|
69 |
-
|
70 |
-
msgid ""
|
71 |
-
"Import to WooCommerce. Adds a section to WP All Import that looks just like "
|
72 |
-
"WooCommerce. Requires WP All Import."
|
73 |
-
msgstr ""
|
74 |
-
"Importación a WooCommerce. Agrega una sección al WP toda la importación que "
|
75 |
-
"se parece a WooCommerce. Requiere importar todo de PM."
|
76 |
-
|
77 |
-
msgid "Soflyy"
|
78 |
-
msgstr "Soflyy"
|
79 |
|
80 |
-
#:
|
81 |
-
msgid ""
|
82 |
-
"Please de-activate and remove the free version of the WooCommere add-on "
|
83 |
-
"before activating the paid version."
|
84 |
-
msgstr ""
|
85 |
-
"Por favor, desactivar y quitar la versión libre del complemento de POS-"
|
86 |
-
"Solution® antes de activar la versión de pago."
|
87 |
-
|
88 |
-
#: ../../actions/admin_notices.php:10
|
89 |
-
#, php-format
|
90 |
msgid "<b>%s Plugin</b>: WooCommerce must be installed."
|
91 |
msgstr "<b>%s Plugin</b>: WooCommerce debe instalarse."
|
92 |
|
93 |
-
#:
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
"target=\"_blank\">http://wordpress.org/plugins/wp-all-import/</a> and the paid "
|
99 |
-
"edition at <a href=\"http://www.wpallimport.com/\">http://www.wpallimport."
|
100 |
-
"com/</a>"
|
101 |
-
msgstr ""
|
102 |
-
"<b>%s Plugin</b>: Importación POS-Solution® debe ser instalada. Edición "
|
103 |
-
"gratuita de importación POS-Solution® en <a href=\"http://wordpress."
|
104 |
-
"org/plugins/wp-all-import/\" target=\"_blank\">http://wordpress.org/plugins/wp-"
|
105 |
-
"all-import/</a> y la edición de pagada en <a href=\"http://www.wpallimport."
|
106 |
-
"com/\">http://www.wpallimport.com/</a>"
|
107 |
-
|
108 |
-
#: ../../actions/admin_notices.php:38
|
109 |
-
#, php-format
|
110 |
msgid "<b>%s Plugin</b>: Please update your WP All Import to the latest version"
|
111 |
-
msgstr ""
|
112 |
-
"<b>%s Plugin</b>: actualice su importación POS-Solution® a la versión "
|
113 |
-
"más reciente."
|
114 |
|
115 |
-
#:
|
116 |
-
#, php-format
|
117 |
msgid "<b>%s Plugin</b>: Please update your WooCommerce to the latest version"
|
118 |
msgstr "<b>%s Plugin</b>: actualice su POS-Solution a la última versión"
|
119 |
|
120 |
-
#:
|
121 |
msgid "Product Type"
|
122 |
msgstr "Tipo De Producto"
|
123 |
|
124 |
-
#:
|
125 |
msgid "Attributes"
|
126 |
msgstr "Atributos"
|
127 |
|
128 |
-
#:
|
129 |
-
msgid ""
|
130 |
-
"If Keep Custom Fields box is checked, it will keep all Custom Fields, and "
|
131 |
-
"add any new Custom Fields specified in Custom Fields section, as long as "
|
132 |
-
"they do not overwrite existing fields. If 'Only keep this Custom Fields' is "
|
133 |
-
"specified, it will only keep the specified fields."
|
134 |
-
msgstr ""
|
135 |
-
"Si está marcada la casilla de mantener los campos personalizados, mantendrá "
|
136 |
-
"todos los campos personalizados y añadir cualquier nuevo campos "
|
137 |
-
"personalizados especificados en la sección de campos personalizados, siempre "
|
138 |
-
"y cuando no sobrescriben los campos existentes. Si se especifica 'Sólo "
|
139 |
-
"mantener este campos personalizados', mantendrá sólo los campos "
|
140 |
-
"especificados."
|
141 |
-
|
142 |
-
#: ../../actions/pmxi_reimport.php:35
|
143 |
msgid "Update all Attributes"
|
144 |
msgstr "Actualizar todos los atributos"
|
145 |
|
146 |
-
#:
|
147 |
msgid "Update only these Attributes, leave the rest alone"
|
148 |
msgstr "Actualizar sólo los atributos de estos, deje el resto"
|
149 |
|
150 |
-
#:
|
151 |
msgid "Leave these attributes alone, update all other Attributes"
|
152 |
msgstr "Dejar estos atributos, actualizar todos los otros atributos"
|
153 |
|
154 |
-
#:
|
155 |
-
|
156 |
-
msgid ""
|
157 |
-
"There is a new version of %1$s available. <a target=\"_blank\" "
|
158 |
-
"class=\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
|
159 |
msgstr ""
|
160 |
-
"Hay una nueva versión de %1$s disponible. <a target=“_blank” "
|
161 |
-
"class=“thickbox” href=“%2$s”> Ver detalle de la versión %3$s </a>"
|
162 |
|
163 |
-
#:
|
164 |
-
|
165 |
-
msgid ""
|
166 |
-
"There is a new version of %1$s available. <a target=\"_blank\" "
|
167 |
-
"class=\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a "
|
168 |
-
"href=\"%4$s\">update now</a>."
|
169 |
msgstr ""
|
170 |
-
"Hay una nueva versión disponible %1$s <a target=“_blank” class=“thickbox” "
|
171 |
-
"href=“%2$s”>Detalle de esta versión %3$s </a> or <a href=“%4$s”>actualizar "
|
172 |
-
"ahora</a>."
|
173 |
|
174 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
175 |
msgid "You do not have permission to install plugin updates"
|
176 |
msgstr "Cotizaok.com"
|
177 |
|
178 |
-
#:
|
179 |
msgid "Error"
|
180 |
msgstr "Error"
|
181 |
|
182 |
-
#:
|
183 |
-
msgid ""
|
184 |
-
"
|
185 |
-
"order was submitted by a customer, will need to manually restore the item's "
|
186 |
-
"stock."
|
187 |
-
msgstr ""
|
188 |
-
"¿Quitar este elemento? Si previamente han reducido stock de este artículo, o "
|
189 |
-
"este pedido fue presentado por un cliente, tendrá que restaurar manualmente "
|
190 |
-
"los valores del elemento."
|
191 |
|
192 |
-
#:
|
193 |
msgid "Remove this attribute?"
|
194 |
msgstr "¿Eliminar este atributo?"
|
195 |
|
196 |
-
#:
|
197 |
-
#:
|
198 |
-
#:
|
199 |
-
#:
|
|
|
|
|
|
|
200 |
msgid "Name"
|
201 |
msgstr "nombre"
|
202 |
|
203 |
-
#:
|
204 |
msgid "Remove"
|
205 |
msgstr "Eliminar"
|
206 |
|
207 |
-
#:
|
208 |
msgid "Click to toggle"
|
209 |
msgstr "Pulsa para cambiar"
|
210 |
|
211 |
-
#:
|
212 |
msgid "Value(s)"
|
213 |
msgstr "Valor(es)"
|
214 |
|
215 |
-
#:
|
216 |
msgid "Enter some text, or some attributes by pipe (|) separating values."
|
217 |
-
msgstr ""
|
218 |
-
"Introduce algún texto o algún atributo separando los valores con el símbolo "
|
219 |
-
"(|)"
|
220 |
|
221 |
-
#:
|
222 |
msgid "Visible on the product page"
|
223 |
msgstr "Visible en la página de productos"
|
224 |
|
225 |
-
#:
|
226 |
msgid "Used for variations"
|
227 |
msgstr "Usado para variaciones"
|
228 |
|
229 |
-
#:
|
230 |
msgid "Enter a name for the new attribute term:"
|
231 |
msgstr "Introduce un nombre para el nuevo atributo:"
|
232 |
|
233 |
-
#:
|
234 |
-
msgid ""
|
235 |
-
"
|
236 |
-
"you will need to (optionally) calculate tax rows and cart discounts manually."
|
237 |
-
msgstr ""
|
238 |
-
"¿Calcular totales basados en artículos de la orden, monto de descuento y "
|
239 |
-
"envío? Tenga en cuenta, usted necesitará calcular impuestos filas "
|
240 |
-
"(opcionalmente) y descuentos del carro manualmente."
|
241 |
|
242 |
-
#:
|
243 |
-
msgid ""
|
244 |
-
"
|
245 |
-
"country. If no billing/shipping is set it will use the store base country."
|
246 |
-
msgstr ""
|
247 |
-
"¿Calcular impuestos? Esto calculará los impuestos basándose en el país del "
|
248 |
-
"cliente.Si no se especifica una dirección de facturación/envío se usará el "
|
249 |
-
"país de la tienda."
|
250 |
|
251 |
-
#:
|
252 |
-
msgid ""
|
253 |
-
"
|
254 |
-
"currently entered shipping information."
|
255 |
-
msgstr ""
|
256 |
-
"¿Copiar la información de facturación a la información de envío? Esto "
|
257 |
-
"eliminará cualquier información de envío introducida."
|
258 |
|
259 |
-
#:
|
260 |
-
msgid ""
|
261 |
-
"
|
262 |
-
"entered billing information."
|
263 |
-
msgstr ""
|
264 |
-
"¿Cargar la información de facturación del cliente? Esto eliminará cualquier "
|
265 |
-
"información de facturación introducida."
|
266 |
|
267 |
-
#:
|
268 |
-
msgid ""
|
269 |
-
"
|
270 |
-
"entered shipping information."
|
271 |
-
msgstr ""
|
272 |
-
"¿Cargar la información de envío del cliente? Esto eliminará cualquier "
|
273 |
-
"información de envío introducida."
|
274 |
|
275 |
-
#:
|
276 |
-
#:
|
277 |
msgid "Featured"
|
278 |
msgstr "Destacado"
|
279 |
|
280 |
-
#:
|
|
|
|
|
|
|
281 |
msgid "Meta Name"
|
282 |
msgstr "Nombre de la meta"
|
283 |
|
284 |
-
#:
|
|
|
|
|
|
|
285 |
msgid "Meta Value"
|
286 |
msgstr "Valor Meta"
|
287 |
|
288 |
-
#:
|
289 |
msgid "No customer selected"
|
290 |
msgstr "No se ha seleccionado ningún cliente"
|
291 |
|
292 |
-
#:
|
293 |
msgid "Tax Label:"
|
294 |
msgstr "Etiqueta impuestos:"
|
295 |
|
296 |
-
#:
|
297 |
msgid "Compound:"
|
298 |
msgstr "Compuesto"
|
299 |
|
300 |
-
#:
|
301 |
msgid "Cart Tax:"
|
302 |
msgstr "Impuesto de carro:"
|
303 |
|
304 |
-
#:
|
305 |
msgid "Shipping Tax:"
|
306 |
msgstr "Monto del Impuesto Envío"
|
307 |
|
308 |
-
#:
|
309 |
msgid "WooCommerce Products"
|
310 |
-
msgstr "
|
311 |
|
312 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
313 |
msgid "Composing product data..."
|
314 |
msgstr "Composición de datos de productos..."
|
315 |
|
316 |
-
#:
|
317 |
msgid "Composing variations attributes..."
|
318 |
msgstr "Composición de atributos de las variaciones..."
|
319 |
|
320 |
-
#:
|
321 |
msgid "<b>WARNING</b>: Product SKU must be unique."
|
322 |
msgstr "<b>ADVERTENCIA</b>: SKU de producto debe ser único."
|
323 |
|
324 |
-
#:
|
325 |
-
#: /
|
326 |
-
|
327 |
msgid "Variation #%s of %s"
|
328 |
msgstr "Variación #%s de %s"
|
329 |
|
330 |
-
#:
|
331 |
-
#, php-format
|
332 |
msgid "<b>CREATED</b>: %s variations for parent product %s."
|
333 |
msgstr "<b>Creado</b>: %s variaciones producto de padres %s."
|
334 |
|
335 |
-
#:
|
336 |
msgid "- Importing Variations"
|
337 |
msgstr "-Importación de variaciones"
|
338 |
|
339 |
-
#:
|
340 |
-
#, php-format
|
341 |
msgid "- `%s`: variation created successfully"
|
342 |
msgstr "-'%s': variación creado con éxito"
|
343 |
|
344 |
-
#:
|
345 |
-
#, php-format
|
346 |
msgid "- `%s`: variation updated successfully"
|
347 |
msgstr "-'%s': variación actualizada"
|
348 |
|
349 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
350 |
msgid "- <b>WARNING</b>: Product SKU must be unique."
|
351 |
msgstr "- <b>ADVERTENCIA</b>: SKU de producto debe ser único."
|
352 |
|
353 |
-
#:
|
354 |
-
|
355 |
-
|
356 |
-
msgstr "- <b>Imagen SKIPPED</b>: La imagen %s es siempre existe para el `%s`"
|
357 |
|
358 |
-
#:
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
363 |
msgstr ""
|
364 |
-
"- <b>ADVERTENCIA</b>: El archivo %s no es una imagen válida y no se puede "
|
365 |
-
"establecer como una destacada"
|
366 |
|
367 |
-
#:
|
368 |
-
#, php-format
|
369 |
msgid "- <b>WARNING</b>: File %s cannot be saved locally as %s"
|
370 |
msgstr "- <b>ADVERTENCIA</b>: el archivo %s no puede guardarse localmente como %s"
|
371 |
|
372 |
-
#:
|
|
|
|
|
|
|
|
|
373 |
msgid "- <b>WARNING</b>"
|
374 |
msgstr "<b>ADVERTENCIA</b>"
|
375 |
|
376 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
377 |
msgid "<b>ERROR</b> Could not insert term relationship into the database"
|
378 |
msgstr "No se ha podido insertar la relación entre términos en la base de datos"
|
379 |
|
380 |
-
#:
|
381 |
-
|
382 |
-
|
383 |
-
"- <b>WARNING</b>: Slug “%s” is not allowed because it is a reserved term. "
|
384 |
-
"Change it, please."
|
385 |
-
msgstr ""
|
386 |
-
"El slug ”%s” no está permitido, ya que es un término reservado. Cámbielo, "
|
387 |
-
"por favor."
|
388 |
|
389 |
-
#:
|
390 |
-
#, php-format
|
391 |
msgid "- <b>CREATED</b>: Taxonomy attribute “%s” have been successfully created."
|
392 |
msgstr "- <b>Creado</b>: atributo de taxonomía \"%s\" se han creado con éxito."
|
393 |
|
394 |
-
#:
|
395 |
-
|
396 |
-
msgid ""
|
397 |
-
"- <b>WARNING</b>: Taxonomy “%s” name is more than 32 characters. Change it, "
|
398 |
-
"please."
|
399 |
msgstr ""
|
400 |
-
"- <b>ADVERTENCIA</b>: nombre de la taxonomía \"%s\" es más de 32 caracteres. "
|
401 |
-
"Cambiar, por favor."
|
402 |
|
403 |
-
#:
|
404 |
-
#, php-format
|
405 |
msgid "- <b>WARNING</b>: Unable to create cloaked link for %s"
|
406 |
msgstr "<b>ADVERTENCIA</b>: No se puede crear enlace envuelta para%s"
|
407 |
|
408 |
-
#:
|
409 |
-
msgid "
|
410 |
-
msgstr "
|
411 |
|
412 |
-
#:
|
413 |
-
msgid "
|
414 |
-
msgstr "
|
415 |
|
416 |
-
#:
|
417 |
-
msgid "
|
418 |
-
msgstr "
|
419 |
|
420 |
-
#:
|
421 |
-
msgid "
|
422 |
-
msgstr "
|
423 |
|
424 |
-
#:
|
425 |
-
|
426 |
-
|
|
|
|
|
427 |
|
428 |
-
#:
|
429 |
-
msgid "
|
430 |
-
msgstr "
|
431 |
|
432 |
-
#:
|
433 |
-
msgid ""
|
434 |
-
"The value of presented XPath should be one of the following: ('simple', "
|
435 |
-
"'grouped', 'external', 'variable')."
|
436 |
msgstr ""
|
437 |
-
"El valor de XPath presentado debe ser uno de los siguientes: ('simple', "
|
438 |
-
"'grupos', 'externa', ' variable')."
|
439 |
|
440 |
-
#:
|
441 |
-
#:
|
442 |
-
|
443 |
-
|
444 |
-
msgstr "Virtual"
|
445 |
|
446 |
-
#:
|
447 |
-
|
448 |
-
|
449 |
-
msgid "Downloadable"
|
450 |
-
msgstr "Descargable"
|
451 |
|
452 |
-
#:
|
453 |
-
msgid "
|
454 |
-
msgstr "
|
455 |
|
456 |
-
#:
|
457 |
-
msgid "
|
458 |
-
msgstr "
|
459 |
|
460 |
-
#:
|
461 |
-
|
462 |
-
|
|
|
463 |
|
464 |
-
#:
|
465 |
-
msgid "
|
466 |
-
msgstr "
|
467 |
|
468 |
-
#:
|
469 |
-
|
470 |
-
|
471 |
-
#: /views/admin/import/_tabs/_attributes.php:286
|
472 |
-
msgid "Advanced"
|
473 |
-
msgstr "Avanzado"
|
474 |
|
475 |
-
#:
|
476 |
-
msgid "
|
477 |
-
msgstr "
|
478 |
|
479 |
-
#:
|
480 |
-
msgid "
|
481 |
-
msgstr "
|
482 |
|
483 |
-
#:
|
484 |
-
msgid "
|
485 |
-
msgstr "
|
486 |
|
487 |
-
#:
|
488 |
-
msgid "
|
489 |
-
msgstr "
|
490 |
|
491 |
-
#:
|
492 |
-
msgid "
|
493 |
-
msgstr "
|
494 |
|
495 |
-
#:
|
496 |
-
|
497 |
-
|
498 |
-
#: /views/admin/import/_tabs/_inventory.php:8 ../..
|
499 |
-
#: /views/admin/import/_tabs/_inventory.php:99 ../..
|
500 |
-
#: /views/admin/import/_tabs/_variations.php:154 ../..
|
501 |
-
#: /views/admin/import/_tabs/_variations.php:486 ../..
|
502 |
-
#: /views/admin/import/_tabs/_variations.php:653 ../..
|
503 |
-
#: /views/admin/import/_tabs/_variations.php:715
|
504 |
-
msgid "Yes"
|
505 |
-
msgstr "Si"
|
506 |
|
507 |
-
#:
|
508 |
-
|
509 |
-
|
510 |
-
#: /views/admin/import/_tabs/_inventory.php:12 ../..
|
511 |
-
#: /views/admin/import/_tabs/_inventory.php:103 ../..
|
512 |
-
#: /views/admin/import/_tabs/_variations.php:158 ../..
|
513 |
-
#: /views/admin/import/_tabs/_variations.php:490 ../..
|
514 |
-
#: /views/admin/import/_tabs/_variations.php:657 ../..
|
515 |
-
#: /views/admin/import/_tabs/_variations.php:719
|
516 |
-
msgid "No"
|
517 |
-
msgstr "No"
|
518 |
|
519 |
-
#:
|
520 |
-
|
521 |
-
|
522 |
-
#: /views/admin/import/_tabs/_attributes.php:64 ../..
|
523 |
-
#: /views/admin/import/_tabs/_attributes.php:86 ../..
|
524 |
-
#: /views/admin/import/_tabs/_attributes.php:108 ../..
|
525 |
-
#: /views/admin/import/_tabs/_attributes.php:130 ../..
|
526 |
-
#: /views/admin/import/_tabs/_attributes.php:193 ../..
|
527 |
-
#: /views/admin/import/_tabs/_attributes.php:215 ../..
|
528 |
-
#: /views/admin/import/_tabs/_attributes.php:237 ../..
|
529 |
-
#: /views/admin/import/_tabs/_attributes.php:259 ../..
|
530 |
-
#: /views/admin/import/_tabs/_attributes.php:321 ../..
|
531 |
-
#: /views/admin/import/_tabs/_attributes.php:343 ../..
|
532 |
-
#: /views/admin/import/_tabs/_attributes.php:365 ../..
|
533 |
-
#: /views/admin/import/_tabs/_attributes.php:387 ../..
|
534 |
-
#: /views/admin/import/_tabs/_general.php:123 ../..
|
535 |
-
#: /views/admin/import/_tabs/_general.php:146 ../..
|
536 |
-
#: /views/admin/import/_tabs/_general.php:169 ../..
|
537 |
-
#: /views/admin/import/_tabs/_inventory.php:16 ../..
|
538 |
-
#: /views/admin/import/_tabs/_inventory.php:52 ../..
|
539 |
-
#: /views/admin/import/_tabs/_inventory.php:82 ../..
|
540 |
-
#: /views/admin/import/_tabs/_inventory.php:107 ../..
|
541 |
-
#: /views/admin/import/_tabs/_variations.php:162 ../..
|
542 |
-
#: /views/admin/import/_tabs/_variations.php:210 ../..
|
543 |
-
#: /views/admin/import/_tabs/_variations.php:285 ../..
|
544 |
-
#: /views/admin/import/_tabs/_variations.php:429 ../..
|
545 |
-
#: /views/admin/import/_tabs/_variations.php:494 ../..
|
546 |
-
#: /views/admin/import/_tabs/_variations.php:661 ../..
|
547 |
-
#: /views/admin/import/_tabs/_variations.php:698 ../..
|
548 |
-
#: /views/admin/import/_tabs/_variations.php:723
|
549 |
-
msgid "Set with XPath"
|
550 |
-
msgstr "Con XPath"
|
551 |
|
552 |
-
#:
|
553 |
-
#:
|
554 |
-
|
555 |
-
|
556 |
-
#: /views/admin/import/_tabs/_attributes.php:113 ../..
|
557 |
-
#: /views/admin/import/_tabs/_attributes.php:135 ../..
|
558 |
-
#: /views/admin/import/_tabs/_attributes.php:198 ../..
|
559 |
-
#: /views/admin/import/_tabs/_attributes.php:220 ../..
|
560 |
-
#: /views/admin/import/_tabs/_attributes.php:242 ../..
|
561 |
-
#: /views/admin/import/_tabs/_attributes.php:264 ../..
|
562 |
-
#: /views/admin/import/_tabs/_attributes.php:326 ../..
|
563 |
-
#: /views/admin/import/_tabs/_attributes.php:348 ../..
|
564 |
-
#: /views/admin/import/_tabs/_attributes.php:370 ../..
|
565 |
-
#: /views/admin/import/_tabs/_attributes.php:392 ../..
|
566 |
-
#: /views/admin/import/_tabs/_general.php:128 ../..
|
567 |
-
#: /views/admin/import/_tabs/_general.php:151 ../..
|
568 |
-
#: /views/admin/import/_tabs/_general.php:174 ../..
|
569 |
-
#: /views/admin/import/_tabs/_inventory.php:21 ../..
|
570 |
-
#: /views/admin/import/_tabs/_inventory.php:112 ../..
|
571 |
-
#: /views/admin/import/_tabs/_variations.php:167 ../..
|
572 |
-
#: /views/admin/import/_tabs/_variations.php:290 ../..
|
573 |
-
#: /views/admin/import/_tabs/_variations.php:434 ../..
|
574 |
-
#: /views/admin/import/_tabs/_variations.php:499 ../..
|
575 |
-
#: /views/admin/import/_tabs/_variations.php:666 ../..
|
576 |
-
#: /views/admin/import/_tabs/_variations.php:728
|
577 |
-
msgid "The value of presented XPath should be one of the following: ('yes', 'no')."
|
578 |
-
msgstr "El valor de XPath presentado debe ser uno de los siguientes: ('sí', 'no')."
|
579 |
|
580 |
-
#:
|
581 |
-
|
582 |
-
|
|
|
583 |
|
584 |
-
#:
|
585 |
-
|
586 |
-
|
|
|
587 |
|
588 |
-
#:
|
589 |
-
|
590 |
-
|
|
|
591 |
|
592 |
-
#:
|
593 |
-
|
594 |
-
|
|
|
595 |
|
596 |
-
#:
|
597 |
-
|
598 |
-
|
|
|
599 |
|
600 |
-
#:
|
601 |
-
|
602 |
-
"
|
603 |
-
"'catalog', 'search', 'hidden')."
|
604 |
msgstr ""
|
605 |
-
"El valor de XPath presentado debe ser uno de los siguientes: ('visible', "
|
606 |
-
"'catálogo', ' Buscar', 'oculto')."
|
607 |
|
608 |
-
#:
|
609 |
-
#:
|
610 |
-
msgid "
|
611 |
-
msgstr "
|
612 |
|
613 |
-
#:
|
614 |
-
|
615 |
-
|
|
|
616 |
|
617 |
-
#:
|
618 |
-
#:
|
619 |
-
|
620 |
-
|
621 |
-
#: /views/admin/import/_tabs/_attributes.php:292 ../..
|
622 |
-
#: /views/admin/import/_tabs/_attributes.php:313 ../..
|
623 |
-
#: /views/admin/import/_tabs/_variations.php:535 ../..
|
624 |
-
#: /views/admin/import/_tabs/_variations.php:569 ../..
|
625 |
-
#: /views/admin/import/_tabs/_variations.php:599
|
626 |
-
msgid "In Variations"
|
627 |
-
msgstr "Variaciones"
|
628 |
|
629 |
-
#:
|
630 |
-
#:
|
631 |
-
|
632 |
-
|
633 |
-
#: /views/admin/import/_tabs/_attributes.php:296 ../..
|
634 |
-
#: /views/admin/import/_tabs/_attributes.php:335 ../..
|
635 |
-
#: /views/admin/import/_tabs/_variations.php:540 ../..
|
636 |
-
#: /views/admin/import/_tabs/_variations.php:573 ../..
|
637 |
-
#: /views/admin/import/_tabs/_variations.php:603
|
638 |
-
msgid "Is Visible"
|
639 |
-
msgstr "visible"
|
640 |
|
641 |
-
#:
|
642 |
-
#:
|
643 |
-
|
644 |
-
|
645 |
-
#: /views/admin/import/_tabs/_attributes.php:300 ../..
|
646 |
-
#: /views/admin/import/_tabs/_attributes.php:357
|
647 |
-
msgid "Is Taxonomy"
|
648 |
-
msgstr "Es taxonomía"
|
649 |
|
650 |
-
#:
|
651 |
-
#:
|
652 |
-
|
653 |
-
|
654 |
-
#: /views/admin/import/_tabs/_attributes.php:304 ../..
|
655 |
-
#: /views/admin/import/_tabs/_attributes.php:379 ../..
|
656 |
-
#: /views/admin/import/_tabs/_variations.php:550 ../..
|
657 |
-
#: /views/admin/import/_tabs/_variations.php:581 ../..
|
658 |
-
#: /views/admin/import/_tabs/_variations.php:611
|
659 |
-
msgid "Auto-Create Terms"
|
660 |
-
msgstr "Términos de crear automáticamente"
|
661 |
|
662 |
-
#:
|
663 |
-
#:
|
664 |
-
#:
|
665 |
-
msgid "
|
666 |
-
msgstr "
|
667 |
|
668 |
-
#:
|
669 |
-
#:
|
670 |
-
|
671 |
-
|
672 |
-
msgstr "visible"
|
673 |
|
674 |
-
#:
|
675 |
-
|
676 |
-
|
677 |
-
msgid "Not Taxonomy"
|
678 |
-
msgstr "No taxonomía"
|
679 |
|
680 |
-
#:
|
681 |
-
|
682 |
-
|
683 |
-
msgid "Do Not Create Terms"
|
684 |
-
msgstr "No se crean condiciones"
|
685 |
|
686 |
-
#:
|
687 |
-
|
688 |
-
|
689 |
-
msgstr "Añadir"
|
690 |
|
691 |
-
#:
|
692 |
-
|
693 |
-
|
694 |
-
msgstr "Agregar más"
|
695 |
|
696 |
-
#:
|
697 |
-
msgid "
|
698 |
-
msgstr "
|
699 |
|
700 |
-
#:
|
701 |
-
msgid ""
|
702 |
-
"This option will create all possible variations for the presented attributes."
|
703 |
-
" Works just like the Link All Variations option inside WooCommerce."
|
704 |
msgstr ""
|
705 |
-
"Esta opción creará todas las variaciones posibles de los atributos "
|
706 |
-
"presentados. Funciona igual que la opción de enlace todas las variaciones "
|
707 |
-
"dentro de WooCommerce."
|
708 |
|
709 |
-
#:
|
710 |
-
|
711 |
-
|
712 |
-
msgstr "SKU"
|
713 |
|
714 |
-
#:
|
715 |
-
msgid "
|
716 |
-
msgstr "
|
717 |
|
718 |
-
#:
|
719 |
-
msgid "
|
720 |
-
msgstr "
|
721 |
|
722 |
-
#:
|
723 |
-
msgid "
|
724 |
-
msgstr "
|
725 |
|
726 |
-
#:
|
727 |
-
msgid "
|
728 |
-
msgstr "
|
729 |
|
730 |
-
#:
|
731 |
-
msgid ""
|
732 |
-
"Prices should be presented as you would enter them manually in WooCommerce - "
|
733 |
-
"with no currency symbol."
|
734 |
msgstr ""
|
735 |
-
"Los precios deben ser presentados como tiene que escribir manualmente en "
|
736 |
-
"WooCommerce - con ningún símbolo de moneda."
|
737 |
|
738 |
-
#:
|
739 |
-
msgid "
|
740 |
-
msgstr "
|
741 |
|
742 |
-
#:
|
743 |
-
|
744 |
-
|
745 |
-
msgstr "Horario"
|
746 |
|
747 |
-
#:
|
748 |
-
msgid "
|
749 |
-
msgstr "
|
750 |
|
751 |
-
#:
|
752 |
-
|
753 |
-
|
754 |
-
msgstr "y"
|
755 |
|
756 |
-
#:
|
757 |
-
#:
|
758 |
-
|
759 |
-
|
|
|
|
|
760 |
|
761 |
-
#:
|
762 |
-
msgid "
|
763 |
-
msgstr "
|
764 |
|
765 |
-
#:
|
766 |
-
|
767 |
-
msgid ""
|
768 |
-
"Leave blank or enter in 100% to keep the price as is. Enter in 110% to "
|
769 |
-
"markup by 10%. Enter in 50% to cut prices in half."
|
770 |
msgstr ""
|
771 |
-
"Deje en blanco o escriba en 100% para mantener el precio como es. Entrar en "
|
772 |
-
"110% para incrementa un 10%. Entrar en el 50% para reducir los precios a la "
|
773 |
-
"mitad."
|
774 |
|
775 |
-
#:
|
776 |
-
|
777 |
-
|
778 |
-
msgstr "Introduzca un número negativo para reducir los precios."
|
779 |
|
780 |
-
#:
|
781 |
-
msgid "
|
782 |
-
msgstr "
|
783 |
|
784 |
-
#:
|
785 |
-
msgid "
|
786 |
-
msgstr "
|
787 |
|
788 |
-
#:
|
789 |
-
msgid "
|
790 |
-
msgstr "
|
791 |
|
792 |
-
#:
|
793 |
-
msgid ""
|
794 |
-
"Prices must be imported using a period as the decimal separator. If you'd "
|
795 |
-
"like to change the decimal separator you can do so by editing your "
|
796 |
-
"WooCommerce settings."
|
797 |
msgstr ""
|
798 |
-
"Precios deben importarse utilizando un período como el separador de "
|
799 |
-
"decimales. Si desea cambiar el separador decimal puede hacerlo editando la "
|
800 |
-
"configuración WooCommerce."
|
801 |
|
802 |
-
#:
|
803 |
-
msgid "
|
804 |
-
msgstr "
|
805 |
|
806 |
-
#:
|
807 |
-
msgid ""
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
-
"
|
812 |
-
msgstr ""
|
813 |
-
|
814 |
-
|
815 |
-
"
|
816 |
-
"
|
817 |
-
|
818 |
-
|
819 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
820 |
msgid "Preview Prices"
|
821 |
msgstr "Precios de escuchar"
|
822 |
|
823 |
-
#:
|
824 |
-
#:
|
825 |
msgid "Variation Description"
|
826 |
msgstr "Descripción de la variación"
|
827 |
|
828 |
-
#:
|
829 |
-
#:
|
830 |
-
#:
|
831 |
msgid "Variation Enabled"
|
832 |
msgstr "Variación permitida"
|
833 |
|
834 |
-
#:
|
835 |
-
#:
|
836 |
-
msgid ""
|
837 |
-
"
|
838 |
-
|
839 |
-
|
840 |
-
|
841 |
-
|
|
|
|
|
842 |
|
843 |
-
#:
|
844 |
-
#:
|
845 |
msgid "Not Virtual"
|
846 |
msgstr "Virtual"
|
847 |
|
848 |
-
#:
|
849 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
850 |
msgid "Not Downloadable"
|
851 |
msgstr "Descargable"
|
852 |
|
853 |
-
#:
|
854 |
-
#:
|
855 |
msgid "File paths"
|
856 |
msgstr "Rutas de archivo"
|
857 |
|
858 |
-
#:
|
859 |
-
msgid ""
|
860 |
-
"
|
861 |
-
"contains multiple URLs/paths - i.e. <code>http://files.com/1.doc, http:"
|
862 |
-
"//files.com/2.doc</code>."
|
863 |
-
msgstr ""
|
864 |
-
"Caminos de archivo/URL, separados por comas. El delimitador se utiliza "
|
865 |
-
"cuando un elemento XML contiene varias direcciones URL/rutas - es decir, "
|
866 |
-
"<code>http://files.com/1.doc, http://files.com/2.doc</code> ."
|
867 |
|
868 |
-
#:
|
869 |
-
#:
|
870 |
msgid "File names"
|
871 |
msgstr "Nombres de archivo"
|
872 |
|
873 |
-
#:
|
874 |
-
#:
|
875 |
-
msgid ""
|
876 |
-
"
|
877 |
-
"contains multiple names - i.e. <code>1.doc, 2.doc</code>."
|
878 |
-
msgstr ""
|
879 |
-
"Nombres de archivo, separados por comas. El delimitador se utiliza cuando un "
|
880 |
-
"elemento XML contiene varios nombres - es decir, <code>1.doc, 2.doc</code> ."
|
881 |
|
882 |
-
#:
|
883 |
-
#:
|
884 |
msgid "Download Limit"
|
885 |
msgstr "Descargar Límite"
|
886 |
|
887 |
-
#:
|
888 |
msgid "Leave blank for unlimited re-downloads."
|
889 |
msgstr "Dejar en blanco para un número ilimitado de re-descargas."
|
890 |
|
891 |
-
#:
|
892 |
-
#:
|
893 |
msgid "Download Expiry"
|
894 |
msgstr "Descarga Expiración"
|
895 |
|
896 |
-
#:
|
897 |
msgid "Enter the number of days before a download link expires, or leave blank."
|
898 |
-
msgstr ""
|
899 |
-
"Introduce el número de días antes de que expire un enlace de descarga, o "
|
900 |
-
"dejar en blanco."
|
901 |
|
902 |
-
#:
|
903 |
msgid "Download Type"
|
904 |
msgstr "Tipo de descarga"
|
905 |
|
906 |
-
#:
|
907 |
-
msgid ""
|
908 |
-
"
|
909 |
-
"'music')."
|
910 |
-
msgstr ""
|
911 |
-
"El valor de XPath presentado debe ser uno de los siguientes: ('aplicación', "
|
912 |
-
"'música')."
|
913 |
|
914 |
-
#:
|
915 |
msgid "Tax Status"
|
916 |
msgstr "Situación Fiscal"
|
917 |
|
918 |
-
#:
|
919 |
msgid "Taxable"
|
920 |
msgstr "Imponible"
|
921 |
|
922 |
-
#:
|
923 |
msgid "Shipping only"
|
924 |
msgstr "Solamente Envío"
|
925 |
|
926 |
-
#:
|
927 |
msgid "None"
|
928 |
msgstr "Ninguno"
|
929 |
|
930 |
-
#:
|
931 |
msgid "Set tax status with XPath"
|
932 |
msgstr "Estado de impuestos establecida con XPath"
|
933 |
|
934 |
-
#:
|
935 |
-
msgid ""
|
936 |
-
"
|
937 |
-
"'none' are the default slugs."
|
938 |
-
msgstr ""
|
939 |
-
"Valor debe ser el slug para la clase de envío - 'imponible', 'envío' y "
|
940 |
-
"'ninguno' son los slugs de forma predeterminada."
|
941 |
|
942 |
-
#:
|
943 |
-
#:
|
944 |
msgid "Tax Class"
|
945 |
msgstr "Clase de Impuesto"
|
946 |
|
947 |
-
#:
|
948 |
-
#:
|
|
|
949 |
msgid "Standard"
|
950 |
msgstr "Estándar"
|
951 |
|
952 |
-
#:
|
953 |
msgid "Set tax class with XPath"
|
954 |
msgstr "Clase de impuestos establecida con XPath"
|
955 |
|
956 |
-
#:
|
957 |
-
msgid ""
|
958 |
-
"
|
959 |
-
"are the default slugs."
|
960 |
-
msgstr ""
|
961 |
-
"Valor debe ser el slug para la clase de impuesto - 'tarifa reducida' y 'Eco-"
|
962 |
-
"préstamo', es las babosas de forma predeterminada."
|
963 |
|
964 |
-
#:
|
965 |
-
#:
|
966 |
-
#:
|
967 |
msgid "Manage stock?"
|
968 |
msgstr "Manejo de valores?"
|
969 |
|
970 |
-
#:
|
971 |
-
#:
|
972 |
-
#:
|
973 |
msgid "Stock Qty"
|
974 |
msgstr "Disponible Cantidad"
|
975 |
|
976 |
-
#:
|
977 |
-
#:
|
978 |
-
#:
|
979 |
msgid "Stock status"
|
980 |
msgstr "el estado de la"
|
981 |
|
982 |
-
#:
|
983 |
-
#:
|
984 |
-
#:
|
985 |
msgid "In stock"
|
986 |
msgstr "En stock"
|
987 |
|
988 |
-
#:
|
989 |
-
#:
|
990 |
-
#:
|
991 |
msgid "Out of stock"
|
992 |
msgstr "Agotado"
|
993 |
|
994 |
-
#:
|
995 |
-
#:
|
996 |
-
#:
|
997 |
msgid "Set automatically"
|
998 |
msgstr "Automáticamente"
|
999 |
|
1000 |
-
#:
|
1001 |
-
#:
|
1002 |
-
msgid ""
|
1003 |
-
"
|
1004 |
-
"Stock if Stock Qty is 0 or blank."
|
1005 |
-
msgstr ""
|
1006 |
-
"Establecer el estado del stock en stock para valores positivos de la "
|
1007 |
-
"cantidad de Stock y de Stock si cantidad de Stock es 0 o en blanco."
|
1008 |
|
1009 |
-
#:
|
1010 |
-
#:
|
1011 |
-
#:
|
1012 |
-
msgid ""
|
1013 |
-
"
|
1014 |
-
"'outofstock')."
|
1015 |
-
msgstr ""
|
1016 |
-
"El valor de XPath presentado debe ser uno de los siguientes: ('instock', ' "
|
1017 |
-
"outofstock')."
|
1018 |
|
1019 |
-
#:
|
|
|
1020 |
msgid "Allow Backorders?"
|
1021 |
msgstr "Permitir pedidos pendientes?"
|
1022 |
|
1023 |
-
#:
|
|
|
1024 |
msgid "Do not allow"
|
1025 |
msgstr "No permitir"
|
1026 |
|
1027 |
-
#:
|
|
|
1028 |
msgid "Allow, but notify customer"
|
1029 |
msgstr "Permitir, pero notificará al cliente"
|
1030 |
|
1031 |
-
#:
|
|
|
1032 |
msgid "Allow"
|
1033 |
msgstr "Permitir"
|
1034 |
|
1035 |
-
#:
|
1036 |
-
|
1037 |
-
"The value of presented XPath should be one of the following: ('no', 'notify',"
|
1038 |
-
" '
|
1039 |
-
msgstr ""
|
1040 |
-
"El valor de XPath presentado debe ser uno de los siguientes: ('no', "
|
1041 |
-
"'notificación', 'sí')."
|
1042 |
|
1043 |
-
#:
|
1044 |
msgid "Sold Individually?"
|
1045 |
msgstr "Vendido Individualmente?"
|
1046 |
|
1047 |
-
#:
|
1048 |
msgid "Up-Sells"
|
1049 |
msgstr "Up-Ventas"
|
1050 |
|
1051 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1052 |
msgid "Cross-Sells"
|
1053 |
msgstr "Cruz-Ventas"
|
1054 |
|
1055 |
-
#:
|
1056 |
msgid "Choose a grouped product…"
|
1057 |
msgstr "Elija un producto agrupado…"
|
1058 |
|
1059 |
-
#:
|
1060 |
msgid "Grouping"
|
1061 |
msgstr "Agrupamiento"
|
1062 |
|
1063 |
-
#:
|
1064 |
msgid "Set this option to make this product part of a grouped product."
|
1065 |
-
msgstr ""
|
1066 |
-
"Establezca esta opción para hacer que esta parte del producto de un producto "
|
1067 |
-
"agrupado."
|
1068 |
|
1069 |
-
#:
|
1070 |
msgid "Manual Grouped Product Matching"
|
1071 |
msgstr "Manual de agrupa productos coincidentes"
|
1072 |
|
1073 |
-
#:
|
1074 |
-
msgid ""
|
1075 |
-
"
|
1076 |
-
"the specified criteria."
|
1077 |
-
msgstr ""
|
1078 |
-
"Producto se le asignará como el hijo de un producto ya creado, con el "
|
1079 |
-
"criterio especificado."
|
1080 |
|
1081 |
-
#:
|
1082 |
msgid "Match by Post Title"
|
1083 |
msgstr "Partido por el título del Post"
|
1084 |
|
1085 |
-
#:
|
1086 |
msgid "Match by Custom Field"
|
1087 |
msgstr "Coteje el campo personalizado"
|
1088 |
|
1089 |
-
#:
|
1090 |
-
msgid "Value"
|
1091 |
-
msgstr "valer"
|
1092 |
-
|
1093 |
-
#: ../../views/admin/import/_tabs/_options.php:4
|
1094 |
msgid "Import options"
|
1095 |
msgstr "Opciones de Importación"
|
1096 |
|
1097 |
-
#:
|
1098 |
msgid "Set out of stock status for missing records"
|
1099 |
msgstr "Definir estado fuera de stock a los records faltantes"
|
1100 |
|
1101 |
-
#:
|
1102 |
-
msgid ""
|
1103 |
-
"
|
1104 |
-
"product entirely. This option doesn't work when 'Delete missing records' "
|
1105 |
-
"option is enabled."
|
1106 |
-
msgstr ""
|
1107 |
-
"Opción para configurar el estado del stock de fuera de stock en vez de "
|
1108 |
-
"eliminar completamente el producto. Esta opción no funciona cuando está "
|
1109 |
-
"habilitada la opción 'Eliminar registros que falta'."
|
1110 |
|
1111 |
-
#:
|
1112 |
msgid "Disable auto SKU generation"
|
1113 |
msgstr "Desactivar auto generación de SKU"
|
1114 |
|
1115 |
-
#:
|
1116 |
-
msgid ""
|
1117 |
-
"
|
1118 |
-
"algorithm, if SKU option is empty."
|
1119 |
-
msgstr ""
|
1120 |
-
"El plugin no generá automaticamente la SKU para cada producto basado en el "
|
1121 |
-
"algoritmo md5, si opción SKU está vacía."
|
1122 |
|
1123 |
-
#:
|
1124 |
msgid "Don't check for duplicate SKUs"
|
1125 |
msgstr "No busque duplicados SKU"
|
1126 |
|
1127 |
-
#:
|
1128 |
-
msgid ""
|
1129 |
-
"
|
1130 |
-
|
1131 |
-
|
1132 |
-
"
|
1133 |
-
msgstr ""
|
1134 |
-
|
1135 |
-
|
1136 |
-
"
|
1137 |
-
|
1138 |
-
|
1139 |
-
|
1140 |
-
|
1141 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1142 |
msgid "Shipping Class"
|
1143 |
msgstr "Clase de envío"
|
1144 |
|
1145 |
-
#:
|
1146 |
-
#:
|
1147 |
msgid "No shipping class"
|
1148 |
msgstr "Ninguna clase de envío"
|
1149 |
|
1150 |
-
#:
|
1151 |
-
#:
|
1152 |
msgid "Set product shipping class with XPath"
|
1153 |
msgstr "Definir clase de envio de producto con XPath"
|
1154 |
|
1155 |
-
#:
|
1156 |
-
msgid ""
|
1157 |
-
"Value should be the slug for the shipping class - 'taxable', 'shipping' and "
|
1158 |
-
"'none' are the default slugs."
|
1159 |
msgstr ""
|
1160 |
-
"Valor debe ser el slug para la clase de envío - 'imponible', 'envío' y "
|
1161 |
-
"'ninguno' son los slugs de forma predeterminada."
|
1162 |
|
1163 |
-
#:
|
1164 |
-
msgid ""
|
1165 |
-
"
|
1166 |
-
"variation is linked to its parent with its parent's SKU or other unique "
|
1167 |
-
"identifier."
|
1168 |
-
msgstr ""
|
1169 |
-
"Todos mis productos variable tienen SKU o algún otro identificador único. "
|
1170 |
-
"Cada variación está ligada a su padre con SKU su padre u otro identificador "
|
1171 |
-
"único."
|
1172 |
|
1173 |
-
#:
|
1174 |
msgid "SKU element for parent"
|
1175 |
msgstr "Elemento SKU para padres"
|
1176 |
|
1177 |
-
#:
|
1178 |
msgid "SKU column in the below example."
|
1179 |
msgstr "Columna SKU en el siguiente ejemplo."
|
1180 |
|
1181 |
-
#:
|
1182 |
msgid "Parent SKU element for variation"
|
1183 |
msgstr "Elemento SKU primario para la variación"
|
1184 |
|
1185 |
-
#:
|
1186 |
msgid "Parent SKU column in the below example."
|
1187 |
msgstr "Columna SKU de primaria en el siguiente ejemplo."
|
1188 |
|
1189 |
-
#:
|
1190 |
-
#:
|
1191 |
-
#:
|
1192 |
-
#:
|
1193 |
msgid "Example Data For Use With This Option"
|
1194 |
msgstr "Datos de ejemplo para utilizar con esta opción"
|
1195 |
|
1196 |
-
#:
|
1197 |
-
#:
|
1198 |
-
#:
|
1199 |
-
#:
|
1200 |
msgid "download"
|
1201 |
msgstr "No hay archivos para descargar!"
|
1202 |
|
1203 |
-
#:
|
1204 |
-
msgid ""
|
1205 |
-
"
|
1206 |
-
"the same for each variation and unique for each product."
|
1207 |
-
msgstr ""
|
1208 |
-
"Todos los productos con variaciones son agrupados con un identificador único "
|
1209 |
-
"que es el mismo para cada variación y únicos para cada producto."
|
1210 |
|
1211 |
-
#:
|
1212 |
-
msgid "Unique Identifier"
|
1213 |
-
msgstr "Identificador único"
|
1214 |
-
|
1215 |
-
#: ../../views/admin/import/_tabs/_variations.php:38
|
1216 |
msgid "Group ID column in the below example."
|
1217 |
msgstr "Columna de ID de grupo en el siguiente ejemplo."
|
1218 |
|
1219 |
-
#:
|
1220 |
-
msgid ""
|
1221 |
-
"
|
1222 |
-
"product."
|
1223 |
-
msgstr ""
|
1224 |
-
"Todas las variaciones para un producto en particular tienen el mismo título "
|
1225 |
-
"que el producto de los padres."
|
1226 |
|
1227 |
-
#:
|
1228 |
-
#:
|
1229 |
msgid "Product Title"
|
1230 |
msgstr "Título del Producto"
|
1231 |
|
1232 |
-
#:
|
1233 |
-
msgid ""
|
1234 |
-
"
|
1235 |
-
"parent products."
|
1236 |
-
msgstr ""
|
1237 |
-
"Todas las variaciones para un producto en particular tienen el mismo título. "
|
1238 |
-
"No existen productos padre."
|
1239 |
|
1240 |
-
#:
|
1241 |
msgid "I'm importing XML and my variations are child XML elements"
|
1242 |
msgstr "Yo soy importar XML y mis variaciones son elementos XML de niño"
|
1243 |
|
1244 |
-
#:
|
1245 |
msgid "Video Example"
|
1246 |
msgstr "Video ejemplo"
|
1247 |
|
1248 |
-
#:
|
1249 |
msgid "Variations XPath"
|
1250 |
msgstr "Variaciones XPath"
|
1251 |
|
1252 |
-
#:
|
1253 |
msgid "Open XML Tree"
|
1254 |
msgstr "Árbol XML abierto"
|
1255 |
|
1256 |
-
#:
|
1257 |
msgid "Add value to the parent SKU"
|
1258 |
msgstr "Agregar valor a los padres SKU"
|
1259 |
|
1260 |
-
#:
|
1261 |
msgid "Enable this checkbox to combine SKU from parent and variation products."
|
1262 |
-
msgstr ""
|
1263 |
-
"Active esta casilla de verificación combinar SKU de productos padres y "
|
1264 |
-
"variación."
|
1265 |
|
1266 |
-
#:
|
1267 |
msgid "Image"
|
1268 |
msgstr "Imagen"
|
1269 |
|
1270 |
-
#:
|
1271 |
-
#:
|
1272 |
-
#:
|
1273 |
-
#:
|
1274 |
-
#:
|
1275 |
-
#:
|
1276 |
-
#:
|
1277 |
-
#:
|
1278 |
-
#:
|
1279 |
-
#:
|
1280 |
-
#:
|
1281 |
-
#:
|
1282 |
-
#:
|
1283 |
-
#:
|
1284 |
-
#:
|
1285 |
-
#:
|
1286 |
msgid "XPath Is From Parent"
|
1287 |
msgstr "XPath es de los padres"
|
1288 |
|
1289 |
-
#:
|
|
|
|
|
|
|
|
|
1290 |
msgid "Enable this checkbox to determine XPath from parent element."
|
1291 |
msgstr "Active esta casilla de verificación determinar XPath del elemento primario."
|
1292 |
|
1293 |
-
#:
|
1294 |
-
msgid ""
|
1295 |
-
"
|
1296 |
-
"Out Of Stock if Stock Qty is 0."
|
1297 |
-
msgstr ""
|
1298 |
-
"Establece el estado del stock en Stock para valores de cantidad de Stock "
|
1299 |
-
"positivos o en blanco y la de acción si cantidad de Stock es 0."
|
1300 |
|
1301 |
-
#:
|
1302 |
msgid "Regular Price"
|
1303 |
msgstr "Precio Normal"
|
1304 |
|
1305 |
-
#:
|
1306 |
msgid "Sale Price"
|
1307 |
msgstr "Precio De Venta"
|
1308 |
|
1309 |
-
#:
|
|
|
|
|
|
|
|
|
1310 |
msgid "Variable Sale Price Dates"
|
1311 |
msgstr "Precio de venta variable Data"
|
1312 |
|
1313 |
-
#:
|
1314 |
msgid "Weight"
|
1315 |
msgstr "Peso"
|
1316 |
|
1317 |
-
#:
|
1318 |
msgid "Dimensions (L×W×H)"
|
1319 |
msgstr "Dimensiones (L × W × H)"
|
1320 |
|
1321 |
-
#:
|
1322 |
-
msgid ""
|
1323 |
-
"
|
1324 |
-
"'shipping', 'none')."
|
1325 |
-
msgstr ""
|
1326 |
-
"El valor de XPath presentado debe ser uno de los siguientes: ('pasivo', "
|
1327 |
-
"'Enviar', 'none')."
|
1328 |
|
1329 |
-
#:
|
1330 |
msgid "Same as parent"
|
1331 |
msgstr "Igual que el padre"
|
1332 |
|
1333 |
-
#:
|
1334 |
msgid "Set product tax class with XPath"
|
1335 |
msgstr "Definir clase de impuesto del producto con XPath"
|
1336 |
|
1337 |
-
#:
|
1338 |
-
msgid ""
|
1339 |
-
"
|
1340 |
-
" 'zero-rate')."
|
1341 |
-
msgstr ""
|
1342 |
-
"El valor de XPath presentado debe ser uno de los siguientes: ('tarifa "
|
1343 |
-
"reducida', ' Eco-préstamo')."
|
1344 |
|
1345 |
-
#:
|
1346 |
-
msgid ""
|
1347 |
-
"
|
1348 |
-
"contains few paths/URLs (http://files.com/1.doc, http://files.com/2.doc)."
|
1349 |
-
msgstr ""
|
1350 |
-
"Caminos de archivo/URL, separados por comas. La opción de delimitador "
|
1351 |
-
"utiliza al elemento xml contiene pocos caminos/URLs (http://files.com/1.doc, "
|
1352 |
-
"http://files.com/2.doc)."
|
1353 |
|
1354 |
-
#:
|
1355 |
msgid "Variation Attributes"
|
1356 |
msgstr "Variación de atributos"
|
1357 |
|
1358 |
-
#:
|
1359 |
-
#:
|
1360 |
-
#:
|
1361 |
msgid "Taxonomy"
|
1362 |
msgstr "Taxonomía"
|
1363 |
|
1364 |
-
#:
|
1365 |
msgid "No matching elements found for XPath expression specified"
|
1366 |
msgstr "No elementos coincidentes para la expresión XPath especificada"
|
1367 |
|
1368 |
-
#:
|
1369 |
msgid "Set the default selection in the attributes dropdowns."
|
1370 |
msgstr "Establecer la selección por defecto en los menús desplegables de atributos."
|
1371 |
|
1372 |
-
#:
|
1373 |
-
msgid ""
|
1374 |
-
"
|
1375 |
-
"frontend."
|
1376 |
-
msgstr ""
|
1377 |
-
"Los atributos de la primera variación se seleccionará automáticamente en el "
|
1378 |
-
"frontend."
|
1379 |
|
1380 |
-
#:
|
1381 |
msgid "Set first variation as the default selection."
|
1382 |
msgstr "Establecer la primera variación como la selección predeterminada."
|
1383 |
|
1384 |
-
#:
|
1385 |
msgid "Set first in stock variation as the default selection."
|
1386 |
msgstr "Ajustar en variación de existencias como la selección predeterminada."
|
1387 |
|
1388 |
-
#:
|
1389 |
msgid "Do not set default selections for the dropdowns."
|
1390 |
msgstr "No coloque predeterminadas para los menús desplegables."
|
1391 |
|
1392 |
-
#:
|
1393 |
msgid "Create products with no variations as simple products."
|
1394 |
msgstr "Crear productos con sin variaciones como simples productos."
|
1395 |
|
1396 |
-
#:
|
1397 |
msgid "Save variation image to the gallery."
|
1398 |
msgstr "Guardar imagen de variación a la galería."
|
1399 |
|
1400 |
-
#:
|
1401 |
-
msgid ""
|
1402 |
-
"
|
1403 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1404 |
msgstr ""
|
1405 |
-
"Establezca el valor de _stock para producto de padres en el valor _stock "
|
1406 |
-
"para la primera variación."
|
1407 |
|
1408 |
-
#:
|
1409 |
-
msgid ""
|
1410 |
-
|
1411 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1412 |
msgstr ""
|
1413 |
-
|
1414 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
"MIME-Version: 1.0\n"
|
4 |
"Content-Type: text/plain; charset=UTF-8\n"
|
5 |
"Content-Transfer-Encoding: 8bit\n"
|
6 |
+
"X-Generator: POEditor.com\n"
|
7 |
+
"Project-Id-Version: WooCommerce Add-On Pro\n"
|
8 |
+
"Language: es\n"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
|
10 |
+
#: actions/admin_notices.php:10
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
msgid "<b>%s Plugin</b>: WooCommerce must be installed."
|
12 |
msgstr "<b>%s Plugin</b>: WooCommerce debe instalarse."
|
13 |
|
14 |
+
#: actions/admin_notices.php:24
|
15 |
+
msgid "<b>%s Plugin</b>: WP All Import must be installed. Free edition of WP All Import at <a href=\"http://wordpress.org/plugins/wp-all-import/\" target=\"_blank\">http://wordpress.org/plugins/wp-all-import/</a> and the paid edition at <a href=\"http://www.wpallimport.com/\">http://www.wpallimport.com/</a>"
|
16 |
+
msgstr "<b>%s Plugin</b>: Importación POS-Solution® debe ser instalada. Edición gratuita de importación POS-Solution® en <a href=\"http://wordpress.org/plugins/wp-all-import/\" target=\"_blank\">http://wordpress.org/plugins/wp-all-import/</a> y la edición de pagada en <a href=\"http://www.wpallimport.com/\">http://www.wpallimport.com/</a>"
|
17 |
+
|
18 |
+
#: actions/admin_notices.php:38
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
msgid "<b>%s Plugin</b>: Please update your WP All Import to the latest version"
|
20 |
+
msgstr "<b>%s Plugin</b>: actualice su importación POS-Solution® a la versión más reciente."
|
|
|
|
|
21 |
|
22 |
+
#: actions/admin_notices.php:51
|
|
|
23 |
msgid "<b>%s Plugin</b>: Please update your WooCommerce to the latest version"
|
24 |
msgstr "<b>%s Plugin</b>: actualice su POS-Solution a la última versión"
|
25 |
|
26 |
+
#: actions/pmxi_reimport.php:29 views/admin/import/product/index.php:16
|
27 |
msgid "Product Type"
|
28 |
msgstr "Tipo De Producto"
|
29 |
|
30 |
+
#: actions/pmxi_reimport.php:35 views/admin/import/product/index.php:63
|
31 |
msgid "Attributes"
|
32 |
msgstr "Atributos"
|
33 |
|
34 |
+
#: actions/pmxi_reimport.php:39
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
msgid "Update all Attributes"
|
36 |
msgstr "Actualizar todos los atributos"
|
37 |
|
38 |
+
#: actions/pmxi_reimport.php:43
|
39 |
msgid "Update only these Attributes, leave the rest alone"
|
40 |
msgstr "Actualizar sólo los atributos de estos, deje el resto"
|
41 |
|
42 |
+
#: actions/pmxi_reimport.php:52
|
43 |
msgid "Leave these attributes alone, update all other Attributes"
|
44 |
msgstr "Dejar estos atributos, actualizar todos los otros atributos"
|
45 |
|
46 |
+
#: classes/updater.php:63
|
47 |
+
msgid "View WP All Import - WooCommerce Add-On Pro Changelog"
|
|
|
|
|
|
|
48 |
msgstr ""
|
|
|
|
|
49 |
|
50 |
+
#: classes/updater.php:63
|
51 |
+
msgid "Changelog"
|
|
|
|
|
|
|
|
|
52 |
msgstr ""
|
|
|
|
|
|
|
53 |
|
54 |
+
#: classes/updater.php:258
|
55 |
+
msgid "There is a new version of %1$s available. <a target=\"_blank\" class=\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
|
56 |
+
msgstr "Hay una nueva versión de %1$s disponible. <a target=“_blank” class=“thickbox” href=“%2$s”> Ver detalle de la versión %3$s </a>"
|
57 |
+
|
58 |
+
#: classes/updater.php:265
|
59 |
+
msgid "There is a new version of %1$s available. <a target=\"_blank\" class=\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s\">update now</a>."
|
60 |
+
msgstr "Hay una nueva versión disponible %1$s <a target=“_blank” class=“thickbox” href=“%2$s”>Detalle de esta versión %3$s </a> or <a href=“%4$s”>actualizar ahora</a>."
|
61 |
+
|
62 |
+
#: classes/updater.php:448
|
63 |
msgid "You do not have permission to install plugin updates"
|
64 |
msgstr "Cotizaok.com"
|
65 |
|
66 |
+
#: classes/updater.php:448
|
67 |
msgid "Error"
|
68 |
msgstr "Error"
|
69 |
|
70 |
+
#: controllers/controller/admin.php:55
|
71 |
+
msgid "Remove this item? If you have previously reduced this item's stock, or this order was submitted by a customer, will need to manually restore the item's stock."
|
72 |
+
msgstr "¿Quitar este elemento? Si previamente han reducido stock de este artículo, o este pedido fue presentado por un cliente, tendrá que restaurar manualmente los valores del elemento."
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
|
74 |
+
#: controllers/controller/admin.php:56
|
75 |
msgid "Remove this attribute?"
|
76 |
msgstr "¿Eliminar este atributo?"
|
77 |
|
78 |
+
#: controllers/controller/admin.php:57
|
79 |
+
#: views/admin/import/options/_reimport_options.php:40
|
80 |
+
#: views/admin/import/options/_reimport_template.php:106
|
81 |
+
#: views/admin/import/product/_tabs/_attributes.php:6
|
82 |
+
#: views/admin/import/product/_tabs/_linked_product.php:90
|
83 |
+
#: views/admin/import/product/_tabs/_variations.php:546
|
84 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:69
|
85 |
msgid "Name"
|
86 |
msgstr "nombre"
|
87 |
|
88 |
+
#: controllers/controller/admin.php:58
|
89 |
msgid "Remove"
|
90 |
msgstr "Eliminar"
|
91 |
|
92 |
+
#: controllers/controller/admin.php:59
|
93 |
msgid "Click to toggle"
|
94 |
msgstr "Pulsa para cambiar"
|
95 |
|
96 |
+
#: controllers/controller/admin.php:60
|
97 |
msgid "Value(s)"
|
98 |
msgstr "Valor(es)"
|
99 |
|
100 |
+
#: controllers/controller/admin.php:61
|
101 |
msgid "Enter some text, or some attributes by pipe (|) separating values."
|
102 |
+
msgstr "Introduce algún texto o algún atributo separando los valores con el símbolo (|)"
|
|
|
|
|
103 |
|
104 |
+
#: controllers/controller/admin.php:62
|
105 |
msgid "Visible on the product page"
|
106 |
msgstr "Visible en la página de productos"
|
107 |
|
108 |
+
#: controllers/controller/admin.php:63
|
109 |
msgid "Used for variations"
|
110 |
msgstr "Usado para variaciones"
|
111 |
|
112 |
+
#: controllers/controller/admin.php:64
|
113 |
msgid "Enter a name for the new attribute term:"
|
114 |
msgstr "Introduce un nombre para el nuevo atributo:"
|
115 |
|
116 |
+
#: controllers/controller/admin.php:65
|
117 |
+
msgid "Calculate totals based on order items, discount amount, and shipping? Note, you will need to (optionally) calculate tax rows and cart discounts manually."
|
118 |
+
msgstr "¿Calcular totales basados en artículos de la orden, monto de descuento y envío? Tenga en cuenta, usted necesitará calcular impuestos filas (opcionalmente) y descuentos del carro manualmente."
|
|
|
|
|
|
|
|
|
|
|
119 |
|
120 |
+
#: controllers/controller/admin.php:66
|
121 |
+
msgid "Calculate line taxes? This will calculate taxes based on the customers country. If no billing/shipping is set it will use the store base country."
|
122 |
+
msgstr "¿Calcular impuestos? Esto calculará los impuestos basándose en el país del cliente.Si no se especifica una dirección de facturación/envío se usará el país de la tienda."
|
|
|
|
|
|
|
|
|
|
|
123 |
|
124 |
+
#: controllers/controller/admin.php:67
|
125 |
+
msgid "Copy billing information to shipping information? This will remove any currently entered shipping information."
|
126 |
+
msgstr "¿Copiar la información de facturación a la información de envío? Esto eliminará cualquier información de envío introducida."
|
|
|
|
|
|
|
|
|
127 |
|
128 |
+
#: controllers/controller/admin.php:68
|
129 |
+
msgid "Load the customer's billing information? This will remove any currently entered billing information."
|
130 |
+
msgstr "¿Cargar la información de facturación del cliente? Esto eliminará cualquier información de facturación introducida."
|
|
|
|
|
|
|
|
|
131 |
|
132 |
+
#: controllers/controller/admin.php:69
|
133 |
+
msgid "Load the customer's shipping information? This will remove any currently entered shipping information."
|
134 |
+
msgstr "¿Cargar la información de envío del cliente? Esto eliminará cualquier información de envío introducida."
|
|
|
|
|
|
|
|
|
135 |
|
136 |
+
#: controllers/controller/admin.php:70
|
137 |
+
#: views/admin/import/product/_tabs/_advanced.php:44
|
138 |
msgid "Featured"
|
139 |
msgstr "Destacado"
|
140 |
|
141 |
+
#: controllers/controller/admin.php:74
|
142 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:277
|
143 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:289
|
144 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:448
|
145 |
msgid "Meta Name"
|
146 |
msgstr "Nombre de la meta"
|
147 |
|
148 |
+
#: controllers/controller/admin.php:75
|
149 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:281
|
150 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:293
|
151 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:452
|
152 |
msgid "Meta Value"
|
153 |
msgstr "Valor Meta"
|
154 |
|
155 |
+
#: controllers/controller/admin.php:76
|
156 |
msgid "No customer selected"
|
157 |
msgstr "No se ha seleccionado ningún cliente"
|
158 |
|
159 |
+
#: controllers/controller/admin.php:77
|
160 |
msgid "Tax Label:"
|
161 |
msgstr "Etiqueta impuestos:"
|
162 |
|
163 |
+
#: controllers/controller/admin.php:78
|
164 |
msgid "Compound:"
|
165 |
msgstr "Compuesto"
|
166 |
|
167 |
+
#: controllers/controller/admin.php:79
|
168 |
msgid "Cart Tax:"
|
169 |
msgstr "Impuesto de carro:"
|
170 |
|
171 |
+
#: controllers/controller/admin.php:80
|
172 |
msgid "Shipping Tax:"
|
173 |
msgstr "Monto del Impuesto Envío"
|
174 |
|
175 |
+
#: filters/pmxi_custom_types.php:7
|
176 |
msgid "WooCommerce Products"
|
177 |
+
msgstr "WooCommerce Productos"
|
178 |
|
179 |
+
#: filters/pmxi_custom_types.php:8
|
180 |
+
msgid "WooCommerce Orders"
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: filters/pmxi_custom_types.php:9
|
184 |
+
msgid "WooCommerce Coupons"
|
185 |
+
msgstr ""
|
186 |
+
|
187 |
+
#: libraries/XmlImportWooCommerceProduct.php:43
|
188 |
msgid "Composing product data..."
|
189 |
msgstr "Composición de datos de productos..."
|
190 |
|
191 |
+
#: libraries/XmlImportWooCommerceProduct.php:261
|
192 |
msgid "Composing variations attributes..."
|
193 |
msgstr "Composición de atributos de las variaciones..."
|
194 |
|
195 |
+
#: libraries/XmlImportWooCommerceProduct.php:533
|
196 |
msgid "<b>WARNING</b>: Product SKU must be unique."
|
197 |
msgstr "<b>ADVERTENCIA</b>: SKU de producto debe ser único."
|
198 |
|
199 |
+
#: libraries/XmlImportWooCommerceProduct.php:1101
|
200 |
+
#: libraries/XmlImportWooCommerceProduct.php:2294
|
201 |
+
#: libraries/XmlImportWooCommerceProduct.php:2341
|
202 |
msgid "Variation #%s of %s"
|
203 |
msgstr "Variación #%s de %s"
|
204 |
|
205 |
+
#: libraries/XmlImportWooCommerceProduct.php:1871
|
|
|
206 |
msgid "<b>CREATED</b>: %s variations for parent product %s."
|
207 |
msgstr "<b>Creado</b>: %s variaciones producto de padres %s."
|
208 |
|
209 |
+
#: libraries/XmlImportWooCommerceProduct.php:1893
|
210 |
msgid "- Importing Variations"
|
211 |
msgstr "-Importación de variaciones"
|
212 |
|
213 |
+
#: libraries/XmlImportWooCommerceProduct.php:2341
|
|
|
214 |
msgid "- `%s`: variation created successfully"
|
215 |
msgstr "-'%s': variación creado con éxito"
|
216 |
|
217 |
+
#: libraries/XmlImportWooCommerceProduct.php:2347
|
|
|
218 |
msgid "- `%s`: variation updated successfully"
|
219 |
msgstr "-'%s': variación actualizada"
|
220 |
|
221 |
+
#: libraries/XmlImportWooCommerceProduct.php:2350
|
222 |
+
msgid "Deleting attachments for `%s`"
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
#: libraries/XmlImportWooCommerceProduct.php:2355
|
226 |
+
msgid "Deleting images for `%s`"
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
+
#: libraries/XmlImportWooCommerceProduct.php:2529
|
230 |
msgid "- <b>WARNING</b>: Product SKU must be unique."
|
231 |
msgstr "- <b>ADVERTENCIA</b>: SKU de producto debe ser único."
|
232 |
|
233 |
+
#: libraries/XmlImportWooCommerceProduct.php:2761
|
234 |
+
msgid "- <b>WARNING</b>: Image %s not found in media gallery."
|
235 |
+
msgstr ""
|
|
|
236 |
|
237 |
+
#: libraries/XmlImportWooCommerceProduct.php:2765
|
238 |
+
msgid "- Using existing image `%s` for post `%s` ..."
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
+
#: libraries/XmlImportWooCommerceProduct.php:2783
|
242 |
+
msgid "- Searching for existing image `%s` in `%s` folder"
|
243 |
+
msgstr ""
|
244 |
+
|
245 |
+
#: libraries/XmlImportWooCommerceProduct.php:2789
|
246 |
+
#: libraries/XmlImportWooCommerceProduct.php:2825
|
247 |
+
msgid "- <b>WARNING</b>: File %s is not a valid image and cannot be set as featured one"
|
248 |
+
msgstr "- <b>ADVERTENCIA</b>: El archivo %s no es una imagen válida y no se puede establecer como una destacada"
|
249 |
+
|
250 |
+
#: libraries/XmlImportWooCommerceProduct.php:2793
|
251 |
+
msgid "- Image `%s` has been successfully found"
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#: libraries/XmlImportWooCommerceProduct.php:2799
|
255 |
+
msgid "- Downloading image from `%s`"
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: libraries/XmlImportWooCommerceProduct.php:2809
|
259 |
+
#: libraries/XmlImportWooCommerceProduct.php:2829
|
260 |
+
msgid "- Image `%s` has been successfully downloaded"
|
261 |
msgstr ""
|
|
|
|
|
262 |
|
263 |
+
#: libraries/XmlImportWooCommerceProduct.php:2820
|
|
|
264 |
msgid "- <b>WARNING</b>: File %s cannot be saved locally as %s"
|
265 |
msgstr "- <b>ADVERTENCIA</b>: el archivo %s no puede guardarse localmente como %s"
|
266 |
|
267 |
+
#: libraries/XmlImportWooCommerceProduct.php:2846
|
268 |
+
msgid "- Creating an attachment for image `%s`"
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
#: libraries/XmlImportWooCommerceProduct.php:2867
|
272 |
msgid "- <b>WARNING</b>"
|
273 |
msgstr "<b>ADVERTENCIA</b>"
|
274 |
|
275 |
+
#: libraries/XmlImportWooCommerceProduct.php:2900
|
276 |
+
msgid "- Attachment has been successfully updated for image `%s`"
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: libraries/XmlImportWooCommerceProduct.php:2904
|
280 |
+
msgid "- Attachment has been successfully created for image `%s`"
|
281 |
+
msgstr ""
|
282 |
+
|
283 |
+
#: libraries/XmlImportWooCommerceProduct.php:3282
|
284 |
+
msgid "Added to %s list of product ID %d."
|
285 |
+
msgstr ""
|
286 |
+
|
287 |
+
#: libraries/XmlImportWooCommerceProduct.php:3352
|
288 |
msgid "<b>ERROR</b> Could not insert term relationship into the database"
|
289 |
msgstr "No se ha podido insertar la relación entre términos en la base de datos"
|
290 |
|
291 |
+
#: libraries/XmlImportWooCommerceProduct.php:3664
|
292 |
+
msgid "- <b>WARNING</b>: Slug “%s” is not allowed because it is a reserved term. Change it, please."
|
293 |
+
msgstr "El slug ”%s” no está permitido, ya que es un término reservado. Cámbielo, por favor."
|
|
|
|
|
|
|
|
|
|
|
294 |
|
295 |
+
#: libraries/XmlImportWooCommerceProduct.php:3697
|
|
|
296 |
msgid "- <b>CREATED</b>: Taxonomy attribute “%s” have been successfully created."
|
297 |
msgstr "- <b>Creado</b>: atributo de taxonomía \"%s\" se han creado con éxito."
|
298 |
|
299 |
+
#: libraries/XmlImportWooCommerceProduct.php:3701
|
300 |
+
msgid "- <b>WARNING</b>: Taxonomy “%s” name is more than 28 characters. Change it, please."
|
|
|
|
|
|
|
301 |
msgstr ""
|
|
|
|
|
302 |
|
303 |
+
#: libraries/XmlImportWooCommerceProduct.php:3810
|
|
|
304 |
msgid "- <b>WARNING</b>: Unable to create cloaked link for %s"
|
305 |
msgstr "<b>ADVERTENCIA</b>: No se puede crear enlace envuelta para%s"
|
306 |
|
307 |
+
#: libraries/XmlImportWooCommerceProduct.php:3890
|
308 |
+
msgid "Product `%s` with ID `%d` added to %s list."
|
309 |
+
msgstr ""
|
310 |
|
311 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:196
|
312 |
+
msgid "Composing shop order data..."
|
313 |
+
msgstr ""
|
314 |
|
315 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:683
|
316 |
+
msgid "- Importing billing & shipping information for Order ID `%s`."
|
317 |
+
msgstr ""
|
318 |
|
319 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:695
|
320 |
+
msgid "- %s Existing customer with ID `%s` founded for Order `%s`."
|
321 |
+
msgstr ""
|
322 |
|
323 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:701
|
324 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:711
|
325 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:729
|
326 |
+
msgid "- Billing field `%s` has been updated with value `%s` for order `%s` ..."
|
327 |
+
msgstr ""
|
328 |
|
329 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:717
|
330 |
+
msgid "<b>WARNING</b>: Existing customer not found for Order `%s`."
|
331 |
+
msgstr ""
|
332 |
|
333 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:747
|
334 |
+
msgid "- Copying shipping from billing information..."
|
|
|
|
|
335 |
msgstr ""
|
|
|
|
|
336 |
|
337 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:753
|
338 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:771
|
339 |
+
msgid "- Shipping field `%s` has been updated with value `%s` for order `%s` ..."
|
340 |
+
msgstr ""
|
|
|
341 |
|
342 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:812
|
343 |
+
msgid "- %s email notification has beed sent. ..."
|
344 |
+
msgstr ""
|
|
|
|
|
345 |
|
346 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:1036
|
347 |
+
msgid "<b>SKIPPED</b>: %s Existing customer not found for Order `%s`."
|
348 |
+
msgstr ""
|
349 |
|
350 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:1091
|
351 |
+
msgid "<b>SKIPPED</b>: Existing product `%s` not found for Order `%s`."
|
352 |
+
msgstr ""
|
353 |
|
354 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:1330
|
355 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:1474
|
356 |
+
msgid "- <b>WARNING</b> Unable to create order line product."
|
357 |
+
msgstr ""
|
358 |
|
359 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:1594
|
360 |
+
msgid "- <b>WARNING</b> order line fee is not added."
|
361 |
+
msgstr ""
|
362 |
|
363 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:1675
|
364 |
+
msgid "- <b>WARNING</b> Unable to create order coupon line."
|
365 |
+
msgstr ""
|
|
|
|
|
|
|
366 |
|
367 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:1799
|
368 |
+
msgid "- <b>WARNING</b> Unable to create order shipping line."
|
369 |
+
msgstr ""
|
370 |
|
371 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:1902
|
372 |
+
msgid "- <b>WARNING</b> Unable to create order tax line."
|
373 |
+
msgstr ""
|
374 |
|
375 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:1958
|
376 |
+
msgid "WooCommerce"
|
377 |
+
msgstr ""
|
378 |
|
379 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:2048
|
380 |
+
msgid "Search customer by "
|
381 |
+
msgstr ""
|
382 |
|
383 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:2054
|
384 |
+
msgid "username"
|
385 |
+
msgstr ""
|
386 |
|
387 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:2060
|
388 |
+
msgid "email"
|
389 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
390 |
|
391 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:2066
|
392 |
+
msgid "custom field"
|
393 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
394 |
|
395 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:2072
|
396 |
+
msgid "ID"
|
397 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
398 |
|
399 |
+
#: views/admin/import/confirm.php:3
|
400 |
+
#: views/admin/import/options/_reimport_options.php:74
|
401 |
+
msgid "Order status"
|
402 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
403 |
|
404 |
+
#: views/admin/import/confirm.php:6
|
405 |
+
#: views/admin/import/options/_reimport_options.php:80
|
406 |
+
msgid "Customer Note"
|
407 |
+
msgstr ""
|
408 |
|
409 |
+
#: views/admin/import/confirm.php:9
|
410 |
+
#: views/admin/import/options/_reimport_options.php:85
|
411 |
+
msgid "Dates"
|
412 |
+
msgstr ""
|
413 |
|
414 |
+
#: views/admin/import/confirm.php:12
|
415 |
+
#: views/admin/import/options/_reimport_options.php:90
|
416 |
+
msgid "Billing Details"
|
417 |
+
msgstr ""
|
418 |
|
419 |
+
#: views/admin/import/confirm.php:15
|
420 |
+
#: views/admin/import/options/_reimport_options.php:95
|
421 |
+
msgid "Shipping Details"
|
422 |
+
msgstr ""
|
423 |
|
424 |
+
#: views/admin/import/confirm.php:18
|
425 |
+
#: views/admin/import/options/_reimport_options.php:100
|
426 |
+
msgid "Payment Details"
|
427 |
+
msgstr ""
|
428 |
|
429 |
+
#: views/admin/import/confirm.php:21
|
430 |
+
#: views/admin/import/options/_reimport_options.php:105
|
431 |
+
msgid "Order Notes"
|
|
|
432 |
msgstr ""
|
|
|
|
|
433 |
|
434 |
+
#: views/admin/import/confirm.php:28
|
435 |
+
#: views/admin/import/options/_reimport_options.php:114
|
436 |
+
msgid "Update all products"
|
437 |
+
msgstr ""
|
438 |
|
439 |
+
#: views/admin/import/confirm.php:31
|
440 |
+
#: views/admin/import/options/_reimport_options.php:118
|
441 |
+
msgid "Don't touch existing products, append new products"
|
442 |
+
msgstr ""
|
443 |
|
444 |
+
#: views/admin/import/confirm.php:37
|
445 |
+
#: views/admin/import/options/_reimport_options.php:125
|
446 |
+
msgid "Fees Items"
|
447 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
448 |
|
449 |
+
#: views/admin/import/confirm.php:40
|
450 |
+
#: views/admin/import/options/_reimport_options.php:130
|
451 |
+
msgid "Coupon Items"
|
452 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
453 |
|
454 |
+
#: views/admin/import/confirm.php:43
|
455 |
+
#: views/admin/import/options/_reimport_options.php:135
|
456 |
+
msgid "Shipping Items"
|
457 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
458 |
|
459 |
+
#: views/admin/import/confirm.php:46
|
460 |
+
#: views/admin/import/options/_reimport_options.php:140
|
461 |
+
msgid "Tax Items"
|
462 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
463 |
|
464 |
+
#: views/admin/import/confirm.php:49
|
465 |
+
#: views/admin/import/options/_reimport_options.php:145
|
466 |
+
#: views/admin/import/shop_order/order_items_section.php:39
|
467 |
+
msgid "Refunds"
|
468 |
+
msgstr ""
|
469 |
|
470 |
+
#: views/admin/import/confirm.php:52
|
471 |
+
#: views/admin/import/options/_reimport_options.php:150
|
472 |
+
msgid "Order Total"
|
473 |
+
msgstr ""
|
|
|
474 |
|
475 |
+
#: views/admin/import/confirm.php:59
|
476 |
+
msgid "All advanced custom fields"
|
477 |
+
msgstr ""
|
|
|
|
|
478 |
|
479 |
+
#: views/admin/import/confirm.php:62
|
480 |
+
msgid "Only ACF presented in import options"
|
481 |
+
msgstr ""
|
|
|
|
|
482 |
|
483 |
+
#: views/admin/import/confirm.php:65
|
484 |
+
msgid "Only these ACF : %s"
|
485 |
+
msgstr ""
|
|
|
486 |
|
487 |
+
#: views/admin/import/confirm.php:68
|
488 |
+
msgid "All ACF except these: %s"
|
489 |
+
msgstr ""
|
|
|
490 |
|
491 |
+
#: views/admin/import/confirm.php:78
|
492 |
+
msgid "All custom fields"
|
493 |
+
msgstr ""
|
494 |
|
495 |
+
#: views/admin/import/confirm.php:81
|
496 |
+
msgid "Only these custom fields : %s"
|
|
|
|
|
497 |
msgstr ""
|
|
|
|
|
|
|
498 |
|
499 |
+
#: views/admin/import/confirm.php:84
|
500 |
+
msgid "All custom fields except these: %s"
|
501 |
+
msgstr ""
|
|
|
502 |
|
503 |
+
#: views/admin/import/options/_reimport_options.php:2
|
504 |
+
msgid "When WP All Import finds new or changed data..."
|
505 |
+
msgstr ""
|
506 |
|
507 |
+
#: views/admin/import/options/_reimport_options.php:4
|
508 |
+
msgid "If this import is run again and WP All Import finds new or changed data..."
|
509 |
+
msgstr ""
|
510 |
|
511 |
+
#: views/admin/import/options/_reimport_options.php:9
|
512 |
+
msgid "Create new orders from records newly present in your file"
|
513 |
+
msgstr ""
|
514 |
|
515 |
+
#: views/admin/import/options/_reimport_options.php:11
|
516 |
+
msgid "New orders will only be created when ID column is present and value in ID column is unique."
|
517 |
+
msgstr ""
|
518 |
|
519 |
+
#: views/admin/import/options/_reimport_options.php:18
|
520 |
+
msgid "Delete orders that are no longer present in your file"
|
|
|
|
|
521 |
msgstr ""
|
|
|
|
|
522 |
|
523 |
+
#: views/admin/import/options/_reimport_options.php:20
|
524 |
+
msgid "Records removed from the import file can only be deleted when importing into New Items. This feature cannot be enabled when importing into Existing Items."
|
525 |
+
msgstr ""
|
526 |
|
527 |
+
#: views/admin/import/options/_reimport_options.php:27
|
528 |
+
msgid "Do not remove attachments"
|
529 |
+
msgstr ""
|
|
|
530 |
|
531 |
+
#: views/admin/import/options/_reimport_options.php:32
|
532 |
+
msgid "Do not remove images"
|
533 |
+
msgstr ""
|
534 |
|
535 |
+
#: views/admin/import/options/_reimport_options.php:37
|
536 |
+
msgid "Instead of deletion, set Custom Field"
|
537 |
+
msgstr ""
|
|
|
538 |
|
539 |
+
#: views/admin/import/options/_reimport_options.php:42
|
540 |
+
#: views/admin/import/options/_reimport_template.php:108
|
541 |
+
#: views/admin/import/product/_tabs/_linked_product.php:95
|
542 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:73
|
543 |
+
msgid "Value"
|
544 |
+
msgstr "valer"
|
545 |
|
546 |
+
#: views/admin/import/options/_reimport_options.php:50
|
547 |
+
msgid "Instead of deletion, change post status to Draft"
|
548 |
+
msgstr ""
|
549 |
|
550 |
+
#: views/admin/import/options/_reimport_options.php:57
|
551 |
+
msgid "Update existing orders with changed data in your file"
|
|
|
|
|
|
|
552 |
msgstr ""
|
|
|
|
|
|
|
553 |
|
554 |
+
#: views/admin/import/options/_reimport_options.php:59
|
555 |
+
msgid "These options will only be used if you run this import again later. All data is imported the first time you run an import."
|
556 |
+
msgstr ""
|
|
|
557 |
|
558 |
+
#: views/admin/import/options/_reimport_options.php:63
|
559 |
+
msgid "Update all data"
|
560 |
+
msgstr ""
|
561 |
|
562 |
+
#: views/admin/import/options/_reimport_options.php:66
|
563 |
+
msgid "Choose which data to update"
|
564 |
+
msgstr ""
|
565 |
|
566 |
+
#: views/admin/import/options/_reimport_options.php:69
|
567 |
+
msgid "Unselect All"
|
568 |
+
msgstr ""
|
569 |
|
570 |
+
#: views/admin/import/options/_reimport_options.php:69
|
571 |
+
msgid "Select All"
|
|
|
|
|
|
|
572 |
msgstr ""
|
|
|
|
|
|
|
573 |
|
574 |
+
#: views/admin/import/options/_reimport_options.php:75
|
575 |
+
msgid "Hint: uncheck this box to keep trashed orders in the trash."
|
576 |
+
msgstr ""
|
577 |
|
578 |
+
#: views/admin/import/options/_reimport_options.php:110
|
579 |
+
msgid "Product Items"
|
580 |
+
msgstr ""
|
581 |
+
|
582 |
+
#: views/admin/import/options/_reimport_options.php:159
|
583 |
+
msgid "Custom Fields"
|
584 |
+
msgstr ""
|
585 |
+
|
586 |
+
#: views/admin/import/options/_reimport_options.php:160
|
587 |
+
msgid "If Keep Custom Fields box is checked, it will keep all Custom Fields, and add any new Custom Fields specified in Custom Fields section, as long as they do not overwrite existing fields. If 'Only keep this Custom Fields' is specified, it will only keep the specified fields."
|
588 |
+
msgstr "Si está marcada la casilla de mantener los campos personalizados, mantendrá todos los campos personalizados y añadir cualquier nuevo campos personalizados especificados en la sección de campos personalizados, siempre y cuando no sobrescriben los campos existentes. Si se especifica 'Sólo mantener este campos personalizados', mantendrá sólo los campos especificados."
|
589 |
+
|
590 |
+
#: views/admin/import/options/_reimport_options.php:164
|
591 |
+
msgid "Update all Custom Fields"
|
592 |
+
msgstr ""
|
593 |
+
|
594 |
+
#: views/admin/import/options/_reimport_options.php:168
|
595 |
+
msgid "Update only these Custom Fields, leave the rest alone"
|
596 |
+
msgstr ""
|
597 |
+
|
598 |
+
#: views/admin/import/options/_reimport_options.php:176
|
599 |
+
msgid "Leave these fields alone, update all other Custom Fields"
|
600 |
+
msgstr ""
|
601 |
+
|
602 |
+
#: views/admin/import/options/_reimport_template.php:14
|
603 |
+
#: views/admin/import/options/_reimport_template.php:82
|
604 |
+
msgid "Record Matching"
|
605 |
+
msgstr ""
|
606 |
+
|
607 |
+
#: views/admin/import/options/_reimport_template.php:22
|
608 |
+
msgid "Choose how exported data will be re-imported."
|
609 |
+
msgstr ""
|
610 |
+
|
611 |
+
#: views/admin/import/options/_reimport_template.php:28
|
612 |
+
msgid "WP All Import will create new %s for each unique record in your file."
|
613 |
+
msgstr ""
|
614 |
+
|
615 |
+
#: views/admin/import/options/_reimport_template.php:42
|
616 |
+
msgid "WP All Import will associate records in your file with %s it has already created from previous runs of this import based on the Unique Identifier."
|
617 |
+
msgstr ""
|
618 |
+
|
619 |
+
#: views/admin/import/options/_reimport_template.php:45
|
620 |
+
#: views/admin/import/product/_tabs/_variations.php:36
|
621 |
+
msgid "Unique Identifier"
|
622 |
+
msgstr "Identificador único"
|
623 |
+
|
624 |
+
#: views/admin/import/options/_reimport_template.php:51
|
625 |
+
#: views/admin/import/options/_reimport_template.php:62
|
626 |
+
msgid "Auto-detect"
|
627 |
+
msgstr ""
|
628 |
+
|
629 |
+
#: views/admin/import/options/_reimport_template.php:54
|
630 |
+
msgid "Edit"
|
631 |
+
msgstr ""
|
632 |
+
|
633 |
+
#: views/admin/import/options/_reimport_template.php:55
|
634 |
+
msgid "Warning: Are you sure you want to edit the Unique Identifier?"
|
635 |
+
msgstr ""
|
636 |
+
|
637 |
+
#: views/admin/import/options/_reimport_template.php:56
|
638 |
+
msgid "It is recommended you delete all %s associated with this import before editing the unique identifier."
|
639 |
+
msgstr ""
|
640 |
+
|
641 |
+
#: views/admin/import/options/_reimport_template.php:57
|
642 |
+
msgid "Editing the unique identifier will dissociate all existing %s linked to this import. Future runs of the import will result in duplicates, as WP All Import will no longer be able to update these %s."
|
643 |
+
msgstr ""
|
644 |
+
|
645 |
+
#: views/admin/import/options/_reimport_template.php:58
|
646 |
+
msgid "You really should just re-create your import, and pick the right unique identifier to start with."
|
647 |
+
msgstr ""
|
648 |
+
|
649 |
+
#: views/admin/import/options/_reimport_template.php:68
|
650 |
+
msgid "Drag an element, or combo of elements, to the box above. The Unique Identifier should be unique for each record in your file, and should stay the same even if your file is updated. Things like product IDs, titles, and SKUs are good Unique Identifiers because they probably won't change. Don't use a description or price, since that might be changed."
|
651 |
+
msgstr ""
|
652 |
+
|
653 |
+
#: views/admin/import/options/_reimport_template.php:69
|
654 |
+
msgid "If you run this import again with an updated file, the Unique Identifier allows WP All Import to correctly link the records in your updated file with the %s it will create right now. If multiple records in this file have the same Unique Identifier, only the first will be created. The others will be detected as duplicates."
|
655 |
+
msgstr ""
|
656 |
+
|
657 |
+
#: views/admin/import/options/_reimport_template.php:84
|
658 |
+
msgid "WP All Import will merge data into existing %s."
|
659 |
+
msgstr ""
|
660 |
+
|
661 |
+
#: views/admin/import/options/_reimport_template.php:94
|
662 |
+
msgid "Records in your file will be matched with %ss on your site based on..."
|
663 |
+
msgstr ""
|
664 |
+
|
665 |
+
#: views/admin/import/options/_reimport_template.php:99
|
666 |
+
msgid "Title"
|
667 |
+
msgstr ""
|
668 |
+
|
669 |
+
#: views/admin/import/options/_reimport_template.php:101
|
670 |
+
#: views/admin/import/shop_order/order_notes_section.php:31
|
671 |
+
#: views/admin/import/shop_order/order_notes_section.php:95
|
672 |
+
msgid "Content"
|
673 |
+
msgstr ""
|
674 |
+
|
675 |
+
#: views/admin/import/options/_reimport_template.php:104
|
676 |
+
msgid "Custom field"
|
677 |
+
msgstr ""
|
678 |
+
|
679 |
+
#: views/admin/import/options/_reimport_template.php:114
|
680 |
+
msgid "Order ID"
|
681 |
+
msgstr ""
|
682 |
+
|
683 |
+
#: views/admin/import/options/_reimport_template.php:134
|
684 |
+
msgid "Email Notifications for Customers"
|
685 |
+
msgstr ""
|
686 |
+
|
687 |
+
#: views/admin/import/options/_reimport_template.php:141
|
688 |
+
msgid "Block email notifications during import"
|
689 |
+
msgstr ""
|
690 |
+
|
691 |
+
#: views/admin/import/options/_reimport_template.php:142
|
692 |
+
msgid "If enabled, WP All Import will prevent WordPress from sending notification emails to customers when their orders are imported or updated."
|
693 |
+
msgstr ""
|
694 |
+
|
695 |
+
#: views/admin/import/product/_tabs/_advanced.php:5
|
696 |
+
msgid "Purchase Note"
|
697 |
+
msgstr "Compra Nota"
|
698 |
+
|
699 |
+
#: views/admin/import/product/_tabs/_advanced.php:11
|
700 |
+
msgid "Menu order"
|
701 |
+
msgstr "Orden del Menú"
|
702 |
+
|
703 |
+
#: views/admin/import/product/_tabs/_advanced.php:18
|
704 |
+
msgid "Enable reviews"
|
705 |
+
msgstr "Habilitar comentarios"
|
706 |
+
|
707 |
+
#: views/admin/import/product/_tabs/_advanced.php:22
|
708 |
+
#: views/admin/import/product/_tabs/_advanced.php:48
|
709 |
+
#: views/admin/import/product/_tabs/_general.php:112
|
710 |
+
#: views/admin/import/product/_tabs/_inventory.php:8
|
711 |
+
#: views/admin/import/product/_tabs/_inventory.php:99
|
712 |
+
#: views/admin/import/product/_tabs/_variations.php:155
|
713 |
+
#: views/admin/import/product/_tabs/_variations.php:516
|
714 |
+
#: views/admin/import/product/_tabs/_variations.php:683
|
715 |
+
#: views/admin/import/product/_tabs/_variations.php:745
|
716 |
+
msgid "Yes"
|
717 |
+
msgstr "Si"
|
718 |
+
|
719 |
+
#: views/admin/import/product/_tabs/_advanced.php:26
|
720 |
+
#: views/admin/import/product/_tabs/_advanced.php:52
|
721 |
+
#: views/admin/import/product/_tabs/_general.php:116
|
722 |
+
#: views/admin/import/product/_tabs/_inventory.php:12
|
723 |
+
#: views/admin/import/product/_tabs/_inventory.php:103
|
724 |
+
#: views/admin/import/product/_tabs/_variations.php:159
|
725 |
+
#: views/admin/import/product/_tabs/_variations.php:520
|
726 |
+
#: views/admin/import/product/_tabs/_variations.php:687
|
727 |
+
#: views/admin/import/product/_tabs/_variations.php:749
|
728 |
+
msgid "No"
|
729 |
+
msgstr "No"
|
730 |
+
|
731 |
+
#: views/admin/import/product/_tabs/_advanced.php:30
|
732 |
+
#: views/admin/import/product/_tabs/_advanced.php:56
|
733 |
+
#: views/admin/import/product/_tabs/_advanced.php:90
|
734 |
+
#: views/admin/import/product/_tabs/_attributes.php:64
|
735 |
+
#: views/admin/import/product/_tabs/_attributes.php:86
|
736 |
+
#: views/admin/import/product/_tabs/_attributes.php:108
|
737 |
+
#: views/admin/import/product/_tabs/_attributes.php:130
|
738 |
+
#: views/admin/import/product/_tabs/_attributes.php:193
|
739 |
+
#: views/admin/import/product/_tabs/_attributes.php:215
|
740 |
+
#: views/admin/import/product/_tabs/_attributes.php:237
|
741 |
+
#: views/admin/import/product/_tabs/_attributes.php:259
|
742 |
+
#: views/admin/import/product/_tabs/_attributes.php:321
|
743 |
+
#: views/admin/import/product/_tabs/_attributes.php:343
|
744 |
+
#: views/admin/import/product/_tabs/_attributes.php:365
|
745 |
+
#: views/admin/import/product/_tabs/_attributes.php:387
|
746 |
+
#: views/admin/import/product/_tabs/_general.php:120
|
747 |
+
#: views/admin/import/product/_tabs/_general.php:143
|
748 |
+
#: views/admin/import/product/_tabs/_general.php:166
|
749 |
+
#: views/admin/import/product/_tabs/_inventory.php:16
|
750 |
+
#: views/admin/import/product/_tabs/_inventory.php:52
|
751 |
+
#: views/admin/import/product/_tabs/_inventory.php:82
|
752 |
+
#: views/admin/import/product/_tabs/_inventory.php:107
|
753 |
+
#: views/admin/import/product/_tabs/_variations.php:163
|
754 |
+
#: views/admin/import/product/_tabs/_variations.php:211
|
755 |
+
#: views/admin/import/product/_tabs/_variations.php:240
|
756 |
+
#: views/admin/import/product/_tabs/_variations.php:315
|
757 |
+
#: views/admin/import/product/_tabs/_variations.php:459
|
758 |
+
#: views/admin/import/product/_tabs/_variations.php:524
|
759 |
+
#: views/admin/import/product/_tabs/_variations.php:691
|
760 |
+
#: views/admin/import/product/_tabs/_variations.php:728
|
761 |
+
#: views/admin/import/product/_tabs/_variations.php:753
|
762 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:47
|
763 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:92
|
764 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:60
|
765 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:108
|
766 |
+
#: views/admin/import/shop_order/_tabs/_order_payment.php:19
|
767 |
+
#: views/admin/import/shop_order/order_details_section.php:23
|
768 |
+
#: views/admin/import/shop_order/order_notes_section.php:58
|
769 |
+
#: views/admin/import/shop_order/order_notes_section.php:123
|
770 |
+
msgid "Set with XPath"
|
771 |
+
msgstr "Con XPath"
|
772 |
+
|
773 |
+
#: views/admin/import/product/_tabs/_advanced.php:35
|
774 |
+
#: views/admin/import/product/_tabs/_advanced.php:61
|
775 |
+
#: views/admin/import/product/_tabs/_attributes.php:69
|
776 |
+
#: views/admin/import/product/_tabs/_attributes.php:91
|
777 |
+
#: views/admin/import/product/_tabs/_attributes.php:113
|
778 |
+
#: views/admin/import/product/_tabs/_attributes.php:135
|
779 |
+
#: views/admin/import/product/_tabs/_attributes.php:198
|
780 |
+
#: views/admin/import/product/_tabs/_attributes.php:220
|
781 |
+
#: views/admin/import/product/_tabs/_attributes.php:242
|
782 |
+
#: views/admin/import/product/_tabs/_attributes.php:264
|
783 |
+
#: views/admin/import/product/_tabs/_attributes.php:326
|
784 |
+
#: views/admin/import/product/_tabs/_attributes.php:348
|
785 |
+
#: views/admin/import/product/_tabs/_attributes.php:370
|
786 |
+
#: views/admin/import/product/_tabs/_attributes.php:392
|
787 |
+
#: views/admin/import/product/_tabs/_general.php:125
|
788 |
+
#: views/admin/import/product/_tabs/_general.php:148
|
789 |
+
#: views/admin/import/product/_tabs/_general.php:171
|
790 |
+
#: views/admin/import/product/_tabs/_inventory.php:21
|
791 |
+
#: views/admin/import/product/_tabs/_inventory.php:112
|
792 |
+
#: views/admin/import/product/_tabs/_variations.php:168
|
793 |
+
#: views/admin/import/product/_tabs/_variations.php:320
|
794 |
+
#: views/admin/import/product/_tabs/_variations.php:464
|
795 |
+
#: views/admin/import/product/_tabs/_variations.php:529
|
796 |
+
#: views/admin/import/product/_tabs/_variations.php:696
|
797 |
+
#: views/admin/import/product/_tabs/_variations.php:758
|
798 |
+
msgid "The value of presented XPath should be one of the following: ('yes', 'no')."
|
799 |
+
msgstr "El valor de XPath presentado debe ser uno de los siguientes: ('sí', 'no')."
|
800 |
+
|
801 |
+
#: views/admin/import/product/_tabs/_advanced.php:70
|
802 |
+
msgid "Catalog visibility"
|
803 |
+
msgstr "Visibilidad catálogo:"
|
804 |
+
|
805 |
+
#: views/admin/import/product/_tabs/_advanced.php:74
|
806 |
+
msgid "Catalog/search"
|
807 |
+
msgstr "Catálogo/buscar"
|
808 |
+
|
809 |
+
#: views/admin/import/product/_tabs/_advanced.php:78
|
810 |
+
msgid "Catalog"
|
811 |
+
msgstr "Catálogo"
|
812 |
+
|
813 |
+
#: views/admin/import/product/_tabs/_advanced.php:82
|
814 |
+
msgid "Search"
|
815 |
+
msgstr "Buscar"
|
816 |
+
|
817 |
+
#: views/admin/import/product/_tabs/_advanced.php:86
|
818 |
+
msgid "Hidden"
|
819 |
+
msgstr "Oculto"
|
820 |
+
|
821 |
+
#: views/admin/import/product/_tabs/_advanced.php:95
|
822 |
+
msgid "The value of presented XPath should be one of the following: ('visible', 'catalog', 'search', 'hidden')."
|
823 |
+
msgstr "El valor de XPath presentado debe ser uno de los siguientes: ('visible', 'catálogo', ' Buscar', 'oculto')."
|
824 |
+
|
825 |
+
#: views/admin/import/product/_tabs/_attributes.php:8
|
826 |
+
#: views/admin/import/product/_tabs/_variations.php:547
|
827 |
+
msgid "Values"
|
828 |
+
msgstr "Lista de valores y etiquetas de"
|
829 |
+
|
830 |
+
#: views/admin/import/product/_tabs/_attributes.php:9
|
831 |
+
msgid "Separate mutiple values with a |"
|
832 |
+
msgstr "Separar valores de mutiple con un |"
|
833 |
+
|
834 |
+
#: views/admin/import/product/_tabs/_attributes.php:26
|
835 |
+
#: views/admin/import/product/_tabs/_attributes.php:158
|
836 |
+
#: views/admin/import/product/_tabs/_attributes.php:286
|
837 |
+
#: views/admin/import/product/index.php:65
|
838 |
+
msgid "Advanced"
|
839 |
+
msgstr "Avanzado"
|
840 |
+
|
841 |
+
#: views/admin/import/product/_tabs/_attributes.php:32
|
842 |
+
#: views/admin/import/product/_tabs/_attributes.php:56
|
843 |
+
#: views/admin/import/product/_tabs/_attributes.php:164
|
844 |
+
#: views/admin/import/product/_tabs/_attributes.php:185
|
845 |
+
#: views/admin/import/product/_tabs/_attributes.php:292
|
846 |
+
#: views/admin/import/product/_tabs/_attributes.php:313
|
847 |
+
#: views/admin/import/product/_tabs/_variations.php:565
|
848 |
+
#: views/admin/import/product/_tabs/_variations.php:599
|
849 |
+
#: views/admin/import/product/_tabs/_variations.php:629
|
850 |
+
msgid "In Variations"
|
851 |
+
msgstr "Variaciones"
|
852 |
+
|
853 |
+
#: views/admin/import/product/_tabs/_attributes.php:37
|
854 |
+
#: views/admin/import/product/_tabs/_attributes.php:78
|
855 |
+
#: views/admin/import/product/_tabs/_attributes.php:168
|
856 |
+
#: views/admin/import/product/_tabs/_attributes.php:207
|
857 |
+
#: views/admin/import/product/_tabs/_attributes.php:296
|
858 |
+
#: views/admin/import/product/_tabs/_attributes.php:335
|
859 |
+
#: views/admin/import/product/_tabs/_variations.php:570
|
860 |
+
#: views/admin/import/product/_tabs/_variations.php:603
|
861 |
+
#: views/admin/import/product/_tabs/_variations.php:633
|
862 |
+
msgid "Is Visible"
|
863 |
+
msgstr "visible"
|
864 |
+
|
865 |
+
#: views/admin/import/product/_tabs/_attributes.php:42
|
866 |
+
#: views/admin/import/product/_tabs/_attributes.php:100
|
867 |
+
#: views/admin/import/product/_tabs/_attributes.php:172
|
868 |
+
#: views/admin/import/product/_tabs/_attributes.php:229
|
869 |
+
#: views/admin/import/product/_tabs/_attributes.php:300
|
870 |
+
#: views/admin/import/product/_tabs/_attributes.php:357
|
871 |
+
msgid "Is Taxonomy"
|
872 |
+
msgstr "Es taxonomía"
|
873 |
+
|
874 |
+
#: views/admin/import/product/_tabs/_attributes.php:47
|
875 |
+
#: views/admin/import/product/_tabs/_attributes.php:122
|
876 |
+
#: views/admin/import/product/_tabs/_attributes.php:176
|
877 |
+
#: views/admin/import/product/_tabs/_attributes.php:251
|
878 |
+
#: views/admin/import/product/_tabs/_attributes.php:304
|
879 |
+
#: views/admin/import/product/_tabs/_attributes.php:379
|
880 |
+
#: views/admin/import/product/_tabs/_variations.php:580
|
881 |
+
#: views/admin/import/product/_tabs/_variations.php:611
|
882 |
+
#: views/admin/import/product/_tabs/_variations.php:641
|
883 |
+
msgid "Auto-Create Terms"
|
884 |
+
msgstr "Términos de crear automáticamente"
|
885 |
+
|
886 |
+
#: views/admin/import/product/_tabs/_attributes.php:60
|
887 |
+
#: views/admin/import/product/_tabs/_attributes.php:189
|
888 |
+
#: views/admin/import/product/_tabs/_attributes.php:317
|
889 |
+
msgid "Not In Variations"
|
890 |
+
msgstr "No en las variaciones"
|
891 |
+
|
892 |
+
#: views/admin/import/product/_tabs/_attributes.php:82
|
893 |
+
#: views/admin/import/product/_tabs/_attributes.php:211
|
894 |
+
#: views/admin/import/product/_tabs/_attributes.php:339
|
895 |
+
msgid "Not Visible"
|
896 |
+
msgstr "visible"
|
897 |
+
|
898 |
+
#: views/admin/import/product/_tabs/_attributes.php:104
|
899 |
+
#: views/admin/import/product/_tabs/_attributes.php:233
|
900 |
+
#: views/admin/import/product/_tabs/_attributes.php:361
|
901 |
+
msgid "Not Taxonomy"
|
902 |
+
msgstr "No taxonomía"
|
903 |
+
|
904 |
+
#: views/admin/import/product/_tabs/_attributes.php:126
|
905 |
+
#: views/admin/import/product/_tabs/_attributes.php:255
|
906 |
+
#: views/admin/import/product/_tabs/_attributes.php:383
|
907 |
+
msgid "Do Not Create Terms"
|
908 |
+
msgstr "No se crean condiciones"
|
909 |
+
|
910 |
+
#: views/admin/import/product/_tabs/_attributes.php:405
|
911 |
+
#: views/admin/import/product/_tabs/_variations.php:648
|
912 |
+
msgid "add"
|
913 |
+
msgstr "Añadir"
|
914 |
+
|
915 |
+
#: views/admin/import/product/_tabs/_attributes.php:405
|
916 |
+
#: views/admin/import/product/_tabs/_variations.php:648
|
917 |
+
msgid "Add more"
|
918 |
+
msgstr "Agregar más"
|
919 |
+
|
920 |
+
#: views/admin/import/product/_tabs/_attributes.php:414
|
921 |
+
msgid "Link all variations"
|
922 |
+
msgstr "Vincular todas las variaciones"
|
923 |
+
|
924 |
+
#: views/admin/import/product/_tabs/_attributes.php:415
|
925 |
+
msgid "This option will create all possible variations for the presented attributes. Works just like the Link All Variations option inside WooCommerce."
|
926 |
+
msgstr "Esta opción creará todas las variaciones posibles de los atributos presentados. Funciona igual que la opción de enlace todas las variaciones dentro de WooCommerce."
|
927 |
+
|
928 |
+
#: views/admin/import/product/_tabs/_general.php:4
|
929 |
+
#: views/admin/import/product/_tabs/_variations.php:119
|
930 |
+
msgid "SKU"
|
931 |
+
msgstr "SKU"
|
932 |
+
|
933 |
+
#: views/admin/import/product/_tabs/_general.php:10
|
934 |
+
msgid "Product URL"
|
935 |
+
msgstr "URL del producto"
|
936 |
+
|
937 |
+
#: views/admin/import/product/_tabs/_general.php:12
|
938 |
+
msgid "The external/affiliate link URL to the product."
|
939 |
+
msgstr "La URL del enlace externo/afiliado al producto."
|
940 |
+
|
941 |
+
#: views/admin/import/product/_tabs/_general.php:15
|
942 |
+
msgid "Button text"
|
943 |
+
msgstr "Texto del botón"
|
944 |
+
|
945 |
+
#: views/admin/import/product/_tabs/_general.php:17
|
946 |
+
msgid "This text will be shown on the button linking to the external product."
|
947 |
+
msgstr "Este texto se muestra en el botón que une al producto externo."
|
948 |
+
|
949 |
+
#: views/admin/import/product/_tabs/_general.php:23
|
950 |
+
#: views/admin/import/product/_tabs/_general.php:46
|
951 |
+
msgid "Regular Price (%s)"
|
952 |
+
msgstr ""
|
953 |
+
|
954 |
+
#: views/admin/import/product/_tabs/_general.php:24
|
955 |
+
msgid "required"
|
956 |
+
msgstr "Requerido"
|
957 |
+
|
958 |
+
#: views/admin/import/product/_tabs/_general.php:27
|
959 |
+
#: views/admin/import/product/_tabs/_general.php:58
|
960 |
+
msgid "Sale Price (%s)"
|
961 |
+
msgstr ""
|
962 |
+
|
963 |
+
#: views/admin/import/product/_tabs/_general.php:28
|
964 |
+
#: views/admin/import/product/_tabs/_variations.php:263
|
965 |
+
msgid "schedule"
|
966 |
+
msgstr "Horario"
|
967 |
+
|
968 |
+
#: views/admin/import/product/_tabs/_general.php:33
|
969 |
+
msgid "Sale Price Dates"
|
970 |
+
msgstr "Fechas Precio de Venta"
|
971 |
+
|
972 |
+
#: views/admin/import/product/_tabs/_general.php:35
|
973 |
+
#: views/admin/import/product/_tabs/_variations.php:296
|
974 |
+
msgid "and"
|
975 |
+
msgstr "y"
|
976 |
+
|
977 |
+
#: views/admin/import/product/_tabs/_general.php:37
|
978 |
+
#: views/admin/import/product/_tabs/_variations.php:298
|
979 |
+
msgid "cancel"
|
980 |
+
msgstr "(Cancel)"
|
981 |
+
|
982 |
+
#: views/admin/import/product/_tabs/_general.php:43
|
983 |
+
msgid " Adjust Prices"
|
984 |
+
msgstr ""
|
985 |
+
|
986 |
+
#: views/admin/import/product/_tabs/_general.php:43
|
987 |
+
msgid "Mark prices up and down, convert prices to currencies."
|
988 |
+
msgstr ""
|
989 |
+
|
990 |
+
#: views/admin/import/product/_tabs/_general.php:52
|
991 |
+
#: views/admin/import/product/_tabs/_general.php:64
|
992 |
+
msgid "Leave blank or enter in 100% to keep the price as is. Enter in 110% to markup by 10%. Enter in 50% to cut prices in half."
|
993 |
+
msgstr "Deje en blanco o escriba en 100% para mantener el precio como es. Entrar en 110% para incrementa un 10%. Entrar en el 50% para reducir los precios a la mitad."
|
994 |
+
|
995 |
+
#: views/admin/import/product/_tabs/_general.php:53
|
996 |
+
#: views/admin/import/product/_tabs/_general.php:65
|
997 |
+
msgid "Enter a negative number to reduce prices."
|
998 |
+
msgstr "Introduzca un número negativo para reducir los precios."
|
999 |
+
|
1000 |
+
#: views/admin/import/product/_tabs/_general.php:75
|
1001 |
+
msgid "Remove currency symbols from price"
|
1002 |
+
msgstr "Quitar símbolos de moneda de precio"
|
1003 |
+
|
1004 |
+
#: views/admin/import/product/_tabs/_general.php:76
|
1005 |
+
msgid "Attempt to remove currency symbols from prices."
|
1006 |
+
msgstr ""
|
1007 |
+
|
1008 |
+
#: views/admin/import/product/_tabs/_general.php:82
|
1009 |
+
msgid "Convert decimal separator to a period"
|
1010 |
+
msgstr "Convertir el separador decimal a un período"
|
1011 |
+
|
1012 |
+
#: views/admin/import/product/_tabs/_general.php:83
|
1013 |
+
msgid "Prices must be imported using a period as the decimal separator. If you'd like to change the decimal separator you can do so by editing your WooCommerce settings."
|
1014 |
+
msgstr "Precios deben importarse utilizando un período como el separador de decimales. Si desea cambiar el separador decimal puede hacerlo editando la configuración WooCommerce."
|
1015 |
+
|
1016 |
+
#: views/admin/import/product/_tabs/_general.php:89
|
1017 |
+
msgid "Attempt to convert incorrectly formatted prices to WooCommerce format"
|
1018 |
+
msgstr "Intento convertir precios mal formateados a formato WooCommerce"
|
1019 |
+
|
1020 |
+
#: views/admin/import/product/_tabs/_general.php:90
|
1021 |
+
msgid "WP All Import will attempt to correct the formatting of prices presented incorrectly, but this doesn't always work. Try unchecking this option if your prices are not appearing correctly, or enter your prices in your import file using the same format you would when entering them in WooCommerce."
|
1022 |
+
msgstr "Toda la importación WP intentará corregir el formato de precios presentados incorrectamente, pero esto no siempre funciona. Trate de desactivar esta opción si los precios no aparecen correctamente, o entrar en sus precios en el archivo de importación utilizando el mismo formato que al entrar en WooCommerce."
|
1023 |
+
|
1024 |
+
#: views/admin/import/product/_tabs/_general.php:94
|
1025 |
msgid "Preview Prices"
|
1026 |
msgstr "Precios de escuchar"
|
1027 |
|
1028 |
+
#: views/admin/import/product/_tabs/_general.php:101
|
1029 |
+
#: views/admin/import/product/_tabs/_variations.php:139
|
1030 |
msgid "Variation Description"
|
1031 |
msgstr "Descripción de la variación"
|
1032 |
|
1033 |
+
#: views/admin/import/product/_tabs/_general.php:108
|
1034 |
+
#: views/admin/import/product/_tabs/_variations.php:510
|
1035 |
+
#: views/admin/import/product/_tabs/_variations.php:741
|
1036 |
msgid "Variation Enabled"
|
1037 |
msgstr "Variación permitida"
|
1038 |
|
1039 |
+
#: views/admin/import/product/_tabs/_general.php:108
|
1040 |
+
#: views/admin/import/product/_tabs/_variations.php:741
|
1041 |
+
msgid "This option is the same as the Enabled checkbox when editing an individual variation in WooCommerce."
|
1042 |
+
msgstr "Esta opción es igual a la casilla de verificación activada cuando se edita una variación individual en WooCommerce."
|
1043 |
+
|
1044 |
+
#: views/admin/import/product/_tabs/_general.php:135
|
1045 |
+
#: views/admin/import/product/_tabs/_variations.php:108
|
1046 |
+
#: views/admin/import/product/_tabs/_variations.php:307
|
1047 |
+
msgid "Virtual"
|
1048 |
+
msgstr "Virtual"
|
1049 |
|
1050 |
+
#: views/admin/import/product/_tabs/_general.php:139
|
1051 |
+
#: views/admin/import/product/_tabs/_variations.php:311
|
1052 |
msgid "Not Virtual"
|
1053 |
msgstr "Virtual"
|
1054 |
|
1055 |
+
#: views/admin/import/product/_tabs/_general.php:158
|
1056 |
+
#: views/admin/import/product/_tabs/_variations.php:112
|
1057 |
+
#: views/admin/import/product/_tabs/_variations.php:451
|
1058 |
+
msgid "Downloadable"
|
1059 |
+
msgstr "Descargable"
|
1060 |
+
|
1061 |
+
#: views/admin/import/product/_tabs/_general.php:162
|
1062 |
+
#: views/admin/import/product/_tabs/_variations.php:455
|
1063 |
msgid "Not Downloadable"
|
1064 |
msgstr "Descargable"
|
1065 |
|
1066 |
+
#: views/admin/import/product/_tabs/_general.php:179
|
1067 |
+
#: views/admin/import/product/_tabs/_variations.php:477
|
1068 |
msgid "File paths"
|
1069 |
msgstr "Rutas de archivo"
|
1070 |
|
1071 |
+
#: views/admin/import/product/_tabs/_general.php:182
|
1072 |
+
msgid "File paths/URLs, comma separated. The delimiter is used when an XML element contains multiple URLs/paths - i.e. <code>http://files.com/1.doc, http://files.com/2.doc</code>."
|
1073 |
+
msgstr "Caminos de archivo/URL, separados por comas. El delimitador se utiliza cuando un elemento XML contiene varias direcciones URL/rutas - es decir, <code>http://files.com/1.doc, http://files.com/2.doc</code> ."
|
|
|
|
|
|
|
|
|
|
|
|
|
1074 |
|
1075 |
+
#: views/admin/import/product/_tabs/_general.php:185
|
1076 |
+
#: views/admin/import/product/_tabs/_variations.php:483
|
1077 |
msgid "File names"
|
1078 |
msgstr "Nombres de archivo"
|
1079 |
|
1080 |
+
#: views/admin/import/product/_tabs/_general.php:188
|
1081 |
+
#: views/admin/import/product/_tabs/_variations.php:486
|
1082 |
+
msgid "File names, comma separated. The delimiter is used when an XML element contains multiple names - i.e. <code>1.doc, 2.doc</code>."
|
1083 |
+
msgstr "Nombres de archivo, separados por comas. El delimitador se utiliza cuando un elemento XML contiene varios nombres - es decir, <code>1.doc, 2.doc</code> ."
|
|
|
|
|
|
|
|
|
1084 |
|
1085 |
+
#: views/admin/import/product/_tabs/_general.php:191
|
1086 |
+
#: views/admin/import/product/_tabs/_variations.php:489
|
1087 |
msgid "Download Limit"
|
1088 |
msgstr "Descargar Límite"
|
1089 |
|
1090 |
+
#: views/admin/import/product/_tabs/_general.php:193
|
1091 |
msgid "Leave blank for unlimited re-downloads."
|
1092 |
msgstr "Dejar en blanco para un número ilimitado de re-descargas."
|
1093 |
|
1094 |
+
#: views/admin/import/product/_tabs/_general.php:196
|
1095 |
+
#: views/admin/import/product/_tabs/_variations.php:498
|
1096 |
msgid "Download Expiry"
|
1097 |
msgstr "Descarga Expiración"
|
1098 |
|
1099 |
+
#: views/admin/import/product/_tabs/_general.php:198
|
1100 |
msgid "Enter the number of days before a download link expires, or leave blank."
|
1101 |
+
msgstr "Introduce el número de días antes de que expire un enlace de descarga, o dejar en blanco."
|
|
|
|
|
1102 |
|
1103 |
+
#: views/admin/import/product/_tabs/_general.php:201
|
1104 |
msgid "Download Type"
|
1105 |
msgstr "Tipo de descarga"
|
1106 |
|
1107 |
+
#: views/admin/import/product/_tabs/_general.php:203
|
1108 |
+
msgid "The value of presented XPath should be one of the following: ('application', 'music')."
|
1109 |
+
msgstr "El valor de XPath presentado debe ser uno de los siguientes: ('aplicación', 'música')."
|
|
|
|
|
|
|
|
|
1110 |
|
1111 |
+
#: views/admin/import/product/_tabs/_general.php:211
|
1112 |
msgid "Tax Status"
|
1113 |
msgstr "Situación Fiscal"
|
1114 |
|
1115 |
+
#: views/admin/import/product/_tabs/_general.php:216
|
1116 |
msgid "Taxable"
|
1117 |
msgstr "Imponible"
|
1118 |
|
1119 |
+
#: views/admin/import/product/_tabs/_general.php:217
|
1120 |
msgid "Shipping only"
|
1121 |
msgstr "Solamente Envío"
|
1122 |
|
1123 |
+
#: views/admin/import/product/_tabs/_general.php:218
|
1124 |
msgid "None"
|
1125 |
msgstr "Ninguno"
|
1126 |
|
1127 |
+
#: views/admin/import/product/_tabs/_general.php:226
|
1128 |
msgid "Set tax status with XPath"
|
1129 |
msgstr "Estado de impuestos establecida con XPath"
|
1130 |
|
1131 |
+
#: views/admin/import/product/_tabs/_general.php:231
|
1132 |
+
msgid "Value should be the slug for the tax status - 'taxable', 'shipping', and 'none' are the default slugs."
|
1133 |
+
msgstr "Valor debe ser el slug para la clase de envío - 'imponible', 'envío' y 'ninguno' son los slugs de forma predeterminada."
|
|
|
|
|
|
|
|
|
1134 |
|
1135 |
+
#: views/admin/import/product/_tabs/_general.php:241
|
1136 |
+
#: views/admin/import/product/_tabs/_variations.php:406
|
1137 |
msgid "Tax Class"
|
1138 |
msgstr "Clase de Impuesto"
|
1139 |
|
1140 |
+
#: views/admin/import/product/_tabs/_general.php:249
|
1141 |
+
#: views/admin/import/product/_tabs/_variations.php:413
|
1142 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:12
|
1143 |
msgid "Standard"
|
1144 |
msgstr "Estándar"
|
1145 |
|
1146 |
+
#: views/admin/import/product/_tabs/_general.php:265
|
1147 |
msgid "Set tax class with XPath"
|
1148 |
msgstr "Clase de impuestos establecida con XPath"
|
1149 |
|
1150 |
+
#: views/admin/import/product/_tabs/_general.php:271
|
1151 |
+
msgid "Value should be the slug for the tax class - 'reduced-rate' and 'zero-rate', are the default slugs."
|
1152 |
+
msgstr "Valor debe ser el slug para la clase de impuesto - 'tarifa reducida' y 'Eco-préstamo', es las babosas de forma predeterminada."
|
|
|
|
|
|
|
|
|
1153 |
|
1154 |
+
#: views/admin/import/product/_tabs/_inventory.php:4
|
1155 |
+
#: views/admin/import/product/_tabs/_variations.php:151
|
1156 |
+
#: views/admin/import/product/_tabs/_variations.php:679
|
1157 |
msgid "Manage stock?"
|
1158 |
msgstr "Manejo de valores?"
|
1159 |
|
1160 |
+
#: views/admin/import/product/_tabs/_inventory.php:29
|
1161 |
+
#: views/admin/import/product/_tabs/_variations.php:181
|
1162 |
+
#: views/admin/import/product/_tabs/_variations.php:704
|
1163 |
msgid "Stock Qty"
|
1164 |
msgstr "Disponible Cantidad"
|
1165 |
|
1166 |
+
#: views/admin/import/product/_tabs/_inventory.php:35
|
1167 |
+
#: views/admin/import/product/_tabs/_variations.php:194
|
1168 |
+
#: views/admin/import/product/_tabs/_variations.php:711
|
1169 |
msgid "Stock status"
|
1170 |
msgstr "el estado de la"
|
1171 |
|
1172 |
+
#: views/admin/import/product/_tabs/_inventory.php:39
|
1173 |
+
#: views/admin/import/product/_tabs/_variations.php:198
|
1174 |
+
#: views/admin/import/product/_tabs/_variations.php:715
|
1175 |
msgid "In stock"
|
1176 |
msgstr "En stock"
|
1177 |
|
1178 |
+
#: views/admin/import/product/_tabs/_inventory.php:43
|
1179 |
+
#: views/admin/import/product/_tabs/_variations.php:202
|
1180 |
+
#: views/admin/import/product/_tabs/_variations.php:719
|
1181 |
msgid "Out of stock"
|
1182 |
msgstr "Agotado"
|
1183 |
|
1184 |
+
#: views/admin/import/product/_tabs/_inventory.php:47
|
1185 |
+
#: views/admin/import/product/_tabs/_variations.php:206
|
1186 |
+
#: views/admin/import/product/_tabs/_variations.php:723
|
1187 |
msgid "Set automatically"
|
1188 |
msgstr "Automáticamente"
|
1189 |
|
1190 |
+
#: views/admin/import/product/_tabs/_inventory.php:48
|
1191 |
+
#: views/admin/import/product/_tabs/_variations.php:724
|
1192 |
+
msgid "Set the stock status to In Stock for positive Stock Qty values, and Out Of Stock if Stock Qty is 0 or blank."
|
1193 |
+
msgstr "Establecer el estado del stock en stock para valores positivos de la cantidad de Stock y de Stock si cantidad de Stock es 0 o en blanco."
|
|
|
|
|
|
|
|
|
1194 |
|
1195 |
+
#: views/admin/import/product/_tabs/_inventory.php:57
|
1196 |
+
#: views/admin/import/product/_tabs/_variations.php:216
|
1197 |
+
#: views/admin/import/product/_tabs/_variations.php:733
|
1198 |
+
msgid "The value of presented XPath should be one of the following: ('instock', 'outofstock')."
|
1199 |
+
msgstr "El valor de XPath presentado debe ser uno de los siguientes: ('instock', ' outofstock')."
|
|
|
|
|
|
|
|
|
1200 |
|
1201 |
+
#: views/admin/import/product/_tabs/_inventory.php:66
|
1202 |
+
#: views/admin/import/product/_tabs/_variations.php:224
|
1203 |
msgid "Allow Backorders?"
|
1204 |
msgstr "Permitir pedidos pendientes?"
|
1205 |
|
1206 |
+
#: views/admin/import/product/_tabs/_inventory.php:70
|
1207 |
+
#: views/admin/import/product/_tabs/_variations.php:228
|
1208 |
msgid "Do not allow"
|
1209 |
msgstr "No permitir"
|
1210 |
|
1211 |
+
#: views/admin/import/product/_tabs/_inventory.php:74
|
1212 |
+
#: views/admin/import/product/_tabs/_variations.php:232
|
1213 |
msgid "Allow, but notify customer"
|
1214 |
msgstr "Permitir, pero notificará al cliente"
|
1215 |
|
1216 |
+
#: views/admin/import/product/_tabs/_inventory.php:78
|
1217 |
+
#: views/admin/import/product/_tabs/_variations.php:236
|
1218 |
msgid "Allow"
|
1219 |
msgstr "Permitir"
|
1220 |
|
1221 |
+
#: views/admin/import/product/_tabs/_inventory.php:87
|
1222 |
+
#: views/admin/import/product/_tabs/_variations.php:245
|
1223 |
+
msgid "The value of presented XPath should be one of the following: ('no', 'notify', 'yes')."
|
1224 |
+
msgstr "El valor de XPath presentado debe ser uno de los siguientes: ('no', 'notificación', 'sí')."
|
|
|
|
|
|
|
1225 |
|
1226 |
+
#: views/admin/import/product/_tabs/_inventory.php:95
|
1227 |
msgid "Sold Individually?"
|
1228 |
msgstr "Vendido Individualmente?"
|
1229 |
|
1230 |
+
#: views/admin/import/product/_tabs/_linked_product.php:4
|
1231 |
msgid "Up-Sells"
|
1232 |
msgstr "Up-Ventas"
|
1233 |
|
1234 |
+
#: views/admin/import/product/_tabs/_linked_product.php:6
|
1235 |
+
#: views/admin/import/product/_tabs/_linked_product.php:11
|
1236 |
+
msgid "Products can be matched by SKU, ID, or Title, and must be comma separated."
|
1237 |
+
msgstr ""
|
1238 |
+
|
1239 |
+
#: views/admin/import/product/_tabs/_linked_product.php:9
|
1240 |
msgid "Cross-Sells"
|
1241 |
msgstr "Cruz-Ventas"
|
1242 |
|
1243 |
+
#: views/admin/import/product/_tabs/_linked_product.php:17
|
1244 |
msgid "Choose a grouped product…"
|
1245 |
msgstr "Elija un producto agrupado…"
|
1246 |
|
1247 |
+
#: views/admin/import/product/_tabs/_linked_product.php:47
|
1248 |
msgid "Grouping"
|
1249 |
msgstr "Agrupamiento"
|
1250 |
|
1251 |
+
#: views/admin/import/product/_tabs/_linked_product.php:60
|
1252 |
msgid "Set this option to make this product part of a grouped product."
|
1253 |
+
msgstr "Establezca esta opción para hacer que esta parte del producto de un producto agrupado."
|
|
|
|
|
1254 |
|
1255 |
+
#: views/admin/import/product/_tabs/_linked_product.php:67
|
1256 |
msgid "Manual Grouped Product Matching"
|
1257 |
msgstr "Manual de agrupa productos coincidentes"
|
1258 |
|
1259 |
+
#: views/admin/import/product/_tabs/_linked_product.php:68
|
1260 |
+
msgid "Product will be assigned as the child of an already created product matching the specified criteria."
|
1261 |
+
msgstr "Producto se le asignará como el hijo de un producto ya creado, con el criterio especificado."
|
|
|
|
|
|
|
|
|
1262 |
|
1263 |
+
#: views/admin/import/product/_tabs/_linked_product.php:75
|
1264 |
msgid "Match by Post Title"
|
1265 |
msgstr "Partido por el título del Post"
|
1266 |
|
1267 |
+
#: views/admin/import/product/_tabs/_linked_product.php:86
|
1268 |
msgid "Match by Custom Field"
|
1269 |
msgstr "Coteje el campo personalizado"
|
1270 |
|
1271 |
+
#: views/admin/import/product/_tabs/_options.php:4
|
|
|
|
|
|
|
|
|
1272 |
msgid "Import options"
|
1273 |
msgstr "Opciones de Importación"
|
1274 |
|
1275 |
+
#: views/admin/import/product/_tabs/_options.php:10
|
1276 |
msgid "Set out of stock status for missing records"
|
1277 |
msgstr "Definir estado fuera de stock a los records faltantes"
|
1278 |
|
1279 |
+
#: views/admin/import/product/_tabs/_options.php:11
|
1280 |
+
msgid "Option to set the stock status to out of stock instead of deleting the product entirely. This option doesn't work when 'Delete missing records' option is enabled."
|
1281 |
+
msgstr "Opción para configurar el estado del stock de fuera de stock en vez de eliminar completamente el producto. Esta opción no funciona cuando está habilitada la opción 'Eliminar registros que falta'."
|
|
|
|
|
|
|
|
|
|
|
|
|
1282 |
|
1283 |
+
#: views/admin/import/product/_tabs/_options.php:17
|
1284 |
msgid "Disable auto SKU generation"
|
1285 |
msgstr "Desactivar auto generación de SKU"
|
1286 |
|
1287 |
+
#: views/admin/import/product/_tabs/_options.php:18
|
1288 |
+
msgid "Plugin will NOT automaticaly generate the SKU for each product based on md5 algorithm, if SKU option is empty."
|
1289 |
+
msgstr "El plugin no generá automaticamente la SKU para cada producto basado en el algoritmo md5, si opción SKU está vacía."
|
|
|
|
|
|
|
|
|
1290 |
|
1291 |
+
#: views/admin/import/product/_tabs/_options.php:23
|
1292 |
msgid "Don't check for duplicate SKUs"
|
1293 |
msgstr "No busque duplicados SKU"
|
1294 |
|
1295 |
+
#: views/admin/import/product/_tabs/_options.php:24
|
1296 |
+
msgid "Each product should have a unique SKU. If this box is checked, WP All Import won't check for duplicate SKUs, which speeds up the import process. Make sure the SKU for each of your products is unique. If this box is unchecked, WP All Import will import products with duplicate SKUs with a blank SKU."
|
1297 |
+
msgstr "Cada producto debe tener un único SKU. Si esta casilla está marcada, importar todos de WP no busque duplicados SKU, que acelera el proceso de importación. Asegúrese de que el SKU para cada uno de sus productos es único. Si esta casilla está marcada, WP todos importación importará productos con SKU duplicados con un SKU en blanco."
|
1298 |
+
|
1299 |
+
#: views/admin/import/product/_tabs/_shipping.php:5
|
1300 |
+
msgid "Weight (%s)"
|
1301 |
+
msgstr ""
|
1302 |
+
|
1303 |
+
#: views/admin/import/product/_tabs/_shipping.php:9
|
1304 |
+
msgid "Dimensions (%s)"
|
1305 |
+
msgstr ""
|
1306 |
+
|
1307 |
+
#: views/admin/import/product/_tabs/_shipping.php:10
|
1308 |
+
msgid "Length"
|
1309 |
+
msgstr ""
|
1310 |
+
|
1311 |
+
#: views/admin/import/product/_tabs/_shipping.php:11
|
1312 |
+
msgid "Width"
|
1313 |
+
msgstr ""
|
1314 |
+
|
1315 |
+
#: views/admin/import/product/_tabs/_shipping.php:12
|
1316 |
+
msgid "Height"
|
1317 |
+
msgstr ""
|
1318 |
+
|
1319 |
+
#: views/admin/import/product/_tabs/_shipping.php:20
|
1320 |
+
#: views/admin/import/product/_tabs/_variations.php:360
|
1321 |
msgid "Shipping Class"
|
1322 |
msgstr "Clase de envío"
|
1323 |
|
1324 |
+
#: views/admin/import/product/_tabs/_shipping.php:29
|
1325 |
+
#: views/admin/import/product/_tabs/_variations.php:371
|
1326 |
msgid "No shipping class"
|
1327 |
msgstr "Ninguna clase de envío"
|
1328 |
|
1329 |
+
#: views/admin/import/product/_tabs/_shipping.php:44
|
1330 |
+
#: views/admin/import/product/_tabs/_variations.php:386
|
1331 |
msgid "Set product shipping class with XPath"
|
1332 |
msgstr "Definir clase de envio de producto con XPath"
|
1333 |
|
1334 |
+
#: views/admin/import/product/_tabs/_shipping.php:49
|
1335 |
+
msgid "Value should be the name, ID, or slug for the shipping class. Default slugs are 'taxable', 'shipping' and 'none'."
|
|
|
|
|
1336 |
msgstr ""
|
|
|
|
|
1337 |
|
1338 |
+
#: views/admin/import/product/_tabs/_variations.php:7
|
1339 |
+
msgid "All my variable products have SKUs or some other unique identifier. Each variation is linked to its parent with its parent's SKU or other unique identifier."
|
1340 |
+
msgstr "Todos mis productos variable tienen SKU o algún otro identificador único. Cada variación está ligada a su padre con SKU su padre u otro identificador único."
|
|
|
|
|
|
|
|
|
|
|
|
|
1341 |
|
1342 |
+
#: views/admin/import/product/_tabs/_variations.php:11
|
1343 |
msgid "SKU element for parent"
|
1344 |
msgstr "Elemento SKU para padres"
|
1345 |
|
1346 |
+
#: views/admin/import/product/_tabs/_variations.php:13
|
1347 |
msgid "SKU column in the below example."
|
1348 |
msgstr "Columna SKU en el siguiente ejemplo."
|
1349 |
|
1350 |
+
#: views/admin/import/product/_tabs/_variations.php:16
|
1351 |
msgid "Parent SKU element for variation"
|
1352 |
msgstr "Elemento SKU primario para la variación"
|
1353 |
|
1354 |
+
#: views/admin/import/product/_tabs/_variations.php:18
|
1355 |
msgid "Parent SKU column in the below example."
|
1356 |
msgstr "Columna SKU de primaria en el siguiente ejemplo."
|
1357 |
|
1358 |
+
#: views/admin/import/product/_tabs/_variations.php:21
|
1359 |
+
#: views/admin/import/product/_tabs/_variations.php:41
|
1360 |
+
#: views/admin/import/product/_tabs/_variations.php:60
|
1361 |
+
#: views/admin/import/product/_tabs/_variations.php:78
|
1362 |
msgid "Example Data For Use With This Option"
|
1363 |
msgstr "Datos de ejemplo para utilizar con esta opción"
|
1364 |
|
1365 |
+
#: views/admin/import/product/_tabs/_variations.php:21
|
1366 |
+
#: views/admin/import/product/_tabs/_variations.php:41
|
1367 |
+
#: views/admin/import/product/_tabs/_variations.php:60
|
1368 |
+
#: views/admin/import/product/_tabs/_variations.php:78
|
1369 |
msgid "download"
|
1370 |
msgstr "No hay archivos para descargar!"
|
1371 |
|
1372 |
+
#: views/admin/import/product/_tabs/_variations.php:31
|
1373 |
+
msgid "All products with variations are grouped with a unique identifier that is the same for each variation and unique for each product."
|
1374 |
+
msgstr "Todos los productos con variaciones son agrupados con un identificador único que es el mismo para cada variación y únicos para cada producto."
|
|
|
|
|
|
|
|
|
1375 |
|
1376 |
+
#: views/admin/import/product/_tabs/_variations.php:38
|
|
|
|
|
|
|
|
|
1377 |
msgid "Group ID column in the below example."
|
1378 |
msgstr "Columna de ID de grupo en el siguiente ejemplo."
|
1379 |
|
1380 |
+
#: views/admin/import/product/_tabs/_variations.php:51
|
1381 |
+
msgid "All variations for a particular product have the same title as the parent product."
|
1382 |
+
msgstr "Todas las variaciones para un producto en particular tienen el mismo título que el producto de los padres."
|
|
|
|
|
|
|
|
|
1383 |
|
1384 |
+
#: views/admin/import/product/_tabs/_variations.php:56
|
1385 |
+
#: views/admin/import/product/_tabs/_variations.php:74
|
1386 |
msgid "Product Title"
|
1387 |
msgstr "Título del Producto"
|
1388 |
|
1389 |
+
#: views/admin/import/product/_tabs/_variations.php:70
|
1390 |
+
msgid "All variations for a particular product have the same title. There are no parent products."
|
1391 |
+
msgstr "Todas las variaciones para un producto en particular tienen el mismo título. No existen productos padre."
|
|
|
|
|
|
|
|
|
1392 |
|
1393 |
+
#: views/admin/import/product/_tabs/_variations.php:88
|
1394 |
msgid "I'm importing XML and my variations are child XML elements"
|
1395 |
msgstr "Yo soy importar XML y mis variaciones son elementos XML de niño"
|
1396 |
|
1397 |
+
#: views/admin/import/product/_tabs/_variations.php:95
|
1398 |
msgid "Video Example"
|
1399 |
msgstr "Video ejemplo"
|
1400 |
|
1401 |
+
#: views/admin/import/product/_tabs/_variations.php:98
|
1402 |
msgid "Variations XPath"
|
1403 |
msgstr "Variaciones XPath"
|
1404 |
|
1405 |
+
#: views/admin/import/product/_tabs/_variations.php:99
|
1406 |
msgid "Open XML Tree"
|
1407 |
msgstr "Árbol XML abierto"
|
1408 |
|
1409 |
+
#: views/admin/import/product/_tabs/_variations.php:124
|
1410 |
msgid "Add value to the parent SKU"
|
1411 |
msgstr "Agregar valor a los padres SKU"
|
1412 |
|
1413 |
+
#: views/admin/import/product/_tabs/_variations.php:125
|
1414 |
msgid "Enable this checkbox to combine SKU from parent and variation products."
|
1415 |
+
msgstr "Active esta casilla de verificación combinar SKU de productos padres y variación."
|
|
|
|
|
1416 |
|
1417 |
+
#: views/admin/import/product/_tabs/_variations.php:129
|
1418 |
msgid "Image"
|
1419 |
msgstr "Imagen"
|
1420 |
|
1421 |
+
#: views/admin/import/product/_tabs/_variations.php:134
|
1422 |
+
#: views/admin/import/product/_tabs/_variations.php:144
|
1423 |
+
#: views/admin/import/product/_tabs/_variations.php:172
|
1424 |
+
#: views/admin/import/product/_tabs/_variations.php:186
|
1425 |
+
#: views/admin/import/product/_tabs/_variations.php:258
|
1426 |
+
#: views/admin/import/product/_tabs/_variations.php:269
|
1427 |
+
#: views/admin/import/product/_tabs/_variations.php:279
|
1428 |
+
#: views/admin/import/product/_tabs/_variations.php:292
|
1429 |
+
#: views/admin/import/product/_tabs/_variations.php:324
|
1430 |
+
#: views/admin/import/product/_tabs/_variations.php:338
|
1431 |
+
#: views/admin/import/product/_tabs/_variations.php:346
|
1432 |
+
#: views/admin/import/product/_tabs/_variations.php:395
|
1433 |
+
#: views/admin/import/product/_tabs/_variations.php:439
|
1434 |
+
#: views/admin/import/product/_tabs/_variations.php:468
|
1435 |
+
#: views/admin/import/product/_tabs/_variations.php:494
|
1436 |
+
#: views/admin/import/product/_tabs/_variations.php:503
|
1437 |
msgid "XPath Is From Parent"
|
1438 |
msgstr "XPath es de los padres"
|
1439 |
|
1440 |
+
#: views/admin/import/product/_tabs/_variations.php:135
|
1441 |
+
msgid "Images are imported according to the options set in the Images section below. There you can import images to the parent products, and here you can import images to the product variations."
|
1442 |
+
msgstr ""
|
1443 |
+
|
1444 |
+
#: views/admin/import/product/_tabs/_variations.php:187
|
1445 |
msgid "Enable this checkbox to determine XPath from parent element."
|
1446 |
msgstr "Active esta casilla de verificación determinar XPath del elemento primario."
|
1447 |
|
1448 |
+
#: views/admin/import/product/_tabs/_variations.php:207
|
1449 |
+
msgid "Set the stock status to In Stock for positive or blank Stock Qty values, and Out Of Stock if Stock Qty is 0."
|
1450 |
+
msgstr "Establece el estado del stock en Stock para valores de cantidad de Stock positivos o en blanco y la de acción si cantidad de Stock es 0."
|
|
|
|
|
|
|
|
|
1451 |
|
1452 |
+
#: views/admin/import/product/_tabs/_variations.php:253
|
1453 |
msgid "Regular Price"
|
1454 |
msgstr "Precio Normal"
|
1455 |
|
1456 |
+
#: views/admin/import/product/_tabs/_variations.php:262
|
1457 |
msgid "Sale Price"
|
1458 |
msgstr "Precio De Venta"
|
1459 |
|
1460 |
+
#: views/admin/import/product/_tabs/_variations.php:274
|
1461 |
+
msgid "Wholesale Price ("
|
1462 |
+
msgstr ""
|
1463 |
+
|
1464 |
+
#: views/admin/import/product/_tabs/_variations.php:288
|
1465 |
msgid "Variable Sale Price Dates"
|
1466 |
msgstr "Precio de venta variable Data"
|
1467 |
|
1468 |
+
#: views/admin/import/product/_tabs/_variations.php:333
|
1469 |
msgid "Weight"
|
1470 |
msgstr "Peso"
|
1471 |
|
1472 |
+
#: views/admin/import/product/_tabs/_variations.php:342
|
1473 |
msgid "Dimensions (L×W×H)"
|
1474 |
msgstr "Dimensiones (L × W × H)"
|
1475 |
|
1476 |
+
#: views/admin/import/product/_tabs/_variations.php:391
|
1477 |
+
msgid "The value of presented XPath should be one of the following: ('taxable', 'shipping', 'none')."
|
1478 |
+
msgstr "El valor de XPath presentado debe ser uno de los siguientes: ('pasivo', 'Enviar', 'none')."
|
|
|
|
|
|
|
|
|
1479 |
|
1480 |
+
#: views/admin/import/product/_tabs/_variations.php:419
|
1481 |
msgid "Same as parent"
|
1482 |
msgstr "Igual que el padre"
|
1483 |
|
1484 |
+
#: views/admin/import/product/_tabs/_variations.php:430
|
1485 |
msgid "Set product tax class with XPath"
|
1486 |
msgstr "Definir clase de impuesto del producto con XPath"
|
1487 |
|
1488 |
+
#: views/admin/import/product/_tabs/_variations.php:435
|
1489 |
+
msgid "The value of presented XPath should be one of the following: ('reduced-rate', 'zero-rate')."
|
1490 |
+
msgstr "El valor de XPath presentado debe ser uno de los siguientes: ('tarifa reducida', ' Eco-préstamo')."
|
|
|
|
|
|
|
|
|
1491 |
|
1492 |
+
#: views/admin/import/product/_tabs/_variations.php:480
|
1493 |
+
msgid "File paths/URLs, comma separated. The delimiter option uses when xml element contains few paths/URLs (http://files.com/1.doc, http://files.com/2.doc)."
|
1494 |
+
msgstr "Caminos de archivo/URL, separados por comas. La opción de delimitador utiliza al elemento xml contiene pocos caminos/URLs (http://files.com/1.doc, http://files.com/2.doc)."
|
|
|
|
|
|
|
|
|
|
|
1495 |
|
1496 |
+
#: views/admin/import/product/_tabs/_variations.php:538
|
1497 |
msgid "Variation Attributes"
|
1498 |
msgstr "Variación de atributos"
|
1499 |
|
1500 |
+
#: views/admin/import/product/_tabs/_variations.php:575
|
1501 |
+
#: views/admin/import/product/_tabs/_variations.php:607
|
1502 |
+
#: views/admin/import/product/_tabs/_variations.php:637
|
1503 |
msgid "Taxonomy"
|
1504 |
msgstr "Taxonomía"
|
1505 |
|
1506 |
+
#: views/admin/import/product/_tabs/_variations.php:662
|
1507 |
msgid "No matching elements found for XPath expression specified"
|
1508 |
msgstr "No elementos coincidentes para la expresión XPath especificada"
|
1509 |
|
1510 |
+
#: views/admin/import/product/_tabs/_variations.php:770
|
1511 |
msgid "Set the default selection in the attributes dropdowns."
|
1512 |
msgstr "Establecer la selección por defecto en los menús desplegables de atributos."
|
1513 |
|
1514 |
+
#: views/admin/import/product/_tabs/_variations.php:771
|
1515 |
+
msgid "The attributes for the first variation will be automatically selected on the frontend."
|
1516 |
+
msgstr "Los atributos de la primera variación se seleccionará automáticamente en el frontend."
|
|
|
|
|
|
|
|
|
1517 |
|
1518 |
+
#: views/admin/import/product/_tabs/_variations.php:776
|
1519 |
msgid "Set first variation as the default selection."
|
1520 |
msgstr "Establecer la primera variación como la selección predeterminada."
|
1521 |
|
1522 |
+
#: views/admin/import/product/_tabs/_variations.php:780
|
1523 |
msgid "Set first in stock variation as the default selection."
|
1524 |
msgstr "Ajustar en variación de existencias como la selección predeterminada."
|
1525 |
|
1526 |
+
#: views/admin/import/product/_tabs/_variations.php:785
|
1527 |
msgid "Do not set default selections for the dropdowns."
|
1528 |
msgstr "No coloque predeterminadas para los menús desplegables."
|
1529 |
|
1530 |
+
#: views/admin/import/product/_tabs/_variations.php:791
|
1531 |
msgid "Create products with no variations as simple products."
|
1532 |
msgstr "Crear productos con sin variaciones como simples productos."
|
1533 |
|
1534 |
+
#: views/admin/import/product/_tabs/_variations.php:796
|
1535 |
msgid "Save variation image to the gallery."
|
1536 |
msgstr "Guardar imagen de variación a la galería."
|
1537 |
|
1538 |
+
#: views/admin/import/product/_tabs/_variations.php:801
|
1539 |
+
msgid "Set _stock value for parent product to the _stock value for the first variation."
|
1540 |
+
msgstr "Establezca el valor de _stock para producto de padres en el valor _stock para la primera variación."
|
1541 |
+
|
1542 |
+
#: views/admin/import/product/_tabs/_variations.php:802
|
1543 |
+
msgid "This option works when there are no parent products in your feed ( cases 2 and 4 on Variations tab)."
|
1544 |
+
msgstr "Esta opción funciona cuando no hay padre productos en su alimentación (casos 2 y 4 en la ficha de variaciones)."
|
1545 |
+
|
1546 |
+
#: views/admin/import/product/index.php:4
|
1547 |
+
msgid "WooCommerce Add-On"
|
1548 |
+
msgstr "POS-Solution®"
|
1549 |
+
|
1550 |
+
#: views/admin/import/product/index.php:22
|
1551 |
+
msgid "Simple product"
|
1552 |
+
msgstr "Producto simple"
|
1553 |
+
|
1554 |
+
#: views/admin/import/product/index.php:23
|
1555 |
+
msgid "Grouped product"
|
1556 |
+
msgstr "Producto agrupado"
|
1557 |
+
|
1558 |
+
#: views/admin/import/product/index.php:24
|
1559 |
+
msgid "External/Affiliate product"
|
1560 |
+
msgstr "Producto Externo/Afiliado"
|
1561 |
+
|
1562 |
+
#: views/admin/import/product/index.php:25
|
1563 |
+
msgid "Variable product"
|
1564 |
+
msgstr "Producto variable"
|
1565 |
+
|
1566 |
+
#: views/admin/import/product/index.php:39
|
1567 |
+
msgid "Set Product Type With XPath"
|
1568 |
+
msgstr "Definir tipo de producto con XPath"
|
1569 |
+
|
1570 |
+
#: views/admin/import/product/index.php:44
|
1571 |
+
msgid "The value of presented XPath should be one of the following: ('simple', 'grouped', 'external', 'variable')."
|
1572 |
+
msgstr "El valor de XPath presentado debe ser uno de los siguientes: ('simple', 'grupos', 'externa', ' variable')."
|
1573 |
+
|
1574 |
+
#: views/admin/import/product/index.php:55
|
1575 |
+
msgid "General"
|
1576 |
+
msgstr "Generales"
|
1577 |
+
|
1578 |
+
#: views/admin/import/product/index.php:57
|
1579 |
+
msgid "Inventory"
|
1580 |
+
msgstr "inventario"
|
1581 |
+
|
1582 |
+
#: views/admin/import/product/index.php:59
|
1583 |
+
#: views/admin/import/shop_order/order_bs_section.php:23
|
1584 |
+
#: views/admin/import/shop_order/order_items_section.php:31
|
1585 |
+
msgid "Shipping"
|
1586 |
+
msgstr "Envío"
|
1587 |
+
|
1588 |
+
#: views/admin/import/product/index.php:61
|
1589 |
+
msgid "Linked Products"
|
1590 |
+
msgstr "Productos vinculados"
|
1591 |
+
|
1592 |
+
#: views/admin/import/product/index.php:67
|
1593 |
+
msgid "Variations"
|
1594 |
+
msgstr "Variaciones"
|
1595 |
+
|
1596 |
+
#: views/admin/import/product/index.php:69
|
1597 |
+
msgid "Add-On Options"
|
1598 |
+
msgstr "Opciones de Add-On"
|
1599 |
+
|
1600 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:6
|
1601 |
+
msgid "Try to load data from existing customer"
|
1602 |
msgstr ""
|
|
|
|
|
1603 |
|
1604 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:7
|
1605 |
+
msgid "If no customer is found the order will be skipped."
|
1606 |
+
msgstr ""
|
1607 |
+
|
1608 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:14
|
1609 |
+
msgid "Match by:"
|
1610 |
+
msgstr ""
|
1611 |
+
|
1612 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:16
|
1613 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:28
|
1614 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:40
|
1615 |
+
#: views/admin/import/shop_order/order_notes_section.php:71
|
1616 |
+
#: views/admin/import/shop_order/order_notes_section.php:137
|
1617 |
+
msgid "Username"
|
1618 |
+
msgstr ""
|
1619 |
+
|
1620 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:17
|
1621 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:140
|
1622 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:237
|
1623 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:52
|
1624 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:90
|
1625 |
+
#: views/admin/import/shop_order/order_notes_section.php:77
|
1626 |
+
#: views/admin/import/shop_order/order_notes_section.php:143
|
1627 |
+
msgid "Email"
|
1628 |
+
msgstr ""
|
1629 |
+
|
1630 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:18
|
1631 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:64
|
1632 |
+
msgid "Custom Field"
|
1633 |
+
msgstr ""
|
1634 |
+
|
1635 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:19
|
1636 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:63
|
1637 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:83
|
1638 |
+
msgid "User ID"
|
1639 |
+
msgstr ""
|
1640 |
+
|
1641 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:38
|
1642 |
+
msgid "Email Address"
|
1643 |
+
msgstr ""
|
1644 |
+
|
1645 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:49
|
1646 |
+
msgid "Field Name"
|
1647 |
+
msgstr ""
|
1648 |
+
|
1649 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:52
|
1650 |
+
msgid "Field Value"
|
1651 |
+
msgstr ""
|
1652 |
+
|
1653 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:70
|
1654 |
+
msgid "If no match found, import as guest customer"
|
1655 |
+
msgstr ""
|
1656 |
+
|
1657 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:76
|
1658 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:173
|
1659 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:26
|
1660 |
+
msgid "First Name"
|
1661 |
+
msgstr ""
|
1662 |
+
|
1663 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:82
|
1664 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:179
|
1665 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:32
|
1666 |
+
msgid "Last Name"
|
1667 |
+
msgstr ""
|
1668 |
+
|
1669 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:90
|
1670 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:187
|
1671 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:40
|
1672 |
+
msgid "Company"
|
1673 |
+
msgstr ""
|
1674 |
+
|
1675 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:98
|
1676 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:195
|
1677 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:48
|
1678 |
+
msgid "Address 1"
|
1679 |
+
msgstr ""
|
1680 |
+
|
1681 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:104
|
1682 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:201
|
1683 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:54
|
1684 |
+
msgid "Address 2"
|
1685 |
+
msgstr ""
|
1686 |
+
|
1687 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:112
|
1688 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:209
|
1689 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:62
|
1690 |
+
msgid "City"
|
1691 |
+
msgstr ""
|
1692 |
+
|
1693 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:118
|
1694 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:215
|
1695 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:68
|
1696 |
+
msgid "Postcode"
|
1697 |
+
msgstr ""
|
1698 |
+
|
1699 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:126
|
1700 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:223
|
1701 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:76
|
1702 |
+
msgid "Country"
|
1703 |
+
msgstr ""
|
1704 |
+
|
1705 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:132
|
1706 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:229
|
1707 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:82
|
1708 |
+
msgid "State/Country"
|
1709 |
+
msgstr ""
|
1710 |
+
|
1711 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:146
|
1712 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:243
|
1713 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:96
|
1714 |
+
msgid "Phone"
|
1715 |
+
msgstr ""
|
1716 |
+
|
1717 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:155
|
1718 |
+
msgid "Orders without a match will be skipped"
|
1719 |
+
msgstr ""
|
1720 |
+
|
1721 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:165
|
1722 |
+
msgid "Import as guest customer"
|
1723 |
+
msgstr ""
|
1724 |
+
|
1725 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:6
|
1726 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:95
|
1727 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:6
|
1728 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:68
|
1729 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:6
|
1730 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:559
|
1731 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:6
|
1732 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:125
|
1733 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:6
|
1734 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:141
|
1735 |
+
#: views/admin/import/shop_order/order_notes_section.php:14
|
1736 |
+
#: views/admin/import/shop_order/order_notes_section.php:176
|
1737 |
+
msgid "Fixed Repeater Mode"
|
1738 |
+
msgstr ""
|
1739 |
+
|
1740 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:23
|
1741 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:54
|
1742 |
+
msgid "Coupon Code"
|
1743 |
+
msgstr ""
|
1744 |
+
|
1745 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:31
|
1746 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:62
|
1747 |
+
msgid "Discount Amount"
|
1748 |
+
msgstr ""
|
1749 |
+
|
1750 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:37
|
1751 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:68
|
1752 |
+
msgid "Discount Amount Tax"
|
1753 |
+
msgstr ""
|
1754 |
+
|
1755 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:80
|
1756 |
+
msgid "Add Another Coupon"
|
1757 |
+
msgstr ""
|
1758 |
+
|
1759 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:88
|
1760 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:61
|
1761 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:552
|
1762 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:118
|
1763 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:134
|
1764 |
+
#: views/admin/import/shop_order/order_notes_section.php:169
|
1765 |
+
msgid "Advanced Options"
|
1766 |
+
msgstr ""
|
1767 |
+
|
1768 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:98
|
1769 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:118
|
1770 |
+
msgid "Multiple coupons separated by"
|
1771 |
+
msgstr ""
|
1772 |
+
|
1773 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:106
|
1774 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:79
|
1775 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:569
|
1776 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:136
|
1777 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:152
|
1778 |
+
#: views/admin/import/shop_order/order_notes_section.php:187
|
1779 |
+
msgid "Variable Repeater Mode"
|
1780 |
+
msgstr ""
|
1781 |
+
|
1782 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:109
|
1783 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:82
|
1784 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:572
|
1785 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:139
|
1786 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:155
|
1787 |
+
#: views/admin/import/shop_order/order_notes_section.php:190
|
1788 |
+
msgid "For each"
|
1789 |
+
msgstr ""
|
1790 |
+
|
1791 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:111
|
1792 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:84
|
1793 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:574
|
1794 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:141
|
1795 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:157
|
1796 |
+
#: views/admin/import/shop_order/order_notes_section.php:192
|
1797 |
+
msgid "do..."
|
1798 |
+
msgstr ""
|
1799 |
+
|
1800 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:20
|
1801 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:37
|
1802 |
+
msgid "Fee Name"
|
1803 |
+
msgstr ""
|
1804 |
+
|
1805 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:26
|
1806 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:43
|
1807 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:29
|
1808 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:76
|
1809 |
+
msgid "Amount"
|
1810 |
+
msgstr ""
|
1811 |
+
|
1812 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:53
|
1813 |
+
msgid "Add Another Fee"
|
1814 |
+
msgstr ""
|
1815 |
+
|
1816 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:71
|
1817 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:91
|
1818 |
+
msgid "Multiple fees separated by"
|
1819 |
+
msgstr ""
|
1820 |
+
|
1821 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:11
|
1822 |
+
msgid "Get data from existing products"
|
1823 |
+
msgstr ""
|
1824 |
+
|
1825 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:12
|
1826 |
+
msgid "If no product is found the order will be skipped."
|
1827 |
+
msgstr ""
|
1828 |
+
|
1829 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:29
|
1830 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:157
|
1831 |
+
msgid "Product SKU"
|
1832 |
+
msgstr ""
|
1833 |
+
|
1834 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:33
|
1835 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:161
|
1836 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:312
|
1837 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:471
|
1838 |
+
msgid "Quantity"
|
1839 |
msgstr ""
|
1840 |
+
|
1841 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:39
|
1842 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:167
|
1843 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:318
|
1844 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:477
|
1845 |
+
#: views/admin/import/shop_order/order_items_section.php:35
|
1846 |
+
msgid "Taxes"
|
1847 |
+
msgstr ""
|
1848 |
+
|
1849 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:55
|
1850 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:99
|
1851 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:175
|
1852 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:335
|
1853 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:380
|
1854 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:485
|
1855 |
+
msgid "Tax Rate Code"
|
1856 |
+
msgstr ""
|
1857 |
+
|
1858 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:62
|
1859 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:106
|
1860 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:182
|
1861 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:342
|
1862 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:387
|
1863 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:492
|
1864 |
+
msgid "Calculate Tax Amount By:"
|
1865 |
+
msgstr ""
|
1866 |
+
|
1867 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:66
|
1868 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:110
|
1869 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:186
|
1870 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:346
|
1871 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:391
|
1872 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:496
|
1873 |
+
msgid "Percentage"
|
1874 |
+
msgstr ""
|
1875 |
+
|
1876 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:77
|
1877 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:121
|
1878 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:197
|
1879 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:357
|
1880 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:402
|
1881 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:507
|
1882 |
+
msgid "Tax amount per unit"
|
1883 |
+
msgstr ""
|
1884 |
+
|
1885 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:88
|
1886 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:132
|
1887 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:208
|
1888 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:368
|
1889 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:413
|
1890 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:518
|
1891 |
+
msgid "Look up tax rate code"
|
1892 |
+
msgstr ""
|
1893 |
+
|
1894 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:89
|
1895 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:133
|
1896 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:209
|
1897 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:369
|
1898 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:414
|
1899 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:519
|
1900 |
+
msgid "If rate code is not found, this tax amount will not be imported."
|
1901 |
+
msgstr ""
|
1902 |
+
|
1903 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:231
|
1904 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:541
|
1905 |
+
msgid "Add Product"
|
1906 |
+
msgstr ""
|
1907 |
+
|
1908 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:242
|
1909 |
+
msgid "Manually import product order data and do not try to match to existing products"
|
1910 |
+
msgstr ""
|
1911 |
+
|
1912 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:243
|
1913 |
+
msgid "The product in this order will not be linked to any existing products."
|
1914 |
+
msgstr ""
|
1915 |
+
|
1916 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:267
|
1917 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:439
|
1918 |
+
msgid "Product Name"
|
1919 |
+
msgstr ""
|
1920 |
+
|
1921 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:300
|
1922 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:459
|
1923 |
+
msgid "Add Product Meta"
|
1924 |
+
msgstr ""
|
1925 |
+
|
1926 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:300
|
1927 |
+
msgid "Add More Product Meta"
|
1928 |
+
msgstr ""
|
1929 |
+
|
1930 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:308
|
1931 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:467
|
1932 |
+
msgid "Price per Unit"
|
1933 |
+
msgstr ""
|
1934 |
+
|
1935 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:562
|
1936 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:581
|
1937 |
+
msgid "Multiple products separated by"
|
1938 |
+
msgstr ""
|
1939 |
+
|
1940 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:6
|
1941 |
+
msgid "Refund Amount"
|
1942 |
+
msgstr ""
|
1943 |
+
|
1944 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:12
|
1945 |
+
msgid "Reason"
|
1946 |
+
msgstr ""
|
1947 |
+
|
1948 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:20
|
1949 |
+
#: views/admin/import/shop_order/order_details_section.php:39
|
1950 |
+
#: views/admin/import/shop_order/order_notes_section.php:39
|
1951 |
+
#: views/admin/import/shop_order/order_notes_section.php:103
|
1952 |
+
msgid "Date"
|
1953 |
+
msgstr ""
|
1954 |
+
|
1955 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:26
|
1956 |
+
msgid "Refund Issued By"
|
1957 |
+
msgstr ""
|
1958 |
+
|
1959 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:30
|
1960 |
+
msgid "Load details from existing user"
|
1961 |
+
msgstr ""
|
1962 |
+
|
1963 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:31
|
1964 |
+
msgid "If no user is matched, refund issuer will be left blank."
|
1965 |
+
msgstr ""
|
1966 |
+
|
1967 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:36
|
1968 |
+
msgid "Match user by:"
|
1969 |
+
msgstr ""
|
1970 |
+
|
1971 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:98
|
1972 |
+
msgid "Leave refund issuer blank"
|
1973 |
+
msgstr ""
|
1974 |
+
|
1975 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:23
|
1976 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:70
|
1977 |
+
msgid "Shipping Name"
|
1978 |
+
msgstr ""
|
1979 |
+
|
1980 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:37
|
1981 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:84
|
1982 |
+
msgid "Shipping Method"
|
1983 |
+
msgstr ""
|
1984 |
+
|
1985 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:53
|
1986 |
+
msgid "Shipping method can be matched by Name or ID: %s. If shipping method is not found then no shipping information will be imported."
|
1987 |
+
msgstr ""
|
1988 |
+
|
1989 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:98
|
1990 |
+
msgid "Shipping method can be matched by Nmae or ID. If shipping method is not found then no shipping information will be imported."
|
1991 |
+
msgstr ""
|
1992 |
+
|
1993 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:110
|
1994 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:126
|
1995 |
+
msgid "Add More"
|
1996 |
+
msgstr ""
|
1997 |
+
|
1998 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:128
|
1999 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:148
|
2000 |
+
msgid "Multiple shipping costs separated by"
|
2001 |
+
msgstr ""
|
2002 |
+
|
2003 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:34
|
2004 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:83
|
2005 |
+
msgid "Tax Rate Amount"
|
2006 |
+
msgstr ""
|
2007 |
+
|
2008 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:40
|
2009 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:89
|
2010 |
+
msgid "Shipping Tax Amount"
|
2011 |
+
msgstr ""
|
2012 |
+
|
2013 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:48
|
2014 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:97
|
2015 |
+
msgid "Tax Rate"
|
2016 |
+
msgstr ""
|
2017 |
+
|
2018 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:66
|
2019 |
+
msgid "Tax rate method can be matched by ID: %s. If tax method is not found then no tax information will be imported."
|
2020 |
+
msgstr ""
|
2021 |
+
|
2022 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:100
|
2023 |
+
msgid "Select"
|
2024 |
+
msgstr ""
|
2025 |
+
|
2026 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:114
|
2027 |
+
msgid "Tax rate method can be matched by ID. If tax method is not found then no tax information will be imported."
|
2028 |
+
msgstr ""
|
2029 |
+
|
2030 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:144
|
2031 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:164
|
2032 |
+
msgid "Multiple taxes separated by"
|
2033 |
+
msgstr ""
|
2034 |
+
|
2035 |
+
#: views/admin/import/shop_order/_tabs/_order_payment.php:8
|
2036 |
+
msgid "Payment Method"
|
2037 |
+
msgstr ""
|
2038 |
+
|
2039 |
+
#: views/admin/import/shop_order/_tabs/_order_payment.php:25
|
2040 |
+
msgid "Payment method can be matched by title or slug: %s. If payment method is not found 'N/A' will be applied to order."
|
2041 |
+
msgstr ""
|
2042 |
+
|
2043 |
+
#: views/admin/import/shop_order/_tabs/_order_payment.php:36
|
2044 |
+
msgid "Transaction ID"
|
2045 |
+
msgstr ""
|
2046 |
+
|
2047 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:6
|
2048 |
+
msgid "Copy from billing"
|
2049 |
+
msgstr ""
|
2050 |
+
|
2051 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:13
|
2052 |
+
msgid "Import shipping address"
|
2053 |
+
msgstr ""
|
2054 |
+
|
2055 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:21
|
2056 |
+
msgid "If order has no shipping info, copy from billing"
|
2057 |
+
msgstr ""
|
2058 |
+
|
2059 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:109
|
2060 |
+
msgid "Customer Provided Note"
|
2061 |
+
msgstr ""
|
2062 |
+
|
2063 |
+
#: views/admin/import/shop_order/_tabs/_order_total.php:5
|
2064 |
+
msgid "Calculate order total automatically"
|
2065 |
+
msgstr ""
|
2066 |
+
|
2067 |
+
#: views/admin/import/shop_order/_tabs/_order_total.php:10
|
2068 |
+
msgid "Set order total manually"
|
2069 |
+
msgstr ""
|
2070 |
+
|
2071 |
+
#: views/admin/import/shop_order/order_bs_section.php:4
|
2072 |
+
msgid "Billing & Shipping Details"
|
2073 |
+
msgstr ""
|
2074 |
+
|
2075 |
+
#: views/admin/import/shop_order/order_bs_section.php:19
|
2076 |
+
msgid "Billing"
|
2077 |
+
msgstr ""
|
2078 |
+
|
2079 |
+
#: views/admin/import/shop_order/order_bs_section.php:27
|
2080 |
+
msgid "Payment"
|
2081 |
+
msgstr ""
|
2082 |
+
|
2083 |
+
#: views/admin/import/shop_order/order_details_section.php:4
|
2084 |
+
msgid "Order Details"
|
2085 |
+
msgstr ""
|
2086 |
+
|
2087 |
+
#: views/admin/import/shop_order/order_details_section.php:13
|
2088 |
+
msgid "Order Status"
|
2089 |
+
msgstr ""
|
2090 |
+
|
2091 |
+
#: views/admin/import/shop_order/order_details_section.php:29
|
2092 |
+
msgid "Order status can be matched by title or slug: %s. If order status is not found 'Pending Payment' will be applied to order."
|
2093 |
+
msgstr ""
|
2094 |
+
|
2095 |
+
#: views/admin/import/shop_order/order_details_section.php:39
|
2096 |
+
#: views/admin/import/shop_order/order_notes_section.php:39
|
2097 |
+
#: views/admin/import/shop_order/order_notes_section.php:103
|
2098 |
+
msgid "Use any format supported by the PHP <b>strtotime</b> function. That means pretty much any human-readable date will work."
|
2099 |
+
msgstr ""
|
2100 |
+
|
2101 |
+
#: views/admin/import/shop_order/order_items_section.php:4
|
2102 |
+
msgid "Order Items"
|
2103 |
+
msgstr ""
|
2104 |
+
|
2105 |
+
#: views/admin/import/shop_order/order_items_section.php:19
|
2106 |
+
msgid "Products"
|
2107 |
+
msgstr ""
|
2108 |
+
|
2109 |
+
#: views/admin/import/shop_order/order_items_section.php:23
|
2110 |
+
msgid "Fees"
|
2111 |
+
msgstr ""
|
2112 |
+
|
2113 |
+
#: views/admin/import/shop_order/order_items_section.php:27
|
2114 |
+
msgid "Coupons"
|
2115 |
+
msgstr ""
|
2116 |
+
|
2117 |
+
#: views/admin/import/shop_order/order_items_section.php:43
|
2118 |
+
msgid "Total"
|
2119 |
+
msgstr ""
|
2120 |
+
|
2121 |
+
#: views/admin/import/shop_order/order_notes_section.php:4
|
2122 |
+
msgid "Notes"
|
2123 |
+
msgstr ""
|
2124 |
+
|
2125 |
+
#: views/admin/import/shop_order/order_notes_section.php:47
|
2126 |
+
#: views/admin/import/shop_order/order_notes_section.php:111
|
2127 |
+
msgid "Visibility"
|
2128 |
+
msgstr ""
|
2129 |
+
|
2130 |
+
#: views/admin/import/shop_order/order_notes_section.php:50
|
2131 |
+
#: views/admin/import/shop_order/order_notes_section.php:115
|
2132 |
+
msgid "Private note"
|
2133 |
+
msgstr ""
|
2134 |
+
|
2135 |
+
#: views/admin/import/shop_order/order_notes_section.php:54
|
2136 |
+
#: views/admin/import/shop_order/order_notes_section.php:119
|
2137 |
+
msgid "Note to customer"
|
2138 |
+
msgstr ""
|
2139 |
+
|
2140 |
+
#: views/admin/import/shop_order/order_notes_section.php:64
|
2141 |
+
#: views/admin/import/shop_order/order_notes_section.php:129
|
2142 |
+
msgid "Use 'private' or 'customer'."
|
2143 |
+
msgstr ""
|
2144 |
+
|
2145 |
+
#: views/admin/import/shop_order/order_notes_section.php:156
|
2146 |
+
msgid "Add Another Note"
|
2147 |
+
msgstr ""
|
2148 |
+
|
2149 |
+
#: views/admin/import/shop_order/order_notes_section.php:179
|
2150 |
+
#: views/admin/import/shop_order/order_notes_section.php:199
|
2151 |
+
msgid "Multiple notes separated by"
|
2152 |
+
msgstr ""
|
2153 |
+
|
2154 |
+
#: wpai-woocommerce-add-on.php:35
|
2155 |
+
msgid "Please de-activate and remove the free version of the WooCommere add-on before activating the paid version."
|
2156 |
+
msgstr "Por favor, desactivar y quitar la versión libre del complemento de POS-Solution® antes de activar la versión de pago."
|
2157 |
+
|
2158 |
+
#. Plugin Name of the plugin/theme
|
2159 |
+
#:
|
2160 |
+
msgid "WP All Import - WooCommerce Add-On Pro"
|
2161 |
+
msgstr "Todo WP Import - WooCommerce complemento Pro"
|
2162 |
+
|
2163 |
+
#. Plugin URI of the plugin/theme
|
2164 |
+
#:
|
2165 |
+
msgid "http://www.wpallimport.com/"
|
2166 |
+
msgstr ""
|
2167 |
+
|
2168 |
+
#. Description of the plugin/theme
|
2169 |
+
#:
|
2170 |
+
msgid "Import to WooCommerce. Adds a section to WP All Import that looks just like WooCommerce. Requires WP All Import."
|
2171 |
+
msgstr "Importación a WooCommerce. Agrega una sección al WP toda la importación que se parece a WooCommerce. Requiere importar todo de PM."
|
2172 |
+
|
2173 |
+
#. Author of the plugin/theme
|
2174 |
+
#:
|
2175 |
+
msgid "Soflyy"
|
2176 |
+
msgstr "Soflyy"
|
2177 |
+
|
i18n/languages/wpai_woocommerce_addon_plugin-ja.mo
ADDED
Binary file
|
i18n/languages/wpai_woocommerce_addon_plugin-ja.po
ADDED
@@ -0,0 +1,2177 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"MIME-Version: 1.0\n"
|
4 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
5 |
+
"Content-Transfer-Encoding: 8bit\n"
|
6 |
+
"X-Generator: POEditor.com\n"
|
7 |
+
"Project-Id-Version: WooCommerce Add-On Pro\n"
|
8 |
+
"Language: ja\n"
|
9 |
+
|
10 |
+
#: actions/admin_notices.php:10
|
11 |
+
msgid "<b>%s Plugin</b>: WooCommerce must be installed."
|
12 |
+
msgstr "<b>%s プラグイン</b>: WooCommerce がインストールされている必要があります。"
|
13 |
+
|
14 |
+
#: actions/admin_notices.php:24
|
15 |
+
msgid "<b>%s Plugin</b>: WP All Import must be installed. Free edition of WP All Import at <a href=\"http://wordpress.org/plugins/wp-all-import/\" target=\"_blank\">http://wordpress.org/plugins/wp-all-import/</a> and the paid edition at <a href=\"http://www.wpallimport.com/\">http://www.wpallimport.com/</a>"
|
16 |
+
msgstr "<b>%s プラグイン</b>: WP すべてインポートする必要がありますインストールされています。<a href=\"http://wordpress.org/plugins/wp-all-import/\" target=\"_blank\">Http://wordpress.org/plugins/wp-all-import/</a>と<a href=\"http://www.wpallimport.com/\">http://www.wpallimport.com/</a>で有料版で WP すべてインポートの無料版"
|
17 |
+
|
18 |
+
#: actions/admin_notices.php:38
|
19 |
+
msgid "<b>%s Plugin</b>: Please update your WP All Import to the latest version"
|
20 |
+
msgstr "<b>%s Plugin</b>: WP All Import Userアドオンを最新バージョンに更新してください"
|
21 |
+
|
22 |
+
#: actions/admin_notices.php:51
|
23 |
+
msgid "<b>%s Plugin</b>: Please update your WooCommerce to the latest version"
|
24 |
+
msgstr "<b>%s のプラグイン</b>:最新バージョンにWooCommerceを更新してください"
|
25 |
+
|
26 |
+
#: actions/pmxi_reimport.php:29 views/admin/import/product/index.php:16
|
27 |
+
msgid "Product Type"
|
28 |
+
msgstr "商品タイプ"
|
29 |
+
|
30 |
+
#: actions/pmxi_reimport.php:35 views/admin/import/product/index.php:63
|
31 |
+
msgid "Attributes"
|
32 |
+
msgstr "属性"
|
33 |
+
|
34 |
+
#: actions/pmxi_reimport.php:39
|
35 |
+
msgid "Update all Attributes"
|
36 |
+
msgstr "すべての属性を更新します。"
|
37 |
+
|
38 |
+
#: actions/pmxi_reimport.php:43
|
39 |
+
msgid "Update only these Attributes, leave the rest alone"
|
40 |
+
msgstr "これらのタクソノミーのみを更新し、残りは単独で残す"
|
41 |
+
|
42 |
+
#: actions/pmxi_reimport.php:52
|
43 |
+
msgid "Leave these attributes alone, update all other Attributes"
|
44 |
+
msgstr "他のすべての属性を更新し、単独でこれらの属性を残します"
|
45 |
+
|
46 |
+
#: classes/updater.php:63
|
47 |
+
msgid "View WP All Import - WooCommerce Add-On Pro Changelog"
|
48 |
+
msgstr "WP All Import - WooCommerce アドオン プロ変更履歴を表示します。"
|
49 |
+
|
50 |
+
#: classes/updater.php:63
|
51 |
+
msgid "Changelog"
|
52 |
+
msgstr "変更履歴"
|
53 |
+
|
54 |
+
#: classes/updater.php:258
|
55 |
+
msgid "There is a new version of %1$s available. <a target=\"_blank\" class=\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
|
56 |
+
msgstr "%1$s の利用可能な新しいバージョンがあります。<a target=\"_blank\" class=\"thickbox\" href=\"%2$s\"> %3$s バージョンの詳細を表示</a>"
|
57 |
+
|
58 |
+
#: classes/updater.php:265
|
59 |
+
msgid "There is a new version of %1$s available. <a target=\"_blank\" class=\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s\">update now</a>."
|
60 |
+
msgstr "%1$s の利用可能な新しいバージョンがあります。<a target=\"_blank\" class=\"thickbox\" href=\"%2$s\">%3$s バージョンの詳細を表示</a> か <a href=\"%4$s\">今すぐ更新</a>"
|
61 |
+
|
62 |
+
#: classes/updater.php:448
|
63 |
+
msgid "You do not have permission to install plugin updates"
|
64 |
+
msgstr "あなたはプラグインの更新プログラムをインストールする権限がありません"
|
65 |
+
|
66 |
+
#: classes/updater.php:448
|
67 |
+
msgid "Error"
|
68 |
+
msgstr "エラー"
|
69 |
+
|
70 |
+
#: controllers/controller/admin.php:55
|
71 |
+
msgid "Remove this item? If you have previously reduced this item's stock, or this order was submitted by a customer, will need to manually restore the item's stock."
|
72 |
+
msgstr "この項目を削除しますか。以前このアイテムの在庫を減らした場合、この注文が顧客によって送信されたアイテムのストックを手動で復元する必要があります。"
|
73 |
+
|
74 |
+
#: controllers/controller/admin.php:56
|
75 |
+
msgid "Remove this attribute?"
|
76 |
+
msgstr "この属性を削除しますか?"
|
77 |
+
|
78 |
+
#: controllers/controller/admin.php:57
|
79 |
+
#: views/admin/import/options/_reimport_options.php:40
|
80 |
+
#: views/admin/import/options/_reimport_template.php:106
|
81 |
+
#: views/admin/import/product/_tabs/_attributes.php:6
|
82 |
+
#: views/admin/import/product/_tabs/_linked_product.php:90
|
83 |
+
#: views/admin/import/product/_tabs/_variations.php:546
|
84 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:69
|
85 |
+
msgid "Name"
|
86 |
+
msgstr "名前"
|
87 |
+
|
88 |
+
#: controllers/controller/admin.php:58
|
89 |
+
msgid "Remove"
|
90 |
+
msgstr "削除"
|
91 |
+
|
92 |
+
#: controllers/controller/admin.php:59
|
93 |
+
msgid "Click to toggle"
|
94 |
+
msgstr "切り替えるにはクリック"
|
95 |
+
|
96 |
+
#: controllers/controller/admin.php:60
|
97 |
+
msgid "Value(s)"
|
98 |
+
msgstr "値(s)"
|
99 |
+
|
100 |
+
#: controllers/controller/admin.php:61
|
101 |
+
msgid "Enter some text, or some attributes by pipe (|) separating values."
|
102 |
+
msgstr "テキストを入力してください。いくつか属性がある場合は、( | )で区切ってください。"
|
103 |
+
|
104 |
+
#: controllers/controller/admin.php:62
|
105 |
+
msgid "Visible on the product page"
|
106 |
+
msgstr "商品ページ上に表示"
|
107 |
+
|
108 |
+
#: controllers/controller/admin.php:63
|
109 |
+
msgid "Used for variations"
|
110 |
+
msgstr "バリエーションのために使用"
|
111 |
+
|
112 |
+
#: controllers/controller/admin.php:64
|
113 |
+
msgid "Enter a name for the new attribute term:"
|
114 |
+
msgstr "新しい属性の用語の名前を入力します:"
|
115 |
+
|
116 |
+
#: controllers/controller/admin.php:65
|
117 |
+
msgid "Calculate totals based on order items, discount amount, and shipping? Note, you will need to (optionally) calculate tax rows and cart discounts manually."
|
118 |
+
msgstr "注文項目、割引額、および出荷に基づいて合計を計算?あなたは(必要に応じて)手動税行とカートの割引を計算する必要があります、注意してください。"
|
119 |
+
|
120 |
+
#: controllers/controller/admin.php:66
|
121 |
+
msgid "Calculate line taxes? This will calculate taxes based on the customers country. If no billing/shipping is set it will use the store base country."
|
122 |
+
msgstr "税明細を計算しますか? これにより、お客様の国に基づいて税金を計算します。請求と配送が設定されていない場合は、店舗所在地を基本の国に使用します。"
|
123 |
+
|
124 |
+
#: controllers/controller/admin.php:67
|
125 |
+
msgid "Copy billing information to shipping information? This will remove any currently entered shipping information."
|
126 |
+
msgstr "コピーの請求情報は配送情報に?ここでは、現在入力お届け先情報を削除します。"
|
127 |
+
|
128 |
+
#: controllers/controller/admin.php:68
|
129 |
+
msgid "Load the customer's billing information? This will remove any currently entered billing information."
|
130 |
+
msgstr "お客様情報を読み込みますか? (注意)現在入力してあるお客様情報は削除されます。"
|
131 |
+
|
132 |
+
#: controllers/controller/admin.php:69
|
133 |
+
msgid "Load the customer's shipping information? This will remove any currently entered shipping information."
|
134 |
+
msgstr "お客様の配送先住所を読み込みますか? (注意)現在入力してある配送先住所は削除されます。"
|
135 |
+
|
136 |
+
#: controllers/controller/admin.php:70
|
137 |
+
#: views/admin/import/product/_tabs/_advanced.php:44
|
138 |
+
msgid "Featured"
|
139 |
+
msgstr "おすすめ"
|
140 |
+
|
141 |
+
#: controllers/controller/admin.php:74
|
142 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:277
|
143 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:289
|
144 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:448
|
145 |
+
msgid "Meta Name"
|
146 |
+
msgstr "メタネーム"
|
147 |
+
|
148 |
+
#: controllers/controller/admin.php:75
|
149 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:281
|
150 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:293
|
151 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:452
|
152 |
+
msgid "Meta Value"
|
153 |
+
msgstr "メタ値"
|
154 |
+
|
155 |
+
#: controllers/controller/admin.php:76
|
156 |
+
msgid "No customer selected"
|
157 |
+
msgstr "選択したお客様はいませ"
|
158 |
+
|
159 |
+
#: controllers/controller/admin.php:77
|
160 |
+
msgid "Tax Label:"
|
161 |
+
msgstr "ラベル:"
|
162 |
+
|
163 |
+
#: controllers/controller/admin.php:78
|
164 |
+
msgid "Compound:"
|
165 |
+
msgstr "複合"
|
166 |
+
|
167 |
+
#: controllers/controller/admin.php:79
|
168 |
+
msgid "Cart Tax:"
|
169 |
+
msgstr "カート税:"
|
170 |
+
|
171 |
+
#: controllers/controller/admin.php:80
|
172 |
+
msgid "Shipping Tax:"
|
173 |
+
msgstr "送料の(出荷)税額"
|
174 |
+
|
175 |
+
#: filters/pmxi_custom_types.php:7
|
176 |
+
msgid "WooCommerce Products"
|
177 |
+
msgstr "WooCommerce 商品リスト"
|
178 |
+
|
179 |
+
#: filters/pmxi_custom_types.php:8
|
180 |
+
msgid "WooCommerce Orders"
|
181 |
+
msgstr "オートコンプリートすべてのWooCommerceオーダー"
|
182 |
+
|
183 |
+
#: filters/pmxi_custom_types.php:9
|
184 |
+
msgid "WooCommerce Coupons"
|
185 |
+
msgstr "WooCommerce クーポン"
|
186 |
+
|
187 |
+
#: libraries/XmlImportWooCommerceProduct.php:43
|
188 |
+
msgid "Composing product data..."
|
189 |
+
msgstr "製品データを構成します..."
|
190 |
+
|
191 |
+
#: libraries/XmlImportWooCommerceProduct.php:261
|
192 |
+
msgid "Composing variations attributes..."
|
193 |
+
msgstr "バリエーション属性を構成する."
|
194 |
+
|
195 |
+
#: libraries/XmlImportWooCommerceProduct.php:533
|
196 |
+
msgid "<b>WARNING</b>: Product SKU must be unique."
|
197 |
+
msgstr "<b>警告</b>: 製品の SKU は一意でなければなりません。"
|
198 |
+
|
199 |
+
#: libraries/XmlImportWooCommerceProduct.php:1101
|
200 |
+
#: libraries/XmlImportWooCommerceProduct.php:2294
|
201 |
+
#: libraries/XmlImportWooCommerceProduct.php:2341
|
202 |
+
msgid "Variation #%s of %s"
|
203 |
+
msgstr "バリエーション#%s の %s"
|
204 |
+
|
205 |
+
#: libraries/XmlImportWooCommerceProduct.php:1871
|
206 |
+
msgid "<b>CREATED</b>: %s variations for parent product %s."
|
207 |
+
msgstr "<b>作成</b>: 親製品 %s の %s のバリエーション。"
|
208 |
+
|
209 |
+
#: libraries/XmlImportWooCommerceProduct.php:1893
|
210 |
+
msgid "- Importing Variations"
|
211 |
+
msgstr "販売者の商品種類をインポートしています"
|
212 |
+
|
213 |
+
#: libraries/XmlImportWooCommerceProduct.php:2341
|
214 |
+
msgid "- `%s`: variation created successfully"
|
215 |
+
msgstr "-'%s': バリエーションが正常に作成されました"
|
216 |
+
|
217 |
+
#: libraries/XmlImportWooCommerceProduct.php:2347
|
218 |
+
msgid "- `%s`: variation updated successfully"
|
219 |
+
msgstr "-'%s': 正常に更新された変化"
|
220 |
+
|
221 |
+
#: libraries/XmlImportWooCommerceProduct.php:2350
|
222 |
+
msgid "Deleting attachments for `%s`"
|
223 |
+
msgstr "`%s`のための添付ファイルを削除"
|
224 |
+
|
225 |
+
#: libraries/XmlImportWooCommerceProduct.php:2355
|
226 |
+
msgid "Deleting images for `%s`"
|
227 |
+
msgstr "`%s`のための削除画像"
|
228 |
+
|
229 |
+
#: libraries/XmlImportWooCommerceProduct.php:2529
|
230 |
+
msgid "- <b>WARNING</b>: Product SKU must be unique."
|
231 |
+
msgstr "<b>警告</b>: 製品の SKU は一意でなければなりません。"
|
232 |
+
|
233 |
+
#: libraries/XmlImportWooCommerceProduct.php:2761
|
234 |
+
msgid "- <b>WARNING</b>: Image %s not found in media gallery."
|
235 |
+
msgstr "-<b>警告</b>: イメージ %s メディア ギャラリー内に見つかりません。"
|
236 |
+
|
237 |
+
#: libraries/XmlImportWooCommerceProduct.php:2765
|
238 |
+
msgid "- Using existing image `%s` for post `%s` ..."
|
239 |
+
msgstr "-ポスト '%s' を '%s' の既存のイメージを使用して."
|
240 |
+
|
241 |
+
#: libraries/XmlImportWooCommerceProduct.php:2783
|
242 |
+
msgid "- Searching for existing image `%s` in `%s` folder"
|
243 |
+
msgstr "- 既存のイメージ `%s`を`%s`フォルダ内で検索しています"
|
244 |
+
|
245 |
+
#: libraries/XmlImportWooCommerceProduct.php:2789
|
246 |
+
#: libraries/XmlImportWooCommerceProduct.php:2825
|
247 |
+
msgid "- <b>WARNING</b>: File %s is not a valid image and cannot be set as featured one"
|
248 |
+
msgstr "- <b>警告</b>: ファイル%sは有効な画像ではないため、特典として設定することはできません"
|
249 |
+
|
250 |
+
#: libraries/XmlImportWooCommerceProduct.php:2793
|
251 |
+
msgid "- Image `%s` has been successfully found"
|
252 |
+
msgstr "- 画像`%s` が正常に見つかりました"
|
253 |
+
|
254 |
+
#: libraries/XmlImportWooCommerceProduct.php:2799
|
255 |
+
msgid "- Downloading image from `%s`"
|
256 |
+
msgstr "- `%s`から画像をダウンロードしています"
|
257 |
+
|
258 |
+
#: libraries/XmlImportWooCommerceProduct.php:2809
|
259 |
+
#: libraries/XmlImportWooCommerceProduct.php:2829
|
260 |
+
msgid "- Image `%s` has been successfully downloaded"
|
261 |
+
msgstr "- 画像`%s`が正常にダウンロードされました"
|
262 |
+
|
263 |
+
#: libraries/XmlImportWooCommerceProduct.php:2820
|
264 |
+
msgid "- <b>WARNING</b>: File %s cannot be saved locally as %s"
|
265 |
+
msgstr "- <b>警告</b>: ファイル%sをローカルに%sとして保存することはできません"
|
266 |
+
|
267 |
+
#: libraries/XmlImportWooCommerceProduct.php:2846
|
268 |
+
msgid "- Creating an attachment for image `%s`"
|
269 |
+
msgstr "- 画像 `%s`の添付ファイルを作成しています"
|
270 |
+
|
271 |
+
#: libraries/XmlImportWooCommerceProduct.php:2867
|
272 |
+
msgid "- <b>WARNING</b>"
|
273 |
+
msgstr "- <b>警告</b>"
|
274 |
+
|
275 |
+
#: libraries/XmlImportWooCommerceProduct.php:2900
|
276 |
+
msgid "- Attachment has been successfully updated for image `%s`"
|
277 |
+
msgstr "-添付ファイル イメージ '%s' を正常に更新しました"
|
278 |
+
|
279 |
+
#: libraries/XmlImportWooCommerceProduct.php:2904
|
280 |
+
msgid "- Attachment has been successfully created for image `%s`"
|
281 |
+
msgstr "- 画像`%s`の添付ファイルが正常に作成されました"
|
282 |
+
|
283 |
+
#: libraries/XmlImportWooCommerceProduct.php:3282
|
284 |
+
msgid "Added to %s list of product ID %d."
|
285 |
+
msgstr "%sの一覧にプロダクト ID %dを追加"
|
286 |
+
|
287 |
+
#: libraries/XmlImportWooCommerceProduct.php:3352
|
288 |
+
msgid "<b>ERROR</b> Could not insert term relationship into the database"
|
289 |
+
msgstr "<b>エラー</b> データベースに用語の関係を挿入できませんでした"
|
290 |
+
|
291 |
+
#: libraries/XmlImportWooCommerceProduct.php:3664
|
292 |
+
msgid "- <b>WARNING</b>: Slug “%s” is not allowed because it is a reserved term. Change it, please."
|
293 |
+
msgstr "- <b>警告</b>: スラッグ“%s”は予約語であるため許可されていません。 それを変更してください。"
|
294 |
+
|
295 |
+
#: libraries/XmlImportWooCommerceProduct.php:3697
|
296 |
+
msgid "- <b>CREATED</b>: Taxonomy attribute “%s” have been successfully created."
|
297 |
+
msgstr "-<b>作成</b>: 分類属性\"%s\"が正常に作成されています。"
|
298 |
+
|
299 |
+
#: libraries/XmlImportWooCommerceProduct.php:3701
|
300 |
+
msgid "- <b>WARNING</b>: Taxonomy “%s” name is more than 28 characters. Change it, please."
|
301 |
+
msgstr "-<b>警告</b>:\"%s\"の分類名は以上 28 文字。くださいそれを変更します。"
|
302 |
+
|
303 |
+
#: libraries/XmlImportWooCommerceProduct.php:3810
|
304 |
+
msgid "- <b>WARNING</b>: Unable to create cloaked link for %s"
|
305 |
+
msgstr "<b>警告</b> :%sのクロークリンクを作成することができません。"
|
306 |
+
|
307 |
+
#: libraries/XmlImportWooCommerceProduct.php:3890
|
308 |
+
msgid "Product `%s` with ID `%d` added to %s list."
|
309 |
+
msgstr "製品 '%s' ID '%d' が %s の一覧に追加します。"
|
310 |
+
|
311 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:196
|
312 |
+
msgid "Composing shop order data..."
|
313 |
+
msgstr "ショップの受注データを作成する."
|
314 |
+
|
315 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:683
|
316 |
+
msgid "- Importing billing & shipping information for Order ID `%s`."
|
317 |
+
msgstr "-注文 ID の請求・発送情報 '%s' をインポートします。"
|
318 |
+
|
319 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:695
|
320 |
+
msgid "- %s Existing customer with ID `%s` founded for Order `%s`."
|
321 |
+
msgstr "-%s 既存顧客 id '%s' が '%s' のために設立されました。"
|
322 |
+
|
323 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:701
|
324 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:711
|
325 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:729
|
326 |
+
msgid "- Billing field `%s` has been updated with value `%s` for order `%s` ..."
|
327 |
+
msgstr "ビリング フィールド '%s' 注文 '%s' の値 '%s' で更新されました."
|
328 |
+
|
329 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:717
|
330 |
+
msgid "<b>WARNING</b>: Existing customer not found for Order `%s`."
|
331 |
+
msgstr "<b>警告</b>: 既存の顧客のため '%s' が見つかりませんでした。"
|
332 |
+
|
333 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:747
|
334 |
+
msgid "- Copying shipping from billing information..."
|
335 |
+
msgstr "課金情報の配送をコピー."
|
336 |
+
|
337 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:753
|
338 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:771
|
339 |
+
msgid "- Shipping field `%s` has been updated with value `%s` for order `%s` ..."
|
340 |
+
msgstr "-配送フィールド '%s' は、順序 '%s' の値 '%s' で更新されました."
|
341 |
+
|
342 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:812
|
343 |
+
msgid "- %s email notification has beed sent. ..."
|
344 |
+
msgstr "-%s 電子メール通知されて送信されます。..."
|
345 |
+
|
346 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:1036
|
347 |
+
msgid "<b>SKIPPED</b>: %s Existing customer not found for Order `%s`."
|
348 |
+
msgstr "<b>スキップ</b>: %s 既存顧客のため '%s' が見つかりませんでした。"
|
349 |
+
|
350 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:1091
|
351 |
+
msgid "<b>SKIPPED</b>: Existing product `%s` not found for Order `%s`."
|
352 |
+
msgstr "<b>スキップ</b>: 既存の製品 '%s' 注文 '%s' が見つかりませんでした。"
|
353 |
+
|
354 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:1330
|
355 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:1474
|
356 |
+
msgid "- <b>WARNING</b> Unable to create order line product."
|
357 |
+
msgstr "-<b>警告</b>順序ライン製品を作成できません。"
|
358 |
+
|
359 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:1594
|
360 |
+
msgid "- <b>WARNING</b> order line fee is not added."
|
361 |
+
msgstr "-<b>警告</b>注文ライン料金は追加されません。"
|
362 |
+
|
363 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:1675
|
364 |
+
msgid "- <b>WARNING</b> Unable to create order coupon line."
|
365 |
+
msgstr "-<b>警告</b>クーポンの注文明細行を作成できません。"
|
366 |
+
|
367 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:1799
|
368 |
+
msgid "- <b>WARNING</b> Unable to create order shipping line."
|
369 |
+
msgstr "-配送の注文明細行を作成する<b>警告</b>できません。"
|
370 |
+
|
371 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:1902
|
372 |
+
msgid "- <b>WARNING</b> Unable to create order tax line."
|
373 |
+
msgstr "-税の注文明細行を作成する<b>警告</b>できません。"
|
374 |
+
|
375 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:1958
|
376 |
+
msgid "WooCommerce"
|
377 |
+
msgstr "WooCommerce"
|
378 |
+
|
379 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:2048
|
380 |
+
msgid "Search customer by "
|
381 |
+
msgstr "顧客を検索"
|
382 |
+
|
383 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:2054
|
384 |
+
msgid "username"
|
385 |
+
msgstr "ユーザー名"
|
386 |
+
|
387 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:2060
|
388 |
+
msgid "email"
|
389 |
+
msgstr "Eメール"
|
390 |
+
|
391 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:2066
|
392 |
+
msgid "custom field"
|
393 |
+
msgstr "カスタムフィールド"
|
394 |
+
|
395 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:2072
|
396 |
+
msgid "ID"
|
397 |
+
msgstr "ID"
|
398 |
+
|
399 |
+
#: views/admin/import/confirm.php:3
|
400 |
+
#: views/admin/import/options/_reimport_options.php:74
|
401 |
+
msgid "Order status"
|
402 |
+
msgstr "注文状況"
|
403 |
+
|
404 |
+
#: views/admin/import/confirm.php:6
|
405 |
+
#: views/admin/import/options/_reimport_options.php:80
|
406 |
+
msgid "Customer Note"
|
407 |
+
msgstr "顧客メモ"
|
408 |
+
|
409 |
+
#: views/admin/import/confirm.php:9
|
410 |
+
#: views/admin/import/options/_reimport_options.php:85
|
411 |
+
msgid "Dates"
|
412 |
+
msgstr "日付"
|
413 |
+
|
414 |
+
#: views/admin/import/confirm.php:12
|
415 |
+
#: views/admin/import/options/_reimport_options.php:90
|
416 |
+
msgid "Billing Details"
|
417 |
+
msgstr "お支払い情報"
|
418 |
+
|
419 |
+
#: views/admin/import/confirm.php:15
|
420 |
+
#: views/admin/import/options/_reimport_options.php:95
|
421 |
+
msgid "Shipping Details"
|
422 |
+
msgstr "出荷先詳細"
|
423 |
+
|
424 |
+
#: views/admin/import/confirm.php:18
|
425 |
+
#: views/admin/import/options/_reimport_options.php:100
|
426 |
+
msgid "Payment Details"
|
427 |
+
msgstr "支払情報の詳細"
|
428 |
+
|
429 |
+
#: views/admin/import/confirm.php:21
|
430 |
+
#: views/admin/import/options/_reimport_options.php:105
|
431 |
+
msgid "Order Notes"
|
432 |
+
msgstr "備考欄"
|
433 |
+
|
434 |
+
#: views/admin/import/confirm.php:28
|
435 |
+
#: views/admin/import/options/_reimport_options.php:114
|
436 |
+
msgid "Update all products"
|
437 |
+
msgstr "すべての製品を更新します。"
|
438 |
+
|
439 |
+
#: views/admin/import/confirm.php:31
|
440 |
+
#: views/admin/import/options/_reimport_options.php:118
|
441 |
+
msgid "Don't touch existing products, append new products"
|
442 |
+
msgstr "既存の製品に触れる、新しい製品を追加しないでください。"
|
443 |
+
|
444 |
+
#: views/admin/import/confirm.php:37
|
445 |
+
#: views/admin/import/options/_reimport_options.php:125
|
446 |
+
msgid "Fees Items"
|
447 |
+
msgstr "手数料項目"
|
448 |
+
|
449 |
+
#: views/admin/import/confirm.php:40
|
450 |
+
#: views/admin/import/options/_reimport_options.php:130
|
451 |
+
msgid "Coupon Items"
|
452 |
+
msgstr "クーポン アイテム"
|
453 |
+
|
454 |
+
#: views/admin/import/confirm.php:43
|
455 |
+
#: views/admin/import/options/_reimport_options.php:135
|
456 |
+
msgid "Shipping Items"
|
457 |
+
msgstr "配送項目"
|
458 |
+
|
459 |
+
#: views/admin/import/confirm.php:46
|
460 |
+
#: views/admin/import/options/_reimport_options.php:140
|
461 |
+
msgid "Tax Items"
|
462 |
+
msgstr "税項目"
|
463 |
+
|
464 |
+
#: views/admin/import/confirm.php:49
|
465 |
+
#: views/admin/import/options/_reimport_options.php:145
|
466 |
+
#: views/admin/import/shop_order/order_items_section.php:39
|
467 |
+
msgid "Refunds"
|
468 |
+
msgstr "払戻"
|
469 |
+
|
470 |
+
#: views/admin/import/confirm.php:52
|
471 |
+
#: views/admin/import/options/_reimport_options.php:150
|
472 |
+
msgid "Order Total"
|
473 |
+
msgstr "お支払い合計"
|
474 |
+
|
475 |
+
#: views/admin/import/confirm.php:59
|
476 |
+
msgid "All advanced custom fields"
|
477 |
+
msgstr "すべてのアドバンスカスタムフィールド"
|
478 |
+
|
479 |
+
#: views/admin/import/confirm.php:62
|
480 |
+
msgid "Only ACF presented in import options"
|
481 |
+
msgstr "唯一のACFインポートオプションで提供"
|
482 |
+
|
483 |
+
#: views/admin/import/confirm.php:65
|
484 |
+
msgid "Only these ACF : %s"
|
485 |
+
msgstr "これらのACF : %s"
|
486 |
+
|
487 |
+
#: views/admin/import/confirm.php:68
|
488 |
+
msgid "All ACF except these: %s"
|
489 |
+
msgstr "これらを除くすべてのACF: %s"
|
490 |
+
|
491 |
+
#: views/admin/import/confirm.php:78
|
492 |
+
msgid "All custom fields"
|
493 |
+
msgstr "すべてのカスタムフィールド"
|
494 |
+
|
495 |
+
#: views/admin/import/confirm.php:81
|
496 |
+
msgid "Only these custom fields : %s"
|
497 |
+
msgstr "これらのカスタムフィールドのみ : %s"
|
498 |
+
|
499 |
+
#: views/admin/import/confirm.php:84
|
500 |
+
msgid "All custom fields except these: %s"
|
501 |
+
msgstr "すべてのカスタム フィールドを除くこれら: %s"
|
502 |
+
|
503 |
+
#: views/admin/import/options/_reimport_options.php:2
|
504 |
+
msgid "When WP All Import finds new or changed data..."
|
505 |
+
msgstr "WP All Importは、新規または変更されたデータを見つけます..."
|
506 |
+
|
507 |
+
#: views/admin/import/options/_reimport_options.php:4
|
508 |
+
msgid "If this import is run again and WP All Import finds new or changed data..."
|
509 |
+
msgstr "このインポートを再度実行するかどうか、新しい検索 WP をすべてインポートまたは変更されたデータ."
|
510 |
+
|
511 |
+
#: views/admin/import/options/_reimport_options.php:9
|
512 |
+
msgid "Create new orders from records newly present in your file"
|
513 |
+
msgstr "あなたのファイルに新しく存在レコードから、新しい投稿を作成します。"
|
514 |
+
|
515 |
+
#: views/admin/import/options/_reimport_options.php:11
|
516 |
+
msgid "New orders will only be created when ID column is present and value in ID column is unique."
|
517 |
+
msgstr "新規注文は、ID 列があり、ID 列の値が一意場合にのみ作成されます。"
|
518 |
+
|
519 |
+
#: views/admin/import/options/_reimport_options.php:18
|
520 |
+
msgid "Delete orders that are no longer present in your file"
|
521 |
+
msgstr "ファイルに存在しなくなった投稿を削除する"
|
522 |
+
|
523 |
+
#: views/admin/import/options/_reimport_options.php:20
|
524 |
+
msgid "Records removed from the import file can only be deleted when importing into New Items. This feature cannot be enabled when importing into Existing Items."
|
525 |
+
msgstr "インポート ファイルから削除されたレコードは、新しいアイテムにインポートする場合にのみ削除できます。既存のアイテムにインポートする場合、この機能を有効にできません。"
|
526 |
+
|
527 |
+
#: views/admin/import/options/_reimport_options.php:27
|
528 |
+
msgid "Do not remove attachments"
|
529 |
+
msgstr "添付ファイルを削除しない"
|
530 |
+
|
531 |
+
#: views/admin/import/options/_reimport_options.php:32
|
532 |
+
msgid "Do not remove images"
|
533 |
+
msgstr "画像を削除しない"
|
534 |
+
|
535 |
+
#: views/admin/import/options/_reimport_options.php:37
|
536 |
+
msgid "Instead of deletion, set Custom Field"
|
537 |
+
msgstr "削除の代わりにカスタムフィールドを設定する"
|
538 |
+
|
539 |
+
#: views/admin/import/options/_reimport_options.php:42
|
540 |
+
#: views/admin/import/options/_reimport_template.php:108
|
541 |
+
#: views/admin/import/product/_tabs/_linked_product.php:95
|
542 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:73
|
543 |
+
msgid "Value"
|
544 |
+
msgstr "値"
|
545 |
+
|
546 |
+
#: views/admin/import/options/_reimport_options.php:50
|
547 |
+
msgid "Instead of deletion, change post status to Draft"
|
548 |
+
msgstr "削除の代わりに、ステータスを下書きに変更します"
|
549 |
+
|
550 |
+
#: views/admin/import/options/_reimport_options.php:57
|
551 |
+
msgid "Update existing orders with changed data in your file"
|
552 |
+
msgstr "既存の投稿をファイル内の変更されたデータで更新する"
|
553 |
+
|
554 |
+
#: views/admin/import/options/_reimport_options.php:59
|
555 |
+
msgid "These options will only be used if you run this import again later. All data is imported the first time you run an import."
|
556 |
+
msgstr "後で再びこのインポートを実行する場合、これらのオプションは使用されます。すべてのデータは、インポートを最初に実行したときにインポートされます。"
|
557 |
+
|
558 |
+
#: views/admin/import/options/_reimport_options.php:63
|
559 |
+
msgid "Update all data"
|
560 |
+
msgstr "すべてのデータ更新"
|
561 |
+
|
562 |
+
#: views/admin/import/options/_reimport_options.php:66
|
563 |
+
msgid "Choose which data to update"
|
564 |
+
msgstr "更新するデータを選択します"
|
565 |
+
|
566 |
+
#: views/admin/import/options/_reimport_options.php:69
|
567 |
+
msgid "Unselect All"
|
568 |
+
msgstr "すべての選択を解除"
|
569 |
+
|
570 |
+
#: views/admin/import/options/_reimport_options.php:69
|
571 |
+
msgid "Select All"
|
572 |
+
msgstr "全選択"
|
573 |
+
|
574 |
+
#: views/admin/import/options/_reimport_options.php:75
|
575 |
+
msgid "Hint: uncheck this box to keep trashed orders in the trash."
|
576 |
+
msgstr "ヒント: ゴミ箱にゴミ箱の注文を残すには、このボックスをオフします。"
|
577 |
+
|
578 |
+
#: views/admin/import/options/_reimport_options.php:110
|
579 |
+
msgid "Product Items"
|
580 |
+
msgstr "製品項目"
|
581 |
+
|
582 |
+
#: views/admin/import/options/_reimport_options.php:159
|
583 |
+
msgid "Custom Fields"
|
584 |
+
msgstr "ユーザー設定フィールド"
|
585 |
+
|
586 |
+
#: views/admin/import/options/_reimport_options.php:160
|
587 |
+
msgid "If Keep Custom Fields box is checked, it will keep all Custom Fields, and add any new Custom Fields specified in Custom Fields section, as long as they do not overwrite existing fields. If 'Only keep this Custom Fields' is specified, it will only keep the specified fields."
|
588 |
+
msgstr "キープカスタムフィールドのチェックボックスをオンにすると、それはすべてのカスタムフィールドを維持し、限り、彼らは既存のフィールドを上書きしないように、カスタムフィールド]セクションで指定された新しいカスタムフィールドを追加します。 'のみ続けるこのカスタムフィールド」が指定されている場合、それだけで指定したフィールドを保持します。"
|
589 |
+
|
590 |
+
#: views/admin/import/options/_reimport_options.php:164
|
591 |
+
msgid "Update all Custom Fields"
|
592 |
+
msgstr "カスタムフィールドを更新"
|
593 |
+
|
594 |
+
#: views/admin/import/options/_reimport_options.php:168
|
595 |
+
msgid "Update only these Custom Fields, leave the rest alone"
|
596 |
+
msgstr "これらのカスタムフィールドのみを更新し、残りはそのままにします"
|
597 |
+
|
598 |
+
#: views/admin/import/options/_reimport_options.php:176
|
599 |
+
msgid "Leave these fields alone, update all other Custom Fields"
|
600 |
+
msgstr "他のすべてのカスタムフィールドを更新し、単独でこれらのフィールドを残します"
|
601 |
+
|
602 |
+
#: views/admin/import/options/_reimport_template.php:14
|
603 |
+
#: views/admin/import/options/_reimport_template.php:82
|
604 |
+
msgid "Record Matching"
|
605 |
+
msgstr "レコードマッチング"
|
606 |
+
|
607 |
+
#: views/admin/import/options/_reimport_template.php:22
|
608 |
+
msgid "Choose how exported data will be re-imported."
|
609 |
+
msgstr "エクスポートされたデータをどのように再インポートするかを選択します。"
|
610 |
+
|
611 |
+
#: views/admin/import/options/_reimport_template.php:28
|
612 |
+
msgid "WP All Import will create new %s for each unique record in your file."
|
613 |
+
msgstr "WP All Importは、新しい%sのあなたのファイル内の各一意のレコードのために作成されます。"
|
614 |
+
|
615 |
+
#: views/admin/import/options/_reimport_template.php:42
|
616 |
+
msgid "WP All Import will associate records in your file with %s it has already created from previous runs of this import based on the Unique Identifier."
|
617 |
+
msgstr "WP All Importは、%sのそれは既に一意識別子に基づいて、このインポートの以前の実行から作成していると、ファイル内のレコードを関連付けます。"
|
618 |
+
|
619 |
+
#: views/admin/import/options/_reimport_template.php:45
|
620 |
+
#: views/admin/import/product/_tabs/_variations.php:36
|
621 |
+
msgid "Unique Identifier"
|
622 |
+
msgstr "一意の識別子"
|
623 |
+
|
624 |
+
#: views/admin/import/options/_reimport_template.php:51
|
625 |
+
#: views/admin/import/options/_reimport_template.php:62
|
626 |
+
msgid "Auto-detect"
|
627 |
+
msgstr "Auto-detect"
|
628 |
+
|
629 |
+
#: views/admin/import/options/_reimport_template.php:54
|
630 |
+
msgid "Edit"
|
631 |
+
msgstr "編集"
|
632 |
+
|
633 |
+
#: views/admin/import/options/_reimport_template.php:55
|
634 |
+
msgid "Warning: Are you sure you want to edit the Unique Identifier?"
|
635 |
+
msgstr "警告:あなたは一意の識別子を編集してもよろしいですか?"
|
636 |
+
|
637 |
+
#: views/admin/import/options/_reimport_template.php:56
|
638 |
+
msgid "It is recommended you delete all %s associated with this import before editing the unique identifier."
|
639 |
+
msgstr "あなたが一意の識別子を編集する前に、このインポートに関連付けられているすべての%sを削除することをお勧めします。"
|
640 |
+
|
641 |
+
#: views/admin/import/options/_reimport_template.php:57
|
642 |
+
msgid "Editing the unique identifier will dissociate all existing %s linked to this import. Future runs of the import will result in duplicates, as WP All Import will no longer be able to update these %s."
|
643 |
+
msgstr "一意の識別子を編集すると、このインポートにリンクされているすべての既存の%sが分離されます。 WP All Importはこれらの%sを更新することができなくなるので、インポートの将来の実行は重複を招きます。"
|
644 |
+
|
645 |
+
#: views/admin/import/options/_reimport_template.php:58
|
646 |
+
msgid "You really should just re-create your import, and pick the right unique identifier to start with."
|
647 |
+
msgstr "あなたは本当に自分のインポートを再作成し、で開始する権利一意の識別子を選択する必要があります。"
|
648 |
+
|
649 |
+
#: views/admin/import/options/_reimport_template.php:68
|
650 |
+
msgid "Drag an element, or combo of elements, to the box above. The Unique Identifier should be unique for each record in your file, and should stay the same even if your file is updated. Things like product IDs, titles, and SKUs are good Unique Identifiers because they probably won't change. Don't use a description or price, since that might be changed."
|
651 |
+
msgstr "上のボックスに、要素、または要素のコンボをドラッグします。一意識別子は、ファイル内のレコードごとに一意である必要があり、あなたのファイルが更新されていても同じままである必要があります。彼らはおそらく変更されませんので、製品ID、タイトル、およびSKUのようなものが良いユニークな識別子です。それは変更される場合がありますので、説明や価格を使用しないでください。"
|
652 |
+
|
653 |
+
#: views/admin/import/options/_reimport_template.php:69
|
654 |
+
msgid "If you run this import again with an updated file, the Unique Identifier allows WP All Import to correctly link the records in your updated file with the %s it will create right now. If multiple records in this file have the same Unique Identifier, only the first will be created. The others will be detected as duplicates."
|
655 |
+
msgstr "あなたが更新されたファイルで再びこのインポートを実行する場合は、一意の識別子がWPすべてのインポートが正しく%sのあなたの更新されたファイル内のレコードをリンクすることができ、それは今作成されます。このファイルに複数のレコードが同じ一意の識別子を使用している場合は、最初に作成されます。他の人が重複として検出されます。"
|
656 |
+
|
657 |
+
#: views/admin/import/options/_reimport_template.php:84
|
658 |
+
msgid "WP All Import will merge data into existing %s."
|
659 |
+
msgstr "WP All Import は、既存の %sにデータをマージします。"
|
660 |
+
|
661 |
+
#: views/admin/import/options/_reimport_template.php:94
|
662 |
+
msgid "Records in your file will be matched with %ss on your site based on..."
|
663 |
+
msgstr "あなたのファイルのレコードは、あなたのサイトの%ssと一致します..."
|
664 |
+
|
665 |
+
#: views/admin/import/options/_reimport_template.php:99
|
666 |
+
msgid "Title"
|
667 |
+
msgstr "タイトル"
|
668 |
+
|
669 |
+
#: views/admin/import/options/_reimport_template.php:101
|
670 |
+
#: views/admin/import/shop_order/order_notes_section.php:31
|
671 |
+
#: views/admin/import/shop_order/order_notes_section.php:95
|
672 |
+
msgid "Content"
|
673 |
+
msgstr "商品詳細説明"
|
674 |
+
|
675 |
+
#: views/admin/import/options/_reimport_template.php:104
|
676 |
+
msgid "Custom field"
|
677 |
+
msgstr "カスタムフィールド"
|
678 |
+
|
679 |
+
#: views/admin/import/options/_reimport_template.php:114
|
680 |
+
msgid "Order ID"
|
681 |
+
msgstr "注文番号"
|
682 |
+
|
683 |
+
#: views/admin/import/options/_reimport_template.php:134
|
684 |
+
msgid "Email Notifications for Customers"
|
685 |
+
msgstr "お客様のメール通知"
|
686 |
+
|
687 |
+
#: views/admin/import/options/_reimport_template.php:141
|
688 |
+
msgid "Block email notifications during import"
|
689 |
+
msgstr "インポート中に電子メール通知をブロック"
|
690 |
+
|
691 |
+
#: views/admin/import/options/_reimport_template.php:142
|
692 |
+
msgid "If enabled, WP All Import will prevent WordPress from sending notification emails to customers when their orders are imported or updated."
|
693 |
+
msgstr "有効にすると、WP All Importは、注文がインポートまたは更新されたときにWordPressが通知メールを顧客に送信することを防止します。"
|
694 |
+
|
695 |
+
#: views/admin/import/product/_tabs/_advanced.php:5
|
696 |
+
msgid "Purchase Note"
|
697 |
+
msgstr "注意事項"
|
698 |
+
|
699 |
+
#: views/admin/import/product/_tabs/_advanced.php:11
|
700 |
+
msgid "Menu order"
|
701 |
+
msgstr "表示順番"
|
702 |
+
|
703 |
+
#: views/admin/import/product/_tabs/_advanced.php:18
|
704 |
+
msgid "Enable reviews"
|
705 |
+
msgstr "レビューを有効にする"
|
706 |
+
|
707 |
+
#: views/admin/import/product/_tabs/_advanced.php:22
|
708 |
+
#: views/admin/import/product/_tabs/_advanced.php:48
|
709 |
+
#: views/admin/import/product/_tabs/_general.php:112
|
710 |
+
#: views/admin/import/product/_tabs/_inventory.php:8
|
711 |
+
#: views/admin/import/product/_tabs/_inventory.php:99
|
712 |
+
#: views/admin/import/product/_tabs/_variations.php:155
|
713 |
+
#: views/admin/import/product/_tabs/_variations.php:516
|
714 |
+
#: views/admin/import/product/_tabs/_variations.php:683
|
715 |
+
#: views/admin/import/product/_tabs/_variations.php:745
|
716 |
+
msgid "Yes"
|
717 |
+
msgstr "はい"
|
718 |
+
|
719 |
+
#: views/admin/import/product/_tabs/_advanced.php:26
|
720 |
+
#: views/admin/import/product/_tabs/_advanced.php:52
|
721 |
+
#: views/admin/import/product/_tabs/_general.php:116
|
722 |
+
#: views/admin/import/product/_tabs/_inventory.php:12
|
723 |
+
#: views/admin/import/product/_tabs/_inventory.php:103
|
724 |
+
#: views/admin/import/product/_tabs/_variations.php:159
|
725 |
+
#: views/admin/import/product/_tabs/_variations.php:520
|
726 |
+
#: views/admin/import/product/_tabs/_variations.php:687
|
727 |
+
#: views/admin/import/product/_tabs/_variations.php:749
|
728 |
+
msgid "No"
|
729 |
+
msgstr "いいえ"
|
730 |
+
|
731 |
+
#: views/admin/import/product/_tabs/_advanced.php:30
|
732 |
+
#: views/admin/import/product/_tabs/_advanced.php:56
|
733 |
+
#: views/admin/import/product/_tabs/_advanced.php:90
|
734 |
+
#: views/admin/import/product/_tabs/_attributes.php:64
|
735 |
+
#: views/admin/import/product/_tabs/_attributes.php:86
|
736 |
+
#: views/admin/import/product/_tabs/_attributes.php:108
|
737 |
+
#: views/admin/import/product/_tabs/_attributes.php:130
|
738 |
+
#: views/admin/import/product/_tabs/_attributes.php:193
|
739 |
+
#: views/admin/import/product/_tabs/_attributes.php:215
|
740 |
+
#: views/admin/import/product/_tabs/_attributes.php:237
|
741 |
+
#: views/admin/import/product/_tabs/_attributes.php:259
|
742 |
+
#: views/admin/import/product/_tabs/_attributes.php:321
|
743 |
+
#: views/admin/import/product/_tabs/_attributes.php:343
|
744 |
+
#: views/admin/import/product/_tabs/_attributes.php:365
|
745 |
+
#: views/admin/import/product/_tabs/_attributes.php:387
|
746 |
+
#: views/admin/import/product/_tabs/_general.php:120
|
747 |
+
#: views/admin/import/product/_tabs/_general.php:143
|
748 |
+
#: views/admin/import/product/_tabs/_general.php:166
|
749 |
+
#: views/admin/import/product/_tabs/_inventory.php:16
|
750 |
+
#: views/admin/import/product/_tabs/_inventory.php:52
|
751 |
+
#: views/admin/import/product/_tabs/_inventory.php:82
|
752 |
+
#: views/admin/import/product/_tabs/_inventory.php:107
|
753 |
+
#: views/admin/import/product/_tabs/_variations.php:163
|
754 |
+
#: views/admin/import/product/_tabs/_variations.php:211
|
755 |
+
#: views/admin/import/product/_tabs/_variations.php:240
|
756 |
+
#: views/admin/import/product/_tabs/_variations.php:315
|
757 |
+
#: views/admin/import/product/_tabs/_variations.php:459
|
758 |
+
#: views/admin/import/product/_tabs/_variations.php:524
|
759 |
+
#: views/admin/import/product/_tabs/_variations.php:691
|
760 |
+
#: views/admin/import/product/_tabs/_variations.php:728
|
761 |
+
#: views/admin/import/product/_tabs/_variations.php:753
|
762 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:47
|
763 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:92
|
764 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:60
|
765 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:108
|
766 |
+
#: views/admin/import/shop_order/_tabs/_order_payment.php:19
|
767 |
+
#: views/admin/import/shop_order/order_details_section.php:23
|
768 |
+
#: views/admin/import/shop_order/order_notes_section.php:58
|
769 |
+
#: views/admin/import/shop_order/order_notes_section.php:123
|
770 |
+
msgid "Set with XPath"
|
771 |
+
msgstr "XPathで設定"
|
772 |
+
|
773 |
+
#: views/admin/import/product/_tabs/_advanced.php:35
|
774 |
+
#: views/admin/import/product/_tabs/_advanced.php:61
|
775 |
+
#: views/admin/import/product/_tabs/_attributes.php:69
|
776 |
+
#: views/admin/import/product/_tabs/_attributes.php:91
|
777 |
+
#: views/admin/import/product/_tabs/_attributes.php:113
|
778 |
+
#: views/admin/import/product/_tabs/_attributes.php:135
|
779 |
+
#: views/admin/import/product/_tabs/_attributes.php:198
|
780 |
+
#: views/admin/import/product/_tabs/_attributes.php:220
|
781 |
+
#: views/admin/import/product/_tabs/_attributes.php:242
|
782 |
+
#: views/admin/import/product/_tabs/_attributes.php:264
|
783 |
+
#: views/admin/import/product/_tabs/_attributes.php:326
|
784 |
+
#: views/admin/import/product/_tabs/_attributes.php:348
|
785 |
+
#: views/admin/import/product/_tabs/_attributes.php:370
|
786 |
+
#: views/admin/import/product/_tabs/_attributes.php:392
|
787 |
+
#: views/admin/import/product/_tabs/_general.php:125
|
788 |
+
#: views/admin/import/product/_tabs/_general.php:148
|
789 |
+
#: views/admin/import/product/_tabs/_general.php:171
|
790 |
+
#: views/admin/import/product/_tabs/_inventory.php:21
|
791 |
+
#: views/admin/import/product/_tabs/_inventory.php:112
|
792 |
+
#: views/admin/import/product/_tabs/_variations.php:168
|
793 |
+
#: views/admin/import/product/_tabs/_variations.php:320
|
794 |
+
#: views/admin/import/product/_tabs/_variations.php:464
|
795 |
+
#: views/admin/import/product/_tabs/_variations.php:529
|
796 |
+
#: views/admin/import/product/_tabs/_variations.php:696
|
797 |
+
#: views/admin/import/product/_tabs/_variations.php:758
|
798 |
+
msgid "The value of presented XPath should be one of the following: ('yes', 'no')."
|
799 |
+
msgstr "提示された XPath の値は、次のいずれかをする必要があります: ('yes', 'no')."
|
800 |
+
|
801 |
+
#: views/admin/import/product/_tabs/_advanced.php:70
|
802 |
+
msgid "Catalog visibility"
|
803 |
+
msgstr "カタログ表示。"
|
804 |
+
|
805 |
+
#: views/admin/import/product/_tabs/_advanced.php:74
|
806 |
+
msgid "Catalog/search"
|
807 |
+
msgstr "カタログ/検索"
|
808 |
+
|
809 |
+
#: views/admin/import/product/_tabs/_advanced.php:78
|
810 |
+
msgid "Catalog"
|
811 |
+
msgstr "カタログ"
|
812 |
+
|
813 |
+
#: views/admin/import/product/_tabs/_advanced.php:82
|
814 |
+
msgid "Search"
|
815 |
+
msgstr "検索・・・"
|
816 |
+
|
817 |
+
#: views/admin/import/product/_tabs/_advanced.php:86
|
818 |
+
msgid "Hidden"
|
819 |
+
msgstr "不明"
|
820 |
+
|
821 |
+
#: views/admin/import/product/_tabs/_advanced.php:95
|
822 |
+
msgid "The value of presented XPath should be one of the following: ('visible', 'catalog', 'search', 'hidden')."
|
823 |
+
msgstr "提示された XPath の値は、次のいずれかをする必要があります: ('visible', 'catalog', 'search', 'hidden')."
|
824 |
+
|
825 |
+
#: views/admin/import/product/_tabs/_attributes.php:8
|
826 |
+
#: views/admin/import/product/_tabs/_variations.php:547
|
827 |
+
msgid "Values"
|
828 |
+
msgstr "最小値に達する ({min} 値) "
|
829 |
+
|
830 |
+
#: views/admin/import/product/_tabs/_attributes.php:9
|
831 |
+
msgid "Separate mutiple values with a |"
|
832 |
+
msgstr " | で複数の値を区切る、"
|
833 |
+
|
834 |
+
#: views/admin/import/product/_tabs/_attributes.php:26
|
835 |
+
#: views/admin/import/product/_tabs/_attributes.php:158
|
836 |
+
#: views/admin/import/product/_tabs/_attributes.php:286
|
837 |
+
#: views/admin/import/product/index.php:65
|
838 |
+
msgid "Advanced"
|
839 |
+
msgstr "高度設定"
|
840 |
+
|
841 |
+
#: views/admin/import/product/_tabs/_attributes.php:32
|
842 |
+
#: views/admin/import/product/_tabs/_attributes.php:56
|
843 |
+
#: views/admin/import/product/_tabs/_attributes.php:164
|
844 |
+
#: views/admin/import/product/_tabs/_attributes.php:185
|
845 |
+
#: views/admin/import/product/_tabs/_attributes.php:292
|
846 |
+
#: views/admin/import/product/_tabs/_attributes.php:313
|
847 |
+
#: views/admin/import/product/_tabs/_variations.php:565
|
848 |
+
#: views/admin/import/product/_tabs/_variations.php:599
|
849 |
+
#: views/admin/import/product/_tabs/_variations.php:629
|
850 |
+
msgid "In Variations"
|
851 |
+
msgstr "バリエーション"
|
852 |
+
|
853 |
+
#: views/admin/import/product/_tabs/_attributes.php:37
|
854 |
+
#: views/admin/import/product/_tabs/_attributes.php:78
|
855 |
+
#: views/admin/import/product/_tabs/_attributes.php:168
|
856 |
+
#: views/admin/import/product/_tabs/_attributes.php:207
|
857 |
+
#: views/admin/import/product/_tabs/_attributes.php:296
|
858 |
+
#: views/admin/import/product/_tabs/_attributes.php:335
|
859 |
+
#: views/admin/import/product/_tabs/_variations.php:570
|
860 |
+
#: views/admin/import/product/_tabs/_variations.php:603
|
861 |
+
#: views/admin/import/product/_tabs/_variations.php:633
|
862 |
+
msgid "Is Visible"
|
863 |
+
msgstr "可視"
|
864 |
+
|
865 |
+
#: views/admin/import/product/_tabs/_attributes.php:42
|
866 |
+
#: views/admin/import/product/_tabs/_attributes.php:100
|
867 |
+
#: views/admin/import/product/_tabs/_attributes.php:172
|
868 |
+
#: views/admin/import/product/_tabs/_attributes.php:229
|
869 |
+
#: views/admin/import/product/_tabs/_attributes.php:300
|
870 |
+
#: views/admin/import/product/_tabs/_attributes.php:357
|
871 |
+
msgid "Is Taxonomy"
|
872 |
+
msgstr "タクソノミー"
|
873 |
+
|
874 |
+
#: views/admin/import/product/_tabs/_attributes.php:47
|
875 |
+
#: views/admin/import/product/_tabs/_attributes.php:122
|
876 |
+
#: views/admin/import/product/_tabs/_attributes.php:176
|
877 |
+
#: views/admin/import/product/_tabs/_attributes.php:251
|
878 |
+
#: views/admin/import/product/_tabs/_attributes.php:304
|
879 |
+
#: views/admin/import/product/_tabs/_attributes.php:379
|
880 |
+
#: views/admin/import/product/_tabs/_variations.php:580
|
881 |
+
#: views/admin/import/product/_tabs/_variations.php:611
|
882 |
+
#: views/admin/import/product/_tabs/_variations.php:641
|
883 |
+
msgid "Auto-Create Terms"
|
884 |
+
msgstr "用語を自動作成します。"
|
885 |
+
|
886 |
+
#: views/admin/import/product/_tabs/_attributes.php:60
|
887 |
+
#: views/admin/import/product/_tabs/_attributes.php:189
|
888 |
+
#: views/admin/import/product/_tabs/_attributes.php:317
|
889 |
+
msgid "Not In Variations"
|
890 |
+
msgstr "バリエーションではないです。"
|
891 |
+
|
892 |
+
#: views/admin/import/product/_tabs/_attributes.php:82
|
893 |
+
#: views/admin/import/product/_tabs/_attributes.php:211
|
894 |
+
#: views/admin/import/product/_tabs/_attributes.php:339
|
895 |
+
msgid "Not Visible"
|
896 |
+
msgstr "可視"
|
897 |
+
|
898 |
+
#: views/admin/import/product/_tabs/_attributes.php:104
|
899 |
+
#: views/admin/import/product/_tabs/_attributes.php:233
|
900 |
+
#: views/admin/import/product/_tabs/_attributes.php:361
|
901 |
+
msgid "Not Taxonomy"
|
902 |
+
msgstr "タクソノミー"
|
903 |
+
|
904 |
+
#: views/admin/import/product/_tabs/_attributes.php:126
|
905 |
+
#: views/admin/import/product/_tabs/_attributes.php:255
|
906 |
+
#: views/admin/import/product/_tabs/_attributes.php:383
|
907 |
+
msgid "Do Not Create Terms"
|
908 |
+
msgstr "用語を作成しないでください。"
|
909 |
+
|
910 |
+
#: views/admin/import/product/_tabs/_attributes.php:405
|
911 |
+
#: views/admin/import/product/_tabs/_variations.php:648
|
912 |
+
msgid "add"
|
913 |
+
msgstr "追加"
|
914 |
+
|
915 |
+
#: views/admin/import/product/_tabs/_attributes.php:405
|
916 |
+
#: views/admin/import/product/_tabs/_variations.php:648
|
917 |
+
msgid "Add more"
|
918 |
+
msgstr "さらに追加"
|
919 |
+
|
920 |
+
#: views/admin/import/product/_tabs/_attributes.php:414
|
921 |
+
msgid "Link all variations"
|
922 |
+
msgstr "すべてのバリエーションをリンク"
|
923 |
+
|
924 |
+
#: views/admin/import/product/_tabs/_attributes.php:415
|
925 |
+
msgid "This option will create all possible variations for the presented attributes. Works just like the Link All Variations option inside WooCommerce."
|
926 |
+
msgstr "このオプションは、提示された属性のすべてのバリエーションを作成します。WooCommerce は内部のリンクのすべてのバリエーションのオプションと同じように動作します。"
|
927 |
+
|
928 |
+
#: views/admin/import/product/_tabs/_general.php:4
|
929 |
+
#: views/admin/import/product/_tabs/_variations.php:119
|
930 |
+
msgid "SKU"
|
931 |
+
msgstr "SKU"
|
932 |
+
|
933 |
+
#: views/admin/import/product/_tabs/_general.php:10
|
934 |
+
msgid "Product URL"
|
935 |
+
msgstr "商品 URL"
|
936 |
+
|
937 |
+
#: views/admin/import/product/_tabs/_general.php:12
|
938 |
+
msgid "The external/affiliate link URL to the product."
|
939 |
+
msgstr "製品に外部/アフィリ エイト リンクの URL。"
|
940 |
+
|
941 |
+
#: views/admin/import/product/_tabs/_general.php:15
|
942 |
+
msgid "Button text"
|
943 |
+
msgstr "ボタンのテキスト"
|
944 |
+
|
945 |
+
#: views/admin/import/product/_tabs/_general.php:17
|
946 |
+
msgid "This text will be shown on the button linking to the external product."
|
947 |
+
msgstr "このテキストは外部商品のリンクボタンに表示されます"
|
948 |
+
|
949 |
+
#: views/admin/import/product/_tabs/_general.php:23
|
950 |
+
#: views/admin/import/product/_tabs/_general.php:46
|
951 |
+
msgid "Regular Price (%s)"
|
952 |
+
msgstr "通常価格 (%s)"
|
953 |
+
|
954 |
+
#: views/admin/import/product/_tabs/_general.php:24
|
955 |
+
msgid "required"
|
956 |
+
msgstr "必須"
|
957 |
+
|
958 |
+
#: views/admin/import/product/_tabs/_general.php:27
|
959 |
+
#: views/admin/import/product/_tabs/_general.php:58
|
960 |
+
msgid "Sale Price (%s)"
|
961 |
+
msgstr "販売価格を入力 (%s)"
|
962 |
+
|
963 |
+
#: views/admin/import/product/_tabs/_general.php:28
|
964 |
+
#: views/admin/import/product/_tabs/_variations.php:263
|
965 |
+
msgid "schedule"
|
966 |
+
msgstr "スケジュール"
|
967 |
+
|
968 |
+
#: views/admin/import/product/_tabs/_general.php:33
|
969 |
+
msgid "Sale Price Dates"
|
970 |
+
msgstr "セール期間"
|
971 |
+
|
972 |
+
#: views/admin/import/product/_tabs/_general.php:35
|
973 |
+
#: views/admin/import/product/_tabs/_variations.php:296
|
974 |
+
msgid "and"
|
975 |
+
msgstr "と"
|
976 |
+
|
977 |
+
#: views/admin/import/product/_tabs/_general.php:37
|
978 |
+
#: views/admin/import/product/_tabs/_variations.php:298
|
979 |
+
msgid "cancel"
|
980 |
+
msgstr "キャンセル"
|
981 |
+
|
982 |
+
#: views/admin/import/product/_tabs/_general.php:43
|
983 |
+
msgid " Adjust Prices"
|
984 |
+
msgstr "価格を調整"
|
985 |
+
|
986 |
+
#: views/admin/import/product/_tabs/_general.php:43
|
987 |
+
msgid "Mark prices up and down, convert prices to currencies."
|
988 |
+
msgstr "通貨変換価格上下マークの価格。"
|
989 |
+
|
990 |
+
#: views/admin/import/product/_tabs/_general.php:52
|
991 |
+
#: views/admin/import/product/_tabs/_general.php:64
|
992 |
+
msgid "Leave blank or enter in 100% to keep the price as is. Enter in 110% to markup by 10%. Enter in 50% to cut prices in half."
|
993 |
+
msgstr "空白のままか、価格を維持する 100% で入力します。10% 110% マークアップを入力します。価格は半分にカットして 50% を入力します。"
|
994 |
+
|
995 |
+
#: views/admin/import/product/_tabs/_general.php:53
|
996 |
+
#: views/admin/import/product/_tabs/_general.php:65
|
997 |
+
msgid "Enter a negative number to reduce prices."
|
998 |
+
msgstr "価格を下げるに負の数を入力します。"
|
999 |
+
|
1000 |
+
#: views/admin/import/product/_tabs/_general.php:75
|
1001 |
+
msgid "Remove currency symbols from price"
|
1002 |
+
msgstr "価格から通貨記号を削除します。"
|
1003 |
+
|
1004 |
+
#: views/admin/import/product/_tabs/_general.php:76
|
1005 |
+
msgid "Attempt to remove currency symbols from prices."
|
1006 |
+
msgstr "価格から通貨記号を削除しようとしました。"
|
1007 |
+
|
1008 |
+
#: views/admin/import/product/_tabs/_general.php:82
|
1009 |
+
msgid "Convert decimal separator to a period"
|
1010 |
+
msgstr "桁区切り記号をピリオドに変換します。"
|
1011 |
+
|
1012 |
+
#: views/admin/import/product/_tabs/_general.php:83
|
1013 |
+
msgid "Prices must be imported using a period as the decimal separator. If you'd like to change the decimal separator you can do so by editing your WooCommerce settings."
|
1014 |
+
msgstr "価格は、小数点の記号としてピリオドを使用してインポートする必要があります。小数点の区切り文字を変更したい場合、WooCommerce の設定を編集すればよい。"
|
1015 |
+
|
1016 |
+
#: views/admin/import/product/_tabs/_general.php:89
|
1017 |
+
msgid "Attempt to convert incorrectly formatted prices to WooCommerce format"
|
1018 |
+
msgstr "正しく書式設定された価格を WooCommerce 形式に変換しようとしました。"
|
1019 |
+
|
1020 |
+
#: views/admin/import/product/_tabs/_general.php:90
|
1021 |
+
msgid "WP All Import will attempt to correct the formatting of prices presented incorrectly, but this doesn't always work. Try unchecking this option if your prices are not appearing correctly, or enter your prices in your import file using the same format you would when entering them in WooCommerce."
|
1022 |
+
msgstr "WP すべてインポートが正しく表示されていない価格の書式を正しくしようが、これは常に動作しません。あなたの価格が正しく表示されないまたは WooCommerce でそれらを入力するときと同じ形式を使用して、インポート ファイルにあなたの価格を入力する場合は、このオプションをオフにしてみてください。"
|
1023 |
+
|
1024 |
+
#: views/admin/import/product/_tabs/_general.php:94
|
1025 |
+
msgid "Preview Prices"
|
1026 |
+
msgstr "価格プレビュー"
|
1027 |
+
|
1028 |
+
#: views/admin/import/product/_tabs/_general.php:101
|
1029 |
+
#: views/admin/import/product/_tabs/_variations.php:139
|
1030 |
+
msgid "Variation Description"
|
1031 |
+
msgstr "バリエーション詳細"
|
1032 |
+
|
1033 |
+
#: views/admin/import/product/_tabs/_general.php:108
|
1034 |
+
#: views/admin/import/product/_tabs/_variations.php:510
|
1035 |
+
#: views/admin/import/product/_tabs/_variations.php:741
|
1036 |
+
msgid "Variation Enabled"
|
1037 |
+
msgstr "バリエーション 対応"
|
1038 |
+
|
1039 |
+
#: views/admin/import/product/_tabs/_general.php:108
|
1040 |
+
#: views/admin/import/product/_tabs/_variations.php:741
|
1041 |
+
msgid "This option is the same as the Enabled checkbox when editing an individual variation in WooCommerce."
|
1042 |
+
msgstr "WooCommerce で個人差を編集するとき、このオプションは有効] チェック ボックスと同じです。"
|
1043 |
+
|
1044 |
+
#: views/admin/import/product/_tabs/_general.php:135
|
1045 |
+
#: views/admin/import/product/_tabs/_variations.php:108
|
1046 |
+
#: views/admin/import/product/_tabs/_variations.php:307
|
1047 |
+
msgid "Virtual"
|
1048 |
+
msgstr "バーチャルではない"
|
1049 |
+
|
1050 |
+
#: views/admin/import/product/_tabs/_general.php:139
|
1051 |
+
#: views/admin/import/product/_tabs/_variations.php:311
|
1052 |
+
msgid "Not Virtual"
|
1053 |
+
msgstr "バーチャルではない"
|
1054 |
+
|
1055 |
+
#: views/admin/import/product/_tabs/_general.php:158
|
1056 |
+
#: views/admin/import/product/_tabs/_variations.php:112
|
1057 |
+
#: views/admin/import/product/_tabs/_variations.php:451
|
1058 |
+
msgid "Downloadable"
|
1059 |
+
msgstr "ダウンロード可能ではない"
|
1060 |
+
|
1061 |
+
#: views/admin/import/product/_tabs/_general.php:162
|
1062 |
+
#: views/admin/import/product/_tabs/_variations.php:455
|
1063 |
+
msgid "Not Downloadable"
|
1064 |
+
msgstr "ダウンロード可能ではない"
|
1065 |
+
|
1066 |
+
#: views/admin/import/product/_tabs/_general.php:179
|
1067 |
+
#: views/admin/import/product/_tabs/_variations.php:477
|
1068 |
+
msgid "File paths"
|
1069 |
+
msgstr "ファイルのパス"
|
1070 |
+
|
1071 |
+
#: views/admin/import/product/_tabs/_general.php:182
|
1072 |
+
msgid "File paths/URLs, comma separated. The delimiter is used when an XML element contains multiple URLs/paths - i.e. <code>http://files.com/1.doc, http://files.com/2.doc</code>."
|
1073 |
+
msgstr "ファイルのパス/Url、カンマで区切られました。XML 要素が複数の Url/パス - すなわち含まれている区切り記号を使用 <code>http://files.com/1.doc, http://files.com/2.doc</code> 。"
|
1074 |
+
|
1075 |
+
#: views/admin/import/product/_tabs/_general.php:185
|
1076 |
+
#: views/admin/import/product/_tabs/_variations.php:483
|
1077 |
+
msgid "File names"
|
1078 |
+
msgstr "ファイル名"
|
1079 |
+
|
1080 |
+
#: views/admin/import/product/_tabs/_general.php:188
|
1081 |
+
#: views/admin/import/product/_tabs/_variations.php:486
|
1082 |
+
msgid "File names, comma separated. The delimiter is used when an XML element contains multiple names - i.e. <code>1.doc, 2.doc</code>."
|
1083 |
+
msgstr "ファイル名、カンマで区切られました。区切り記号、すなわち XML 要素に複数の名前が含まれている場合に使用 <code>1.doc, 2.doc</code> 。"
|
1084 |
+
|
1085 |
+
#: views/admin/import/product/_tabs/_general.php:191
|
1086 |
+
#: views/admin/import/product/_tabs/_variations.php:489
|
1087 |
+
msgid "Download Limit"
|
1088 |
+
msgstr "ダウンロード制限"
|
1089 |
+
|
1090 |
+
#: views/admin/import/product/_tabs/_general.php:193
|
1091 |
+
msgid "Leave blank for unlimited re-downloads."
|
1092 |
+
msgstr "再ダウンロード無制限の為、空欄にしておく"
|
1093 |
+
|
1094 |
+
#: views/admin/import/product/_tabs/_general.php:196
|
1095 |
+
#: views/admin/import/product/_tabs/_variations.php:498
|
1096 |
+
msgid "Download Expiry"
|
1097 |
+
msgstr "ダウンロード有効期限"
|
1098 |
+
|
1099 |
+
#: views/admin/import/product/_tabs/_general.php:198
|
1100 |
+
msgid "Enter the number of days before a download link expires, or leave blank."
|
1101 |
+
msgstr "ダウンロードリンクの有効期限日数を入力するか、空白のままにします。"
|
1102 |
+
|
1103 |
+
#: views/admin/import/product/_tabs/_general.php:201
|
1104 |
+
msgid "Download Type"
|
1105 |
+
msgstr "ダウンロードタイプ"
|
1106 |
+
|
1107 |
+
#: views/admin/import/product/_tabs/_general.php:203
|
1108 |
+
msgid "The value of presented XPath should be one of the following: ('application', 'music')."
|
1109 |
+
msgstr "提示された XPath の値は、次のいずれかをする必要があります: ('アプリケーション'、'音楽')。"
|
1110 |
+
|
1111 |
+
#: views/admin/import/product/_tabs/_general.php:211
|
1112 |
+
msgid "Tax Status"
|
1113 |
+
msgstr "税ステータス"
|
1114 |
+
|
1115 |
+
#: views/admin/import/product/_tabs/_general.php:216
|
1116 |
+
msgid "Taxable"
|
1117 |
+
msgstr "課税"
|
1118 |
+
|
1119 |
+
#: views/admin/import/product/_tabs/_general.php:217
|
1120 |
+
msgid "Shipping only"
|
1121 |
+
msgstr "送料のみ"
|
1122 |
+
|
1123 |
+
#: views/admin/import/product/_tabs/_general.php:218
|
1124 |
+
msgid "None"
|
1125 |
+
msgstr "なし "
|
1126 |
+
|
1127 |
+
#: views/admin/import/product/_tabs/_general.php:226
|
1128 |
+
msgid "Set tax status with XPath"
|
1129 |
+
msgstr "XPath を使ってセット税ステータス"
|
1130 |
+
|
1131 |
+
#: views/admin/import/product/_tabs/_general.php:231
|
1132 |
+
msgid "Value should be the slug for the tax status - 'taxable', 'shipping', and 'none' are the default slugs."
|
1133 |
+
msgstr "値は、-'課税'、'配布'、税ステータス用の slug をする必要があります、'none' 既定ナメクジです。"
|
1134 |
+
|
1135 |
+
#: views/admin/import/product/_tabs/_general.php:241
|
1136 |
+
#: views/admin/import/product/_tabs/_variations.php:406
|
1137 |
+
msgid "Tax Class"
|
1138 |
+
msgstr "税区分"
|
1139 |
+
|
1140 |
+
#: views/admin/import/product/_tabs/_general.php:249
|
1141 |
+
#: views/admin/import/product/_tabs/_variations.php:413
|
1142 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:12
|
1143 |
+
msgid "Standard"
|
1144 |
+
msgstr "標準"
|
1145 |
+
|
1146 |
+
#: views/admin/import/product/_tabs/_general.php:265
|
1147 |
+
msgid "Set tax class with XPath"
|
1148 |
+
msgstr "XPath を使用して set 税クラス"
|
1149 |
+
|
1150 |
+
#: views/admin/import/product/_tabs/_general.php:271
|
1151 |
+
msgid "Value should be the slug for the tax class - 'reduced-rate' and 'zero-rate', are the default slugs."
|
1152 |
+
msgstr "値は、税クラス -「割引料金」と「ゼロ金利」がデフォルト ナメクジ スラッグをする必要があります。"
|
1153 |
+
|
1154 |
+
#: views/admin/import/product/_tabs/_inventory.php:4
|
1155 |
+
#: views/admin/import/product/_tabs/_variations.php:151
|
1156 |
+
#: views/admin/import/product/_tabs/_variations.php:679
|
1157 |
+
msgid "Manage stock?"
|
1158 |
+
msgstr "在庫を管理しますか?"
|
1159 |
+
|
1160 |
+
#: views/admin/import/product/_tabs/_inventory.php:29
|
1161 |
+
#: views/admin/import/product/_tabs/_variations.php:181
|
1162 |
+
#: views/admin/import/product/_tabs/_variations.php:704
|
1163 |
+
msgid "Stock Qty"
|
1164 |
+
msgstr "在庫数量"
|
1165 |
+
|
1166 |
+
#: views/admin/import/product/_tabs/_inventory.php:35
|
1167 |
+
#: views/admin/import/product/_tabs/_variations.php:194
|
1168 |
+
#: views/admin/import/product/_tabs/_variations.php:711
|
1169 |
+
msgid "Stock status"
|
1170 |
+
msgstr "在庫状況"
|
1171 |
+
|
1172 |
+
#: views/admin/import/product/_tabs/_inventory.php:39
|
1173 |
+
#: views/admin/import/product/_tabs/_variations.php:198
|
1174 |
+
#: views/admin/import/product/_tabs/_variations.php:715
|
1175 |
+
msgid "In stock"
|
1176 |
+
msgstr "在庫の有無"
|
1177 |
+
|
1178 |
+
#: views/admin/import/product/_tabs/_inventory.php:43
|
1179 |
+
#: views/admin/import/product/_tabs/_variations.php:202
|
1180 |
+
#: views/admin/import/product/_tabs/_variations.php:719
|
1181 |
+
msgid "Out of stock"
|
1182 |
+
msgstr "在庫切れ"
|
1183 |
+
|
1184 |
+
#: views/admin/import/product/_tabs/_inventory.php:47
|
1185 |
+
#: views/admin/import/product/_tabs/_variations.php:206
|
1186 |
+
#: views/admin/import/product/_tabs/_variations.php:723
|
1187 |
+
msgid "Set automatically"
|
1188 |
+
msgstr "自動"
|
1189 |
+
|
1190 |
+
#: views/admin/import/product/_tabs/_inventory.php:48
|
1191 |
+
#: views/admin/import/product/_tabs/_variations.php:724
|
1192 |
+
msgid "Set the stock status to In Stock for positive Stock Qty values, and Out Of Stock if Stock Qty is 0 or blank."
|
1193 |
+
msgstr "在庫の数量が 0 または空白の場合に在庫に肯定的な在庫の数量値および在庫のうちの在庫状況を設定します。"
|
1194 |
+
|
1195 |
+
#: views/admin/import/product/_tabs/_inventory.php:57
|
1196 |
+
#: views/admin/import/product/_tabs/_variations.php:216
|
1197 |
+
#: views/admin/import/product/_tabs/_variations.php:733
|
1198 |
+
msgid "The value of presented XPath should be one of the following: ('instock', 'outofstock')."
|
1199 |
+
msgstr "提示された XPath の値は、次のいずれかをする必要があります: ('在庫あり'、' outofstock」)。"
|
1200 |
+
|
1201 |
+
#: views/admin/import/product/_tabs/_inventory.php:66
|
1202 |
+
#: views/admin/import/product/_tabs/_variations.php:224
|
1203 |
+
msgid "Allow Backorders?"
|
1204 |
+
msgstr "バックオーダを受け付けますか?"
|
1205 |
+
|
1206 |
+
#: views/admin/import/product/_tabs/_inventory.php:70
|
1207 |
+
#: views/admin/import/product/_tabs/_variations.php:228
|
1208 |
+
msgid "Do not allow"
|
1209 |
+
msgstr "許可しない"
|
1210 |
+
|
1211 |
+
#: views/admin/import/product/_tabs/_inventory.php:74
|
1212 |
+
#: views/admin/import/product/_tabs/_variations.php:232
|
1213 |
+
msgid "Allow, but notify customer"
|
1214 |
+
msgstr "許可し、顧客に通知する"
|
1215 |
+
|
1216 |
+
#: views/admin/import/product/_tabs/_inventory.php:78
|
1217 |
+
#: views/admin/import/product/_tabs/_variations.php:236
|
1218 |
+
msgid "Allow"
|
1219 |
+
msgstr "許可"
|
1220 |
+
|
1221 |
+
#: views/admin/import/product/_tabs/_inventory.php:87
|
1222 |
+
#: views/admin/import/product/_tabs/_variations.php:245
|
1223 |
+
msgid "The value of presented XPath should be one of the following: ('no', 'notify', 'yes')."
|
1224 |
+
msgstr "提示された XPath の値は、次のいずれかをする必要があります: ('yes', 'no')."
|
1225 |
+
|
1226 |
+
#: views/admin/import/product/_tabs/_inventory.php:95
|
1227 |
+
msgid "Sold Individually?"
|
1228 |
+
msgstr "個別に販売しますか?"
|
1229 |
+
|
1230 |
+
#: views/admin/import/product/_tabs/_linked_product.php:4
|
1231 |
+
msgid "Up-Sells"
|
1232 |
+
msgstr "アップセル"
|
1233 |
+
|
1234 |
+
#: views/admin/import/product/_tabs/_linked_product.php:6
|
1235 |
+
#: views/admin/import/product/_tabs/_linked_product.php:11
|
1236 |
+
msgid "Products can be matched by SKU, ID, or Title, and must be comma separated."
|
1237 |
+
msgstr "製品 SKU、ID、または、タイトルが一致して、コンマを区切る必要があります。"
|
1238 |
+
|
1239 |
+
#: views/admin/import/product/_tabs/_linked_product.php:9
|
1240 |
+
msgid "Cross-Sells"
|
1241 |
+
msgstr "クロスセル"
|
1242 |
+
|
1243 |
+
#: views/admin/import/product/_tabs/_linked_product.php:17
|
1244 |
+
msgid "Choose a grouped product…"
|
1245 |
+
msgstr "セット商品を選択する"
|
1246 |
+
|
1247 |
+
#: views/admin/import/product/_tabs/_linked_product.php:47
|
1248 |
+
msgid "Grouping"
|
1249 |
+
msgstr "グループ分け"
|
1250 |
+
|
1251 |
+
#: views/admin/import/product/_tabs/_linked_product.php:60
|
1252 |
+
msgid "Set this option to make this product part of a grouped product."
|
1253 |
+
msgstr "グループ商品を作るために、このオプションを設定します。"
|
1254 |
+
|
1255 |
+
#: views/admin/import/product/_tabs/_linked_product.php:67
|
1256 |
+
msgid "Manual Grouped Product Matching"
|
1257 |
+
msgstr "マニュアルは製品に一致するグループ化"
|
1258 |
+
|
1259 |
+
#: views/admin/import/product/_tabs/_linked_product.php:68
|
1260 |
+
msgid "Product will be assigned as the child of an already created product matching the specified criteria."
|
1261 |
+
msgstr "製品が指定された条件に一致する既に作成された製品の子として割り当てられます。"
|
1262 |
+
|
1263 |
+
#: views/admin/import/product/_tabs/_linked_product.php:75
|
1264 |
+
msgid "Match by Post Title"
|
1265 |
+
msgstr "記事のタイトルが一致します。"
|
1266 |
+
|
1267 |
+
#: views/admin/import/product/_tabs/_linked_product.php:86
|
1268 |
+
msgid "Match by Custom Field"
|
1269 |
+
msgstr "カスタム フィールドを一致させる"
|
1270 |
+
|
1271 |
+
#: views/admin/import/product/_tabs/_options.php:4
|
1272 |
+
msgid "Import options"
|
1273 |
+
msgstr "オプションをインポート"
|
1274 |
+
|
1275 |
+
#: views/admin/import/product/_tabs/_options.php:10
|
1276 |
+
msgid "Set out of stock status for missing records"
|
1277 |
+
msgstr "不足しているレコードの在庫状況から設定します。"
|
1278 |
+
|
1279 |
+
#: views/admin/import/product/_tabs/_options.php:11
|
1280 |
+
msgid "Option to set the stock status to out of stock instead of deleting the product entirely. This option doesn't work when 'Delete missing records' option is enabled."
|
1281 |
+
msgstr "製品を完全に削除する代わりに在庫切れ、在庫状況を設定するオプション。「行方不明記録を削除」オプションが有効な場合、このオプションは動作しません。"
|
1282 |
+
|
1283 |
+
#: views/admin/import/product/_tabs/_options.php:17
|
1284 |
+
msgid "Disable auto SKU generation"
|
1285 |
+
msgstr "SKU の自動生成を無効にします。"
|
1286 |
+
|
1287 |
+
#: views/admin/import/product/_tabs/_options.php:18
|
1288 |
+
msgid "Plugin will NOT automaticaly generate the SKU for each product based on md5 algorithm, if SKU option is empty."
|
1289 |
+
msgstr "SKU オプションが空の場合、プラグインは自動的にないは md5 アルゴリズムに基づく各製品の SKU を生成します。"
|
1290 |
+
|
1291 |
+
#: views/admin/import/product/_tabs/_options.php:23
|
1292 |
+
msgid "Don't check for duplicate SKUs"
|
1293 |
+
msgstr "重複する Sku をチェックしないでください。"
|
1294 |
+
|
1295 |
+
#: views/admin/import/product/_tabs/_options.php:24
|
1296 |
+
msgid "Each product should have a unique SKU. If this box is checked, WP All Import won't check for duplicate SKUs, which speeds up the import process. Make sure the SKU for each of your products is unique. If this box is unchecked, WP All Import will import products with duplicate SKUs with a blank SKU."
|
1297 |
+
msgstr "各製品固有の SKU が必要です。場合は、このチェック ボックスをオンすると、WP をすべてインポートはチェックされません重複 sku、インポート プロセスを高速化。各製品の SKU に一意ことを確認します。このボックスをオフにした場合は、WP をすべてインポート空白 SKU と重複する Sku に製品がインポートされます。"
|
1298 |
+
|
1299 |
+
#: views/admin/import/product/_tabs/_shipping.php:5
|
1300 |
+
msgid "Weight (%s)"
|
1301 |
+
msgstr "重量 (%s)"
|
1302 |
+
|
1303 |
+
#: views/admin/import/product/_tabs/_shipping.php:9
|
1304 |
+
msgid "Dimensions (%s)"
|
1305 |
+
msgstr "サイズ: %s"
|
1306 |
+
|
1307 |
+
#: views/admin/import/product/_tabs/_shipping.php:10
|
1308 |
+
msgid "Length"
|
1309 |
+
msgstr "長さ"
|
1310 |
+
|
1311 |
+
#: views/admin/import/product/_tabs/_shipping.php:11
|
1312 |
+
msgid "Width"
|
1313 |
+
msgstr "横幅"
|
1314 |
+
|
1315 |
+
#: views/admin/import/product/_tabs/_shipping.php:12
|
1316 |
+
msgid "Height"
|
1317 |
+
msgstr "高さ "
|
1318 |
+
|
1319 |
+
#: views/admin/import/product/_tabs/_shipping.php:20
|
1320 |
+
#: views/admin/import/product/_tabs/_variations.php:360
|
1321 |
+
msgid "Shipping Class"
|
1322 |
+
msgstr "配送クラス"
|
1323 |
+
|
1324 |
+
#: views/admin/import/product/_tabs/_shipping.php:29
|
1325 |
+
#: views/admin/import/product/_tabs/_variations.php:371
|
1326 |
+
msgid "No shipping class"
|
1327 |
+
msgstr "送料区分なし"
|
1328 |
+
|
1329 |
+
#: views/admin/import/product/_tabs/_shipping.php:44
|
1330 |
+
#: views/admin/import/product/_tabs/_variations.php:386
|
1331 |
+
msgid "Set product shipping class with XPath"
|
1332 |
+
msgstr "製品出荷の XPath を使用してクラスを設定します。"
|
1333 |
+
|
1334 |
+
#: views/admin/import/product/_tabs/_shipping.php:49
|
1335 |
+
msgid "Value should be the name, ID, or slug for the shipping class. Default slugs are 'taxable', 'shipping' and 'none'."
|
1336 |
+
msgstr "値は、名前、ID、または出荷クラスのスラグにする必要があります。既定のナメクジは、'課税'、'配布'、'none' が。"
|
1337 |
+
|
1338 |
+
#: views/admin/import/product/_tabs/_variations.php:7
|
1339 |
+
msgid "All my variable products have SKUs or some other unique identifier. Each variation is linked to its parent with its parent's SKU or other unique identifier."
|
1340 |
+
msgstr "すべてのバリエーションのある製品は、SKUいくつかの他の個別の識別子を持っています。それぞれのバリエーションはその親SKUまたは他の個別の識別子とその親にリンクされています。"
|
1341 |
+
|
1342 |
+
#: views/admin/import/product/_tabs/_variations.php:11
|
1343 |
+
msgid "SKU element for parent"
|
1344 |
+
msgstr "親のための SKU の要素"
|
1345 |
+
|
1346 |
+
#: views/admin/import/product/_tabs/_variations.php:13
|
1347 |
+
msgid "SKU column in the below example."
|
1348 |
+
msgstr "SKU 列で、以下の例。"
|
1349 |
+
|
1350 |
+
#: views/admin/import/product/_tabs/_variations.php:16
|
1351 |
+
msgid "Parent SKU element for variation"
|
1352 |
+
msgstr "バリエーションの親 SKU 要素"
|
1353 |
+
|
1354 |
+
#: views/admin/import/product/_tabs/_variations.php:18
|
1355 |
+
msgid "Parent SKU column in the below example."
|
1356 |
+
msgstr "親 SKU 列で、以下の例。"
|
1357 |
+
|
1358 |
+
#: views/admin/import/product/_tabs/_variations.php:21
|
1359 |
+
#: views/admin/import/product/_tabs/_variations.php:41
|
1360 |
+
#: views/admin/import/product/_tabs/_variations.php:60
|
1361 |
+
#: views/admin/import/product/_tabs/_variations.php:78
|
1362 |
+
msgid "Example Data For Use With This Option"
|
1363 |
+
msgstr "このオプションを使用するためのサンプル データ"
|
1364 |
+
|
1365 |
+
#: views/admin/import/product/_tabs/_variations.php:21
|
1366 |
+
#: views/admin/import/product/_tabs/_variations.php:41
|
1367 |
+
#: views/admin/import/product/_tabs/_variations.php:60
|
1368 |
+
#: views/admin/import/product/_tabs/_variations.php:78
|
1369 |
+
msgid "download"
|
1370 |
+
msgstr "ダウンロード"
|
1371 |
+
|
1372 |
+
#: views/admin/import/product/_tabs/_variations.php:31
|
1373 |
+
msgid "All products with variations are grouped with a unique identifier that is the same for each variation and unique for each product."
|
1374 |
+
msgstr "バリエーションを持つすべての製品は、各製品の各バリエーションとユニークで同じである一意の識別子でグループ化されています。"
|
1375 |
+
|
1376 |
+
#: views/admin/import/product/_tabs/_variations.php:38
|
1377 |
+
msgid "Group ID column in the below example."
|
1378 |
+
msgstr "以下の例では、グループID列。"
|
1379 |
+
|
1380 |
+
#: views/admin/import/product/_tabs/_variations.php:51
|
1381 |
+
msgid "All variations for a particular product have the same title as the parent product."
|
1382 |
+
msgstr "特定の製品のすべてのバリエーションは、親製品として同じタイトルを持っています。"
|
1383 |
+
|
1384 |
+
#: views/admin/import/product/_tabs/_variations.php:56
|
1385 |
+
#: views/admin/import/product/_tabs/_variations.php:74
|
1386 |
+
msgid "Product Title"
|
1387 |
+
msgstr "プロダクトタイトル"
|
1388 |
+
|
1389 |
+
#: views/admin/import/product/_tabs/_variations.php:70
|
1390 |
+
msgid "All variations for a particular product have the same title. There are no parent products."
|
1391 |
+
msgstr "特定の製品のすべてのバリエーションは、同じタイトルを持っています。親製品はありません。"
|
1392 |
+
|
1393 |
+
#: views/admin/import/product/_tabs/_variations.php:88
|
1394 |
+
msgid "I'm importing XML and my variations are child XML elements"
|
1395 |
+
msgstr "XML をインポートする私し、私のバリエーション、子 XML 要素"
|
1396 |
+
|
1397 |
+
#: views/admin/import/product/_tabs/_variations.php:95
|
1398 |
+
msgid "Video Example"
|
1399 |
+
msgstr "ビデオの例"
|
1400 |
+
|
1401 |
+
#: views/admin/import/product/_tabs/_variations.php:98
|
1402 |
+
msgid "Variations XPath"
|
1403 |
+
msgstr "XPath のバリエーション"
|
1404 |
+
|
1405 |
+
#: views/admin/import/product/_tabs/_variations.php:99
|
1406 |
+
msgid "Open XML Tree"
|
1407 |
+
msgstr "オープン XML ツリー"
|
1408 |
+
|
1409 |
+
#: views/admin/import/product/_tabs/_variations.php:124
|
1410 |
+
msgid "Add value to the parent SKU"
|
1411 |
+
msgstr "親の SKU に値を追加します。"
|
1412 |
+
|
1413 |
+
#: views/admin/import/product/_tabs/_variations.php:125
|
1414 |
+
msgid "Enable this checkbox to combine SKU from parent and variation products."
|
1415 |
+
msgstr "親やバリエーション製品 SKU を結合する場合このチェック ボックスを有効にします。"
|
1416 |
+
|
1417 |
+
#: views/admin/import/product/_tabs/_variations.php:129
|
1418 |
+
msgid "Image"
|
1419 |
+
msgstr "写真"
|
1420 |
+
|
1421 |
+
#: views/admin/import/product/_tabs/_variations.php:134
|
1422 |
+
#: views/admin/import/product/_tabs/_variations.php:144
|
1423 |
+
#: views/admin/import/product/_tabs/_variations.php:172
|
1424 |
+
#: views/admin/import/product/_tabs/_variations.php:186
|
1425 |
+
#: views/admin/import/product/_tabs/_variations.php:258
|
1426 |
+
#: views/admin/import/product/_tabs/_variations.php:269
|
1427 |
+
#: views/admin/import/product/_tabs/_variations.php:279
|
1428 |
+
#: views/admin/import/product/_tabs/_variations.php:292
|
1429 |
+
#: views/admin/import/product/_tabs/_variations.php:324
|
1430 |
+
#: views/admin/import/product/_tabs/_variations.php:338
|
1431 |
+
#: views/admin/import/product/_tabs/_variations.php:346
|
1432 |
+
#: views/admin/import/product/_tabs/_variations.php:395
|
1433 |
+
#: views/admin/import/product/_tabs/_variations.php:439
|
1434 |
+
#: views/admin/import/product/_tabs/_variations.php:468
|
1435 |
+
#: views/admin/import/product/_tabs/_variations.php:494
|
1436 |
+
#: views/admin/import/product/_tabs/_variations.php:503
|
1437 |
+
msgid "XPath Is From Parent"
|
1438 |
+
msgstr "親からのXPath"
|
1439 |
+
|
1440 |
+
#: views/admin/import/product/_tabs/_variations.php:135
|
1441 |
+
msgid "Images are imported according to the options set in the Images section below. There you can import images to the parent products, and here you can import images to the product variations."
|
1442 |
+
msgstr "画像はイメージで設定したオプションに従ってインポートされます。親製品にイメージをインポートできますが、ここでは、製品のバリエーションにイメージをインポートできます。"
|
1443 |
+
|
1444 |
+
#: views/admin/import/product/_tabs/_variations.php:187
|
1445 |
+
msgid "Enable this checkbox to determine XPath from parent element."
|
1446 |
+
msgstr "親要素から XPath を決定するこのチェック ボックスを有効にします。"
|
1447 |
+
|
1448 |
+
#: views/admin/import/product/_tabs/_variations.php:207
|
1449 |
+
msgid "Set the stock status to In Stock for positive or blank Stock Qty values, and Out Of Stock if Stock Qty is 0."
|
1450 |
+
msgstr "在庫の数量が 0 の場合、在庫状況を肯定的なまたは空白の在庫の数量値および在庫のうちの在庫に設定します。"
|
1451 |
+
|
1452 |
+
#: views/admin/import/product/_tabs/_variations.php:253
|
1453 |
+
msgid "Regular Price"
|
1454 |
+
msgstr "Precio Regular"
|
1455 |
+
|
1456 |
+
#: views/admin/import/product/_tabs/_variations.php:262
|
1457 |
+
msgid "Sale Price"
|
1458 |
+
msgstr "セール価格"
|
1459 |
+
|
1460 |
+
#: views/admin/import/product/_tabs/_variations.php:274
|
1461 |
+
msgid "Wholesale Price ("
|
1462 |
+
msgstr "仕切価格 ("
|
1463 |
+
|
1464 |
+
#: views/admin/import/product/_tabs/_variations.php:288
|
1465 |
+
msgid "Variable Sale Price Dates"
|
1466 |
+
msgstr "日付を変数の販売価格"
|
1467 |
+
|
1468 |
+
#: views/admin/import/product/_tabs/_variations.php:333
|
1469 |
+
msgid "Weight"
|
1470 |
+
msgstr "重量"
|
1471 |
+
|
1472 |
+
#: views/admin/import/product/_tabs/_variations.php:342
|
1473 |
+
msgid "Dimensions (L×W×H)"
|
1474 |
+
msgstr "寸法 (L × W × H)"
|
1475 |
+
|
1476 |
+
#: views/admin/import/product/_tabs/_variations.php:391
|
1477 |
+
msgid "The value of presented XPath should be one of the following: ('taxable', 'shipping', 'none')."
|
1478 |
+
msgstr "提示された XPath の値は、次のいずれかをする必要があります: (''、'配布'、'none') 課税。"
|
1479 |
+
|
1480 |
+
#: views/admin/import/product/_tabs/_variations.php:419
|
1481 |
+
msgid "Same as parent"
|
1482 |
+
msgstr "フォルダと同じ"
|
1483 |
+
|
1484 |
+
#: views/admin/import/product/_tabs/_variations.php:430
|
1485 |
+
msgid "Set product tax class with XPath"
|
1486 |
+
msgstr "XPath を使って製品税クラスを設定します。"
|
1487 |
+
|
1488 |
+
#: views/admin/import/product/_tabs/_variations.php:435
|
1489 |
+
msgid "The value of presented XPath should be one of the following: ('reduced-rate', 'zero-rate')."
|
1490 |
+
msgstr "提示された XPath の値は、次のいずれかをする必要があります: ('reduced-rate', 'zero-rate')."
|
1491 |
+
|
1492 |
+
#: views/admin/import/product/_tabs/_variations.php:480
|
1493 |
+
msgid "File paths/URLs, comma separated. The delimiter option uses when xml element contains few paths/URLs (http://files.com/1.doc, http://files.com/2.doc)."
|
1494 |
+
msgstr "ファイルのパス/Url、カンマで区切られました。区切り記号オプションを使用して、xml 要素にいくつかのパス/Url (http://files.com/1.doc、http://files.com/2.doc) が含まれている場合。"
|
1495 |
+
|
1496 |
+
#: views/admin/import/product/_tabs/_variations.php:538
|
1497 |
+
msgid "Variation Attributes"
|
1498 |
+
msgstr "デフォルトのバリエーション属性。"
|
1499 |
+
|
1500 |
+
#: views/admin/import/product/_tabs/_variations.php:575
|
1501 |
+
#: views/admin/import/product/_tabs/_variations.php:607
|
1502 |
+
#: views/admin/import/product/_tabs/_variations.php:637
|
1503 |
+
msgid "Taxonomy"
|
1504 |
+
msgstr "分類"
|
1505 |
+
|
1506 |
+
#: views/admin/import/product/_tabs/_variations.php:662
|
1507 |
+
msgid "No matching elements found for XPath expression specified"
|
1508 |
+
msgstr "ルート要素とXPath式が一致する要素が見つかりません"
|
1509 |
+
|
1510 |
+
#: views/admin/import/product/_tabs/_variations.php:770
|
1511 |
+
msgid "Set the default selection in the attributes dropdowns."
|
1512 |
+
msgstr "属性ドロップダウン リストの既定の選択を設定します。"
|
1513 |
+
|
1514 |
+
#: views/admin/import/product/_tabs/_variations.php:771
|
1515 |
+
msgid "The attributes for the first variation will be automatically selected on the frontend."
|
1516 |
+
msgstr "フロント エンドの最初のバリエーションの属性が自動的に選択されます。"
|
1517 |
+
|
1518 |
+
#: views/admin/import/product/_tabs/_variations.php:776
|
1519 |
+
msgid "Set first variation as the default selection."
|
1520 |
+
msgstr "既定の選択として最初のバリエーションを設定します。"
|
1521 |
+
|
1522 |
+
#: views/admin/import/product/_tabs/_variations.php:780
|
1523 |
+
msgid "Set first in stock variation as the default selection."
|
1524 |
+
msgstr "最初に設定の既定の選択として株価変動。"
|
1525 |
+
|
1526 |
+
#: views/admin/import/product/_tabs/_variations.php:785
|
1527 |
+
msgid "Do not set default selections for the dropdowns."
|
1528 |
+
msgstr "ドロップダウン ・ リストの既定値を設定しないでください。"
|
1529 |
+
|
1530 |
+
#: views/admin/import/product/_tabs/_variations.php:791
|
1531 |
+
msgid "Create products with no variations as simple products."
|
1532 |
+
msgstr "ような単純な製品はバリエーションで製品を作成します。"
|
1533 |
+
|
1534 |
+
#: views/admin/import/product/_tabs/_variations.php:796
|
1535 |
+
msgid "Save variation image to the gallery."
|
1536 |
+
msgstr "変動画像をギャラリーに保存します。"
|
1537 |
+
|
1538 |
+
#: views/admin/import/product/_tabs/_variations.php:801
|
1539 |
+
msgid "Set _stock value for parent product to the _stock value for the first variation."
|
1540 |
+
msgstr "最初のバリエーションの _stock 値を親製品の _stock 値を設定します。"
|
1541 |
+
|
1542 |
+
#: views/admin/import/product/_tabs/_variations.php:802
|
1543 |
+
msgid "This option works when there are no parent products in your feed ( cases 2 and 4 on Variations tab)."
|
1544 |
+
msgstr "このオプションは、あなたのフィード (ケース 2、[バリエーション] タブ 4) 親製品がない場合を機能します。"
|
1545 |
+
|
1546 |
+
#: views/admin/import/product/index.php:4
|
1547 |
+
msgid "WooCommerce Add-On"
|
1548 |
+
msgstr "WooCommerce アドオン"
|
1549 |
+
|
1550 |
+
#: views/admin/import/product/index.php:22
|
1551 |
+
msgid "Simple product"
|
1552 |
+
msgstr "基本的な商品"
|
1553 |
+
|
1554 |
+
#: views/admin/import/product/index.php:23
|
1555 |
+
msgid "Grouped product"
|
1556 |
+
msgstr "グループ化された商品"
|
1557 |
+
|
1558 |
+
#: views/admin/import/product/index.php:24
|
1559 |
+
msgid "External/Affiliate product"
|
1560 |
+
msgstr "外部/アフィリエイト商品"
|
1561 |
+
|
1562 |
+
#: views/admin/import/product/index.php:25
|
1563 |
+
msgid "Variable product"
|
1564 |
+
msgstr "バリエーションのある商品"
|
1565 |
+
|
1566 |
+
#: views/admin/import/product/index.php:39
|
1567 |
+
msgid "Set Product Type With XPath"
|
1568 |
+
msgstr "XPath を使って製品の種類を設定します。"
|
1569 |
+
|
1570 |
+
#: views/admin/import/product/index.php:44
|
1571 |
+
msgid "The value of presented XPath should be one of the following: ('simple', 'grouped', 'external', 'variable')."
|
1572 |
+
msgstr "XPath の値は、次のいずれかを設定する必要があります: ('simple', 'grouped', 'external', 'variable')."
|
1573 |
+
|
1574 |
+
#: views/admin/import/product/index.php:55
|
1575 |
+
msgid "General"
|
1576 |
+
msgstr "基本設定"
|
1577 |
+
|
1578 |
+
#: views/admin/import/product/index.php:57
|
1579 |
+
msgid "Inventory"
|
1580 |
+
msgstr "在庫"
|
1581 |
+
|
1582 |
+
#: views/admin/import/product/index.php:59
|
1583 |
+
#: views/admin/import/shop_order/order_bs_section.php:23
|
1584 |
+
#: views/admin/import/shop_order/order_items_section.php:31
|
1585 |
+
msgid "Shipping"
|
1586 |
+
msgstr "配送"
|
1587 |
+
|
1588 |
+
#: views/admin/import/product/index.php:61
|
1589 |
+
msgid "Linked Products"
|
1590 |
+
msgstr "リンクされた商品"
|
1591 |
+
|
1592 |
+
#: views/admin/import/product/index.php:67
|
1593 |
+
msgid "Variations"
|
1594 |
+
msgstr "バリエーション"
|
1595 |
+
|
1596 |
+
#: views/admin/import/product/index.php:69
|
1597 |
+
msgid "Add-On Options"
|
1598 |
+
msgstr "フィルタリングオプションを追加する"
|
1599 |
+
|
1600 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:6
|
1601 |
+
msgid "Try to load data from existing customer"
|
1602 |
+
msgstr "既存の顧客からデータをロードしようとしました。"
|
1603 |
+
|
1604 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:7
|
1605 |
+
msgid "If no customer is found the order will be skipped."
|
1606 |
+
msgstr "顧客が見つからない場合順序はスキップされます。"
|
1607 |
+
|
1608 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:14
|
1609 |
+
msgid "Match by:"
|
1610 |
+
msgstr "一致する:"
|
1611 |
+
|
1612 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:16
|
1613 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:28
|
1614 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:40
|
1615 |
+
#: views/admin/import/shop_order/order_notes_section.php:71
|
1616 |
+
#: views/admin/import/shop_order/order_notes_section.php:137
|
1617 |
+
msgid "Username"
|
1618 |
+
msgstr "ユーザー名"
|
1619 |
+
|
1620 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:17
|
1621 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:140
|
1622 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:237
|
1623 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:52
|
1624 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:90
|
1625 |
+
#: views/admin/import/shop_order/order_notes_section.php:77
|
1626 |
+
#: views/admin/import/shop_order/order_notes_section.php:143
|
1627 |
+
msgid "Email"
|
1628 |
+
msgstr "メール"
|
1629 |
+
|
1630 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:18
|
1631 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:64
|
1632 |
+
msgid "Custom Field"
|
1633 |
+
msgstr "カスタムフィールド"
|
1634 |
+
|
1635 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:19
|
1636 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:63
|
1637 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:83
|
1638 |
+
msgid "User ID"
|
1639 |
+
msgstr "ユーザーID"
|
1640 |
+
|
1641 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:38
|
1642 |
+
msgid "Email Address"
|
1643 |
+
msgstr "Eメール"
|
1644 |
+
|
1645 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:49
|
1646 |
+
msgid "Field Name"
|
1647 |
+
msgstr "フィールド名"
|
1648 |
+
|
1649 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:52
|
1650 |
+
msgid "Field Value"
|
1651 |
+
msgstr "項目値"
|
1652 |
+
|
1653 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:70
|
1654 |
+
msgid "If no match found, import as guest customer"
|
1655 |
+
msgstr "ゲスト ユーザーとしてインポートする場合一致はありませんでした、"
|
1656 |
+
|
1657 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:76
|
1658 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:173
|
1659 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:26
|
1660 |
+
msgid "First Name"
|
1661 |
+
msgstr "姓"
|
1662 |
+
|
1663 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:82
|
1664 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:179
|
1665 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:32
|
1666 |
+
msgid "Last Name"
|
1667 |
+
msgstr "名"
|
1668 |
+
|
1669 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:90
|
1670 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:187
|
1671 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:40
|
1672 |
+
msgid "Company"
|
1673 |
+
msgstr "会社"
|
1674 |
+
|
1675 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:98
|
1676 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:195
|
1677 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:48
|
1678 |
+
msgid "Address 1"
|
1679 |
+
msgstr "都道府県"
|
1680 |
+
|
1681 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:104
|
1682 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:201
|
1683 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:54
|
1684 |
+
msgid "Address 2"
|
1685 |
+
msgstr "町名および番地(2-3-5 建物名 部屋番号まで)"
|
1686 |
+
|
1687 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:112
|
1688 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:209
|
1689 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:62
|
1690 |
+
msgid "City"
|
1691 |
+
msgstr "都市"
|
1692 |
+
|
1693 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:118
|
1694 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:215
|
1695 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:68
|
1696 |
+
msgid "Postcode"
|
1697 |
+
msgstr "郵便番号"
|
1698 |
+
|
1699 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:126
|
1700 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:223
|
1701 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:76
|
1702 |
+
msgid "Country"
|
1703 |
+
msgstr "国:"
|
1704 |
+
|
1705 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:132
|
1706 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:229
|
1707 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:82
|
1708 |
+
msgid "State/Country"
|
1709 |
+
msgstr "市、州、国"
|
1710 |
+
|
1711 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:146
|
1712 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:243
|
1713 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:96
|
1714 |
+
msgid "Phone"
|
1715 |
+
msgstr "電話番号"
|
1716 |
+
|
1717 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:155
|
1718 |
+
msgid "Orders without a match will be skipped"
|
1719 |
+
msgstr "一致せず注文はスキップされます。"
|
1720 |
+
|
1721 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:165
|
1722 |
+
msgid "Import as guest customer"
|
1723 |
+
msgstr "ゲスト ユーザーとしてインポートします。"
|
1724 |
+
|
1725 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:6
|
1726 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:95
|
1727 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:6
|
1728 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:68
|
1729 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:6
|
1730 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:559
|
1731 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:6
|
1732 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:125
|
1733 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:6
|
1734 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:141
|
1735 |
+
#: views/admin/import/shop_order/order_notes_section.php:14
|
1736 |
+
#: views/admin/import/shop_order/order_notes_section.php:176
|
1737 |
+
msgid "Fixed Repeater Mode"
|
1738 |
+
msgstr "固定のリピータ モード"
|
1739 |
+
|
1740 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:23
|
1741 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:54
|
1742 |
+
msgid "Coupon Code"
|
1743 |
+
msgstr "クーポンコード"
|
1744 |
+
|
1745 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:31
|
1746 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:62
|
1747 |
+
msgid "Discount Amount"
|
1748 |
+
msgstr "割引合計"
|
1749 |
+
|
1750 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:37
|
1751 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:68
|
1752 |
+
msgid "Discount Amount Tax"
|
1753 |
+
msgstr "割引額"
|
1754 |
+
|
1755 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:80
|
1756 |
+
msgid "Add Another Coupon"
|
1757 |
+
msgstr "別のクーポンを追加します。"
|
1758 |
+
|
1759 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:88
|
1760 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:61
|
1761 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:552
|
1762 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:118
|
1763 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:134
|
1764 |
+
#: views/admin/import/shop_order/order_notes_section.php:169
|
1765 |
+
msgid "Advanced Options"
|
1766 |
+
msgstr "高度な設定"
|
1767 |
+
|
1768 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:98
|
1769 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:118
|
1770 |
+
msgid "Multiple coupons separated by"
|
1771 |
+
msgstr "区切られた複数のクーポン"
|
1772 |
+
|
1773 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:106
|
1774 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:79
|
1775 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:569
|
1776 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:136
|
1777 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:152
|
1778 |
+
#: views/admin/import/shop_order/order_notes_section.php:187
|
1779 |
+
msgid "Variable Repeater Mode"
|
1780 |
+
msgstr "変数のリピータ モード"
|
1781 |
+
|
1782 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:109
|
1783 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:82
|
1784 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:572
|
1785 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:139
|
1786 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:155
|
1787 |
+
#: views/admin/import/shop_order/order_notes_section.php:190
|
1788 |
+
msgid "For each"
|
1789 |
+
msgstr "各アドオン"
|
1790 |
+
|
1791 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:111
|
1792 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:84
|
1793 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:574
|
1794 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:141
|
1795 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:157
|
1796 |
+
#: views/admin/import/shop_order/order_notes_section.php:192
|
1797 |
+
msgid "do..."
|
1798 |
+
msgstr "こうする!"
|
1799 |
+
|
1800 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:20
|
1801 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:37
|
1802 |
+
msgid "Fee Name"
|
1803 |
+
msgstr "料金名"
|
1804 |
+
|
1805 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:26
|
1806 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:43
|
1807 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:29
|
1808 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:76
|
1809 |
+
msgid "Amount"
|
1810 |
+
msgstr "数量"
|
1811 |
+
|
1812 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:53
|
1813 |
+
msgid "Add Another Fee"
|
1814 |
+
msgstr "情報を追加"
|
1815 |
+
|
1816 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:71
|
1817 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:91
|
1818 |
+
msgid "Multiple fees separated by"
|
1819 |
+
msgstr "区切られた複数の手数料"
|
1820 |
+
|
1821 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:11
|
1822 |
+
msgid "Get data from existing products"
|
1823 |
+
msgstr "既存の製品からデータを取得します。"
|
1824 |
+
|
1825 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:12
|
1826 |
+
msgid "If no product is found the order will be skipped."
|
1827 |
+
msgstr "製品が見つからない場合、順序はスキップされます。"
|
1828 |
+
|
1829 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:29
|
1830 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:157
|
1831 |
+
msgid "Product SKU"
|
1832 |
+
msgstr "商品 SKU"
|
1833 |
+
|
1834 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:33
|
1835 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:161
|
1836 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:312
|
1837 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:471
|
1838 |
+
msgid "Quantity"
|
1839 |
+
msgstr "数"
|
1840 |
+
|
1841 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:39
|
1842 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:167
|
1843 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:318
|
1844 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:477
|
1845 |
+
#: views/admin/import/shop_order/order_items_section.php:35
|
1846 |
+
msgid "Taxes"
|
1847 |
+
msgstr "税金"
|
1848 |
+
|
1849 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:55
|
1850 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:99
|
1851 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:175
|
1852 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:335
|
1853 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:380
|
1854 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:485
|
1855 |
+
msgid "Tax Rate Code"
|
1856 |
+
msgstr "税率コード。"
|
1857 |
+
|
1858 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:62
|
1859 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:106
|
1860 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:182
|
1861 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:342
|
1862 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:387
|
1863 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:492
|
1864 |
+
msgid "Calculate Tax Amount By:"
|
1865 |
+
msgstr "税額の計算基準:"
|
1866 |
+
|
1867 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:66
|
1868 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:110
|
1869 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:186
|
1870 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:346
|
1871 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:391
|
1872 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:496
|
1873 |
+
msgid "Percentage"
|
1874 |
+
msgstr "パーセンテージ"
|
1875 |
+
|
1876 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:77
|
1877 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:121
|
1878 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:197
|
1879 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:357
|
1880 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:402
|
1881 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:507
|
1882 |
+
msgid "Tax amount per unit"
|
1883 |
+
msgstr "単位当たりの税額"
|
1884 |
+
|
1885 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:88
|
1886 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:132
|
1887 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:208
|
1888 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:368
|
1889 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:413
|
1890 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:518
|
1891 |
+
msgid "Look up tax rate code"
|
1892 |
+
msgstr "率の税コードを検索します。"
|
1893 |
+
|
1894 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:89
|
1895 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:133
|
1896 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:209
|
1897 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:369
|
1898 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:414
|
1899 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:519
|
1900 |
+
msgid "If rate code is not found, this tax amount will not be imported."
|
1901 |
+
msgstr "速度コードが見つからない場合、この税額はインポートされません。"
|
1902 |
+
|
1903 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:231
|
1904 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:541
|
1905 |
+
msgid "Add Product"
|
1906 |
+
msgstr "商品を追加"
|
1907 |
+
|
1908 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:242
|
1909 |
+
msgid "Manually import product order data and do not try to match to existing products"
|
1910 |
+
msgstr "製品注文データを手動でインポート、既存の製品に合わせてしようとしないでください。"
|
1911 |
+
|
1912 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:243
|
1913 |
+
msgid "The product in this order will not be linked to any existing products."
|
1914 |
+
msgstr "この順序で製品は、任意の既存の製品にはリンクされません。"
|
1915 |
+
|
1916 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:267
|
1917 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:439
|
1918 |
+
msgid "Product Name"
|
1919 |
+
msgstr "商品名"
|
1920 |
+
|
1921 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:300
|
1922 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:459
|
1923 |
+
msgid "Add Product Meta"
|
1924 |
+
msgstr "商品を新規追加"
|
1925 |
+
|
1926 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:300
|
1927 |
+
msgid "Add More Product Meta"
|
1928 |
+
msgstr "多くの製品のメタを追加します。"
|
1929 |
+
|
1930 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:308
|
1931 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:467
|
1932 |
+
msgid "Price per Unit"
|
1933 |
+
msgstr "仕切単価"
|
1934 |
+
|
1935 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:562
|
1936 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:581
|
1937 |
+
msgid "Multiple products separated by"
|
1938 |
+
msgstr "区切られた複数の製品"
|
1939 |
+
|
1940 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:6
|
1941 |
+
msgid "Refund Amount"
|
1942 |
+
msgstr "払戻総額"
|
1943 |
+
|
1944 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:12
|
1945 |
+
msgid "Reason"
|
1946 |
+
msgstr "理由"
|
1947 |
+
|
1948 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:20
|
1949 |
+
#: views/admin/import/shop_order/order_details_section.php:39
|
1950 |
+
#: views/admin/import/shop_order/order_notes_section.php:39
|
1951 |
+
#: views/admin/import/shop_order/order_notes_section.php:103
|
1952 |
+
msgid "Date"
|
1953 |
+
msgstr "日付"
|
1954 |
+
|
1955 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:26
|
1956 |
+
msgid "Refund Issued By"
|
1957 |
+
msgstr "払い戻しが発行"
|
1958 |
+
|
1959 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:30
|
1960 |
+
msgid "Load details from existing user"
|
1961 |
+
msgstr "既存のユーザーからのロードの詳細"
|
1962 |
+
|
1963 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:31
|
1964 |
+
msgid "If no user is matched, refund issuer will be left blank."
|
1965 |
+
msgstr "ユーザーを一致払い戻し発行者は空白のままにしません。"
|
1966 |
+
|
1967 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:36
|
1968 |
+
msgid "Match user by:"
|
1969 |
+
msgstr "一致によってユーザー:"
|
1970 |
+
|
1971 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:98
|
1972 |
+
msgid "Leave refund issuer blank"
|
1973 |
+
msgstr "払い戻し発行者は空白のまま"
|
1974 |
+
|
1975 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:23
|
1976 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:70
|
1977 |
+
msgid "Shipping Name"
|
1978 |
+
msgstr "配送名"
|
1979 |
+
|
1980 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:37
|
1981 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:84
|
1982 |
+
msgid "Shipping Method"
|
1983 |
+
msgstr "配送方法"
|
1984 |
+
|
1985 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:53
|
1986 |
+
msgid "Shipping method can be matched by Name or ID: %s. If shipping method is not found then no shipping information will be imported."
|
1987 |
+
msgstr "%sの:配送方法は、名前またはIDで一致させることができます。配送方法が、その後見つからない場合は何の出荷情報はインポートされません。"
|
1988 |
+
|
1989 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:98
|
1990 |
+
msgid "Shipping method can be matched by Nmae or ID. If shipping method is not found then no shipping information will be imported."
|
1991 |
+
msgstr "配送方法は、名前またはIDで一致させることができます。配送方法が、その後見つからない場合は何の出荷情報はインポートされません。"
|
1992 |
+
|
1993 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:110
|
1994 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:126
|
1995 |
+
msgid "Add More"
|
1996 |
+
msgstr "追加詳細"
|
1997 |
+
|
1998 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:128
|
1999 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:148
|
2000 |
+
msgid "Multiple shipping costs separated by"
|
2001 |
+
msgstr "で区切られた複数の輸送費"
|
2002 |
+
|
2003 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:34
|
2004 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:83
|
2005 |
+
msgid "Tax Rate Amount"
|
2006 |
+
msgstr "税率"
|
2007 |
+
|
2008 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:40
|
2009 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:89
|
2010 |
+
msgid "Shipping Tax Amount"
|
2011 |
+
msgstr "送料の(出荷)税額"
|
2012 |
+
|
2013 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:48
|
2014 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:97
|
2015 |
+
msgid "Tax Rate"
|
2016 |
+
msgstr "税率"
|
2017 |
+
|
2018 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:66
|
2019 |
+
msgid "Tax rate method can be matched by ID: %s. If tax method is not found then no tax information will be imported."
|
2020 |
+
msgstr "ID が一致する税レート方式: %s。税方式が見つからない場合税務情報はインポートされません。"
|
2021 |
+
|
2022 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:100
|
2023 |
+
msgid "Select"
|
2024 |
+
msgstr "選択 "
|
2025 |
+
|
2026 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:114
|
2027 |
+
msgid "Tax rate method can be matched by ID. If tax method is not found then no tax information will be imported."
|
2028 |
+
msgstr "ID で一致することができます税金率メソッド税方式が見つからない場合税務情報はインポートされません。"
|
2029 |
+
|
2030 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:144
|
2031 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:164
|
2032 |
+
msgid "Multiple taxes separated by"
|
2033 |
+
msgstr "区切られた複数の税"
|
2034 |
+
|
2035 |
+
#: views/admin/import/shop_order/_tabs/_order_payment.php:8
|
2036 |
+
msgid "Payment Method"
|
2037 |
+
msgstr "支払方法"
|
2038 |
+
|
2039 |
+
#: views/admin/import/shop_order/_tabs/_order_payment.php:25
|
2040 |
+
msgid "Payment method can be matched by title or slug: %s. If payment method is not found 'N/A' will be applied to order."
|
2041 |
+
msgstr "タイトルやスラッグがお支払方法に一致する: %s。お支払方法がない場合「N/A」順に適用されます。"
|
2042 |
+
|
2043 |
+
#: views/admin/import/shop_order/_tabs/_order_payment.php:36
|
2044 |
+
msgid "Transaction ID"
|
2045 |
+
msgstr "トランザクションID"
|
2046 |
+
|
2047 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:6
|
2048 |
+
msgid "Copy from billing"
|
2049 |
+
msgstr "請求先からコピー"
|
2050 |
+
|
2051 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:13
|
2052 |
+
msgid "Import shipping address"
|
2053 |
+
msgstr "出荷アドレスをインポートします。"
|
2054 |
+
|
2055 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:21
|
2056 |
+
msgid "If order has no shipping info, copy from billing"
|
2057 |
+
msgstr "注文が配送情報を持たない場合は請求からコピーします。"
|
2058 |
+
|
2059 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:109
|
2060 |
+
msgid "Customer Provided Note"
|
2061 |
+
msgstr "お客様からの注意事項"
|
2062 |
+
|
2063 |
+
#: views/admin/import/shop_order/_tabs/_order_total.php:5
|
2064 |
+
msgid "Calculate order total automatically"
|
2065 |
+
msgstr "注文の合計を自動的に計算します。"
|
2066 |
+
|
2067 |
+
#: views/admin/import/shop_order/_tabs/_order_total.php:10
|
2068 |
+
msgid "Set order total manually"
|
2069 |
+
msgstr "セット注文合計手動"
|
2070 |
+
|
2071 |
+
#: views/admin/import/shop_order/order_bs_section.php:4
|
2072 |
+
msgid "Billing & Shipping Details"
|
2073 |
+
msgstr "請求&発送詳細"
|
2074 |
+
|
2075 |
+
#: views/admin/import/shop_order/order_bs_section.php:19
|
2076 |
+
msgid "Billing"
|
2077 |
+
msgstr "請求"
|
2078 |
+
|
2079 |
+
#: views/admin/import/shop_order/order_bs_section.php:27
|
2080 |
+
msgid "Payment"
|
2081 |
+
msgstr "支払い"
|
2082 |
+
|
2083 |
+
#: views/admin/import/shop_order/order_details_section.php:4
|
2084 |
+
msgid "Order Details"
|
2085 |
+
msgstr "ご注文詳細"
|
2086 |
+
|
2087 |
+
#: views/admin/import/shop_order/order_details_section.php:13
|
2088 |
+
msgid "Order Status"
|
2089 |
+
msgstr "注文状況"
|
2090 |
+
|
2091 |
+
#: views/admin/import/shop_order/order_details_section.php:29
|
2092 |
+
msgid "Order status can be matched by title or slug: %s. If order status is not found 'Pending Payment' will be applied to order."
|
2093 |
+
msgstr "%sは:注文状況は、タイトルやスラグによって一致させることができます。注文のステータスが「保留中のお支払い'が見つからない場合はご注文に適用されます。"
|
2094 |
+
|
2095 |
+
#: views/admin/import/shop_order/order_details_section.php:39
|
2096 |
+
#: views/admin/import/shop_order/order_notes_section.php:39
|
2097 |
+
#: views/admin/import/shop_order/order_notes_section.php:103
|
2098 |
+
msgid "Use any format supported by the PHP <b>strtotime</b> function. That means pretty much any human-readable date will work."
|
2099 |
+
msgstr "PHP<b>strtotime</ b>の関数でサポートされている任意のフォーマットを使用してください。それはほとんどすべての人間が読める日が動作することを意味します。"
|
2100 |
+
|
2101 |
+
#: views/admin/import/shop_order/order_items_section.php:4
|
2102 |
+
msgid "Order Items"
|
2103 |
+
msgstr "注文商品"
|
2104 |
+
|
2105 |
+
#: views/admin/import/shop_order/order_items_section.php:19
|
2106 |
+
msgid "Products"
|
2107 |
+
msgstr "商品"
|
2108 |
+
|
2109 |
+
#: views/admin/import/shop_order/order_items_section.php:23
|
2110 |
+
msgid "Fees"
|
2111 |
+
msgstr "ゲートウェイの料金と割引"
|
2112 |
+
|
2113 |
+
#: views/admin/import/shop_order/order_items_section.php:27
|
2114 |
+
msgid "Coupons"
|
2115 |
+
msgstr "クーポン"
|
2116 |
+
|
2117 |
+
#: views/admin/import/shop_order/order_items_section.php:43
|
2118 |
+
msgid "Total"
|
2119 |
+
msgstr "総計"
|
2120 |
+
|
2121 |
+
#: views/admin/import/shop_order/order_notes_section.php:4
|
2122 |
+
msgid "Notes"
|
2123 |
+
msgstr "注記"
|
2124 |
+
|
2125 |
+
#: views/admin/import/shop_order/order_notes_section.php:47
|
2126 |
+
#: views/admin/import/shop_order/order_notes_section.php:111
|
2127 |
+
msgid "Visibility"
|
2128 |
+
msgstr "可視性"
|
2129 |
+
|
2130 |
+
#: views/admin/import/shop_order/order_notes_section.php:50
|
2131 |
+
#: views/admin/import/shop_order/order_notes_section.php:115
|
2132 |
+
msgid "Private note"
|
2133 |
+
msgstr "プライベートメモ"
|
2134 |
+
|
2135 |
+
#: views/admin/import/shop_order/order_notes_section.php:54
|
2136 |
+
#: views/admin/import/shop_order/order_notes_section.php:119
|
2137 |
+
msgid "Note to customer"
|
2138 |
+
msgstr "お客様への通知"
|
2139 |
+
|
2140 |
+
#: views/admin/import/shop_order/order_notes_section.php:64
|
2141 |
+
#: views/admin/import/shop_order/order_notes_section.php:129
|
2142 |
+
msgid "Use 'private' or 'customer'."
|
2143 |
+
msgstr "'プライベート' または '顧客' を使用"
|
2144 |
+
|
2145 |
+
#: views/admin/import/shop_order/order_notes_section.php:156
|
2146 |
+
msgid "Add Another Note"
|
2147 |
+
msgstr "情報を追加"
|
2148 |
+
|
2149 |
+
#: views/admin/import/shop_order/order_notes_section.php:179
|
2150 |
+
#: views/admin/import/shop_order/order_notes_section.php:199
|
2151 |
+
msgid "Multiple notes separated by"
|
2152 |
+
msgstr "区切られた複数のノート"
|
2153 |
+
|
2154 |
+
#: wpai-woocommerce-add-on.php:35
|
2155 |
+
msgid "Please de-activate and remove the free version of the WooCommere add-on before activating the paid version."
|
2156 |
+
msgstr "非アクティブにしてくださいとアドオン有料版をアクティブにする前にWooCommerceの無料版を削除します。"
|
2157 |
+
|
2158 |
+
#. Plugin Name of the plugin/theme
|
2159 |
+
#:
|
2160 |
+
msgid "WP All Import - WooCommerce Add-On Pro"
|
2161 |
+
msgstr "WP All Import - WooCommerce アドオン プロ版"
|
2162 |
+
|
2163 |
+
#. Plugin URI of the plugin/theme
|
2164 |
+
#:
|
2165 |
+
msgid "http://www.wpallimport.com/"
|
2166 |
+
msgstr "http://www.wpallimport.com/"
|
2167 |
+
|
2168 |
+
#. Description of the plugin/theme
|
2169 |
+
#:
|
2170 |
+
msgid "Import to WooCommerce. Adds a section to WP All Import that looks just like WooCommerce. Requires WP All Import."
|
2171 |
+
msgstr "WooCommerce をインポートします。WooCommerce のような WP すべてインポートするセクションを追加します。WP すべてインポートが必要です。"
|
2172 |
+
|
2173 |
+
#. Author of the plugin/theme
|
2174 |
+
#:
|
2175 |
+
msgid "Soflyy"
|
2176 |
+
msgstr "Soflyy"
|
2177 |
+
|
i18n/languages/wpai_woocommerce_addon_plugin.mo
ADDED
Binary file
|
i18n/languages/wpai_woocommerce_addon_plugin.pot
ADDED
@@ -0,0 +1,2177 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"MIME-Version: 1.0\n"
|
4 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
5 |
+
"Content-Transfer-Encoding: 8bit\n"
|
6 |
+
"X-Generator: POEditor.com\n"
|
7 |
+
"Project-Id-Version: WooCommerce Add-On Pro\n"
|
8 |
+
"Language: en-us\n"
|
9 |
+
|
10 |
+
#: actions/admin_notices.php:10
|
11 |
+
msgid "<b>%s Plugin</b>: WooCommerce must be installed."
|
12 |
+
msgstr ""
|
13 |
+
|
14 |
+
#: actions/admin_notices.php:24
|
15 |
+
msgid "<b>%s Plugin</b>: WP All Import must be installed. Free edition of WP All Import at <a href=\"http://wordpress.org/plugins/wp-all-import/\" target=\"_blank\">http://wordpress.org/plugins/wp-all-import/</a> and the paid edition at <a href=\"http://www.wpallimport.com/\">http://www.wpallimport.com/</a>"
|
16 |
+
msgstr ""
|
17 |
+
|
18 |
+
#: actions/admin_notices.php:38
|
19 |
+
msgid "<b>%s Plugin</b>: Please update your WP All Import to the latest version"
|
20 |
+
msgstr ""
|
21 |
+
|
22 |
+
#: actions/admin_notices.php:51
|
23 |
+
msgid "<b>%s Plugin</b>: Please update your WooCommerce to the latest version"
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
+
#: actions/pmxi_reimport.php:29 views/admin/import/product/index.php:16
|
27 |
+
msgid "Product Type"
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: actions/pmxi_reimport.php:35 views/admin/import/product/index.php:63
|
31 |
+
msgid "Attributes"
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: actions/pmxi_reimport.php:39
|
35 |
+
msgid "Update all Attributes"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: actions/pmxi_reimport.php:43
|
39 |
+
msgid "Update only these Attributes, leave the rest alone"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: actions/pmxi_reimport.php:52
|
43 |
+
msgid "Leave these attributes alone, update all other Attributes"
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: classes/updater.php:63
|
47 |
+
msgid "View WP All Import - WooCommerce Add-On Pro Changelog"
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: classes/updater.php:63
|
51 |
+
msgid "Changelog"
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: classes/updater.php:258
|
55 |
+
msgid "There is a new version of %1$s available. <a target=\"_blank\" class=\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
+
#: classes/updater.php:265
|
59 |
+
msgid "There is a new version of %1$s available. <a target=\"_blank\" class=\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s\">update now</a>."
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: classes/updater.php:448
|
63 |
+
msgid "You do not have permission to install plugin updates"
|
64 |
+
msgstr ""
|
65 |
+
|
66 |
+
#: classes/updater.php:448
|
67 |
+
msgid "Error"
|
68 |
+
msgstr ""
|
69 |
+
|
70 |
+
#: controllers/controller/admin.php:55
|
71 |
+
msgid "Remove this item? If you have previously reduced this item's stock, or this order was submitted by a customer, will need to manually restore the item's stock."
|
72 |
+
msgstr ""
|
73 |
+
|
74 |
+
#: controllers/controller/admin.php:56
|
75 |
+
msgid "Remove this attribute?"
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
#: controllers/controller/admin.php:57
|
79 |
+
#: views/admin/import/options/_reimport_options.php:40
|
80 |
+
#: views/admin/import/options/_reimport_template.php:106
|
81 |
+
#: views/admin/import/product/_tabs/_attributes.php:6
|
82 |
+
#: views/admin/import/product/_tabs/_linked_product.php:90
|
83 |
+
#: views/admin/import/product/_tabs/_variations.php:546
|
84 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:69
|
85 |
+
msgid "Name"
|
86 |
+
msgstr ""
|
87 |
+
|
88 |
+
#: controllers/controller/admin.php:58
|
89 |
+
msgid "Remove"
|
90 |
+
msgstr ""
|
91 |
+
|
92 |
+
#: controllers/controller/admin.php:59
|
93 |
+
msgid "Click to toggle"
|
94 |
+
msgstr ""
|
95 |
+
|
96 |
+
#: controllers/controller/admin.php:60
|
97 |
+
msgid "Value(s)"
|
98 |
+
msgstr ""
|
99 |
+
|
100 |
+
#: controllers/controller/admin.php:61
|
101 |
+
msgid "Enter some text, or some attributes by pipe (|) separating values."
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#: controllers/controller/admin.php:62
|
105 |
+
msgid "Visible on the product page"
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
+
#: controllers/controller/admin.php:63
|
109 |
+
msgid "Used for variations"
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: controllers/controller/admin.php:64
|
113 |
+
msgid "Enter a name for the new attribute term:"
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: controllers/controller/admin.php:65
|
117 |
+
msgid "Calculate totals based on order items, discount amount, and shipping? Note, you will need to (optionally) calculate tax rows and cart discounts manually."
|
118 |
+
msgstr ""
|
119 |
+
|
120 |
+
#: controllers/controller/admin.php:66
|
121 |
+
msgid "Calculate line taxes? This will calculate taxes based on the customers country. If no billing/shipping is set it will use the store base country."
|
122 |
+
msgstr ""
|
123 |
+
|
124 |
+
#: controllers/controller/admin.php:67
|
125 |
+
msgid "Copy billing information to shipping information? This will remove any currently entered shipping information."
|
126 |
+
msgstr ""
|
127 |
+
|
128 |
+
#: controllers/controller/admin.php:68
|
129 |
+
msgid "Load the customer's billing information? This will remove any currently entered billing information."
|
130 |
+
msgstr ""
|
131 |
+
|
132 |
+
#: controllers/controller/admin.php:69
|
133 |
+
msgid "Load the customer's shipping information? This will remove any currently entered shipping information."
|
134 |
+
msgstr ""
|
135 |
+
|
136 |
+
#: controllers/controller/admin.php:70
|
137 |
+
#: views/admin/import/product/_tabs/_advanced.php:44
|
138 |
+
msgid "Featured"
|
139 |
+
msgstr ""
|
140 |
+
|
141 |
+
#: controllers/controller/admin.php:74
|
142 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:277
|
143 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:289
|
144 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:448
|
145 |
+
msgid "Meta Name"
|
146 |
+
msgstr ""
|
147 |
+
|
148 |
+
#: controllers/controller/admin.php:75
|
149 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:281
|
150 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:293
|
151 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:452
|
152 |
+
msgid "Meta Value"
|
153 |
+
msgstr ""
|
154 |
+
|
155 |
+
#: controllers/controller/admin.php:76
|
156 |
+
msgid "No customer selected"
|
157 |
+
msgstr ""
|
158 |
+
|
159 |
+
#: controllers/controller/admin.php:77
|
160 |
+
msgid "Tax Label:"
|
161 |
+
msgstr ""
|
162 |
+
|
163 |
+
#: controllers/controller/admin.php:78
|
164 |
+
msgid "Compound:"
|
165 |
+
msgstr ""
|
166 |
+
|
167 |
+
#: controllers/controller/admin.php:79
|
168 |
+
msgid "Cart Tax:"
|
169 |
+
msgstr ""
|
170 |
+
|
171 |
+
#: controllers/controller/admin.php:80
|
172 |
+
msgid "Shipping Tax:"
|
173 |
+
msgstr ""
|
174 |
+
|
175 |
+
#: filters/pmxi_custom_types.php:7
|
176 |
+
msgid "WooCommerce Products"
|
177 |
+
msgstr ""
|
178 |
+
|
179 |
+
#: filters/pmxi_custom_types.php:8
|
180 |
+
msgid "WooCommerce Orders"
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: filters/pmxi_custom_types.php:9
|
184 |
+
msgid "WooCommerce Coupons"
|
185 |
+
msgstr ""
|
186 |
+
|
187 |
+
#: libraries/XmlImportWooCommerceProduct.php:43
|
188 |
+
msgid "Composing product data..."
|
189 |
+
msgstr ""
|
190 |
+
|
191 |
+
#: libraries/XmlImportWooCommerceProduct.php:261
|
192 |
+
msgid "Composing variations attributes..."
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: libraries/XmlImportWooCommerceProduct.php:533
|
196 |
+
msgid "<b>WARNING</b>: Product SKU must be unique."
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: libraries/XmlImportWooCommerceProduct.php:1101
|
200 |
+
#: libraries/XmlImportWooCommerceProduct.php:2294
|
201 |
+
#: libraries/XmlImportWooCommerceProduct.php:2341
|
202 |
+
msgid "Variation #%s of %s"
|
203 |
+
msgstr ""
|
204 |
+
|
205 |
+
#: libraries/XmlImportWooCommerceProduct.php:1871
|
206 |
+
msgid "<b>CREATED</b>: %s variations for parent product %s."
|
207 |
+
msgstr ""
|
208 |
+
|
209 |
+
#: libraries/XmlImportWooCommerceProduct.php:1893
|
210 |
+
msgid "- Importing Variations"
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: libraries/XmlImportWooCommerceProduct.php:2341
|
214 |
+
msgid "- `%s`: variation created successfully"
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: libraries/XmlImportWooCommerceProduct.php:2347
|
218 |
+
msgid "- `%s`: variation updated successfully"
|
219 |
+
msgstr ""
|
220 |
+
|
221 |
+
#: libraries/XmlImportWooCommerceProduct.php:2350
|
222 |
+
msgid "Deleting attachments for `%s`"
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
#: libraries/XmlImportWooCommerceProduct.php:2355
|
226 |
+
msgid "Deleting images for `%s`"
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
+
#: libraries/XmlImportWooCommerceProduct.php:2529
|
230 |
+
msgid "- <b>WARNING</b>: Product SKU must be unique."
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: libraries/XmlImportWooCommerceProduct.php:2761
|
234 |
+
msgid "- <b>WARNING</b>: Image %s not found in media gallery."
|
235 |
+
msgstr ""
|
236 |
+
|
237 |
+
#: libraries/XmlImportWooCommerceProduct.php:2765
|
238 |
+
msgid "- Using existing image `%s` for post `%s` ..."
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
+
#: libraries/XmlImportWooCommerceProduct.php:2783
|
242 |
+
msgid "- Searching for existing image `%s` in `%s` folder"
|
243 |
+
msgstr ""
|
244 |
+
|
245 |
+
#: libraries/XmlImportWooCommerceProduct.php:2789
|
246 |
+
#: libraries/XmlImportWooCommerceProduct.php:2825
|
247 |
+
msgid "- <b>WARNING</b>: File %s is not a valid image and cannot be set as featured one"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: libraries/XmlImportWooCommerceProduct.php:2793
|
251 |
+
msgid "- Image `%s` has been successfully found"
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#: libraries/XmlImportWooCommerceProduct.php:2799
|
255 |
+
msgid "- Downloading image from `%s`"
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: libraries/XmlImportWooCommerceProduct.php:2809
|
259 |
+
#: libraries/XmlImportWooCommerceProduct.php:2829
|
260 |
+
msgid "- Image `%s` has been successfully downloaded"
|
261 |
+
msgstr ""
|
262 |
+
|
263 |
+
#: libraries/XmlImportWooCommerceProduct.php:2820
|
264 |
+
msgid "- <b>WARNING</b>: File %s cannot be saved locally as %s"
|
265 |
+
msgstr ""
|
266 |
+
|
267 |
+
#: libraries/XmlImportWooCommerceProduct.php:2846
|
268 |
+
msgid "- Creating an attachment for image `%s`"
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
#: libraries/XmlImportWooCommerceProduct.php:2867
|
272 |
+
msgid "- <b>WARNING</b>"
|
273 |
+
msgstr ""
|
274 |
+
|
275 |
+
#: libraries/XmlImportWooCommerceProduct.php:2900
|
276 |
+
msgid "- Attachment has been successfully updated for image `%s`"
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: libraries/XmlImportWooCommerceProduct.php:2904
|
280 |
+
msgid "- Attachment has been successfully created for image `%s`"
|
281 |
+
msgstr ""
|
282 |
+
|
283 |
+
#: libraries/XmlImportWooCommerceProduct.php:3282
|
284 |
+
msgid "Added to %s list of product ID %d."
|
285 |
+
msgstr ""
|
286 |
+
|
287 |
+
#: libraries/XmlImportWooCommerceProduct.php:3352
|
288 |
+
msgid "<b>ERROR</b> Could not insert term relationship into the database"
|
289 |
+
msgstr ""
|
290 |
+
|
291 |
+
#: libraries/XmlImportWooCommerceProduct.php:3664
|
292 |
+
msgid "- <b>WARNING</b>: Slug “%s” is not allowed because it is a reserved term. Change it, please."
|
293 |
+
msgstr ""
|
294 |
+
|
295 |
+
#: libraries/XmlImportWooCommerceProduct.php:3697
|
296 |
+
msgid "- <b>CREATED</b>: Taxonomy attribute “%s” have been successfully created."
|
297 |
+
msgstr ""
|
298 |
+
|
299 |
+
#: libraries/XmlImportWooCommerceProduct.php:3701
|
300 |
+
msgid "- <b>WARNING</b>: Taxonomy “%s” name is more than 28 characters. Change it, please."
|
301 |
+
msgstr ""
|
302 |
+
|
303 |
+
#: libraries/XmlImportWooCommerceProduct.php:3810
|
304 |
+
msgid "- <b>WARNING</b>: Unable to create cloaked link for %s"
|
305 |
+
msgstr ""
|
306 |
+
|
307 |
+
#: libraries/XmlImportWooCommerceProduct.php:3890
|
308 |
+
msgid "Product `%s` with ID `%d` added to %s list."
|
309 |
+
msgstr ""
|
310 |
+
|
311 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:196
|
312 |
+
msgid "Composing shop order data..."
|
313 |
+
msgstr ""
|
314 |
+
|
315 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:683
|
316 |
+
msgid "- Importing billing & shipping information for Order ID `%s`."
|
317 |
+
msgstr ""
|
318 |
+
|
319 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:695
|
320 |
+
msgid "- %s Existing customer with ID `%s` founded for Order `%s`."
|
321 |
+
msgstr ""
|
322 |
+
|
323 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:701
|
324 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:711
|
325 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:729
|
326 |
+
msgid "- Billing field `%s` has been updated with value `%s` for order `%s` ..."
|
327 |
+
msgstr ""
|
328 |
+
|
329 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:717
|
330 |
+
msgid "<b>WARNING</b>: Existing customer not found for Order `%s`."
|
331 |
+
msgstr ""
|
332 |
+
|
333 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:747
|
334 |
+
msgid "- Copying shipping from billing information..."
|
335 |
+
msgstr ""
|
336 |
+
|
337 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:753
|
338 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:771
|
339 |
+
msgid "- Shipping field `%s` has been updated with value `%s` for order `%s` ..."
|
340 |
+
msgstr ""
|
341 |
+
|
342 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:812
|
343 |
+
msgid "- %s email notification has beed sent. ..."
|
344 |
+
msgstr ""
|
345 |
+
|
346 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:1036
|
347 |
+
msgid "<b>SKIPPED</b>: %s Existing customer not found for Order `%s`."
|
348 |
+
msgstr ""
|
349 |
+
|
350 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:1091
|
351 |
+
msgid "<b>SKIPPED</b>: Existing product `%s` not found for Order `%s`."
|
352 |
+
msgstr ""
|
353 |
+
|
354 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:1330
|
355 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:1474
|
356 |
+
msgid "- <b>WARNING</b> Unable to create order line product."
|
357 |
+
msgstr ""
|
358 |
+
|
359 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:1594
|
360 |
+
msgid "- <b>WARNING</b> order line fee is not added."
|
361 |
+
msgstr ""
|
362 |
+
|
363 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:1675
|
364 |
+
msgid "- <b>WARNING</b> Unable to create order coupon line."
|
365 |
+
msgstr ""
|
366 |
+
|
367 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:1799
|
368 |
+
msgid "- <b>WARNING</b> Unable to create order shipping line."
|
369 |
+
msgstr ""
|
370 |
+
|
371 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:1902
|
372 |
+
msgid "- <b>WARNING</b> Unable to create order tax line."
|
373 |
+
msgstr ""
|
374 |
+
|
375 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:1958
|
376 |
+
msgid "WooCommerce"
|
377 |
+
msgstr ""
|
378 |
+
|
379 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:2048
|
380 |
+
msgid "Search customer by "
|
381 |
+
msgstr ""
|
382 |
+
|
383 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:2054
|
384 |
+
msgid "username"
|
385 |
+
msgstr ""
|
386 |
+
|
387 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:2060
|
388 |
+
msgid "email"
|
389 |
+
msgstr ""
|
390 |
+
|
391 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:2066
|
392 |
+
msgid "custom field"
|
393 |
+
msgstr ""
|
394 |
+
|
395 |
+
#: libraries/XmlImportWooCommerceShopOrder.php:2072
|
396 |
+
msgid "ID"
|
397 |
+
msgstr ""
|
398 |
+
|
399 |
+
#: views/admin/import/confirm.php:3
|
400 |
+
#: views/admin/import/options/_reimport_options.php:74
|
401 |
+
msgid "Order status"
|
402 |
+
msgstr ""
|
403 |
+
|
404 |
+
#: views/admin/import/confirm.php:6
|
405 |
+
#: views/admin/import/options/_reimport_options.php:80
|
406 |
+
msgid "Customer Note"
|
407 |
+
msgstr ""
|
408 |
+
|
409 |
+
#: views/admin/import/confirm.php:9
|
410 |
+
#: views/admin/import/options/_reimport_options.php:85
|
411 |
+
msgid "Dates"
|
412 |
+
msgstr ""
|
413 |
+
|
414 |
+
#: views/admin/import/confirm.php:12
|
415 |
+
#: views/admin/import/options/_reimport_options.php:90
|
416 |
+
msgid "Billing Details"
|
417 |
+
msgstr ""
|
418 |
+
|
419 |
+
#: views/admin/import/confirm.php:15
|
420 |
+
#: views/admin/import/options/_reimport_options.php:95
|
421 |
+
msgid "Shipping Details"
|
422 |
+
msgstr ""
|
423 |
+
|
424 |
+
#: views/admin/import/confirm.php:18
|
425 |
+
#: views/admin/import/options/_reimport_options.php:100
|
426 |
+
msgid "Payment Details"
|
427 |
+
msgstr ""
|
428 |
+
|
429 |
+
#: views/admin/import/confirm.php:21
|
430 |
+
#: views/admin/import/options/_reimport_options.php:105
|
431 |
+
msgid "Order Notes"
|
432 |
+
msgstr ""
|
433 |
+
|
434 |
+
#: views/admin/import/confirm.php:28
|
435 |
+
#: views/admin/import/options/_reimport_options.php:114
|
436 |
+
msgid "Update all products"
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: views/admin/import/confirm.php:31
|
440 |
+
#: views/admin/import/options/_reimport_options.php:118
|
441 |
+
msgid "Don't touch existing products, append new products"
|
442 |
+
msgstr ""
|
443 |
+
|
444 |
+
#: views/admin/import/confirm.php:37
|
445 |
+
#: views/admin/import/options/_reimport_options.php:125
|
446 |
+
msgid "Fees Items"
|
447 |
+
msgstr ""
|
448 |
+
|
449 |
+
#: views/admin/import/confirm.php:40
|
450 |
+
#: views/admin/import/options/_reimport_options.php:130
|
451 |
+
msgid "Coupon Items"
|
452 |
+
msgstr ""
|
453 |
+
|
454 |
+
#: views/admin/import/confirm.php:43
|
455 |
+
#: views/admin/import/options/_reimport_options.php:135
|
456 |
+
msgid "Shipping Items"
|
457 |
+
msgstr ""
|
458 |
+
|
459 |
+
#: views/admin/import/confirm.php:46
|
460 |
+
#: views/admin/import/options/_reimport_options.php:140
|
461 |
+
msgid "Tax Items"
|
462 |
+
msgstr ""
|
463 |
+
|
464 |
+
#: views/admin/import/confirm.php:49
|
465 |
+
#: views/admin/import/options/_reimport_options.php:145
|
466 |
+
#: views/admin/import/shop_order/order_items_section.php:39
|
467 |
+
msgid "Refunds"
|
468 |
+
msgstr ""
|
469 |
+
|
470 |
+
#: views/admin/import/confirm.php:52
|
471 |
+
#: views/admin/import/options/_reimport_options.php:150
|
472 |
+
msgid "Order Total"
|
473 |
+
msgstr ""
|
474 |
+
|
475 |
+
#: views/admin/import/confirm.php:59
|
476 |
+
msgid "All advanced custom fields"
|
477 |
+
msgstr ""
|
478 |
+
|
479 |
+
#: views/admin/import/confirm.php:62
|
480 |
+
msgid "Only ACF presented in import options"
|
481 |
+
msgstr ""
|
482 |
+
|
483 |
+
#: views/admin/import/confirm.php:65
|
484 |
+
msgid "Only these ACF : %s"
|
485 |
+
msgstr ""
|
486 |
+
|
487 |
+
#: views/admin/import/confirm.php:68
|
488 |
+
msgid "All ACF except these: %s"
|
489 |
+
msgstr ""
|
490 |
+
|
491 |
+
#: views/admin/import/confirm.php:78
|
492 |
+
msgid "All custom fields"
|
493 |
+
msgstr ""
|
494 |
+
|
495 |
+
#: views/admin/import/confirm.php:81
|
496 |
+
msgid "Only these custom fields : %s"
|
497 |
+
msgstr ""
|
498 |
+
|
499 |
+
#: views/admin/import/confirm.php:84
|
500 |
+
msgid "All custom fields except these: %s"
|
501 |
+
msgstr ""
|
502 |
+
|
503 |
+
#: views/admin/import/options/_reimport_options.php:2
|
504 |
+
msgid "When WP All Import finds new or changed data..."
|
505 |
+
msgstr ""
|
506 |
+
|
507 |
+
#: views/admin/import/options/_reimport_options.php:4
|
508 |
+
msgid "If this import is run again and WP All Import finds new or changed data..."
|
509 |
+
msgstr ""
|
510 |
+
|
511 |
+
#: views/admin/import/options/_reimport_options.php:9
|
512 |
+
msgid "Create new orders from records newly present in your file"
|
513 |
+
msgstr ""
|
514 |
+
|
515 |
+
#: views/admin/import/options/_reimport_options.php:11
|
516 |
+
msgid "New orders will only be created when ID column is present and value in ID column is unique."
|
517 |
+
msgstr ""
|
518 |
+
|
519 |
+
#: views/admin/import/options/_reimport_options.php:18
|
520 |
+
msgid "Delete orders that are no longer present in your file"
|
521 |
+
msgstr ""
|
522 |
+
|
523 |
+
#: views/admin/import/options/_reimport_options.php:20
|
524 |
+
msgid "Records removed from the import file can only be deleted when importing into New Items. This feature cannot be enabled when importing into Existing Items."
|
525 |
+
msgstr ""
|
526 |
+
|
527 |
+
#: views/admin/import/options/_reimport_options.php:27
|
528 |
+
msgid "Do not remove attachments"
|
529 |
+
msgstr ""
|
530 |
+
|
531 |
+
#: views/admin/import/options/_reimport_options.php:32
|
532 |
+
msgid "Do not remove images"
|
533 |
+
msgstr ""
|
534 |
+
|
535 |
+
#: views/admin/import/options/_reimport_options.php:37
|
536 |
+
msgid "Instead of deletion, set Custom Field"
|
537 |
+
msgstr ""
|
538 |
+
|
539 |
+
#: views/admin/import/options/_reimport_options.php:42
|
540 |
+
#: views/admin/import/options/_reimport_template.php:108
|
541 |
+
#: views/admin/import/product/_tabs/_linked_product.php:95
|
542 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:73
|
543 |
+
msgid "Value"
|
544 |
+
msgstr ""
|
545 |
+
|
546 |
+
#: views/admin/import/options/_reimport_options.php:50
|
547 |
+
msgid "Instead of deletion, change post status to Draft"
|
548 |
+
msgstr ""
|
549 |
+
|
550 |
+
#: views/admin/import/options/_reimport_options.php:57
|
551 |
+
msgid "Update existing orders with changed data in your file"
|
552 |
+
msgstr ""
|
553 |
+
|
554 |
+
#: views/admin/import/options/_reimport_options.php:59
|
555 |
+
msgid "These options will only be used if you run this import again later. All data is imported the first time you run an import."
|
556 |
+
msgstr ""
|
557 |
+
|
558 |
+
#: views/admin/import/options/_reimport_options.php:63
|
559 |
+
msgid "Update all data"
|
560 |
+
msgstr ""
|
561 |
+
|
562 |
+
#: views/admin/import/options/_reimport_options.php:66
|
563 |
+
msgid "Choose which data to update"
|
564 |
+
msgstr ""
|
565 |
+
|
566 |
+
#: views/admin/import/options/_reimport_options.php:69
|
567 |
+
msgid "Unselect All"
|
568 |
+
msgstr ""
|
569 |
+
|
570 |
+
#: views/admin/import/options/_reimport_options.php:69
|
571 |
+
msgid "Select All"
|
572 |
+
msgstr ""
|
573 |
+
|
574 |
+
#: views/admin/import/options/_reimport_options.php:75
|
575 |
+
msgid "Hint: uncheck this box to keep trashed orders in the trash."
|
576 |
+
msgstr ""
|
577 |
+
|
578 |
+
#: views/admin/import/options/_reimport_options.php:110
|
579 |
+
msgid "Product Items"
|
580 |
+
msgstr ""
|
581 |
+
|
582 |
+
#: views/admin/import/options/_reimport_options.php:159
|
583 |
+
msgid "Custom Fields"
|
584 |
+
msgstr ""
|
585 |
+
|
586 |
+
#: views/admin/import/options/_reimport_options.php:160
|
587 |
+
msgid "If Keep Custom Fields box is checked, it will keep all Custom Fields, and add any new Custom Fields specified in Custom Fields section, as long as they do not overwrite existing fields. If 'Only keep this Custom Fields' is specified, it will only keep the specified fields."
|
588 |
+
msgstr ""
|
589 |
+
|
590 |
+
#: views/admin/import/options/_reimport_options.php:164
|
591 |
+
msgid "Update all Custom Fields"
|
592 |
+
msgstr ""
|
593 |
+
|
594 |
+
#: views/admin/import/options/_reimport_options.php:168
|
595 |
+
msgid "Update only these Custom Fields, leave the rest alone"
|
596 |
+
msgstr ""
|
597 |
+
|
598 |
+
#: views/admin/import/options/_reimport_options.php:176
|
599 |
+
msgid "Leave these fields alone, update all other Custom Fields"
|
600 |
+
msgstr ""
|
601 |
+
|
602 |
+
#: views/admin/import/options/_reimport_template.php:14
|
603 |
+
#: views/admin/import/options/_reimport_template.php:82
|
604 |
+
msgid "Record Matching"
|
605 |
+
msgstr ""
|
606 |
+
|
607 |
+
#: views/admin/import/options/_reimport_template.php:22
|
608 |
+
msgid "Choose how exported data will be re-imported."
|
609 |
+
msgstr ""
|
610 |
+
|
611 |
+
#: views/admin/import/options/_reimport_template.php:28
|
612 |
+
msgid "WP All Import will create new %s for each unique record in your file."
|
613 |
+
msgstr ""
|
614 |
+
|
615 |
+
#: views/admin/import/options/_reimport_template.php:42
|
616 |
+
msgid "WP All Import will associate records in your file with %s it has already created from previous runs of this import based on the Unique Identifier."
|
617 |
+
msgstr ""
|
618 |
+
|
619 |
+
#: views/admin/import/options/_reimport_template.php:45
|
620 |
+
#: views/admin/import/product/_tabs/_variations.php:36
|
621 |
+
msgid "Unique Identifier"
|
622 |
+
msgstr ""
|
623 |
+
|
624 |
+
#: views/admin/import/options/_reimport_template.php:51
|
625 |
+
#: views/admin/import/options/_reimport_template.php:62
|
626 |
+
msgid "Auto-detect"
|
627 |
+
msgstr ""
|
628 |
+
|
629 |
+
#: views/admin/import/options/_reimport_template.php:54
|
630 |
+
msgid "Edit"
|
631 |
+
msgstr ""
|
632 |
+
|
633 |
+
#: views/admin/import/options/_reimport_template.php:55
|
634 |
+
msgid "Warning: Are you sure you want to edit the Unique Identifier?"
|
635 |
+
msgstr ""
|
636 |
+
|
637 |
+
#: views/admin/import/options/_reimport_template.php:56
|
638 |
+
msgid "It is recommended you delete all %s associated with this import before editing the unique identifier."
|
639 |
+
msgstr ""
|
640 |
+
|
641 |
+
#: views/admin/import/options/_reimport_template.php:57
|
642 |
+
msgid "Editing the unique identifier will dissociate all existing %s linked to this import. Future runs of the import will result in duplicates, as WP All Import will no longer be able to update these %s."
|
643 |
+
msgstr ""
|
644 |
+
|
645 |
+
#: views/admin/import/options/_reimport_template.php:58
|
646 |
+
msgid "You really should just re-create your import, and pick the right unique identifier to start with."
|
647 |
+
msgstr ""
|
648 |
+
|
649 |
+
#: views/admin/import/options/_reimport_template.php:68
|
650 |
+
msgid "Drag an element, or combo of elements, to the box above. The Unique Identifier should be unique for each record in your file, and should stay the same even if your file is updated. Things like product IDs, titles, and SKUs are good Unique Identifiers because they probably won't change. Don't use a description or price, since that might be changed."
|
651 |
+
msgstr ""
|
652 |
+
|
653 |
+
#: views/admin/import/options/_reimport_template.php:69
|
654 |
+
msgid "If you run this import again with an updated file, the Unique Identifier allows WP All Import to correctly link the records in your updated file with the %s it will create right now. If multiple records in this file have the same Unique Identifier, only the first will be created. The others will be detected as duplicates."
|
655 |
+
msgstr ""
|
656 |
+
|
657 |
+
#: views/admin/import/options/_reimport_template.php:84
|
658 |
+
msgid "WP All Import will merge data into existing %s."
|
659 |
+
msgstr ""
|
660 |
+
|
661 |
+
#: views/admin/import/options/_reimport_template.php:94
|
662 |
+
msgid "Records in your file will be matched with %ss on your site based on..."
|
663 |
+
msgstr ""
|
664 |
+
|
665 |
+
#: views/admin/import/options/_reimport_template.php:99
|
666 |
+
msgid "Title"
|
667 |
+
msgstr ""
|
668 |
+
|
669 |
+
#: views/admin/import/options/_reimport_template.php:101
|
670 |
+
#: views/admin/import/shop_order/order_notes_section.php:31
|
671 |
+
#: views/admin/import/shop_order/order_notes_section.php:95
|
672 |
+
msgid "Content"
|
673 |
+
msgstr ""
|
674 |
+
|
675 |
+
#: views/admin/import/options/_reimport_template.php:104
|
676 |
+
msgid "Custom field"
|
677 |
+
msgstr ""
|
678 |
+
|
679 |
+
#: views/admin/import/options/_reimport_template.php:114
|
680 |
+
msgid "Order ID"
|
681 |
+
msgstr ""
|
682 |
+
|
683 |
+
#: views/admin/import/options/_reimport_template.php:134
|
684 |
+
msgid "Email Notifications for Customers"
|
685 |
+
msgstr ""
|
686 |
+
|
687 |
+
#: views/admin/import/options/_reimport_template.php:141
|
688 |
+
msgid "Block email notifications during import"
|
689 |
+
msgstr ""
|
690 |
+
|
691 |
+
#: views/admin/import/options/_reimport_template.php:142
|
692 |
+
msgid "If enabled, WP All Import will prevent WordPress from sending notification emails to customers when their orders are imported or updated."
|
693 |
+
msgstr ""
|
694 |
+
|
695 |
+
#: views/admin/import/product/_tabs/_advanced.php:5
|
696 |
+
msgid "Purchase Note"
|
697 |
+
msgstr ""
|
698 |
+
|
699 |
+
#: views/admin/import/product/_tabs/_advanced.php:11
|
700 |
+
msgid "Menu order"
|
701 |
+
msgstr ""
|
702 |
+
|
703 |
+
#: views/admin/import/product/_tabs/_advanced.php:18
|
704 |
+
msgid "Enable reviews"
|
705 |
+
msgstr ""
|
706 |
+
|
707 |
+
#: views/admin/import/product/_tabs/_advanced.php:22
|
708 |
+
#: views/admin/import/product/_tabs/_advanced.php:48
|
709 |
+
#: views/admin/import/product/_tabs/_general.php:112
|
710 |
+
#: views/admin/import/product/_tabs/_inventory.php:8
|
711 |
+
#: views/admin/import/product/_tabs/_inventory.php:99
|
712 |
+
#: views/admin/import/product/_tabs/_variations.php:155
|
713 |
+
#: views/admin/import/product/_tabs/_variations.php:516
|
714 |
+
#: views/admin/import/product/_tabs/_variations.php:683
|
715 |
+
#: views/admin/import/product/_tabs/_variations.php:745
|
716 |
+
msgid "Yes"
|
717 |
+
msgstr ""
|
718 |
+
|
719 |
+
#: views/admin/import/product/_tabs/_advanced.php:26
|
720 |
+
#: views/admin/import/product/_tabs/_advanced.php:52
|
721 |
+
#: views/admin/import/product/_tabs/_general.php:116
|
722 |
+
#: views/admin/import/product/_tabs/_inventory.php:12
|
723 |
+
#: views/admin/import/product/_tabs/_inventory.php:103
|
724 |
+
#: views/admin/import/product/_tabs/_variations.php:159
|
725 |
+
#: views/admin/import/product/_tabs/_variations.php:520
|
726 |
+
#: views/admin/import/product/_tabs/_variations.php:687
|
727 |
+
#: views/admin/import/product/_tabs/_variations.php:749
|
728 |
+
msgid "No"
|
729 |
+
msgstr ""
|
730 |
+
|
731 |
+
#: views/admin/import/product/_tabs/_advanced.php:30
|
732 |
+
#: views/admin/import/product/_tabs/_advanced.php:56
|
733 |
+
#: views/admin/import/product/_tabs/_advanced.php:90
|
734 |
+
#: views/admin/import/product/_tabs/_attributes.php:64
|
735 |
+
#: views/admin/import/product/_tabs/_attributes.php:86
|
736 |
+
#: views/admin/import/product/_tabs/_attributes.php:108
|
737 |
+
#: views/admin/import/product/_tabs/_attributes.php:130
|
738 |
+
#: views/admin/import/product/_tabs/_attributes.php:193
|
739 |
+
#: views/admin/import/product/_tabs/_attributes.php:215
|
740 |
+
#: views/admin/import/product/_tabs/_attributes.php:237
|
741 |
+
#: views/admin/import/product/_tabs/_attributes.php:259
|
742 |
+
#: views/admin/import/product/_tabs/_attributes.php:321
|
743 |
+
#: views/admin/import/product/_tabs/_attributes.php:343
|
744 |
+
#: views/admin/import/product/_tabs/_attributes.php:365
|
745 |
+
#: views/admin/import/product/_tabs/_attributes.php:387
|
746 |
+
#: views/admin/import/product/_tabs/_general.php:120
|
747 |
+
#: views/admin/import/product/_tabs/_general.php:143
|
748 |
+
#: views/admin/import/product/_tabs/_general.php:166
|
749 |
+
#: views/admin/import/product/_tabs/_inventory.php:16
|
750 |
+
#: views/admin/import/product/_tabs/_inventory.php:52
|
751 |
+
#: views/admin/import/product/_tabs/_inventory.php:82
|
752 |
+
#: views/admin/import/product/_tabs/_inventory.php:107
|
753 |
+
#: views/admin/import/product/_tabs/_variations.php:163
|
754 |
+
#: views/admin/import/product/_tabs/_variations.php:211
|
755 |
+
#: views/admin/import/product/_tabs/_variations.php:240
|
756 |
+
#: views/admin/import/product/_tabs/_variations.php:315
|
757 |
+
#: views/admin/import/product/_tabs/_variations.php:459
|
758 |
+
#: views/admin/import/product/_tabs/_variations.php:524
|
759 |
+
#: views/admin/import/product/_tabs/_variations.php:691
|
760 |
+
#: views/admin/import/product/_tabs/_variations.php:728
|
761 |
+
#: views/admin/import/product/_tabs/_variations.php:753
|
762 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:47
|
763 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:92
|
764 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:60
|
765 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:108
|
766 |
+
#: views/admin/import/shop_order/_tabs/_order_payment.php:19
|
767 |
+
#: views/admin/import/shop_order/order_details_section.php:23
|
768 |
+
#: views/admin/import/shop_order/order_notes_section.php:58
|
769 |
+
#: views/admin/import/shop_order/order_notes_section.php:123
|
770 |
+
msgid "Set with XPath"
|
771 |
+
msgstr ""
|
772 |
+
|
773 |
+
#: views/admin/import/product/_tabs/_advanced.php:35
|
774 |
+
#: views/admin/import/product/_tabs/_advanced.php:61
|
775 |
+
#: views/admin/import/product/_tabs/_attributes.php:69
|
776 |
+
#: views/admin/import/product/_tabs/_attributes.php:91
|
777 |
+
#: views/admin/import/product/_tabs/_attributes.php:113
|
778 |
+
#: views/admin/import/product/_tabs/_attributes.php:135
|
779 |
+
#: views/admin/import/product/_tabs/_attributes.php:198
|
780 |
+
#: views/admin/import/product/_tabs/_attributes.php:220
|
781 |
+
#: views/admin/import/product/_tabs/_attributes.php:242
|
782 |
+
#: views/admin/import/product/_tabs/_attributes.php:264
|
783 |
+
#: views/admin/import/product/_tabs/_attributes.php:326
|
784 |
+
#: views/admin/import/product/_tabs/_attributes.php:348
|
785 |
+
#: views/admin/import/product/_tabs/_attributes.php:370
|
786 |
+
#: views/admin/import/product/_tabs/_attributes.php:392
|
787 |
+
#: views/admin/import/product/_tabs/_general.php:125
|
788 |
+
#: views/admin/import/product/_tabs/_general.php:148
|
789 |
+
#: views/admin/import/product/_tabs/_general.php:171
|
790 |
+
#: views/admin/import/product/_tabs/_inventory.php:21
|
791 |
+
#: views/admin/import/product/_tabs/_inventory.php:112
|
792 |
+
#: views/admin/import/product/_tabs/_variations.php:168
|
793 |
+
#: views/admin/import/product/_tabs/_variations.php:320
|
794 |
+
#: views/admin/import/product/_tabs/_variations.php:464
|
795 |
+
#: views/admin/import/product/_tabs/_variations.php:529
|
796 |
+
#: views/admin/import/product/_tabs/_variations.php:696
|
797 |
+
#: views/admin/import/product/_tabs/_variations.php:758
|
798 |
+
msgid "The value of presented XPath should be one of the following: ('yes', 'no')."
|
799 |
+
msgstr ""
|
800 |
+
|
801 |
+
#: views/admin/import/product/_tabs/_advanced.php:70
|
802 |
+
msgid "Catalog visibility"
|
803 |
+
msgstr ""
|
804 |
+
|
805 |
+
#: views/admin/import/product/_tabs/_advanced.php:74
|
806 |
+
msgid "Catalog/search"
|
807 |
+
msgstr ""
|
808 |
+
|
809 |
+
#: views/admin/import/product/_tabs/_advanced.php:78
|
810 |
+
msgid "Catalog"
|
811 |
+
msgstr ""
|
812 |
+
|
813 |
+
#: views/admin/import/product/_tabs/_advanced.php:82
|
814 |
+
msgid "Search"
|
815 |
+
msgstr ""
|
816 |
+
|
817 |
+
#: views/admin/import/product/_tabs/_advanced.php:86
|
818 |
+
msgid "Hidden"
|
819 |
+
msgstr ""
|
820 |
+
|
821 |
+
#: views/admin/import/product/_tabs/_advanced.php:95
|
822 |
+
msgid "The value of presented XPath should be one of the following: ('visible', 'catalog', 'search', 'hidden')."
|
823 |
+
msgstr ""
|
824 |
+
|
825 |
+
#: views/admin/import/product/_tabs/_attributes.php:8
|
826 |
+
#: views/admin/import/product/_tabs/_variations.php:547
|
827 |
+
msgid "Values"
|
828 |
+
msgstr ""
|
829 |
+
|
830 |
+
#: views/admin/import/product/_tabs/_attributes.php:9
|
831 |
+
msgid "Separate mutiple values with a |"
|
832 |
+
msgstr ""
|
833 |
+
|
834 |
+
#: views/admin/import/product/_tabs/_attributes.php:26
|
835 |
+
#: views/admin/import/product/_tabs/_attributes.php:158
|
836 |
+
#: views/admin/import/product/_tabs/_attributes.php:286
|
837 |
+
#: views/admin/import/product/index.php:65
|
838 |
+
msgid "Advanced"
|
839 |
+
msgstr ""
|
840 |
+
|
841 |
+
#: views/admin/import/product/_tabs/_attributes.php:32
|
842 |
+
#: views/admin/import/product/_tabs/_attributes.php:56
|
843 |
+
#: views/admin/import/product/_tabs/_attributes.php:164
|
844 |
+
#: views/admin/import/product/_tabs/_attributes.php:185
|
845 |
+
#: views/admin/import/product/_tabs/_attributes.php:292
|
846 |
+
#: views/admin/import/product/_tabs/_attributes.php:313
|
847 |
+
#: views/admin/import/product/_tabs/_variations.php:565
|
848 |
+
#: views/admin/import/product/_tabs/_variations.php:599
|
849 |
+
#: views/admin/import/product/_tabs/_variations.php:629
|
850 |
+
msgid "In Variations"
|
851 |
+
msgstr ""
|
852 |
+
|
853 |
+
#: views/admin/import/product/_tabs/_attributes.php:37
|
854 |
+
#: views/admin/import/product/_tabs/_attributes.php:78
|
855 |
+
#: views/admin/import/product/_tabs/_attributes.php:168
|
856 |
+
#: views/admin/import/product/_tabs/_attributes.php:207
|
857 |
+
#: views/admin/import/product/_tabs/_attributes.php:296
|
858 |
+
#: views/admin/import/product/_tabs/_attributes.php:335
|
859 |
+
#: views/admin/import/product/_tabs/_variations.php:570
|
860 |
+
#: views/admin/import/product/_tabs/_variations.php:603
|
861 |
+
#: views/admin/import/product/_tabs/_variations.php:633
|
862 |
+
msgid "Is Visible"
|
863 |
+
msgstr ""
|
864 |
+
|
865 |
+
#: views/admin/import/product/_tabs/_attributes.php:42
|
866 |
+
#: views/admin/import/product/_tabs/_attributes.php:100
|
867 |
+
#: views/admin/import/product/_tabs/_attributes.php:172
|
868 |
+
#: views/admin/import/product/_tabs/_attributes.php:229
|
869 |
+
#: views/admin/import/product/_tabs/_attributes.php:300
|
870 |
+
#: views/admin/import/product/_tabs/_attributes.php:357
|
871 |
+
msgid "Is Taxonomy"
|
872 |
+
msgstr ""
|
873 |
+
|
874 |
+
#: views/admin/import/product/_tabs/_attributes.php:47
|
875 |
+
#: views/admin/import/product/_tabs/_attributes.php:122
|
876 |
+
#: views/admin/import/product/_tabs/_attributes.php:176
|
877 |
+
#: views/admin/import/product/_tabs/_attributes.php:251
|
878 |
+
#: views/admin/import/product/_tabs/_attributes.php:304
|
879 |
+
#: views/admin/import/product/_tabs/_attributes.php:379
|
880 |
+
#: views/admin/import/product/_tabs/_variations.php:580
|
881 |
+
#: views/admin/import/product/_tabs/_variations.php:611
|
882 |
+
#: views/admin/import/product/_tabs/_variations.php:641
|
883 |
+
msgid "Auto-Create Terms"
|
884 |
+
msgstr ""
|
885 |
+
|
886 |
+
#: views/admin/import/product/_tabs/_attributes.php:60
|
887 |
+
#: views/admin/import/product/_tabs/_attributes.php:189
|
888 |
+
#: views/admin/import/product/_tabs/_attributes.php:317
|
889 |
+
msgid "Not In Variations"
|
890 |
+
msgstr ""
|
891 |
+
|
892 |
+
#: views/admin/import/product/_tabs/_attributes.php:82
|
893 |
+
#: views/admin/import/product/_tabs/_attributes.php:211
|
894 |
+
#: views/admin/import/product/_tabs/_attributes.php:339
|
895 |
+
msgid "Not Visible"
|
896 |
+
msgstr ""
|
897 |
+
|
898 |
+
#: views/admin/import/product/_tabs/_attributes.php:104
|
899 |
+
#: views/admin/import/product/_tabs/_attributes.php:233
|
900 |
+
#: views/admin/import/product/_tabs/_attributes.php:361
|
901 |
+
msgid "Not Taxonomy"
|
902 |
+
msgstr ""
|
903 |
+
|
904 |
+
#: views/admin/import/product/_tabs/_attributes.php:126
|
905 |
+
#: views/admin/import/product/_tabs/_attributes.php:255
|
906 |
+
#: views/admin/import/product/_tabs/_attributes.php:383
|
907 |
+
msgid "Do Not Create Terms"
|
908 |
+
msgstr ""
|
909 |
+
|
910 |
+
#: views/admin/import/product/_tabs/_attributes.php:405
|
911 |
+
#: views/admin/import/product/_tabs/_variations.php:648
|
912 |
+
msgid "add"
|
913 |
+
msgstr ""
|
914 |
+
|
915 |
+
#: views/admin/import/product/_tabs/_attributes.php:405
|
916 |
+
#: views/admin/import/product/_tabs/_variations.php:648
|
917 |
+
msgid "Add more"
|
918 |
+
msgstr ""
|
919 |
+
|
920 |
+
#: views/admin/import/product/_tabs/_attributes.php:414
|
921 |
+
msgid "Link all variations"
|
922 |
+
msgstr ""
|
923 |
+
|
924 |
+
#: views/admin/import/product/_tabs/_attributes.php:415
|
925 |
+
msgid "This option will create all possible variations for the presented attributes. Works just like the Link All Variations option inside WooCommerce."
|
926 |
+
msgstr ""
|
927 |
+
|
928 |
+
#: views/admin/import/product/_tabs/_general.php:4
|
929 |
+
#: views/admin/import/product/_tabs/_variations.php:119
|
930 |
+
msgid "SKU"
|
931 |
+
msgstr ""
|
932 |
+
|
933 |
+
#: views/admin/import/product/_tabs/_general.php:10
|
934 |
+
msgid "Product URL"
|
935 |
+
msgstr ""
|
936 |
+
|
937 |
+
#: views/admin/import/product/_tabs/_general.php:12
|
938 |
+
msgid "The external/affiliate link URL to the product."
|
939 |
+
msgstr ""
|
940 |
+
|
941 |
+
#: views/admin/import/product/_tabs/_general.php:15
|
942 |
+
msgid "Button text"
|
943 |
+
msgstr ""
|
944 |
+
|
945 |
+
#: views/admin/import/product/_tabs/_general.php:17
|
946 |
+
msgid "This text will be shown on the button linking to the external product."
|
947 |
+
msgstr ""
|
948 |
+
|
949 |
+
#: views/admin/import/product/_tabs/_general.php:23
|
950 |
+
#: views/admin/import/product/_tabs/_general.php:46
|
951 |
+
msgid "Regular Price (%s)"
|
952 |
+
msgstr ""
|
953 |
+
|
954 |
+
#: views/admin/import/product/_tabs/_general.php:24
|
955 |
+
msgid "required"
|
956 |
+
msgstr ""
|
957 |
+
|
958 |
+
#: views/admin/import/product/_tabs/_general.php:27
|
959 |
+
#: views/admin/import/product/_tabs/_general.php:58
|
960 |
+
msgid "Sale Price (%s)"
|
961 |
+
msgstr ""
|
962 |
+
|
963 |
+
#: views/admin/import/product/_tabs/_general.php:28
|
964 |
+
#: views/admin/import/product/_tabs/_variations.php:263
|
965 |
+
msgid "schedule"
|
966 |
+
msgstr ""
|
967 |
+
|
968 |
+
#: views/admin/import/product/_tabs/_general.php:33
|
969 |
+
msgid "Sale Price Dates"
|
970 |
+
msgstr ""
|
971 |
+
|
972 |
+
#: views/admin/import/product/_tabs/_general.php:35
|
973 |
+
#: views/admin/import/product/_tabs/_variations.php:296
|
974 |
+
msgid "and"
|
975 |
+
msgstr ""
|
976 |
+
|
977 |
+
#: views/admin/import/product/_tabs/_general.php:37
|
978 |
+
#: views/admin/import/product/_tabs/_variations.php:298
|
979 |
+
msgid "cancel"
|
980 |
+
msgstr ""
|
981 |
+
|
982 |
+
#: views/admin/import/product/_tabs/_general.php:43
|
983 |
+
msgid " Adjust Prices"
|
984 |
+
msgstr ""
|
985 |
+
|
986 |
+
#: views/admin/import/product/_tabs/_general.php:43
|
987 |
+
msgid "Mark prices up and down, convert prices to currencies."
|
988 |
+
msgstr ""
|
989 |
+
|
990 |
+
#: views/admin/import/product/_tabs/_general.php:52
|
991 |
+
#: views/admin/import/product/_tabs/_general.php:64
|
992 |
+
msgid "Leave blank or enter in 100% to keep the price as is. Enter in 110% to markup by 10%. Enter in 50% to cut prices in half."
|
993 |
+
msgstr ""
|
994 |
+
|
995 |
+
#: views/admin/import/product/_tabs/_general.php:53
|
996 |
+
#: views/admin/import/product/_tabs/_general.php:65
|
997 |
+
msgid "Enter a negative number to reduce prices."
|
998 |
+
msgstr ""
|
999 |
+
|
1000 |
+
#: views/admin/import/product/_tabs/_general.php:75
|
1001 |
+
msgid "Remove currency symbols from price"
|
1002 |
+
msgstr ""
|
1003 |
+
|
1004 |
+
#: views/admin/import/product/_tabs/_general.php:76
|
1005 |
+
msgid "Attempt to remove currency symbols from prices."
|
1006 |
+
msgstr ""
|
1007 |
+
|
1008 |
+
#: views/admin/import/product/_tabs/_general.php:82
|
1009 |
+
msgid "Convert decimal separator to a period"
|
1010 |
+
msgstr ""
|
1011 |
+
|
1012 |
+
#: views/admin/import/product/_tabs/_general.php:83
|
1013 |
+
msgid "Prices must be imported using a period as the decimal separator. If you'd like to change the decimal separator you can do so by editing your WooCommerce settings."
|
1014 |
+
msgstr ""
|
1015 |
+
|
1016 |
+
#: views/admin/import/product/_tabs/_general.php:89
|
1017 |
+
msgid "Attempt to convert incorrectly formatted prices to WooCommerce format"
|
1018 |
+
msgstr ""
|
1019 |
+
|
1020 |
+
#: views/admin/import/product/_tabs/_general.php:90
|
1021 |
+
msgid "WP All Import will attempt to correct the formatting of prices presented incorrectly, but this doesn't always work. Try unchecking this option if your prices are not appearing correctly, or enter your prices in your import file using the same format you would when entering them in WooCommerce."
|
1022 |
+
msgstr ""
|
1023 |
+
|
1024 |
+
#: views/admin/import/product/_tabs/_general.php:94
|
1025 |
+
msgid "Preview Prices"
|
1026 |
+
msgstr ""
|
1027 |
+
|
1028 |
+
#: views/admin/import/product/_tabs/_general.php:101
|
1029 |
+
#: views/admin/import/product/_tabs/_variations.php:139
|
1030 |
+
msgid "Variation Description"
|
1031 |
+
msgstr ""
|
1032 |
+
|
1033 |
+
#: views/admin/import/product/_tabs/_general.php:108
|
1034 |
+
#: views/admin/import/product/_tabs/_variations.php:510
|
1035 |
+
#: views/admin/import/product/_tabs/_variations.php:741
|
1036 |
+
msgid "Variation Enabled"
|
1037 |
+
msgstr ""
|
1038 |
+
|
1039 |
+
#: views/admin/import/product/_tabs/_general.php:108
|
1040 |
+
#: views/admin/import/product/_tabs/_variations.php:741
|
1041 |
+
msgid "This option is the same as the Enabled checkbox when editing an individual variation in WooCommerce."
|
1042 |
+
msgstr ""
|
1043 |
+
|
1044 |
+
#: views/admin/import/product/_tabs/_general.php:135
|
1045 |
+
#: views/admin/import/product/_tabs/_variations.php:108
|
1046 |
+
#: views/admin/import/product/_tabs/_variations.php:307
|
1047 |
+
msgid "Virtual"
|
1048 |
+
msgstr ""
|
1049 |
+
|
1050 |
+
#: views/admin/import/product/_tabs/_general.php:139
|
1051 |
+
#: views/admin/import/product/_tabs/_variations.php:311
|
1052 |
+
msgid "Not Virtual"
|
1053 |
+
msgstr ""
|
1054 |
+
|
1055 |
+
#: views/admin/import/product/_tabs/_general.php:158
|
1056 |
+
#: views/admin/import/product/_tabs/_variations.php:112
|
1057 |
+
#: views/admin/import/product/_tabs/_variations.php:451
|
1058 |
+
msgid "Downloadable"
|
1059 |
+
msgstr ""
|
1060 |
+
|
1061 |
+
#: views/admin/import/product/_tabs/_general.php:162
|
1062 |
+
#: views/admin/import/product/_tabs/_variations.php:455
|
1063 |
+
msgid "Not Downloadable"
|
1064 |
+
msgstr ""
|
1065 |
+
|
1066 |
+
#: views/admin/import/product/_tabs/_general.php:179
|
1067 |
+
#: views/admin/import/product/_tabs/_variations.php:477
|
1068 |
+
msgid "File paths"
|
1069 |
+
msgstr ""
|
1070 |
+
|
1071 |
+
#: views/admin/import/product/_tabs/_general.php:182
|
1072 |
+
msgid "File paths/URLs, comma separated. The delimiter is used when an XML element contains multiple URLs/paths - i.e. <code>http://files.com/1.doc, http://files.com/2.doc</code>."
|
1073 |
+
msgstr ""
|
1074 |
+
|
1075 |
+
#: views/admin/import/product/_tabs/_general.php:185
|
1076 |
+
#: views/admin/import/product/_tabs/_variations.php:483
|
1077 |
+
msgid "File names"
|
1078 |
+
msgstr ""
|
1079 |
+
|
1080 |
+
#: views/admin/import/product/_tabs/_general.php:188
|
1081 |
+
#: views/admin/import/product/_tabs/_variations.php:486
|
1082 |
+
msgid "File names, comma separated. The delimiter is used when an XML element contains multiple names - i.e. <code>1.doc, 2.doc</code>."
|
1083 |
+
msgstr ""
|
1084 |
+
|
1085 |
+
#: views/admin/import/product/_tabs/_general.php:191
|
1086 |
+
#: views/admin/import/product/_tabs/_variations.php:489
|
1087 |
+
msgid "Download Limit"
|
1088 |
+
msgstr ""
|
1089 |
+
|
1090 |
+
#: views/admin/import/product/_tabs/_general.php:193
|
1091 |
+
msgid "Leave blank for unlimited re-downloads."
|
1092 |
+
msgstr ""
|
1093 |
+
|
1094 |
+
#: views/admin/import/product/_tabs/_general.php:196
|
1095 |
+
#: views/admin/import/product/_tabs/_variations.php:498
|
1096 |
+
msgid "Download Expiry"
|
1097 |
+
msgstr ""
|
1098 |
+
|
1099 |
+
#: views/admin/import/product/_tabs/_general.php:198
|
1100 |
+
msgid "Enter the number of days before a download link expires, or leave blank."
|
1101 |
+
msgstr ""
|
1102 |
+
|
1103 |
+
#: views/admin/import/product/_tabs/_general.php:201
|
1104 |
+
msgid "Download Type"
|
1105 |
+
msgstr ""
|
1106 |
+
|
1107 |
+
#: views/admin/import/product/_tabs/_general.php:203
|
1108 |
+
msgid "The value of presented XPath should be one of the following: ('application', 'music')."
|
1109 |
+
msgstr ""
|
1110 |
+
|
1111 |
+
#: views/admin/import/product/_tabs/_general.php:211
|
1112 |
+
msgid "Tax Status"
|
1113 |
+
msgstr ""
|
1114 |
+
|
1115 |
+
#: views/admin/import/product/_tabs/_general.php:216
|
1116 |
+
msgid "Taxable"
|
1117 |
+
msgstr ""
|
1118 |
+
|
1119 |
+
#: views/admin/import/product/_tabs/_general.php:217
|
1120 |
+
msgid "Shipping only"
|
1121 |
+
msgstr ""
|
1122 |
+
|
1123 |
+
#: views/admin/import/product/_tabs/_general.php:218
|
1124 |
+
msgid "None"
|
1125 |
+
msgstr ""
|
1126 |
+
|
1127 |
+
#: views/admin/import/product/_tabs/_general.php:226
|
1128 |
+
msgid "Set tax status with XPath"
|
1129 |
+
msgstr ""
|
1130 |
+
|
1131 |
+
#: views/admin/import/product/_tabs/_general.php:231
|
1132 |
+
msgid "Value should be the slug for the tax status - 'taxable', 'shipping', and 'none' are the default slugs."
|
1133 |
+
msgstr ""
|
1134 |
+
|
1135 |
+
#: views/admin/import/product/_tabs/_general.php:241
|
1136 |
+
#: views/admin/import/product/_tabs/_variations.php:406
|
1137 |
+
msgid "Tax Class"
|
1138 |
+
msgstr ""
|
1139 |
+
|
1140 |
+
#: views/admin/import/product/_tabs/_general.php:249
|
1141 |
+
#: views/admin/import/product/_tabs/_variations.php:413
|
1142 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:12
|
1143 |
+
msgid "Standard"
|
1144 |
+
msgstr ""
|
1145 |
+
|
1146 |
+
#: views/admin/import/product/_tabs/_general.php:265
|
1147 |
+
msgid "Set tax class with XPath"
|
1148 |
+
msgstr ""
|
1149 |
+
|
1150 |
+
#: views/admin/import/product/_tabs/_general.php:271
|
1151 |
+
msgid "Value should be the slug for the tax class - 'reduced-rate' and 'zero-rate', are the default slugs."
|
1152 |
+
msgstr ""
|
1153 |
+
|
1154 |
+
#: views/admin/import/product/_tabs/_inventory.php:4
|
1155 |
+
#: views/admin/import/product/_tabs/_variations.php:151
|
1156 |
+
#: views/admin/import/product/_tabs/_variations.php:679
|
1157 |
+
msgid "Manage stock?"
|
1158 |
+
msgstr ""
|
1159 |
+
|
1160 |
+
#: views/admin/import/product/_tabs/_inventory.php:29
|
1161 |
+
#: views/admin/import/product/_tabs/_variations.php:181
|
1162 |
+
#: views/admin/import/product/_tabs/_variations.php:704
|
1163 |
+
msgid "Stock Qty"
|
1164 |
+
msgstr ""
|
1165 |
+
|
1166 |
+
#: views/admin/import/product/_tabs/_inventory.php:35
|
1167 |
+
#: views/admin/import/product/_tabs/_variations.php:194
|
1168 |
+
#: views/admin/import/product/_tabs/_variations.php:711
|
1169 |
+
msgid "Stock status"
|
1170 |
+
msgstr ""
|
1171 |
+
|
1172 |
+
#: views/admin/import/product/_tabs/_inventory.php:39
|
1173 |
+
#: views/admin/import/product/_tabs/_variations.php:198
|
1174 |
+
#: views/admin/import/product/_tabs/_variations.php:715
|
1175 |
+
msgid "In stock"
|
1176 |
+
msgstr ""
|
1177 |
+
|
1178 |
+
#: views/admin/import/product/_tabs/_inventory.php:43
|
1179 |
+
#: views/admin/import/product/_tabs/_variations.php:202
|
1180 |
+
#: views/admin/import/product/_tabs/_variations.php:719
|
1181 |
+
msgid "Out of stock"
|
1182 |
+
msgstr ""
|
1183 |
+
|
1184 |
+
#: views/admin/import/product/_tabs/_inventory.php:47
|
1185 |
+
#: views/admin/import/product/_tabs/_variations.php:206
|
1186 |
+
#: views/admin/import/product/_tabs/_variations.php:723
|
1187 |
+
msgid "Set automatically"
|
1188 |
+
msgstr ""
|
1189 |
+
|
1190 |
+
#: views/admin/import/product/_tabs/_inventory.php:48
|
1191 |
+
#: views/admin/import/product/_tabs/_variations.php:724
|
1192 |
+
msgid "Set the stock status to In Stock for positive Stock Qty values, and Out Of Stock if Stock Qty is 0 or blank."
|
1193 |
+
msgstr ""
|
1194 |
+
|
1195 |
+
#: views/admin/import/product/_tabs/_inventory.php:57
|
1196 |
+
#: views/admin/import/product/_tabs/_variations.php:216
|
1197 |
+
#: views/admin/import/product/_tabs/_variations.php:733
|
1198 |
+
msgid "The value of presented XPath should be one of the following: ('instock', 'outofstock')."
|
1199 |
+
msgstr ""
|
1200 |
+
|
1201 |
+
#: views/admin/import/product/_tabs/_inventory.php:66
|
1202 |
+
#: views/admin/import/product/_tabs/_variations.php:224
|
1203 |
+
msgid "Allow Backorders?"
|
1204 |
+
msgstr ""
|
1205 |
+
|
1206 |
+
#: views/admin/import/product/_tabs/_inventory.php:70
|
1207 |
+
#: views/admin/import/product/_tabs/_variations.php:228
|
1208 |
+
msgid "Do not allow"
|
1209 |
+
msgstr ""
|
1210 |
+
|
1211 |
+
#: views/admin/import/product/_tabs/_inventory.php:74
|
1212 |
+
#: views/admin/import/product/_tabs/_variations.php:232
|
1213 |
+
msgid "Allow, but notify customer"
|
1214 |
+
msgstr ""
|
1215 |
+
|
1216 |
+
#: views/admin/import/product/_tabs/_inventory.php:78
|
1217 |
+
#: views/admin/import/product/_tabs/_variations.php:236
|
1218 |
+
msgid "Allow"
|
1219 |
+
msgstr ""
|
1220 |
+
|
1221 |
+
#: views/admin/import/product/_tabs/_inventory.php:87
|
1222 |
+
#: views/admin/import/product/_tabs/_variations.php:245
|
1223 |
+
msgid "The value of presented XPath should be one of the following: ('no', 'notify', 'yes')."
|
1224 |
+
msgstr ""
|
1225 |
+
|
1226 |
+
#: views/admin/import/product/_tabs/_inventory.php:95
|
1227 |
+
msgid "Sold Individually?"
|
1228 |
+
msgstr ""
|
1229 |
+
|
1230 |
+
#: views/admin/import/product/_tabs/_linked_product.php:4
|
1231 |
+
msgid "Up-Sells"
|
1232 |
+
msgstr ""
|
1233 |
+
|
1234 |
+
#: views/admin/import/product/_tabs/_linked_product.php:6
|
1235 |
+
#: views/admin/import/product/_tabs/_linked_product.php:11
|
1236 |
+
msgid "Products can be matched by SKU, ID, or Title, and must be comma separated."
|
1237 |
+
msgstr ""
|
1238 |
+
|
1239 |
+
#: views/admin/import/product/_tabs/_linked_product.php:9
|
1240 |
+
msgid "Cross-Sells"
|
1241 |
+
msgstr ""
|
1242 |
+
|
1243 |
+
#: views/admin/import/product/_tabs/_linked_product.php:17
|
1244 |
+
msgid "Choose a grouped product…"
|
1245 |
+
msgstr ""
|
1246 |
+
|
1247 |
+
#: views/admin/import/product/_tabs/_linked_product.php:47
|
1248 |
+
msgid "Grouping"
|
1249 |
+
msgstr ""
|
1250 |
+
|
1251 |
+
#: views/admin/import/product/_tabs/_linked_product.php:60
|
1252 |
+
msgid "Set this option to make this product part of a grouped product."
|
1253 |
+
msgstr ""
|
1254 |
+
|
1255 |
+
#: views/admin/import/product/_tabs/_linked_product.php:67
|
1256 |
+
msgid "Manual Grouped Product Matching"
|
1257 |
+
msgstr ""
|
1258 |
+
|
1259 |
+
#: views/admin/import/product/_tabs/_linked_product.php:68
|
1260 |
+
msgid "Product will be assigned as the child of an already created product matching the specified criteria."
|
1261 |
+
msgstr ""
|
1262 |
+
|
1263 |
+
#: views/admin/import/product/_tabs/_linked_product.php:75
|
1264 |
+
msgid "Match by Post Title"
|
1265 |
+
msgstr ""
|
1266 |
+
|
1267 |
+
#: views/admin/import/product/_tabs/_linked_product.php:86
|
1268 |
+
msgid "Match by Custom Field"
|
1269 |
+
msgstr ""
|
1270 |
+
|
1271 |
+
#: views/admin/import/product/_tabs/_options.php:4
|
1272 |
+
msgid "Import options"
|
1273 |
+
msgstr ""
|
1274 |
+
|
1275 |
+
#: views/admin/import/product/_tabs/_options.php:10
|
1276 |
+
msgid "Set out of stock status for missing records"
|
1277 |
+
msgstr ""
|
1278 |
+
|
1279 |
+
#: views/admin/import/product/_tabs/_options.php:11
|
1280 |
+
msgid "Option to set the stock status to out of stock instead of deleting the product entirely. This option doesn't work when 'Delete missing records' option is enabled."
|
1281 |
+
msgstr ""
|
1282 |
+
|
1283 |
+
#: views/admin/import/product/_tabs/_options.php:17
|
1284 |
+
msgid "Disable auto SKU generation"
|
1285 |
+
msgstr ""
|
1286 |
+
|
1287 |
+
#: views/admin/import/product/_tabs/_options.php:18
|
1288 |
+
msgid "Plugin will NOT automaticaly generate the SKU for each product based on md5 algorithm, if SKU option is empty."
|
1289 |
+
msgstr ""
|
1290 |
+
|
1291 |
+
#: views/admin/import/product/_tabs/_options.php:23
|
1292 |
+
msgid "Don't check for duplicate SKUs"
|
1293 |
+
msgstr ""
|
1294 |
+
|
1295 |
+
#: views/admin/import/product/_tabs/_options.php:24
|
1296 |
+
msgid "Each product should have a unique SKU. If this box is checked, WP All Import won't check for duplicate SKUs, which speeds up the import process. Make sure the SKU for each of your products is unique. If this box is unchecked, WP All Import will import products with duplicate SKUs with a blank SKU."
|
1297 |
+
msgstr ""
|
1298 |
+
|
1299 |
+
#: views/admin/import/product/_tabs/_shipping.php:5
|
1300 |
+
msgid "Weight (%s)"
|
1301 |
+
msgstr ""
|
1302 |
+
|
1303 |
+
#: views/admin/import/product/_tabs/_shipping.php:9
|
1304 |
+
msgid "Dimensions (%s)"
|
1305 |
+
msgstr ""
|
1306 |
+
|
1307 |
+
#: views/admin/import/product/_tabs/_shipping.php:10
|
1308 |
+
msgid "Length"
|
1309 |
+
msgstr ""
|
1310 |
+
|
1311 |
+
#: views/admin/import/product/_tabs/_shipping.php:11
|
1312 |
+
msgid "Width"
|
1313 |
+
msgstr ""
|
1314 |
+
|
1315 |
+
#: views/admin/import/product/_tabs/_shipping.php:12
|
1316 |
+
msgid "Height"
|
1317 |
+
msgstr ""
|
1318 |
+
|
1319 |
+
#: views/admin/import/product/_tabs/_shipping.php:20
|
1320 |
+
#: views/admin/import/product/_tabs/_variations.php:360
|
1321 |
+
msgid "Shipping Class"
|
1322 |
+
msgstr ""
|
1323 |
+
|
1324 |
+
#: views/admin/import/product/_tabs/_shipping.php:29
|
1325 |
+
#: views/admin/import/product/_tabs/_variations.php:371
|
1326 |
+
msgid "No shipping class"
|
1327 |
+
msgstr ""
|
1328 |
+
|
1329 |
+
#: views/admin/import/product/_tabs/_shipping.php:44
|
1330 |
+
#: views/admin/import/product/_tabs/_variations.php:386
|
1331 |
+
msgid "Set product shipping class with XPath"
|
1332 |
+
msgstr ""
|
1333 |
+
|
1334 |
+
#: views/admin/import/product/_tabs/_shipping.php:49
|
1335 |
+
msgid "Value should be the name, ID, or slug for the shipping class. Default slugs are 'taxable', 'shipping' and 'none'."
|
1336 |
+
msgstr ""
|
1337 |
+
|
1338 |
+
#: views/admin/import/product/_tabs/_variations.php:7
|
1339 |
+
msgid "All my variable products have SKUs or some other unique identifier. Each variation is linked to its parent with its parent's SKU or other unique identifier."
|
1340 |
+
msgstr ""
|
1341 |
+
|
1342 |
+
#: views/admin/import/product/_tabs/_variations.php:11
|
1343 |
+
msgid "SKU element for parent"
|
1344 |
+
msgstr ""
|
1345 |
+
|
1346 |
+
#: views/admin/import/product/_tabs/_variations.php:13
|
1347 |
+
msgid "SKU column in the below example."
|
1348 |
+
msgstr ""
|
1349 |
+
|
1350 |
+
#: views/admin/import/product/_tabs/_variations.php:16
|
1351 |
+
msgid "Parent SKU element for variation"
|
1352 |
+
msgstr ""
|
1353 |
+
|
1354 |
+
#: views/admin/import/product/_tabs/_variations.php:18
|
1355 |
+
msgid "Parent SKU column in the below example."
|
1356 |
+
msgstr ""
|
1357 |
+
|
1358 |
+
#: views/admin/import/product/_tabs/_variations.php:21
|
1359 |
+
#: views/admin/import/product/_tabs/_variations.php:41
|
1360 |
+
#: views/admin/import/product/_tabs/_variations.php:60
|
1361 |
+
#: views/admin/import/product/_tabs/_variations.php:78
|
1362 |
+
msgid "Example Data For Use With This Option"
|
1363 |
+
msgstr ""
|
1364 |
+
|
1365 |
+
#: views/admin/import/product/_tabs/_variations.php:21
|
1366 |
+
#: views/admin/import/product/_tabs/_variations.php:41
|
1367 |
+
#: views/admin/import/product/_tabs/_variations.php:60
|
1368 |
+
#: views/admin/import/product/_tabs/_variations.php:78
|
1369 |
+
msgid "download"
|
1370 |
+
msgstr ""
|
1371 |
+
|
1372 |
+
#: views/admin/import/product/_tabs/_variations.php:31
|
1373 |
+
msgid "All products with variations are grouped with a unique identifier that is the same for each variation and unique for each product."
|
1374 |
+
msgstr ""
|
1375 |
+
|
1376 |
+
#: views/admin/import/product/_tabs/_variations.php:38
|
1377 |
+
msgid "Group ID column in the below example."
|
1378 |
+
msgstr ""
|
1379 |
+
|
1380 |
+
#: views/admin/import/product/_tabs/_variations.php:51
|
1381 |
+
msgid "All variations for a particular product have the same title as the parent product."
|
1382 |
+
msgstr ""
|
1383 |
+
|
1384 |
+
#: views/admin/import/product/_tabs/_variations.php:56
|
1385 |
+
#: views/admin/import/product/_tabs/_variations.php:74
|
1386 |
+
msgid "Product Title"
|
1387 |
+
msgstr ""
|
1388 |
+
|
1389 |
+
#: views/admin/import/product/_tabs/_variations.php:70
|
1390 |
+
msgid "All variations for a particular product have the same title. There are no parent products."
|
1391 |
+
msgstr ""
|
1392 |
+
|
1393 |
+
#: views/admin/import/product/_tabs/_variations.php:88
|
1394 |
+
msgid "I'm importing XML and my variations are child XML elements"
|
1395 |
+
msgstr ""
|
1396 |
+
|
1397 |
+
#: views/admin/import/product/_tabs/_variations.php:95
|
1398 |
+
msgid "Video Example"
|
1399 |
+
msgstr ""
|
1400 |
+
|
1401 |
+
#: views/admin/import/product/_tabs/_variations.php:98
|
1402 |
+
msgid "Variations XPath"
|
1403 |
+
msgstr ""
|
1404 |
+
|
1405 |
+
#: views/admin/import/product/_tabs/_variations.php:99
|
1406 |
+
msgid "Open XML Tree"
|
1407 |
+
msgstr ""
|
1408 |
+
|
1409 |
+
#: views/admin/import/product/_tabs/_variations.php:124
|
1410 |
+
msgid "Add value to the parent SKU"
|
1411 |
+
msgstr ""
|
1412 |
+
|
1413 |
+
#: views/admin/import/product/_tabs/_variations.php:125
|
1414 |
+
msgid "Enable this checkbox to combine SKU from parent and variation products."
|
1415 |
+
msgstr ""
|
1416 |
+
|
1417 |
+
#: views/admin/import/product/_tabs/_variations.php:129
|
1418 |
+
msgid "Image"
|
1419 |
+
msgstr ""
|
1420 |
+
|
1421 |
+
#: views/admin/import/product/_tabs/_variations.php:134
|
1422 |
+
#: views/admin/import/product/_tabs/_variations.php:144
|
1423 |
+
#: views/admin/import/product/_tabs/_variations.php:172
|
1424 |
+
#: views/admin/import/product/_tabs/_variations.php:186
|
1425 |
+
#: views/admin/import/product/_tabs/_variations.php:258
|
1426 |
+
#: views/admin/import/product/_tabs/_variations.php:269
|
1427 |
+
#: views/admin/import/product/_tabs/_variations.php:279
|
1428 |
+
#: views/admin/import/product/_tabs/_variations.php:292
|
1429 |
+
#: views/admin/import/product/_tabs/_variations.php:324
|
1430 |
+
#: views/admin/import/product/_tabs/_variations.php:338
|
1431 |
+
#: views/admin/import/product/_tabs/_variations.php:346
|
1432 |
+
#: views/admin/import/product/_tabs/_variations.php:395
|
1433 |
+
#: views/admin/import/product/_tabs/_variations.php:439
|
1434 |
+
#: views/admin/import/product/_tabs/_variations.php:468
|
1435 |
+
#: views/admin/import/product/_tabs/_variations.php:494
|
1436 |
+
#: views/admin/import/product/_tabs/_variations.php:503
|
1437 |
+
msgid "XPath Is From Parent"
|
1438 |
+
msgstr ""
|
1439 |
+
|
1440 |
+
#: views/admin/import/product/_tabs/_variations.php:135
|
1441 |
+
msgid "Images are imported according to the options set in the Images section below. There you can import images to the parent products, and here you can import images to the product variations."
|
1442 |
+
msgstr ""
|
1443 |
+
|
1444 |
+
#: views/admin/import/product/_tabs/_variations.php:187
|
1445 |
+
msgid "Enable this checkbox to determine XPath from parent element."
|
1446 |
+
msgstr ""
|
1447 |
+
|
1448 |
+
#: views/admin/import/product/_tabs/_variations.php:207
|
1449 |
+
msgid "Set the stock status to In Stock for positive or blank Stock Qty values, and Out Of Stock if Stock Qty is 0."
|
1450 |
+
msgstr ""
|
1451 |
+
|
1452 |
+
#: views/admin/import/product/_tabs/_variations.php:253
|
1453 |
+
msgid "Regular Price"
|
1454 |
+
msgstr ""
|
1455 |
+
|
1456 |
+
#: views/admin/import/product/_tabs/_variations.php:262
|
1457 |
+
msgid "Sale Price"
|
1458 |
+
msgstr ""
|
1459 |
+
|
1460 |
+
#: views/admin/import/product/_tabs/_variations.php:274
|
1461 |
+
msgid "Wholesale Price ("
|
1462 |
+
msgstr ""
|
1463 |
+
|
1464 |
+
#: views/admin/import/product/_tabs/_variations.php:288
|
1465 |
+
msgid "Variable Sale Price Dates"
|
1466 |
+
msgstr ""
|
1467 |
+
|
1468 |
+
#: views/admin/import/product/_tabs/_variations.php:333
|
1469 |
+
msgid "Weight"
|
1470 |
+
msgstr ""
|
1471 |
+
|
1472 |
+
#: views/admin/import/product/_tabs/_variations.php:342
|
1473 |
+
msgid "Dimensions (L×W×H)"
|
1474 |
+
msgstr ""
|
1475 |
+
|
1476 |
+
#: views/admin/import/product/_tabs/_variations.php:391
|
1477 |
+
msgid "The value of presented XPath should be one of the following: ('taxable', 'shipping', 'none')."
|
1478 |
+
msgstr ""
|
1479 |
+
|
1480 |
+
#: views/admin/import/product/_tabs/_variations.php:419
|
1481 |
+
msgid "Same as parent"
|
1482 |
+
msgstr ""
|
1483 |
+
|
1484 |
+
#: views/admin/import/product/_tabs/_variations.php:430
|
1485 |
+
msgid "Set product tax class with XPath"
|
1486 |
+
msgstr ""
|
1487 |
+
|
1488 |
+
#: views/admin/import/product/_tabs/_variations.php:435
|
1489 |
+
msgid "The value of presented XPath should be one of the following: ('reduced-rate', 'zero-rate')."
|
1490 |
+
msgstr ""
|
1491 |
+
|
1492 |
+
#: views/admin/import/product/_tabs/_variations.php:480
|
1493 |
+
msgid "File paths/URLs, comma separated. The delimiter option uses when xml element contains few paths/URLs (http://files.com/1.doc, http://files.com/2.doc)."
|
1494 |
+
msgstr ""
|
1495 |
+
|
1496 |
+
#: views/admin/import/product/_tabs/_variations.php:538
|
1497 |
+
msgid "Variation Attributes"
|
1498 |
+
msgstr ""
|
1499 |
+
|
1500 |
+
#: views/admin/import/product/_tabs/_variations.php:575
|
1501 |
+
#: views/admin/import/product/_tabs/_variations.php:607
|
1502 |
+
#: views/admin/import/product/_tabs/_variations.php:637
|
1503 |
+
msgid "Taxonomy"
|
1504 |
+
msgstr ""
|
1505 |
+
|
1506 |
+
#: views/admin/import/product/_tabs/_variations.php:662
|
1507 |
+
msgid "No matching elements found for XPath expression specified"
|
1508 |
+
msgstr ""
|
1509 |
+
|
1510 |
+
#: views/admin/import/product/_tabs/_variations.php:770
|
1511 |
+
msgid "Set the default selection in the attributes dropdowns."
|
1512 |
+
msgstr ""
|
1513 |
+
|
1514 |
+
#: views/admin/import/product/_tabs/_variations.php:771
|
1515 |
+
msgid "The attributes for the first variation will be automatically selected on the frontend."
|
1516 |
+
msgstr ""
|
1517 |
+
|
1518 |
+
#: views/admin/import/product/_tabs/_variations.php:776
|
1519 |
+
msgid "Set first variation as the default selection."
|
1520 |
+
msgstr ""
|
1521 |
+
|
1522 |
+
#: views/admin/import/product/_tabs/_variations.php:780
|
1523 |
+
msgid "Set first in stock variation as the default selection."
|
1524 |
+
msgstr ""
|
1525 |
+
|
1526 |
+
#: views/admin/import/product/_tabs/_variations.php:785
|
1527 |
+
msgid "Do not set default selections for the dropdowns."
|
1528 |
+
msgstr ""
|
1529 |
+
|
1530 |
+
#: views/admin/import/product/_tabs/_variations.php:791
|
1531 |
+
msgid "Create products with no variations as simple products."
|
1532 |
+
msgstr ""
|
1533 |
+
|
1534 |
+
#: views/admin/import/product/_tabs/_variations.php:796
|
1535 |
+
msgid "Save variation image to the gallery."
|
1536 |
+
msgstr ""
|
1537 |
+
|
1538 |
+
#: views/admin/import/product/_tabs/_variations.php:801
|
1539 |
+
msgid "Set _stock value for parent product to the _stock value for the first variation."
|
1540 |
+
msgstr ""
|
1541 |
+
|
1542 |
+
#: views/admin/import/product/_tabs/_variations.php:802
|
1543 |
+
msgid "This option works when there are no parent products in your feed ( cases 2 and 4 on Variations tab)."
|
1544 |
+
msgstr ""
|
1545 |
+
|
1546 |
+
#: views/admin/import/product/index.php:4
|
1547 |
+
msgid "WooCommerce Add-On"
|
1548 |
+
msgstr ""
|
1549 |
+
|
1550 |
+
#: views/admin/import/product/index.php:22
|
1551 |
+
msgid "Simple product"
|
1552 |
+
msgstr ""
|
1553 |
+
|
1554 |
+
#: views/admin/import/product/index.php:23
|
1555 |
+
msgid "Grouped product"
|
1556 |
+
msgstr ""
|
1557 |
+
|
1558 |
+
#: views/admin/import/product/index.php:24
|
1559 |
+
msgid "External/Affiliate product"
|
1560 |
+
msgstr ""
|
1561 |
+
|
1562 |
+
#: views/admin/import/product/index.php:25
|
1563 |
+
msgid "Variable product"
|
1564 |
+
msgstr ""
|
1565 |
+
|
1566 |
+
#: views/admin/import/product/index.php:39
|
1567 |
+
msgid "Set Product Type With XPath"
|
1568 |
+
msgstr ""
|
1569 |
+
|
1570 |
+
#: views/admin/import/product/index.php:44
|
1571 |
+
msgid "The value of presented XPath should be one of the following: ('simple', 'grouped', 'external', 'variable')."
|
1572 |
+
msgstr ""
|
1573 |
+
|
1574 |
+
#: views/admin/import/product/index.php:55
|
1575 |
+
msgid "General"
|
1576 |
+
msgstr ""
|
1577 |
+
|
1578 |
+
#: views/admin/import/product/index.php:57
|
1579 |
+
msgid "Inventory"
|
1580 |
+
msgstr ""
|
1581 |
+
|
1582 |
+
#: views/admin/import/product/index.php:59
|
1583 |
+
#: views/admin/import/shop_order/order_bs_section.php:23
|
1584 |
+
#: views/admin/import/shop_order/order_items_section.php:31
|
1585 |
+
msgid "Shipping"
|
1586 |
+
msgstr ""
|
1587 |
+
|
1588 |
+
#: views/admin/import/product/index.php:61
|
1589 |
+
msgid "Linked Products"
|
1590 |
+
msgstr ""
|
1591 |
+
|
1592 |
+
#: views/admin/import/product/index.php:67
|
1593 |
+
msgid "Variations"
|
1594 |
+
msgstr ""
|
1595 |
+
|
1596 |
+
#: views/admin/import/product/index.php:69
|
1597 |
+
msgid "Add-On Options"
|
1598 |
+
msgstr ""
|
1599 |
+
|
1600 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:6
|
1601 |
+
msgid "Try to load data from existing customer"
|
1602 |
+
msgstr ""
|
1603 |
+
|
1604 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:7
|
1605 |
+
msgid "If no customer is found the order will be skipped."
|
1606 |
+
msgstr ""
|
1607 |
+
|
1608 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:14
|
1609 |
+
msgid "Match by:"
|
1610 |
+
msgstr ""
|
1611 |
+
|
1612 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:16
|
1613 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:28
|
1614 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:40
|
1615 |
+
#: views/admin/import/shop_order/order_notes_section.php:71
|
1616 |
+
#: views/admin/import/shop_order/order_notes_section.php:137
|
1617 |
+
msgid "Username"
|
1618 |
+
msgstr ""
|
1619 |
+
|
1620 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:17
|
1621 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:140
|
1622 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:237
|
1623 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:52
|
1624 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:90
|
1625 |
+
#: views/admin/import/shop_order/order_notes_section.php:77
|
1626 |
+
#: views/admin/import/shop_order/order_notes_section.php:143
|
1627 |
+
msgid "Email"
|
1628 |
+
msgstr ""
|
1629 |
+
|
1630 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:18
|
1631 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:64
|
1632 |
+
msgid "Custom Field"
|
1633 |
+
msgstr ""
|
1634 |
+
|
1635 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:19
|
1636 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:63
|
1637 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:83
|
1638 |
+
msgid "User ID"
|
1639 |
+
msgstr ""
|
1640 |
+
|
1641 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:38
|
1642 |
+
msgid "Email Address"
|
1643 |
+
msgstr ""
|
1644 |
+
|
1645 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:49
|
1646 |
+
msgid "Field Name"
|
1647 |
+
msgstr ""
|
1648 |
+
|
1649 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:52
|
1650 |
+
msgid "Field Value"
|
1651 |
+
msgstr ""
|
1652 |
+
|
1653 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:70
|
1654 |
+
msgid "If no match found, import as guest customer"
|
1655 |
+
msgstr ""
|
1656 |
+
|
1657 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:76
|
1658 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:173
|
1659 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:26
|
1660 |
+
msgid "First Name"
|
1661 |
+
msgstr ""
|
1662 |
+
|
1663 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:82
|
1664 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:179
|
1665 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:32
|
1666 |
+
msgid "Last Name"
|
1667 |
+
msgstr ""
|
1668 |
+
|
1669 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:90
|
1670 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:187
|
1671 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:40
|
1672 |
+
msgid "Company"
|
1673 |
+
msgstr ""
|
1674 |
+
|
1675 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:98
|
1676 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:195
|
1677 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:48
|
1678 |
+
msgid "Address 1"
|
1679 |
+
msgstr ""
|
1680 |
+
|
1681 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:104
|
1682 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:201
|
1683 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:54
|
1684 |
+
msgid "Address 2"
|
1685 |
+
msgstr ""
|
1686 |
+
|
1687 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:112
|
1688 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:209
|
1689 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:62
|
1690 |
+
msgid "City"
|
1691 |
+
msgstr ""
|
1692 |
+
|
1693 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:118
|
1694 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:215
|
1695 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:68
|
1696 |
+
msgid "Postcode"
|
1697 |
+
msgstr ""
|
1698 |
+
|
1699 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:126
|
1700 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:223
|
1701 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:76
|
1702 |
+
msgid "Country"
|
1703 |
+
msgstr ""
|
1704 |
+
|
1705 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:132
|
1706 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:229
|
1707 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:82
|
1708 |
+
msgid "State/Country"
|
1709 |
+
msgstr ""
|
1710 |
+
|
1711 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:146
|
1712 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:243
|
1713 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:96
|
1714 |
+
msgid "Phone"
|
1715 |
+
msgstr ""
|
1716 |
+
|
1717 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:155
|
1718 |
+
msgid "Orders without a match will be skipped"
|
1719 |
+
msgstr ""
|
1720 |
+
|
1721 |
+
#: views/admin/import/shop_order/_tabs/_order_billing.php:165
|
1722 |
+
msgid "Import as guest customer"
|
1723 |
+
msgstr ""
|
1724 |
+
|
1725 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:6
|
1726 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:95
|
1727 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:6
|
1728 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:68
|
1729 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:6
|
1730 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:559
|
1731 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:6
|
1732 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:125
|
1733 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:6
|
1734 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:141
|
1735 |
+
#: views/admin/import/shop_order/order_notes_section.php:14
|
1736 |
+
#: views/admin/import/shop_order/order_notes_section.php:176
|
1737 |
+
msgid "Fixed Repeater Mode"
|
1738 |
+
msgstr ""
|
1739 |
+
|
1740 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:23
|
1741 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:54
|
1742 |
+
msgid "Coupon Code"
|
1743 |
+
msgstr ""
|
1744 |
+
|
1745 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:31
|
1746 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:62
|
1747 |
+
msgid "Discount Amount"
|
1748 |
+
msgstr ""
|
1749 |
+
|
1750 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:37
|
1751 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:68
|
1752 |
+
msgid "Discount Amount Tax"
|
1753 |
+
msgstr ""
|
1754 |
+
|
1755 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:80
|
1756 |
+
msgid "Add Another Coupon"
|
1757 |
+
msgstr ""
|
1758 |
+
|
1759 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:88
|
1760 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:61
|
1761 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:552
|
1762 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:118
|
1763 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:134
|
1764 |
+
#: views/admin/import/shop_order/order_notes_section.php:169
|
1765 |
+
msgid "Advanced Options"
|
1766 |
+
msgstr ""
|
1767 |
+
|
1768 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:98
|
1769 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:118
|
1770 |
+
msgid "Multiple coupons separated by"
|
1771 |
+
msgstr ""
|
1772 |
+
|
1773 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:106
|
1774 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:79
|
1775 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:569
|
1776 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:136
|
1777 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:152
|
1778 |
+
#: views/admin/import/shop_order/order_notes_section.php:187
|
1779 |
+
msgid "Variable Repeater Mode"
|
1780 |
+
msgstr ""
|
1781 |
+
|
1782 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:109
|
1783 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:82
|
1784 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:572
|
1785 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:139
|
1786 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:155
|
1787 |
+
#: views/admin/import/shop_order/order_notes_section.php:190
|
1788 |
+
msgid "For each"
|
1789 |
+
msgstr ""
|
1790 |
+
|
1791 |
+
#: views/admin/import/shop_order/_tabs/_order_item_coupons.php:111
|
1792 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:84
|
1793 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:574
|
1794 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:141
|
1795 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:157
|
1796 |
+
#: views/admin/import/shop_order/order_notes_section.php:192
|
1797 |
+
msgid "do..."
|
1798 |
+
msgstr ""
|
1799 |
+
|
1800 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:20
|
1801 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:37
|
1802 |
+
msgid "Fee Name"
|
1803 |
+
msgstr ""
|
1804 |
+
|
1805 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:26
|
1806 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:43
|
1807 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:29
|
1808 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:76
|
1809 |
+
msgid "Amount"
|
1810 |
+
msgstr ""
|
1811 |
+
|
1812 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:53
|
1813 |
+
msgid "Add Another Fee"
|
1814 |
+
msgstr ""
|
1815 |
+
|
1816 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:71
|
1817 |
+
#: views/admin/import/shop_order/_tabs/_order_item_fees.php:91
|
1818 |
+
msgid "Multiple fees separated by"
|
1819 |
+
msgstr ""
|
1820 |
+
|
1821 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:11
|
1822 |
+
msgid "Get data from existing products"
|
1823 |
+
msgstr ""
|
1824 |
+
|
1825 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:12
|
1826 |
+
msgid "If no product is found the order will be skipped."
|
1827 |
+
msgstr ""
|
1828 |
+
|
1829 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:29
|
1830 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:157
|
1831 |
+
msgid "Product SKU"
|
1832 |
+
msgstr ""
|
1833 |
+
|
1834 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:33
|
1835 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:161
|
1836 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:312
|
1837 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:471
|
1838 |
+
msgid "Quantity"
|
1839 |
+
msgstr ""
|
1840 |
+
|
1841 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:39
|
1842 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:167
|
1843 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:318
|
1844 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:477
|
1845 |
+
#: views/admin/import/shop_order/order_items_section.php:35
|
1846 |
+
msgid "Taxes"
|
1847 |
+
msgstr ""
|
1848 |
+
|
1849 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:55
|
1850 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:99
|
1851 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:175
|
1852 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:335
|
1853 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:380
|
1854 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:485
|
1855 |
+
msgid "Tax Rate Code"
|
1856 |
+
msgstr ""
|
1857 |
+
|
1858 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:62
|
1859 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:106
|
1860 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:182
|
1861 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:342
|
1862 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:387
|
1863 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:492
|
1864 |
+
msgid "Calculate Tax Amount By:"
|
1865 |
+
msgstr ""
|
1866 |
+
|
1867 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:66
|
1868 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:110
|
1869 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:186
|
1870 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:346
|
1871 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:391
|
1872 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:496
|
1873 |
+
msgid "Percentage"
|
1874 |
+
msgstr ""
|
1875 |
+
|
1876 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:77
|
1877 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:121
|
1878 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:197
|
1879 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:357
|
1880 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:402
|
1881 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:507
|
1882 |
+
msgid "Tax amount per unit"
|
1883 |
+
msgstr ""
|
1884 |
+
|
1885 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:88
|
1886 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:132
|
1887 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:208
|
1888 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:368
|
1889 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:413
|
1890 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:518
|
1891 |
+
msgid "Look up tax rate code"
|
1892 |
+
msgstr ""
|
1893 |
+
|
1894 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:89
|
1895 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:133
|
1896 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:209
|
1897 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:369
|
1898 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:414
|
1899 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:519
|
1900 |
+
msgid "If rate code is not found, this tax amount will not be imported."
|
1901 |
+
msgstr ""
|
1902 |
+
|
1903 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:231
|
1904 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:541
|
1905 |
+
msgid "Add Product"
|
1906 |
+
msgstr ""
|
1907 |
+
|
1908 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:242
|
1909 |
+
msgid "Manually import product order data and do not try to match to existing products"
|
1910 |
+
msgstr ""
|
1911 |
+
|
1912 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:243
|
1913 |
+
msgid "The product in this order will not be linked to any existing products."
|
1914 |
+
msgstr ""
|
1915 |
+
|
1916 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:267
|
1917 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:439
|
1918 |
+
msgid "Product Name"
|
1919 |
+
msgstr ""
|
1920 |
+
|
1921 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:300
|
1922 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:459
|
1923 |
+
msgid "Add Product Meta"
|
1924 |
+
msgstr ""
|
1925 |
+
|
1926 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:300
|
1927 |
+
msgid "Add More Product Meta"
|
1928 |
+
msgstr ""
|
1929 |
+
|
1930 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:308
|
1931 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:467
|
1932 |
+
msgid "Price per Unit"
|
1933 |
+
msgstr ""
|
1934 |
+
|
1935 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:562
|
1936 |
+
#: views/admin/import/shop_order/_tabs/_order_item_products.php:581
|
1937 |
+
msgid "Multiple products separated by"
|
1938 |
+
msgstr ""
|
1939 |
+
|
1940 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:6
|
1941 |
+
msgid "Refund Amount"
|
1942 |
+
msgstr ""
|
1943 |
+
|
1944 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:12
|
1945 |
+
msgid "Reason"
|
1946 |
+
msgstr ""
|
1947 |
+
|
1948 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:20
|
1949 |
+
#: views/admin/import/shop_order/order_details_section.php:39
|
1950 |
+
#: views/admin/import/shop_order/order_notes_section.php:39
|
1951 |
+
#: views/admin/import/shop_order/order_notes_section.php:103
|
1952 |
+
msgid "Date"
|
1953 |
+
msgstr ""
|
1954 |
+
|
1955 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:26
|
1956 |
+
msgid "Refund Issued By"
|
1957 |
+
msgstr ""
|
1958 |
+
|
1959 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:30
|
1960 |
+
msgid "Load details from existing user"
|
1961 |
+
msgstr ""
|
1962 |
+
|
1963 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:31
|
1964 |
+
msgid "If no user is matched, refund issuer will be left blank."
|
1965 |
+
msgstr ""
|
1966 |
+
|
1967 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:36
|
1968 |
+
msgid "Match user by:"
|
1969 |
+
msgstr ""
|
1970 |
+
|
1971 |
+
#: views/admin/import/shop_order/_tabs/_order_item_refunds.php:98
|
1972 |
+
msgid "Leave refund issuer blank"
|
1973 |
+
msgstr ""
|
1974 |
+
|
1975 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:23
|
1976 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:70
|
1977 |
+
msgid "Shipping Name"
|
1978 |
+
msgstr ""
|
1979 |
+
|
1980 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:37
|
1981 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:84
|
1982 |
+
msgid "Shipping Method"
|
1983 |
+
msgstr ""
|
1984 |
+
|
1985 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:53
|
1986 |
+
msgid "Shipping method can be matched by Name or ID: %s. If shipping method is not found then no shipping information will be imported."
|
1987 |
+
msgstr ""
|
1988 |
+
|
1989 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:98
|
1990 |
+
msgid "Shipping method can be matched by Nmae or ID. If shipping method is not found then no shipping information will be imported."
|
1991 |
+
msgstr ""
|
1992 |
+
|
1993 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:110
|
1994 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:126
|
1995 |
+
msgid "Add More"
|
1996 |
+
msgstr ""
|
1997 |
+
|
1998 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:128
|
1999 |
+
#: views/admin/import/shop_order/_tabs/_order_item_shipping.php:148
|
2000 |
+
msgid "Multiple shipping costs separated by"
|
2001 |
+
msgstr ""
|
2002 |
+
|
2003 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:34
|
2004 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:83
|
2005 |
+
msgid "Tax Rate Amount"
|
2006 |
+
msgstr ""
|
2007 |
+
|
2008 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:40
|
2009 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:89
|
2010 |
+
msgid "Shipping Tax Amount"
|
2011 |
+
msgstr ""
|
2012 |
+
|
2013 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:48
|
2014 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:97
|
2015 |
+
msgid "Tax Rate"
|
2016 |
+
msgstr ""
|
2017 |
+
|
2018 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:66
|
2019 |
+
msgid "Tax rate method can be matched by ID: %s. If tax method is not found then no tax information will be imported."
|
2020 |
+
msgstr ""
|
2021 |
+
|
2022 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:100
|
2023 |
+
msgid "Select"
|
2024 |
+
msgstr ""
|
2025 |
+
|
2026 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:114
|
2027 |
+
msgid "Tax rate method can be matched by ID. If tax method is not found then no tax information will be imported."
|
2028 |
+
msgstr ""
|
2029 |
+
|
2030 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:144
|
2031 |
+
#: views/admin/import/shop_order/_tabs/_order_item_taxes.php:164
|
2032 |
+
msgid "Multiple taxes separated by"
|
2033 |
+
msgstr ""
|
2034 |
+
|
2035 |
+
#: views/admin/import/shop_order/_tabs/_order_payment.php:8
|
2036 |
+
msgid "Payment Method"
|
2037 |
+
msgstr ""
|
2038 |
+
|
2039 |
+
#: views/admin/import/shop_order/_tabs/_order_payment.php:25
|
2040 |
+
msgid "Payment method can be matched by title or slug: %s. If payment method is not found 'N/A' will be applied to order."
|
2041 |
+
msgstr ""
|
2042 |
+
|
2043 |
+
#: views/admin/import/shop_order/_tabs/_order_payment.php:36
|
2044 |
+
msgid "Transaction ID"
|
2045 |
+
msgstr ""
|
2046 |
+
|
2047 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:6
|
2048 |
+
msgid "Copy from billing"
|
2049 |
+
msgstr ""
|
2050 |
+
|
2051 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:13
|
2052 |
+
msgid "Import shipping address"
|
2053 |
+
msgstr ""
|
2054 |
+
|
2055 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:21
|
2056 |
+
msgid "If order has no shipping info, copy from billing"
|
2057 |
+
msgstr ""
|
2058 |
+
|
2059 |
+
#: views/admin/import/shop_order/_tabs/_order_shipping.php:109
|
2060 |
+
msgid "Customer Provided Note"
|
2061 |
+
msgstr ""
|
2062 |
+
|
2063 |
+
#: views/admin/import/shop_order/_tabs/_order_total.php:5
|
2064 |
+
msgid "Calculate order total automatically"
|
2065 |
+
msgstr ""
|
2066 |
+
|
2067 |
+
#: views/admin/import/shop_order/_tabs/_order_total.php:10
|
2068 |
+
msgid "Set order total manually"
|
2069 |
+
msgstr ""
|
2070 |
+
|
2071 |
+
#: views/admin/import/shop_order/order_bs_section.php:4
|
2072 |
+
msgid "Billing & Shipping Details"
|
2073 |
+
msgstr ""
|
2074 |
+
|
2075 |
+
#: views/admin/import/shop_order/order_bs_section.php:19
|
2076 |
+
msgid "Billing"
|
2077 |
+
msgstr ""
|
2078 |
+
|
2079 |
+
#: views/admin/import/shop_order/order_bs_section.php:27
|
2080 |
+
msgid "Payment"
|
2081 |
+
msgstr ""
|
2082 |
+
|
2083 |
+
#: views/admin/import/shop_order/order_details_section.php:4
|
2084 |
+
msgid "Order Details"
|
2085 |
+
msgstr ""
|
2086 |
+
|
2087 |
+
#: views/admin/import/shop_order/order_details_section.php:13
|
2088 |
+
msgid "Order Status"
|
2089 |
+
msgstr ""
|
2090 |
+
|
2091 |
+
#: views/admin/import/shop_order/order_details_section.php:29
|
2092 |
+
msgid "Order status can be matched by title or slug: %s. If order status is not found 'Pending Payment' will be applied to order."
|
2093 |
+
msgstr ""
|
2094 |
+
|
2095 |
+
#: views/admin/import/shop_order/order_details_section.php:39
|
2096 |
+
#: views/admin/import/shop_order/order_notes_section.php:39
|
2097 |
+
#: views/admin/import/shop_order/order_notes_section.php:103
|
2098 |
+
msgid "Use any format supported by the PHP <b>strtotime</b> function. That means pretty much any human-readable date will work."
|
2099 |
+
msgstr ""
|
2100 |
+
|
2101 |
+
#: views/admin/import/shop_order/order_items_section.php:4
|
2102 |
+
msgid "Order Items"
|
2103 |
+
msgstr ""
|
2104 |
+
|
2105 |
+
#: views/admin/import/shop_order/order_items_section.php:19
|
2106 |
+
msgid "Products"
|
2107 |
+
msgstr ""
|
2108 |
+
|
2109 |
+
#: views/admin/import/shop_order/order_items_section.php:23
|
2110 |
+
msgid "Fees"
|
2111 |
+
msgstr ""
|
2112 |
+
|
2113 |
+
#: views/admin/import/shop_order/order_items_section.php:27
|
2114 |
+
msgid "Coupons"
|
2115 |
+
msgstr ""
|
2116 |
+
|
2117 |
+
#: views/admin/import/shop_order/order_items_section.php:43
|
2118 |
+
msgid "Total"
|
2119 |
+
msgstr ""
|
2120 |
+
|
2121 |
+
#: views/admin/import/shop_order/order_notes_section.php:4
|
2122 |
+
msgid "Notes"
|
2123 |
+
msgstr ""
|
2124 |
+
|
2125 |
+
#: views/admin/import/shop_order/order_notes_section.php:47
|
2126 |
+
#: views/admin/import/shop_order/order_notes_section.php:111
|
2127 |
+
msgid "Visibility"
|
2128 |
+
msgstr ""
|
2129 |
+
|
2130 |
+
#: views/admin/import/shop_order/order_notes_section.php:50
|
2131 |
+
#: views/admin/import/shop_order/order_notes_section.php:115
|
2132 |
+
msgid "Private note"
|
2133 |
+
msgstr ""
|
2134 |
+
|
2135 |
+
#: views/admin/import/shop_order/order_notes_section.php:54
|
2136 |
+
#: views/admin/import/shop_order/order_notes_section.php:119
|
2137 |
+
msgid "Note to customer"
|
2138 |
+
msgstr ""
|
2139 |
+
|
2140 |
+
#: views/admin/import/shop_order/order_notes_section.php:64
|
2141 |
+
#: views/admin/import/shop_order/order_notes_section.php:129
|
2142 |
+
msgid "Use 'private' or 'customer'."
|
2143 |
+
msgstr ""
|
2144 |
+
|
2145 |
+
#: views/admin/import/shop_order/order_notes_section.php:156
|
2146 |
+
msgid "Add Another Note"
|
2147 |
+
msgstr ""
|
2148 |
+
|
2149 |
+
#: views/admin/import/shop_order/order_notes_section.php:179
|
2150 |
+
#: views/admin/import/shop_order/order_notes_section.php:199
|
2151 |
+
msgid "Multiple notes separated by"
|
2152 |
+
msgstr ""
|
2153 |
+
|
2154 |
+
#: wpai-woocommerce-add-on.php:35
|
2155 |
+
msgid "Please de-activate and remove the free version of the WooCommere add-on before activating the paid version."
|
2156 |
+
msgstr ""
|
2157 |
+
|
2158 |
+
#. Plugin Name of the plugin/theme
|
2159 |
+
#:
|
2160 |
+
msgid "WP All Import - WooCommerce Add-On Pro"
|
2161 |
+
msgstr ""
|
2162 |
+
|
2163 |
+
#. Plugin URI of the plugin/theme
|
2164 |
+
#:
|
2165 |
+
msgid "http://www.wpallimport.com/"
|
2166 |
+
msgstr ""
|
2167 |
+
|
2168 |
+
#. Description of the plugin/theme
|
2169 |
+
#:
|
2170 |
+
msgid "Import to WooCommerce. Adds a section to WP All Import that looks just like WooCommerce. Requires WP All Import."
|
2171 |
+
msgstr ""
|
2172 |
+
|
2173 |
+
#. Author of the plugin/theme
|
2174 |
+
#:
|
2175 |
+
msgid "Soflyy"
|
2176 |
+
msgstr ""
|
2177 |
+
|
models/import/record.php
CHANGED
@@ -16,6 +16,8 @@ class PMWI_Import_Record extends PMWI_Model_Record {
|
|
16 |
public $post_meta_to_insert;
|
17 |
public $existing_meta_keys;
|
18 |
public $articleData;
|
|
|
|
|
19 |
|
20 |
public $reserved_terms = array(
|
21 |
'attachment', 'attachment_id', 'author', 'author_name', 'calendar', 'cat', 'category', 'category__and',
|
@@ -242,7 +244,7 @@ class PMWI_Import_Record extends PMWI_Model_Record {
|
|
242 |
// Composing product Stock status
|
243 |
if ($import->options['product_stock_status'] == 'xpath' and "" != $import->options['single_product_stock_status'])
|
244 |
{
|
245 |
-
$this->data['product_stock_status'] = XmlImportParser::factory($
|
246 |
}
|
247 |
elseif($import->options['product_stock_status'] == 'auto')
|
248 |
{
|
@@ -625,6 +627,9 @@ class PMWI_Import_Record extends PMWI_Model_Record {
|
|
625 |
|
626 |
public function import( $importData = array() ){
|
627 |
|
|
|
|
|
|
|
628 |
extract($importData);
|
629 |
|
630 |
if ( ! in_array($importData['post_type'], array('product', 'product_variation'))) return;
|
@@ -677,8 +682,10 @@ class PMWI_Import_Record extends PMWI_Model_Record {
|
|
677 |
$this->pushmeta($pid, '_tax_status', stripslashes( $product_tax_status[$i] ) );
|
678 |
$this->pushmeta($pid, '_tax_class', strtolower($product_tax_class[$i]) == 'standard' ? '' : stripslashes( $product_tax_class[$i] ) );
|
679 |
$this->pushmeta($pid, '_purchase_note', stripslashes( $product_purchase_note[$i] ) );
|
680 |
-
|
681 |
-
|
|
|
|
|
682 |
|
683 |
// Dimensions
|
684 |
if ( $is_virtual == 'no' ) {
|
@@ -851,13 +858,15 @@ class PMWI_Import_Record extends PMWI_Model_Record {
|
|
851 |
}
|
852 |
}
|
853 |
|
854 |
-
$this->pushmeta($pid, '_variation_description',
|
855 |
|
856 |
// Save Attributes
|
857 |
$attributes = array();
|
858 |
|
859 |
$is_variation_attributes_defined = false;
|
860 |
|
|
|
|
|
861 |
if ( $import->options['update_all_data'] == "yes" or ( $import->options['update_all_data'] == "no" and $import->options['is_update_attributes']) or $is_new_product){ // Update Product Attributes
|
862 |
|
863 |
$is_update_attributes = true;
|
@@ -923,7 +932,7 @@ class PMWI_Import_Record extends PMWI_Model_Record {
|
|
923 |
|
924 |
foreach ($values as $key => $val) {
|
925 |
|
926 |
-
$value = substr($val, 0,
|
927 |
|
928 |
$term = get_term_by('name', $value, wc_attribute_taxonomy_name( $attr_name ), ARRAY_A);
|
929 |
|
@@ -1054,7 +1063,12 @@ class PMWI_Import_Record extends PMWI_Model_Record {
|
|
1054 |
$this->pushmeta($pid, '_price', ($product_sale_price[$i] == "") ? '' : stripslashes( $product_sale_price[$i] ));
|
1055 |
|
1056 |
}
|
1057 |
-
else{
|
|
|
|
|
|
|
|
|
|
|
1058 |
|
1059 |
$this->pushmeta($pid, '_price', ($product_regular_price[$i] == "") ? '' : stripslashes( $product_regular_price[$i] ));
|
1060 |
}
|
@@ -1065,8 +1079,8 @@ class PMWI_Import_Record extends PMWI_Model_Record {
|
|
1065 |
|
1066 |
if ( $date_to && strtotime( $date_to ) < strtotime( 'NOW', current_time( 'timestamp' ) ) ) {
|
1067 |
$this->pushmeta($pid, '_price', ($product_regular_price[$i] == "") ? '' : stripslashes( $product_regular_price[$i] ));
|
1068 |
-
$this->pushmeta($pid, '_sale_price_dates_from', '');
|
1069 |
-
$this->pushmeta($pid, '_sale_price_dates_to', '');
|
1070 |
}
|
1071 |
}
|
1072 |
|
@@ -1182,7 +1196,7 @@ class PMWI_Import_Record extends PMWI_Model_Record {
|
|
1182 |
$this->pushmeta($pid, '_backorders', $backorders);
|
1183 |
|
1184 |
if ( $stock_status ) {
|
1185 |
-
|
1186 |
}
|
1187 |
|
1188 |
$current_manage_stock = get_post_meta( $pid, '_manage_stock', true );
|
@@ -1252,14 +1266,39 @@ class PMWI_Import_Record extends PMWI_Model_Record {
|
|
1252 |
}
|
1253 |
// Update product visibility term WC 3.0.0
|
1254 |
if ( version_compare(WOOCOMMERCE_VERSION, '3.0') >= 0 ) {
|
1255 |
-
|
1256 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1257 |
if ($is_featured == "yes"){
|
1258 |
$featured_term = get_term_by( 'name', 'featured', 'product_visibility' );
|
1259 |
-
if (!empty($featured_term) && !is_wp_error($featured_term)){
|
1260 |
$associate_terms[] = $featured_term->term_taxonomy_id;
|
1261 |
}
|
1262 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1263 |
if (in_array($product_visibility[$i], array('hidden', 'catalog'))){
|
1264 |
$exclude_search_term = get_term_by( 'name', 'exclude-from-search', 'product_visibility' );
|
1265 |
if (!empty($exclude_search_term) && !is_wp_error($exclude_search_term)){
|
@@ -1272,15 +1311,17 @@ class PMWI_Import_Record extends PMWI_Model_Record {
|
|
1272 |
$associate_terms[] = $exclude_catalog_term->term_taxonomy_id;
|
1273 |
}
|
1274 |
}
|
1275 |
-
|
1276 |
-
|
1277 |
-
|
1278 |
-
|
1279 |
-
|
1280 |
-
|
|
|
1281 |
}
|
1282 |
-
$this->associate_terms( $pid, $associate_terms, 'product_visibility' );
|
1283 |
}
|
|
|
|
|
1284 |
}
|
1285 |
|
1286 |
// prepare bulk SQL query
|
@@ -1495,6 +1536,7 @@ class PMWI_Import_Record extends PMWI_Model_Record {
|
|
1495 |
'attribute_name' => $attribute_name,
|
1496 |
'attribute_type' => $attribute_type,
|
1497 |
'attribute_orderby' => $attribute_orderby,
|
|
|
1498 |
)
|
1499 |
);
|
1500 |
|
@@ -1538,7 +1580,7 @@ class PMWI_Import_Record extends PMWI_Model_Record {
|
|
1538 |
return $caps;
|
1539 |
}
|
1540 |
|
1541 |
-
function import_linked_products($pid, $products, $type, $is_new_product
|
1542 |
{
|
1543 |
if ( ! $is_new_product and ! $this->is_update_cf($type) ) return;
|
1544 |
|
@@ -1607,7 +1649,7 @@ class PMWI_Import_Record extends PMWI_Model_Record {
|
|
1607 |
{
|
1608 |
$linked_products[] = $linked_product->ID;
|
1609 |
|
1610 |
-
$logger and call_user_func($logger, sprintf(__('Product `%s` with ID `%d` added to %s list.', 'wpai_woocommerce_addon_plugin'), $linked_product->post_title, $linked_product->ID, $type == '_upsell_ids' ? 'Up-Sells' : 'Cross-Sells') );
|
1611 |
}
|
1612 |
else
|
1613 |
{
|
@@ -1618,7 +1660,7 @@ class PMWI_Import_Record extends PMWI_Model_Record {
|
|
1618 |
// not all linked products founded
|
1619 |
if ( ! empty($not_found))
|
1620 |
{
|
1621 |
-
$not_founded_linked_products = get_option( 'wp_all_import_not_linked_products_' . $
|
1622 |
|
1623 |
if (empty($not_founded_linked_products)) $not_founded_linked_products = array();
|
1624 |
|
@@ -1628,7 +1670,7 @@ class PMWI_Import_Record extends PMWI_Model_Record {
|
|
1628 |
'not_linked_products' => $not_found
|
1629 |
);
|
1630 |
|
1631 |
-
update_option( 'wp_all_import_not_linked_products_' . $
|
1632 |
}
|
1633 |
|
1634 |
$this->pushmeta($pid, $type, $linked_products);
|
@@ -1638,7 +1680,7 @@ class PMWI_Import_Record extends PMWI_Model_Record {
|
|
1638 |
{
|
1639 |
delete_post_meta( $pid, $type );
|
1640 |
}
|
1641 |
-
}
|
1642 |
|
1643 |
function is_update_custom_field($existing_meta_keys, $options, $meta_key){
|
1644 |
|
16 |
public $post_meta_to_insert;
|
17 |
public $existing_meta_keys;
|
18 |
public $articleData;
|
19 |
+
public $import;
|
20 |
+
public $logger;
|
21 |
|
22 |
public $reserved_terms = array(
|
23 |
'attachment', 'attachment_id', 'author', 'author_name', 'calendar', 'cat', 'category', 'category__and',
|
244 |
// Composing product Stock status
|
245 |
if ($import->options['product_stock_status'] == 'xpath' and "" != $import->options['single_product_stock_status'])
|
246 |
{
|
247 |
+
$this->data['product_stock_status'] = XmlImportParser::factory($xml, $cxpath, $import->options['single_product_stock_status'], $file)->parse($records); $tmp_files[] = $file;
|
248 |
}
|
249 |
elseif($import->options['product_stock_status'] == 'auto')
|
250 |
{
|
627 |
|
628 |
public function import( $importData = array() ){
|
629 |
|
630 |
+
$this->import = $importData['import'];
|
631 |
+
$this->logger = $importData['logger'];
|
632 |
+
|
633 |
extract($importData);
|
634 |
|
635 |
if ( ! in_array($importData['post_type'], array('product', 'product_variation'))) return;
|
682 |
$this->pushmeta($pid, '_tax_status', stripslashes( $product_tax_status[$i] ) );
|
683 |
$this->pushmeta($pid, '_tax_class', strtolower($product_tax_class[$i]) == 'standard' ? '' : stripslashes( $product_tax_class[$i] ) );
|
684 |
$this->pushmeta($pid, '_purchase_note', stripslashes( $product_purchase_note[$i] ) );
|
685 |
+
if (version_compare(WOOCOMMERCE_VERSION, '3.0') < 0) {
|
686 |
+
$this->pushmeta($pid, '_featured', ($is_featured == "yes") ? 'yes' : 'no');
|
687 |
+
$this->pushmeta($pid, '_visibility', stripslashes($product_visibility[$i]));
|
688 |
+
}
|
689 |
|
690 |
// Dimensions
|
691 |
if ( $is_virtual == 'no' ) {
|
858 |
}
|
859 |
}
|
860 |
|
861 |
+
$this->pushmeta($pid, '_variation_description', $product_variation_description[$i] );
|
862 |
|
863 |
// Save Attributes
|
864 |
$attributes = array();
|
865 |
|
866 |
$is_variation_attributes_defined = false;
|
867 |
|
868 |
+
$max_attribute_length = apply_filters('wp_all_import_max_woo_attribute_term_length', 199);
|
869 |
+
|
870 |
if ( $import->options['update_all_data'] == "yes" or ( $import->options['update_all_data'] == "no" and $import->options['is_update_attributes']) or $is_new_product){ // Update Product Attributes
|
871 |
|
872 |
$is_update_attributes = true;
|
932 |
|
933 |
foreach ($values as $key => $val) {
|
934 |
|
935 |
+
$value = substr($val, 0, $max_attribute_length);
|
936 |
|
937 |
$term = get_term_by('name', $value, wc_attribute_taxonomy_name( $attr_name ), ARRAY_A);
|
938 |
|
1063 |
$this->pushmeta($pid, '_price', ($product_sale_price[$i] == "") ? '' : stripslashes( $product_sale_price[$i] ));
|
1064 |
|
1065 |
}
|
1066 |
+
else{
|
1067 |
+
|
1068 |
+
if ( ! empty($this->articleData['ID']) and ! $this->is_update_cf('_regular_price') )
|
1069 |
+
{
|
1070 |
+
$product_regular_price[$i] = get_post_meta($pid, '_regular_price', true);
|
1071 |
+
}
|
1072 |
|
1073 |
$this->pushmeta($pid, '_price', ($product_regular_price[$i] == "") ? '' : stripslashes( $product_regular_price[$i] ));
|
1074 |
}
|
1079 |
|
1080 |
if ( $date_to && strtotime( $date_to ) < strtotime( 'NOW', current_time( 'timestamp' ) ) ) {
|
1081 |
$this->pushmeta($pid, '_price', ($product_regular_price[$i] == "") ? '' : stripslashes( $product_regular_price[$i] ));
|
1082 |
+
// $this->pushmeta($pid, '_sale_price_dates_from', '');
|
1083 |
+
// $this->pushmeta($pid, '_sale_price_dates_to', '');
|
1084 |
}
|
1085 |
}
|
1086 |
|
1196 |
$this->pushmeta($pid, '_backorders', $backorders);
|
1197 |
|
1198 |
if ( $stock_status ) {
|
1199 |
+
update_post_meta( $pid, '_stock_status', $stock_status );
|
1200 |
}
|
1201 |
|
1202 |
$current_manage_stock = get_post_meta( $pid, '_manage_stock', true );
|
1266 |
}
|
1267 |
// Update product visibility term WC 3.0.0
|
1268 |
if ( version_compare(WOOCOMMERCE_VERSION, '3.0') >= 0 ) {
|
1269 |
+
|
1270 |
+
$associate_terms = array();
|
1271 |
+
|
1272 |
+
$term_ids = wp_get_object_terms($pid, 'product_visibility', array('fields' => 'ids'));
|
1273 |
+
|
1274 |
+
// If Not Update Featured Status checking for current featured status
|
1275 |
+
if ( ! empty($articleData['ID']) && ( ! $this->is_update_data_allowed('is_update_advanced_options') || ! $this->is_update_data_allowed('is_update_featured_status'))) {
|
1276 |
+
$featured_term = get_term_by( 'name', 'featured', 'product_visibility' );
|
1277 |
+
if ( ! empty($featured_term) && ! is_wp_error($featured_term) && in_array($featured_term->term_taxonomy_id, $term_ids) ){
|
1278 |
+
$associate_terms[] = $featured_term->term_taxonomy_id;
|
1279 |
+
}
|
1280 |
+
}
|
1281 |
+
else{
|
1282 |
if ($is_featured == "yes"){
|
1283 |
$featured_term = get_term_by( 'name', 'featured', 'product_visibility' );
|
1284 |
+
if ( ! empty($featured_term) && !is_wp_error($featured_term)){
|
1285 |
$associate_terms[] = $featured_term->term_taxonomy_id;
|
1286 |
}
|
1287 |
}
|
1288 |
+
}
|
1289 |
+
|
1290 |
+
// If Not Update Product Visibility checking for current product visibility
|
1291 |
+
if ( ! empty($articleData['ID']) && ( ! $this->is_update_data_allowed('is_update_advanced_options') || ! $this->is_update_data_allowed('is_update_catalog_visibility'))) {
|
1292 |
+
$exclude_search_term = get_term_by( 'name', 'exclude-from-search', 'product_visibility' );
|
1293 |
+
if (!empty($exclude_search_term) && !is_wp_error($exclude_search_term) && in_array($exclude_search_term->term_taxonomy_id, $term_ids)){
|
1294 |
+
$associate_terms[] = $exclude_search_term->term_taxonomy_id;
|
1295 |
+
}
|
1296 |
+
$exclude_catalog_term = get_term_by( 'name', 'exclude-from-catalog', 'product_visibility' );
|
1297 |
+
if (!empty($exclude_catalog_term) && !is_wp_error($exclude_catalog_term) && in_array($exclude_catalog_term->term_taxonomy_id, $term_ids)){
|
1298 |
+
$associate_terms[] = $exclude_catalog_term->term_taxonomy_id;
|
1299 |
+
}
|
1300 |
+
}
|
1301 |
+
else{
|
1302 |
if (in_array($product_visibility[$i], array('hidden', 'catalog'))){
|
1303 |
$exclude_search_term = get_term_by( 'name', 'exclude-from-search', 'product_visibility' );
|
1304 |
if (!empty($exclude_search_term) && !is_wp_error($exclude_search_term)){
|
1311 |
$associate_terms[] = $exclude_catalog_term->term_taxonomy_id;
|
1312 |
}
|
1313 |
}
|
1314 |
+
}
|
1315 |
+
|
1316 |
+
$_stock_status = get_post_meta( $pid, '_stock_status', true);
|
1317 |
+
if ( $_stock_status == 'outofstock' ){
|
1318 |
+
$outofstock_term = get_term_by( 'name', 'outofstock', 'product_visibility' );
|
1319 |
+
if (!empty($outofstock_term) && !is_wp_error($outofstock_term)){
|
1320 |
+
$associate_terms[] = $outofstock_term->term_taxonomy_id;
|
1321 |
}
|
|
|
1322 |
}
|
1323 |
+
|
1324 |
+
$this->associate_terms( $pid, $associate_terms, 'product_visibility' );
|
1325 |
}
|
1326 |
|
1327 |
// prepare bulk SQL query
|
1536 |
'attribute_name' => $attribute_name,
|
1537 |
'attribute_type' => $attribute_type,
|
1538 |
'attribute_orderby' => $attribute_orderby,
|
1539 |
+
'attribute_public' => 1
|
1540 |
)
|
1541 |
);
|
1542 |
|
1580 |
return $caps;
|
1581 |
}
|
1582 |
|
1583 |
+
function import_linked_products( $pid, $products, $type, $is_new_product )
|
1584 |
{
|
1585 |
if ( ! $is_new_product and ! $this->is_update_cf($type) ) return;
|
1586 |
|
1649 |
{
|
1650 |
$linked_products[] = $linked_product->ID;
|
1651 |
|
1652 |
+
$this->logger and call_user_func($this->logger, sprintf(__('Product `%s` with ID `%d` added to %s list.', 'wpai_woocommerce_addon_plugin'), $linked_product->post_title, $linked_product->ID, $type == '_upsell_ids' ? 'Up-Sells' : 'Cross-Sells') );
|
1653 |
}
|
1654 |
else
|
1655 |
{
|
1660 |
// not all linked products founded
|
1661 |
if ( ! empty($not_found))
|
1662 |
{
|
1663 |
+
$not_founded_linked_products = get_option( 'wp_all_import_not_linked_products_' . $this->import->id );
|
1664 |
|
1665 |
if (empty($not_founded_linked_products)) $not_founded_linked_products = array();
|
1666 |
|
1670 |
'not_linked_products' => $not_found
|
1671 |
);
|
1672 |
|
1673 |
+
update_option( 'wp_all_import_not_linked_products_' . $this->import->id, $not_founded_linked_products );
|
1674 |
}
|
1675 |
|
1676 |
$this->pushmeta($pid, $type, $linked_products);
|
1680 |
{
|
1681 |
delete_post_meta( $pid, $type );
|
1682 |
}
|
1683 |
+
}
|
1684 |
|
1685 |
function is_update_custom_field($existing_meta_keys, $options, $meta_key){
|
1686 |
|
models/model.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Base class for models
|
4 |
-
*
|
5 |
-
* @author
|
6 |
*/
|
7 |
abstract class PMWI_Model extends ArrayObject {
|
8 |
/**
|
1 |
<?php
|
2 |
/**
|
3 |
* Base class for models
|
4 |
+
*
|
5 |
+
* @author Maksym Tsypliakov <maksym.tsypliakov@gmail.com>
|
6 |
*/
|
7 |
abstract class PMWI_Model extends ArrayObject {
|
8 |
/**
|
models/model/list.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Incapsulates behavior for list of database records
|
4 |
-
*
|
5 |
-
* @author
|
6 |
*/
|
7 |
class PMWI_Model_List extends PMWI_Model {
|
8 |
|
1 |
<?php
|
2 |
/**
|
3 |
* Incapsulates behavior for list of database records
|
4 |
+
*
|
5 |
+
* @author Maksym Tsypliakov <maksym.tsypliakov@gmail.com>
|
6 |
*/
|
7 |
class PMWI_Model_List extends PMWI_Model {
|
8 |
|
models/model/record.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Base class for models
|
4 |
-
*
|
5 |
-
* @author
|
6 |
*/
|
7 |
class PMWI_Model_Record extends PMWI_Model {
|
8 |
/**
|
1 |
<?php
|
2 |
/**
|
3 |
* Base class for models
|
4 |
+
*
|
5 |
+
* @author Maksym Tsypliakov <maksym.tsypliakov@gmail.com>
|
6 |
*/
|
7 |
class PMWI_Model_Record extends PMWI_Model {
|
8 |
/**
|
plugin.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WP All Import - WooCommerce Add-On
|
4 |
Plugin URI: http://www.wpallimport.com/
|
5 |
Description: An extremely easy, drag & drop importer to import WooCommerce simple products. A paid upgrade is available for premium support and support for Variable, Grouped, and External/Affiliate products
|
6 |
-
Version: 1.3.
|
7 |
Author: Soflyy
|
8 |
*/
|
9 |
/**
|
@@ -24,7 +24,7 @@ define('PMWI_ROOT_URL', rtrim(plugin_dir_url(__FILE__), '/'));
|
|
24 |
*/
|
25 |
define('PMWI_PREFIX', 'pmwi_');
|
26 |
|
27 |
-
define('PMWI_FREE_VERSION', '1.3.
|
28 |
|
29 |
define('PMWI_EDITION', 'free');
|
30 |
|
@@ -32,7 +32,7 @@ define('PMWI_EDITION', 'free');
|
|
32 |
* Main plugin file, Introduces MVC pattern
|
33 |
*
|
34 |
* @singletone
|
35 |
-
* @author
|
36 |
*/
|
37 |
|
38 |
final class PMWI_Plugin {
|
@@ -208,10 +208,103 @@ final class PMWI_Plugin {
|
|
208 |
|
209 |
// register admin page pre-dispatcher
|
210 |
add_action('admin_init', array($this, 'adminInit'));
|
|
|
211 |
add_action('init', array($this, 'init'));
|
212 |
|
213 |
}
|
214 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
215 |
public function init()
|
216 |
{
|
217 |
$this->load_plugin_textdomain();
|
@@ -631,7 +724,10 @@ final class PMWI_Plugin {
|
|
631 |
'variation_stock' => '',
|
632 |
'variation_stock_status' => 'auto',
|
633 |
'put_variation_image_to_gallery' => 0,
|
634 |
-
'single_variation_stock_status' => ''
|
|
|
|
|
|
|
635 |
);
|
636 |
}
|
637 |
}
|
3 |
Plugin Name: WP All Import - WooCommerce Add-On
|
4 |
Plugin URI: http://www.wpallimport.com/
|
5 |
Description: An extremely easy, drag & drop importer to import WooCommerce simple products. A paid upgrade is available for premium support and support for Variable, Grouped, and External/Affiliate products
|
6 |
+
Version: 1.3.6
|
7 |
Author: Soflyy
|
8 |
*/
|
9 |
/**
|
24 |
*/
|
25 |
define('PMWI_PREFIX', 'pmwi_');
|
26 |
|
27 |
+
define('PMWI_FREE_VERSION', '1.3.6');
|
28 |
|
29 |
define('PMWI_EDITION', 'free');
|
30 |
|
32 |
* Main plugin file, Introduces MVC pattern
|
33 |
*
|
34 |
* @singletone
|
35 |
+
* @author Maksym Tsypliakov <maksym.tsypliakov@gmail.com>
|
36 |
*/
|
37 |
|
38 |
final class PMWI_Plugin {
|
208 |
|
209 |
// register admin page pre-dispatcher
|
210 |
add_action('admin_init', array($this, 'adminInit'));
|
211 |
+
add_action('admin_init', array($this, 'migrate_options'));
|
212 |
add_action('init', array($this, 'init'));
|
213 |
|
214 |
}
|
215 |
|
216 |
+
public function migrate_options(){
|
217 |
+
|
218 |
+
$installed_ver = get_option( "wp_all_import_woocommerce_addon_db_version" );
|
219 |
+
|
220 |
+
if ( $installed_ver == PMWI_FREE_VERSION || ! class_exists( 'PMXI_Plugin' ) ) return true;
|
221 |
+
|
222 |
+
$imports = new PMXI_Import_List();
|
223 |
+
|
224 |
+
$templates = new PMXI_Template_List();
|
225 |
+
|
226 |
+
foreach ($imports->setColumns($imports->getTable() . '.*')->getBy(array('id !=' => ''))->convertRecords() as $imp){
|
227 |
+
$imp->getById($imp->id);
|
228 |
+
if ( ! $imp->isEmpty() ){
|
229 |
+
$options = $imp->options;
|
230 |
+
$this->migrate($options, $installed_ver);
|
231 |
+
$imp->set(array(
|
232 |
+
'options' => $options
|
233 |
+
))->update();
|
234 |
+
}
|
235 |
+
}
|
236 |
+
|
237 |
+
foreach ($templates->setColumns($templates->getTable() . '.*')->getBy(array('id !=' => ''))->convertRecords() as $tpl){
|
238 |
+
$tpl->getById($tpl->id);
|
239 |
+
if ( ! $tpl->isEmpty() ) {
|
240 |
+
$options = ( empty($tpl->options) ) ? array() : $tpl->options;
|
241 |
+
$this->migrate($options, $installed_ver);
|
242 |
+
$tpl->set(array(
|
243 |
+
'options' => $options
|
244 |
+
))->update();
|
245 |
+
}
|
246 |
+
}
|
247 |
+
update_option( "wp_all_import_woocommerce_addon_db_version", PMWI_FREE_VERSION );
|
248 |
+
}
|
249 |
+
|
250 |
+
private function migrate(&$options, $version){
|
251 |
+
|
252 |
+
// Update _featured, _visibility and _stock_status options according to WooCommerce 3.0
|
253 |
+
if ( version_compare($version, '2.3.7-beta-2.1') < 0 ){
|
254 |
+
|
255 |
+
$remove_cf = array('_featured', '_visibility', '_stock_status');
|
256 |
+
|
257 |
+
if ($options['is_keep_former_posts'] == 'no'
|
258 |
+
&& $options['update_all_data'] == 'no'){
|
259 |
+
|
260 |
+
if ($options['is_update_custom_fields']){
|
261 |
+
if (in_array($options['update_custom_fields_logic'], array('only', 'all_except'))){
|
262 |
+
// Update Options
|
263 |
+
switch ($options['update_custom_fields_logic']){
|
264 |
+
case 'only':
|
265 |
+
$fields_list = explode(',', $options['custom_fields_only_list']);
|
266 |
+
if ( ! in_array('_featured', $fields_list) ){
|
267 |
+
$options['is_update_featured_status'] = 0;
|
268 |
+
}
|
269 |
+
if ( ! in_array('_visibility', $fields_list) ){
|
270 |
+
$options['is_update_catalog_visibility'] = 0;
|
271 |
+
}
|
272 |
+
break;
|
273 |
+
case 'all_except':
|
274 |
+
$fields_list = explode(',', $options['custom_fields_except_list']);
|
275 |
+
if ( in_array('_featured', $fields_list) ){
|
276 |
+
$options['is_update_featured_status'] = 0;
|
277 |
+
}
|
278 |
+
if ( in_array('_visibility', $fields_list) ){
|
279 |
+
$options['is_update_catalog_visibility'] = 0;
|
280 |
+
}
|
281 |
+
break;
|
282 |
+
}
|
283 |
+
}
|
284 |
+
}
|
285 |
+
else{
|
286 |
+
$options['is_update_advanced_options'] = 0;
|
287 |
+
$options['is_update_featured_status'] = 0;
|
288 |
+
$options['is_update_catalog_visibility'] = 0;
|
289 |
+
}
|
290 |
+
}
|
291 |
+
|
292 |
+
// remove deprecated fields from custom fields list
|
293 |
+
$options_to_update = array('custom_fields_list', 'custom_fields_only_list', 'custom_fields_except_list');
|
294 |
+
foreach ($options_to_update as $option){
|
295 |
+
if ( ! empty($options[$option])){
|
296 |
+
$fields_list = is_array($options[$option]) ? $options[$option] : explode(',', $options[$option]);
|
297 |
+
foreach ($fields_list as $key => $value){
|
298 |
+
if (in_array($value, $remove_cf)){
|
299 |
+
unset($fields_list[$key]);
|
300 |
+
}
|
301 |
+
}
|
302 |
+
$options[$option] = is_array($options[$option]) ? $fields_list : implode(',', $fields_list);
|
303 |
+
}
|
304 |
+
}
|
305 |
+
}
|
306 |
+
}
|
307 |
+
|
308 |
public function init()
|
309 |
{
|
310 |
$this->load_plugin_textdomain();
|
724 |
'variation_stock' => '',
|
725 |
'variation_stock_status' => 'auto',
|
726 |
'put_variation_image_to_gallery' => 0,
|
727 |
+
'single_variation_stock_status' => '',
|
728 |
+
'is_update_advanced_options' => 1,
|
729 |
+
'is_update_catalog_visibility' => 1,
|
730 |
+
'is_update_featured_status' => 1
|
731 |
);
|
732 |
}
|
733 |
}
|
readme.txt
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
=== Import Products from any XML or CSV to WooCommerce ===
|
2 |
Contributors: soflyy, wpallimport
|
3 |
Requires at least: 4.1
|
4 |
-
Tested up to: 4.8
|
5 |
-
Stable tag: 1.3.
|
6 |
License: GPLv2 or later
|
7 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
8 |
Tags: woocommerce xml import, woocommerce csv import, woocommerce, import, xml, csv, wp all import, csv import, import csv, xml import, import xml, woocommerce csv importer, woocommerce xml importer, csv importer, csv import suite
|
@@ -83,12 +83,22 @@ The WooCommerce add-on will appear in the Step 4 of WP All Import.
|
|
83 |
|
84 |
== Changelog ==
|
85 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
= 1.3.5 =
|
87 |
-
|
88 |
|
89 |
= 1.3.4 =
|
90 |
-
|
91 |
-
|
92 |
|
93 |
= 1.3.3 =
|
94 |
* improvement: compatibility with WC 3.x
|
1 |
=== Import Products from any XML or CSV to WooCommerce ===
|
2 |
Contributors: soflyy, wpallimport
|
3 |
Requires at least: 4.1
|
4 |
+
Tested up to: 4.8.1
|
5 |
+
Stable tag: 1.3.6
|
6 |
License: GPLv2 or later
|
7 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
8 |
Tags: woocommerce xml import, woocommerce csv import, woocommerce, import, xml, csv, wp all import, csv import, import csv, xml import, import xml, woocommerce csv importer, woocommerce xml importer, csv importer, csv import suite
|
83 |
|
84 |
== Changelog ==
|
85 |
|
86 |
+
= 1.3.6 =
|
87 |
+
* improvement: added 'WooCommerce Advanced Options' to re-import section
|
88 |
+
* bug fix: variations title
|
89 |
+
* bug fix: import first variation image
|
90 |
+
* bug fix: send order emails after custom fields were imported
|
91 |
+
* bug fix: updating featured product status
|
92 |
+
* bug fix: WPML & link all variations option conflict
|
93 |
+
* bug fix: add _price field for each variation
|
94 |
+
* bug fix: terms re-count
|
95 |
+
|
96 |
= 1.3.5 =
|
97 |
+
* bug fix: import product attributes
|
98 |
|
99 |
= 1.3.4 =
|
100 |
+
* bug fix: import product visibility WC 3.0
|
101 |
+
* bug fix: stock threshold
|
102 |
|
103 |
= 1.3.3 =
|
104 |
* improvement: compatibility with WC 3.x
|
static/css/admin-options.css
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.wpallimport-plugin .wp_all_import_woocommerce_stock_status_notice_template,
|
2 |
+
.wpallimport-plugin .wp_all_import_woocommerce_deprecated_fields_notice_template{
|
3 |
+
display: none;
|
4 |
+
}
|
5 |
+
.wpallimport-plugin .wp_all_import_deprecated_notice {
|
6 |
+
color: red;
|
7 |
+
}
|
static/js/admin-options.js
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/**
|
2 |
+
* plugin javascript
|
3 |
+
*/
|
4 |
+
(function($){$(function () {
|
5 |
+
|
6 |
+
$('input[name=custom_fields_only_list], input[name=custom_fields_except_list]').on('change', function(){
|
7 |
+
|
8 |
+
var $fields = $(this).val().split(',');
|
9 |
+
|
10 |
+
$('.wp_all_import_deprecated_notice').remove();
|
11 |
+
|
12 |
+
if ( $.inArray( '_featured', $fields ) !== -1 || $.inArray( '_visibility', $fields ) !== -1 ){
|
13 |
+
var $deprecated_fields_notice = $('.wp_all_import_woocommerce_deprecated_fields_notice_template').clone();
|
14 |
+
$deprecated_fields_notice.insertBefore($(this)).css('display', 'none').removeClass('wp_all_import_woocommerce_deprecated_fields_notice_template').addClass('wp_all_import_deprecated_notice').fadeIn();
|
15 |
+
}
|
16 |
+
|
17 |
+
if ( $.inArray( '_stock_status', $fields ) !== -1 ){
|
18 |
+
var $stock_status_fields_notice = $('.wp_all_import_woocommerce_stock_status_notice_template').clone();
|
19 |
+
$stock_status_fields_notice.insertBefore($(this)).css('display', 'none').removeClass('wp_all_import_woocommerce_stock_status_notice_template').addClass('wp_all_import_deprecated_notice').fadeIn();
|
20 |
+
}
|
21 |
+
|
22 |
+
});
|
23 |
+
|
24 |
+
});})(jQuery);
|