Version Description
- improvement: new filter 'wp_all_import_phpexcel_delimiter'
- improvement: new filter 'wp_all_import_is_trim_parsed_data'
- improvement: added new filter 'wp_all_import_skip_x_csv_rows'
- improvement: added csv delimiter setting to import options screen
- bug fix: import duplicate tags
Download this release
Release Info
Developer | soflyy |
Plugin | Import any XML or CSV File to WordPress |
Version | 3.4.3 |
Comparing to | |
See all releases |
Code changes from version 3.4.2 to 3.4.3
- actions/wp_ajax_delete_import.php +3 -2
- classes/api.php +16 -4
- controllers/admin/manage.php +3 -3
- controllers/admin/settings.php +33 -22
- controllers/controller/admin.php +8 -3
- helpers/functions.php +35 -3
- helpers/pmxi_findDuplicates.php +162 -97
- helpers/wp_all_import_addon_notifications.php +14 -2
- helpers/wp_all_import_get_image_from_gallery.php +59 -56
- helpers/wp_all_import_template_notifications.php +11 -5
- i18n/languages/wp_all_import_plugin-ja.mo +0 -0
- i18n/languages/wp_all_import_plugin-ja.po +5623 -0
- i18n/languages/wp_all_import_plugin-pt_BR.mo +0 -0
- i18n/languages/wp_all_import_plugin-pt_BR.po +4206 -0
- libraries/XmlImportCsvParse.php +14 -6
- libraries/XmlImportTemplate.php +5 -2
- libraries/XmlImportXLSParse.php +8 -5
- models/import/record.php +2 -2
- plugin.php +6 -3
- readme.txt +9 -2
- views/admin/import/confirm.php +1 -1
- views/admin/import/options/_settings_template.php +6 -1
actions/wp_ajax_delete_import.php
CHANGED
@@ -12,7 +12,8 @@ function pmxi_wp_ajax_delete_import(){
|
|
12 |
$input = new PMXI_Input();
|
13 |
|
14 |
$post = $input->post(array(
|
15 |
-
'data' => ''
|
|
|
16 |
));
|
17 |
|
18 |
// $get = $input->get(array(
|
@@ -53,7 +54,7 @@ function pmxi_wp_ajax_delete_import(){
|
|
53 |
$import->getById($id);
|
54 |
if ( ! $import->isEmpty() )
|
55 |
{
|
56 |
-
|
57 |
{
|
58 |
$import->set(array(
|
59 |
'deleted' => 0
|
12 |
$input = new PMXI_Input();
|
13 |
|
14 |
$post = $input->post(array(
|
15 |
+
'data' => '',
|
16 |
+
'iteration' => 1
|
17 |
));
|
18 |
|
19 |
// $get = $input->get(array(
|
54 |
$import->getById($id);
|
55 |
if ( ! $import->isEmpty() )
|
56 |
{
|
57 |
+
if ((int) $post['iteration'] === 1)
|
58 |
{
|
59 |
$import->set(array(
|
60 |
'deleted' => 0
|
classes/api.php
CHANGED
@@ -58,7 +58,6 @@ class PMXI_API
|
|
58 |
<input type="text" name="<?php echo $params['field_name']; ?>" id="<?php echo sanitize_title($params['field_name']); ?>" value="<?php echo esc_attr($params['field_value']); ?>" style="width:100%;"/>
|
59 |
<?php
|
60 |
break;
|
61 |
-
|
62 |
case 'enum':
|
63 |
|
64 |
$is_set_with_xpath_visible = true;
|
@@ -250,6 +249,19 @@ class PMXI_API
|
|
250 |
<?php
|
251 |
break;
|
252 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
253 |
case 'image':
|
254 |
?>
|
255 |
<div class="input">
|
@@ -294,7 +306,7 @@ class PMXI_API
|
|
294 |
|
295 |
$is_full_width = true;
|
296 |
if ( ! empty($params['sub_fields']) ){
|
297 |
-
foreach ($params['sub_fields'] as $sub_field) {
|
298 |
if ($sub_field[0]['params']['is_main_field']){
|
299 |
PMXI_API::add_field($sub_field[0]['type'], $sub_field[0]['label'], $sub_field[0]['params']);
|
300 |
$is_full_width = false;
|
@@ -373,7 +385,7 @@ class PMXI_API
|
|
373 |
|
374 |
global $wpdb;
|
375 |
|
376 |
-
$attch = wp_all_import_get_image_from_gallery($image_name, $targetDir, $file_type);
|
377 |
|
378 |
if ( $attch != null ){
|
379 |
|
@@ -382,7 +394,7 @@ class PMXI_API
|
|
382 |
}
|
383 |
|
384 |
$image_filename = wp_unique_filename($targetDir, $image_name);
|
385 |
-
$image_filepath = $targetDir . '/' . $image_filename;
|
386 |
|
387 |
$url = str_replace(" ", "%20", trim(pmxi_convert_encoding($img_url)));
|
388 |
|
58 |
<input type="text" name="<?php echo $params['field_name']; ?>" id="<?php echo sanitize_title($params['field_name']); ?>" value="<?php echo esc_attr($params['field_value']); ?>" style="width:100%;"/>
|
59 |
<?php
|
60 |
break;
|
|
|
61 |
case 'enum':
|
62 |
|
63 |
$is_set_with_xpath_visible = true;
|
249 |
<?php
|
250 |
break;
|
251 |
|
252 |
+
case 'wp_editor':
|
253 |
+
?>
|
254 |
+
<div id="<?php echo ( user_can_richedit() ? 'postdivrich' : 'postdiv' ) . sanitize_title($params['field_name']); ?>" class="postarea">
|
255 |
+
<?php wp_editor( empty($params['field_value']) ? '' : $params['field_value'], sanitize_title($params['field_name']), array(
|
256 |
+
'teeny' => true,
|
257 |
+
'media_buttons' => false,
|
258 |
+
'textarea_name' => $params['field_name'],
|
259 |
+
'editor_height' => 200));
|
260 |
+
?>
|
261 |
+
</div>
|
262 |
+
<?php
|
263 |
+
break;
|
264 |
+
|
265 |
case 'image':
|
266 |
?>
|
267 |
<div class="input">
|
306 |
|
307 |
$is_full_width = true;
|
308 |
if ( ! empty($params['sub_fields']) ){
|
309 |
+
foreach ($params['sub_fields'] as $sub_field) {
|
310 |
if ($sub_field[0]['params']['is_main_field']){
|
311 |
PMXI_API::add_field($sub_field[0]['type'], $sub_field[0]['label'], $sub_field[0]['params']);
|
312 |
$is_full_width = false;
|
385 |
|
386 |
global $wpdb;
|
387 |
|
388 |
+
$attch = wp_all_import_get_image_from_gallery($image_name, $targetDir, $file_type);
|
389 |
|
390 |
if ( $attch != null ){
|
391 |
|
394 |
}
|
395 |
|
396 |
$image_filename = wp_unique_filename($targetDir, $image_name);
|
397 |
+
$image_filepath = $targetDir . '/' . $image_filename;
|
398 |
|
399 |
$url = str_replace(" ", "%20", trim(pmxi_convert_encoding($img_url)));
|
400 |
|
controllers/admin/manage.php
CHANGED
@@ -341,9 +341,9 @@ class PMXI_Admin_Manage extends PMXI_Controller_Admin {
|
|
341 |
$history = new PMXI_File_List();
|
342 |
$history->setColumns('id', 'name', 'registered_on', 'path')->getBy(array('import_id' => $item->id), 'id DESC');
|
343 |
if ($history->count()){
|
344 |
-
foreach ($history as $file){
|
345 |
-
|
346 |
-
$this->data['locfilePath'] = $file['path'];
|
347 |
break;
|
348 |
}
|
349 |
}
|
341 |
$history = new PMXI_File_List();
|
342 |
$history->setColumns('id', 'name', 'registered_on', 'path')->getBy(array('import_id' => $item->id), 'id DESC');
|
343 |
if ($history->count()){
|
344 |
+
foreach ($history as $file){
|
345 |
+
if (@file_exists(wp_all_import_get_absolute_path($file['path']))) {
|
346 |
+
$this->data['locfilePath'] = wp_all_import_get_absolute_path($file['path']);
|
347 |
break;
|
348 |
}
|
349 |
}
|
controllers/admin/settings.php
CHANGED
@@ -90,32 +90,43 @@ class PMXI_Admin_Settings extends PMXI_Controller_Admin {
|
|
90 |
if (!empty($_FILES)){
|
91 |
$file_name = $_FILES['template_file']['name'];
|
92 |
$file_size = $_FILES['template_file']['size'];
|
93 |
-
$tmp_name = $_FILES['template_file']['tmp_name'];
|
94 |
-
|
95 |
-
if(isset($file_name))
|
96 |
-
{
|
97 |
-
|
98 |
$filename = stripslashes($file_name);
|
99 |
$extension = strtolower(pmxi_getExtension($filename));
|
100 |
-
|
101 |
-
if (($extension != "txt"))
|
102 |
-
{
|
103 |
$this->errors->add('form-validation', __('Unknown File extension. Only txt files are permitted', 'wp_all_import_plugin'));
|
104 |
}
|
105 |
else {
|
106 |
$import_data = @file_get_contents($tmp_name);
|
107 |
if (!empty($import_data)){
|
108 |
$templates_data = json_decode($import_data, true);
|
109 |
-
|
110 |
-
if (!empty($templates_data)){
|
111 |
-
$
|
112 |
-
|
113 |
-
|
114 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
115 |
}
|
116 |
-
wp_redirect(add_query_arg('pmxi_nt', urlencode(sprintf(_n('%d template imported', '%d templates imported', count($templates_data), 'wp_all_import_plugin'), count($templates_data))), $this->baseUrl)); die();
|
117 |
}
|
118 |
-
else $this->errors->add('form-validation', __('Wrong imported data format', 'wp_all_import_plugin'));
|
119 |
}
|
120 |
else $this->errors->add('form-validation', __('File is empty or doesn\'t exests', 'wp_all_import_plugin'));
|
121 |
}
|
@@ -130,7 +141,7 @@ class PMXI_Admin_Settings extends PMXI_Controller_Admin {
|
|
130 |
if (empty($templates_ids)) {
|
131 |
$this->errors->add('form-validation', __('Templates must be selected', 'wp_all_import_plugin'));
|
132 |
}
|
133 |
-
|
134 |
if ( ! $this->errors->get_error_codes()) { // no validation errors detected
|
135 |
if ($this->input->post('delete_templates')){
|
136 |
$template = new PMXI_Template_Record();
|
@@ -144,16 +155,16 @@ class PMXI_Admin_Settings extends PMXI_Controller_Admin {
|
|
144 |
$template = new PMXI_Template_Record();
|
145 |
foreach ($templates_ids as $template_id) {
|
146 |
$export_data[] = $template->clear()->getBy('id', $template_id)->toArray(TRUE);
|
147 |
-
}
|
148 |
-
|
149 |
$uploads = wp_upload_dir();
|
150 |
$targetDir = $uploads['basedir'] . DIRECTORY_SEPARATOR . PMXI_Plugin::TEMP_DIRECTORY;
|
151 |
$export_file_name = "templates_".uniqid().".txt";
|
152 |
file_put_contents($targetDir . DIRECTORY_SEPARATOR . $export_file_name, json_encode($export_data));
|
153 |
-
|
154 |
PMXI_download::csv($targetDir . DIRECTORY_SEPARATOR . $export_file_name);
|
155 |
-
|
156 |
-
}
|
157 |
}
|
158 |
}
|
159 |
}
|
90 |
if (!empty($_FILES)){
|
91 |
$file_name = $_FILES['template_file']['name'];
|
92 |
$file_size = $_FILES['template_file']['size'];
|
93 |
+
$tmp_name = $_FILES['template_file']['tmp_name'];
|
94 |
+
|
95 |
+
if(isset($file_name))
|
96 |
+
{
|
97 |
+
|
98 |
$filename = stripslashes($file_name);
|
99 |
$extension = strtolower(pmxi_getExtension($filename));
|
100 |
+
|
101 |
+
if (($extension != "txt"))
|
102 |
+
{
|
103 |
$this->errors->add('form-validation', __('Unknown File extension. Only txt files are permitted', 'wp_all_import_plugin'));
|
104 |
}
|
105 |
else {
|
106 |
$import_data = @file_get_contents($tmp_name);
|
107 |
if (!empty($import_data)){
|
108 |
$templates_data = json_decode($import_data, true);
|
109 |
+
|
110 |
+
if ( ! empty($templates_data) ){
|
111 |
+
$templateOptions = empty($templates_data[0]['options']) ? false : unserialize($templates_data[0]['options']);
|
112 |
+
if ( empty($templateOptions) ){
|
113 |
+
$this->errors->add('form-validation', __('The template is invalid. Options are missing.', 'wp_all_import_plugin'));
|
114 |
+
}
|
115 |
+
else{
|
116 |
+
if (isset($templateOptions['is_user_export'])){
|
117 |
+
$this->errors->add('form-validation', __('The template you\'ve uploaded is intended to be used with WP All Export plugin.', 'wp_all_import_plugin'));
|
118 |
+
}
|
119 |
+
else{
|
120 |
+
$template = new PMXI_Template_Record();
|
121 |
+
foreach ($templates_data as $template_data) {
|
122 |
+
unset($template_data['id']);
|
123 |
+
$template->clear()->set($template_data)->insert();
|
124 |
+
}
|
125 |
+
wp_redirect(add_query_arg('pmxi_nt', urlencode(sprintf(_n('%d template imported', '%d templates imported', count($templates_data), 'wp_all_import_plugin'), count($templates_data))), $this->baseUrl)); die();
|
126 |
+
}
|
127 |
}
|
|
|
128 |
}
|
129 |
+
else $this->errors->add('form-validation', __('Wrong imported data format', 'wp_all_import_plugin'));
|
130 |
}
|
131 |
else $this->errors->add('form-validation', __('File is empty or doesn\'t exests', 'wp_all_import_plugin'));
|
132 |
}
|
141 |
if (empty($templates_ids)) {
|
142 |
$this->errors->add('form-validation', __('Templates must be selected', 'wp_all_import_plugin'));
|
143 |
}
|
144 |
+
|
145 |
if ( ! $this->errors->get_error_codes()) { // no validation errors detected
|
146 |
if ($this->input->post('delete_templates')){
|
147 |
$template = new PMXI_Template_Record();
|
155 |
$template = new PMXI_Template_Record();
|
156 |
foreach ($templates_ids as $template_id) {
|
157 |
$export_data[] = $template->clear()->getBy('id', $template_id)->toArray(TRUE);
|
158 |
+
}
|
159 |
+
|
160 |
$uploads = wp_upload_dir();
|
161 |
$targetDir = $uploads['basedir'] . DIRECTORY_SEPARATOR . PMXI_Plugin::TEMP_DIRECTORY;
|
162 |
$export_file_name = "templates_".uniqid().".txt";
|
163 |
file_put_contents($targetDir . DIRECTORY_SEPARATOR . $export_file_name, json_encode($export_data));
|
164 |
+
|
165 |
PMXI_download::csv($targetDir . DIRECTORY_SEPARATOR . $export_file_name);
|
166 |
+
|
167 |
+
}
|
168 |
}
|
169 |
}
|
170 |
}
|
controllers/controller/admin.php
CHANGED
@@ -38,9 +38,14 @@ abstract class PMXI_Controller_Admin extends PMXI_Controller {
|
|
38 |
PMXI_Plugin::getInstance()->updateOption($post);
|
39 |
}
|
40 |
|
41 |
-
$port = PMXI_Plugin::getInstance()->getOption('port');
|
42 |
-
|
43 |
-
|
|
|
|
|
|
|
|
|
|
|
44 |
|
45 |
if ($remove) {
|
46 |
$this->baseUrl = $url . remove_query_arg($remove);
|
38 |
PMXI_Plugin::getInstance()->updateOption($post);
|
39 |
}
|
40 |
|
41 |
+
$port = PMXI_Plugin::getInstance()->getOption('port');
|
42 |
+
|
43 |
+
if ( ! empty($port) and is_numeric($port) ){
|
44 |
+
$url .= ':' . $port;
|
45 |
+
}
|
46 |
+
else{
|
47 |
+
$url = ( ! empty($p_url['port']) && ! in_array( $p_url['port'], array( 80, 443 ) ) ) ? $url . ':' . $p_url['port'] : $url;
|
48 |
+
}
|
49 |
|
50 |
if ($remove) {
|
51 |
$this->baseUrl = $url . remove_query_arg($remove);
|
helpers/functions.php
CHANGED
@@ -14,8 +14,8 @@
|
|
14 |
}
|
15 |
}
|
16 |
|
17 |
-
if (!function_exists('
|
18 |
-
function
|
19 |
$sz = 'BKMGTP';
|
20 |
$factor = floor((strlen($bytes) - 1) / 3);
|
21 |
return sprintf("%.{$decimals}f", $bytes / pow(1024, $factor)) . @$sz[$factor];
|
@@ -156,9 +156,41 @@
|
|
156 |
}
|
157 |
}
|
158 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
159 |
if ( ! function_exists('wp_all_import_cmp_custom_types')){
|
160 |
function wp_all_import_cmp_custom_types($a, $b)
|
161 |
{
|
162 |
return strcmp($a->labels->name, $b->labels->name);
|
163 |
}
|
164 |
-
}
|
14 |
}
|
15 |
}
|
16 |
|
17 |
+
if (!function_exists('pmxi_human_filesize')){
|
18 |
+
function pmxi_human_filesize($bytes, $decimals = 2) {
|
19 |
$sz = 'BKMGTP';
|
20 |
$factor = floor((strlen($bytes) - 1) / 3);
|
21 |
return sprintf("%.{$decimals}f", $bytes / pow(1024, $factor)) . @$sz[$factor];
|
156 |
}
|
157 |
}
|
158 |
|
159 |
+
if ( ! function_exists('wp_all_import_get_taxonomies')) {
|
160 |
+
function wp_all_import_get_taxonomies() {
|
161 |
+
// get all taxonomies
|
162 |
+
$taxonomies = get_taxonomies(FALSE, 'objects');
|
163 |
+
$ignore = array('nav_menu', 'link_category');
|
164 |
+
$r = array();
|
165 |
+
// populate $r
|
166 |
+
foreach ($taxonomies as $taxonomy) {
|
167 |
+
if (in_array($taxonomy->name, $ignore)) {
|
168 |
+
continue;
|
169 |
+
}
|
170 |
+
if ( ! empty($taxonomy->labels->name) && strpos($taxonomy->labels->name, "_") === false){
|
171 |
+
$r[$taxonomy->name] = $taxonomy->labels->name;
|
172 |
+
}
|
173 |
+
else{
|
174 |
+
$r[$taxonomy->name] = empty($taxonomy->labels->singular_name) ? $taxonomy->name : $taxonomy->labels->singular_name;
|
175 |
+
}
|
176 |
+
}
|
177 |
+
asort($r, SORT_FLAG_CASE | SORT_STRING);
|
178 |
+
// return
|
179 |
+
return $r;
|
180 |
+
|
181 |
+
}
|
182 |
+
}
|
183 |
+
|
184 |
+
if ( ! function_exists('wp_all_import_is_password_protected_feed')){
|
185 |
+
function wp_all_import_is_password_protected_feed($url){
|
186 |
+
$url_data = parse_url($url);
|
187 |
+
return (!empty($url_data['user']) and !empty($url_data['pass'])) ? true : false;
|
188 |
+
}
|
189 |
+
}
|
190 |
+
|
191 |
if ( ! function_exists('wp_all_import_cmp_custom_types')){
|
192 |
function wp_all_import_cmp_custom_types($a, $b)
|
193 |
{
|
194 |
return strcmp($a->labels->name, $b->labels->name);
|
195 |
}
|
196 |
+
}
|
helpers/pmxi_findDuplicates.php
CHANGED
@@ -3,68 +3,107 @@
|
|
3 |
/**
|
4 |
* Find duplicates according to settings
|
5 |
*/
|
6 |
-
function pmxi_findDuplicates($articleData, $custom_duplicate_name = '', $custom_duplicate_value = '', $duplicate_indicator = 'title')
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
SELECT ID FROM " . $wpdb->posts . "
|
69 |
WHERE
|
70 |
post_type = %s
|
@@ -72,39 +111,65 @@ function pmxi_findDuplicates($articleData, $custom_duplicate_name = '', $custom_
|
|
72 |
AND post_parent = %s
|
73 |
AND REPLACE(REPLACE(REPLACE($field, ' ', ''), '\\t', ''), '\\n', '') = %s
|
74 |
",
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
110 |
}
|
3 |
/**
|
4 |
* Find duplicates according to settings
|
5 |
*/
|
6 |
+
function pmxi_findDuplicates($articleData, $custom_duplicate_name = '', $custom_duplicate_value = '', $duplicate_indicator = 'title', $indicator_value = '') {
|
7 |
+
global $wpdb;
|
8 |
+
|
9 |
+
if ('custom field' == $duplicate_indicator) {
|
10 |
+
|
11 |
+
$duplicate_ids = array();
|
12 |
+
|
13 |
+
if (!empty($articleData['post_type'])) {
|
14 |
+
|
15 |
+
switch ($articleData['post_type']) {
|
16 |
+
|
17 |
+
case 'taxonomies':
|
18 |
+
$args = array(
|
19 |
+
'hide_empty' => FALSE,
|
20 |
+
// also retrieve terms which are not used yet
|
21 |
+
'meta_query' => array(
|
22 |
+
array(
|
23 |
+
'key' => $custom_duplicate_name,
|
24 |
+
'value' => $custom_duplicate_value,
|
25 |
+
'compare' => '='
|
26 |
+
)
|
27 |
+
)
|
28 |
+
);
|
29 |
+
|
30 |
+
$terms = get_terms($articleData['taxonomy'], $args);
|
31 |
+
|
32 |
+
if (!empty($terms) && !is_wp_error($terms)) {
|
33 |
+
foreach ($terms as $term) {
|
34 |
+
$duplicate_ids[] = $term->term_id;
|
35 |
+
}
|
36 |
+
}
|
37 |
+
|
38 |
+
break;
|
39 |
+
|
40 |
+
default:
|
41 |
+
|
42 |
+
$post_types = (class_exists('PMWI_Plugin') and $articleData['post_type'] == 'product') ? array(
|
43 |
+
'product',
|
44 |
+
'product_variation'
|
45 |
+
) : array($articleData['post_type']);
|
46 |
+
|
47 |
+
$sql = $wpdb->prepare("SELECT SQL_CALC_FOUND_ROWS " . $wpdb->posts . ".ID FROM " . $wpdb->posts . " INNER JOIN " . $wpdb->postmeta . " ON ( " . $wpdb->posts . ".ID = " . $wpdb->postmeta . ".post_id ) WHERE 1=1 AND ( ( " . $wpdb->postmeta . ".meta_key = %s AND (" . $wpdb->postmeta . ".meta_value = %s OR " . $wpdb->postmeta . ".meta_value = %s OR REPLACE(REPLACE(REPLACE(" . $wpdb->postmeta . ".meta_value, ' ', ''), '\\t', ''), '\\n', '') = %s) ) ) AND " . $wpdb->posts . ".post_type IN ('" . implode("','", $post_types) . "') AND ((" . $wpdb->posts . ".post_status <> 'trash' AND " . $wpdb->posts . ".post_status <> 'auto-draft')) GROUP BY " . $wpdb->posts . ".ID ORDER BY " . $wpdb->posts . ".ID ASC LIMIT 0, 15", trim($custom_duplicate_name), trim($custom_duplicate_value), htmlspecialchars(trim($custom_duplicate_value)), preg_replace('%[ \\t\\n]%', '', trim($custom_duplicate_value)));
|
48 |
+
|
49 |
+
$query = $wpdb->get_results($sql);
|
50 |
+
|
51 |
+
if (!empty($query)) {
|
52 |
+
foreach ($query as $p) {
|
53 |
+
$duplicate_ids[] = $p->ID;
|
54 |
+
}
|
55 |
+
}
|
56 |
+
|
57 |
+
if (empty($duplicate_ids)) {
|
58 |
+
|
59 |
+
$query = $wpdb->get_results($wpdb->prepare("SELECT SQL_CALC_FOUND_ROWS " . $wpdb->posts . ".ID FROM " . $wpdb->posts . " INNER JOIN " . $wpdb->postmeta . " ON (" . $wpdb->posts . ".ID = " . $wpdb->postmeta . ".post_id) WHERE 1=1 AND " . $wpdb->posts . ".post_type IN ('" . implode("','", $post_types) . "') AND (" . $wpdb->posts . ".post_status = 'publish' OR " . $wpdb->posts . ".post_status = 'future' OR " . $wpdb->posts . ".post_status = 'draft' OR " . $wpdb->posts . ".post_status = 'pending' OR " . $wpdb->posts . ".post_status = 'trash' OR " . $wpdb->posts . ".post_status = 'private') AND ( (" . $wpdb->postmeta . ".meta_key = '%s' AND (" . $wpdb->postmeta . ".meta_value = '%s' OR " . $wpdb->postmeta . ".meta_value = '%s' OR " . $wpdb->postmeta . ".meta_value = '%s') ) ) GROUP BY " . $wpdb->posts . ".ID ORDER BY " . $wpdb->posts . ".ID ASC LIMIT 0, 20", trim($custom_duplicate_name), trim($custom_duplicate_value), htmlspecialchars(trim($custom_duplicate_value)), esc_attr(trim($custom_duplicate_value))));
|
60 |
+
|
61 |
+
if (!empty($query)) {
|
62 |
+
foreach ($query as $p) {
|
63 |
+
$duplicate_ids[] = $p->ID;
|
64 |
+
}
|
65 |
+
}
|
66 |
+
}
|
67 |
+
break;
|
68 |
+
}
|
69 |
+
|
70 |
+
}
|
71 |
+
else {
|
72 |
+
|
73 |
+
$args = array(
|
74 |
+
'meta_query' => array(
|
75 |
+
0 => array(
|
76 |
+
'key' => $custom_duplicate_name,
|
77 |
+
'value' => $custom_duplicate_value,
|
78 |
+
'compare' => '='
|
79 |
+
)
|
80 |
+
)
|
81 |
+
);
|
82 |
+
$user_query = new WP_User_Query($args);
|
83 |
+
|
84 |
+
if (!empty($user_query->results)) {
|
85 |
+
foreach ($user_query->results as $user) {
|
86 |
+
$duplicate_ids[] = $user->ID;
|
87 |
+
}
|
88 |
+
}
|
89 |
+
else {
|
90 |
+
$query = $wpdb->get_results($wpdb->prepare("SELECT SQL_CALC_FOUND_ROWS " . $wpdb->users . ".ID FROM " . $wpdb->users . " INNER JOIN " . $wpdb->usermeta . " ON (" . $wpdb->users . ".ID = " . $wpdb->usermeta . ".user_id) WHERE 1=1 AND ( (" . $wpdb->usermeta . ".meta_key = '%s' AND " . $wpdb->usermeta . ".meta_value = '%s') ) GROUP BY " . $wpdb->users . ".ID ORDER BY " . $wpdb->users . ".ID ASC LIMIT 0, 20", $custom_duplicate_name, $custom_duplicate_value));
|
91 |
+
|
92 |
+
if (!empty($query)) {
|
93 |
+
foreach ($query as $p) {
|
94 |
+
$duplicate_ids[] = $p->ID;
|
95 |
+
}
|
96 |
+
}
|
97 |
+
}
|
98 |
+
}
|
99 |
+
|
100 |
+
return $duplicate_ids;
|
101 |
+
|
102 |
+
}
|
103 |
+
elseif ('parent' == $duplicate_indicator) {
|
104 |
+
|
105 |
+
$field = 'post_title'; // post_title or post_content
|
106 |
+
return $wpdb->get_col($wpdb->prepare("
|
107 |
SELECT ID FROM " . $wpdb->posts . "
|
108 |
WHERE
|
109 |
post_type = %s
|
111 |
AND post_parent = %s
|
112 |
AND REPLACE(REPLACE(REPLACE($field, ' ', ''), '\\t', ''), '\\n', '') = %s
|
113 |
",
|
114 |
+
$articleData['post_type'],
|
115 |
+
isset($articleData['ID']) ? $articleData['ID'] : 0,
|
116 |
+
(!empty($articleData['post_parent'])) ? $articleData['post_parent'] : 0,
|
117 |
+
preg_replace('%[ \\t\\n]%', '', $articleData[$field])
|
118 |
+
));
|
119 |
+
}
|
120 |
+
else {
|
121 |
+
|
122 |
+
if (!empty($articleData['post_type'])) {
|
123 |
+
switch ($articleData['post_type']) {
|
124 |
+
case 'taxonomies':
|
125 |
+
$field = $duplicate_indicator == 'title' ? 'name' : 'slug';
|
126 |
+
if (empty($indicator_value)) {
|
127 |
+
$indicator_value = $duplicate_indicator == 'title' ? $articleData['post_title'] : $articleData['slug'];
|
128 |
+
}
|
129 |
+
return $wpdb->get_col($wpdb->prepare("
|
130 |
+
SELECT t.term_id FROM " . $wpdb->terms . " t
|
131 |
+
INNER JOIN " . $wpdb->term_taxonomy . " tt ON (t.term_id = tt.term_id)
|
132 |
+
WHERE
|
133 |
+
t.term_id != %s
|
134 |
+
AND tt.taxonomy LIKE %s
|
135 |
+
AND (REPLACE(REPLACE(REPLACE(t." . $field . ", ' ', ''), '\\t', ''), '\\n', '') = %s
|
136 |
+
OR REPLACE(REPLACE(REPLACE(t." . $field . ", ' ', ''), '\\t', ''), '\\n', '') = %s
|
137 |
+
OR REPLACE(REPLACE(REPLACE(t." . $field . ", ' ', ''), '\\t', ''), '\\n', '') = %s)
|
138 |
+
",
|
139 |
+
isset($articleData['ID']) ? $articleData['ID'] : 0,
|
140 |
+
isset($articleData['taxonomy']) ? $articleData['taxonomy'] : '%',
|
141 |
+
preg_replace('%[ \\t\\n]%', '', esc_attr($indicator_value)),
|
142 |
+
preg_replace('%[ \\t\\n]%', '', htmlentities($indicator_value)),
|
143 |
+
preg_replace('%[ \\t\\n]%', '', $indicator_value)
|
144 |
+
));
|
145 |
+
break;
|
146 |
+
default:
|
147 |
+
$field = 'post_' . $duplicate_indicator; // post_title or post_content
|
148 |
+
return $wpdb->get_col($wpdb->prepare("
|
149 |
+
SELECT ID FROM " . $wpdb->posts . "
|
150 |
+
WHERE
|
151 |
+
post_type = %s
|
152 |
+
AND ID != %s
|
153 |
+
AND REPLACE(REPLACE(REPLACE($field, ' ', ''), '\\t', ''), '\\n', '') = %s
|
154 |
+
",
|
155 |
+
$articleData['post_type'],
|
156 |
+
isset($articleData['ID']) ? $articleData['ID'] : 0,
|
157 |
+
preg_replace('%[ \\t\\n]%', '', $articleData[$field])
|
158 |
+
));
|
159 |
+
break;
|
160 |
+
}
|
161 |
+
}
|
162 |
+
else {
|
163 |
+
if ($duplicate_indicator == 'title') {
|
164 |
+
$field = 'user_login';
|
165 |
+
$u = get_user_by('login', $articleData[$field]);
|
166 |
+
return (!empty($u)) ? array($u->ID) : FALSE;
|
167 |
+
}
|
168 |
+
else {
|
169 |
+
$field = 'user_email';
|
170 |
+
$u = get_user_by('email', $articleData[$field]);
|
171 |
+
return (!empty($u)) ? array($u->ID) : FALSE;
|
172 |
+
}
|
173 |
+
}
|
174 |
+
}
|
175 |
}
|
helpers/wp_all_import_addon_notifications.php
CHANGED
@@ -35,7 +35,10 @@ if ( ! function_exists('wp_all_import_addon_notifications') ){
|
|
35 |
}
|
36 |
// WP Job Manager Add-On
|
37 |
if ( is_plugin_active('wp-job-manager/wp-job-manager.php')
|
38 |
-
and is_wp_error(validate_plugin('wp-job-manager-xml-csv-listings-import/wp-job-manager-add-on.php'))
|
|
|
|
|
|
|
39 |
{
|
40 |
$recommended_addons[] = array(
|
41 |
'title' => 'WP Job Manager',
|
@@ -86,7 +89,16 @@ if ( ! function_exists('wp_all_import_addon_notifications') ){
|
|
86 |
'title' => 'Jobify',
|
87 |
'url' => 'https://wordpress.org/plugins/jobify-xml-csv-listings-import/'
|
88 |
);
|
89 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
// Yoast SEO Add-On
|
91 |
if ( is_plugin_active('wordpress-seo/wp-seo.php')
|
92 |
and is_wp_error(validate_plugin('yoast-seo-settings-xml-csv-import/yoast-addon.php')))
|
35 |
}
|
36 |
// WP Job Manager Add-On
|
37 |
if ( is_plugin_active('wp-job-manager/wp-job-manager.php')
|
38 |
+
and is_wp_error(validate_plugin('wp-job-manager-xml-csv-listings-import/wp-job-manager-add-on.php'))
|
39 |
+
and ! in_array('Listify', $current_themes)
|
40 |
+
and ! in_array('Jobify', $current_themes)
|
41 |
+
and ! in_array('Listable', $current_themes))
|
42 |
{
|
43 |
$recommended_addons[] = array(
|
44 |
'title' => 'WP Job Manager',
|
89 |
'title' => 'Jobify',
|
90 |
'url' => 'https://wordpress.org/plugins/jobify-xml-csv-listings-import/'
|
91 |
);
|
92 |
+
}
|
93 |
+
// Listable Add-On
|
94 |
+
if ( in_array('Listable', $current_themes)
|
95 |
+
and is_wp_error(validate_plugin('import-xml-csv-listings-to-listable-theme/listable-add-on.php')))
|
96 |
+
{
|
97 |
+
$recommended_addons[] = array(
|
98 |
+
'title' => 'Listable',
|
99 |
+
'url' => 'https://wordpress.org/plugins/import-xml-csv-listings-to-listable-theme/'
|
100 |
+
);
|
101 |
+
}
|
102 |
// Yoast SEO Add-On
|
103 |
if ( is_plugin_active('wordpress-seo/wp-seo.php')
|
104 |
and is_wp_error(validate_plugin('yoast-seo-settings-xml-csv-import/yoast-addon.php')))
|
helpers/wp_all_import_get_image_from_gallery.php
CHANGED
@@ -1,74 +1,77 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
function wp_all_import_get_image_from_gallery($image_name, $targetDir =
|
4 |
-
|
5 |
-
global $wpdb;
|
6 |
|
7 |
-
|
8 |
-
{
|
9 |
-
$wp_uploads = wp_upload_dir();
|
10 |
-
$targetDir = $wp_uploads['path'];
|
11 |
-
}
|
12 |
|
13 |
-
|
|
|
|
|
|
|
|
|
|
|
14 |
|
15 |
-
|
16 |
-
|
17 |
|
18 |
// if (empty($attachment_metas)){
|
19 |
// $attachment_metas = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM " . $wpdb->postmeta . " WHERE meta_key = %s AND (meta_value = %s OR meta_value LIKE %s);", '_wp_attached_file', sanitize_file_name($image_name), "%/" . sanitize_file_name($image_name) ) );
|
20 |
// }
|
21 |
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
|
30 |
-
|
31 |
-
|
32 |
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
if ( ! empty($attch) ) break;
|
38 |
-
}
|
39 |
-
}
|
40 |
-
}
|
41 |
-
|
42 |
-
if ( empty($attch) )
|
43 |
-
{
|
44 |
-
$wp_filetype = wp_check_filetype(basename($image_name), null );
|
45 |
|
46 |
-
|
47 |
-
|
48 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
}
|
50 |
|
51 |
-
// search attachment by file
|
52 |
-
if (
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
|
|
|
|
|
|
|
|
|
|
57 |
}
|
58 |
-
}
|
59 |
-
|
60 |
-
// search attachment by file headers
|
61 |
-
if ( empty($attch) and @file_exists($targetDir . DIRECTORY_SEPARATOR . $image_name) )
|
62 |
-
{
|
63 |
-
if ($bundle_type == 'images' and ($img_meta = wp_read_image_metadata($targetDir . DIRECTORY_SEPARATOR . $image_name)))
|
64 |
-
{
|
65 |
-
if (trim($img_meta['title']) && ! is_numeric(sanitize_title($img_meta['title'])))
|
66 |
-
{
|
67 |
-
$img_title = $img_meta['title'];
|
68 |
-
$attch = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM " . $wpdb->posts . " WHERE post_title = %s AND post_type = %s AND post_mime_type LIKE %s;", $img_title, "attachment", "image%" ) );
|
69 |
-
}
|
70 |
-
}
|
71 |
-
}
|
72 |
|
73 |
-
|
74 |
}
|
1 |
<?php
|
2 |
|
3 |
+
function wp_all_import_get_image_from_gallery($image_name, $targetDir = FALSE, $bundle_type = 'images') {
|
4 |
+
global $wpdb;
|
|
|
5 |
|
6 |
+
$original_image_name = $image_name;
|
|
|
|
|
|
|
|
|
7 |
|
8 |
+
if (!$targetDir) {
|
9 |
+
$wp_uploads = wp_upload_dir();
|
10 |
+
$targetDir = $wp_uploads['path'];
|
11 |
+
}
|
12 |
+
|
13 |
+
$attch = '';
|
14 |
|
15 |
+
// search attachment by attached file
|
16 |
+
$attachment_metas = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $wpdb->postmeta . " WHERE meta_key = %s AND (meta_value = %s OR meta_value LIKE %s);", '_wp_attached_file', $image_name, "%/" . $image_name));
|
17 |
|
18 |
// if (empty($attachment_metas)){
|
19 |
// $attachment_metas = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM " . $wpdb->postmeta . " WHERE meta_key = %s AND (meta_value = %s OR meta_value LIKE %s);", '_wp_attached_file', sanitize_file_name($image_name), "%/" . sanitize_file_name($image_name) ) );
|
20 |
// }
|
21 |
|
22 |
+
if (!empty($attachment_metas)) {
|
23 |
+
foreach ($attachment_metas as $attachment_meta) {
|
24 |
+
$attch = $wpdb->get_row($wpdb->prepare("SELECT * FROM " . $wpdb->posts . " WHERE ID = %d;", $attachment_meta->post_id));
|
25 |
+
if (!empty($attch)) {
|
26 |
+
break;
|
27 |
+
}
|
28 |
+
}
|
29 |
+
}
|
30 |
+
|
31 |
+
if (empty($attch)) {
|
32 |
+
$attachment_metas = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $wpdb->postmeta . " WHERE meta_key = %s AND (meta_value = %s OR meta_value LIKE %s);", '_wp_attached_file', sanitize_file_name($image_name), "%/" . sanitize_file_name($image_name)));
|
33 |
+
|
34 |
+
if (!empty($attachment_metas)) {
|
35 |
+
foreach ($attachment_metas as $attachment_meta) {
|
36 |
+
$attch = $wpdb->get_row($wpdb->prepare("SELECT * FROM " . $wpdb->posts . " WHERE ID = %d;", $attachment_meta->post_id));
|
37 |
+
if (!empty($attch)) {
|
38 |
+
break;
|
39 |
+
}
|
40 |
+
}
|
41 |
+
}
|
42 |
+
}
|
43 |
|
44 |
+
if (empty($attch)) {
|
45 |
+
$wp_filetype = wp_check_filetype(basename($image_name), NULL);
|
46 |
|
47 |
+
if (!empty($wp_filetype['type'])) {
|
48 |
+
// search attachment by file name with extension
|
49 |
+
$attch = $wpdb->get_row($wpdb->prepare("SELECT * FROM " . $wpdb->posts . " WHERE (post_title = %s OR post_title = %s OR post_name = %s) AND post_type = %s AND post_mime_type = %s;", $image_name, preg_replace('/\\.[^.\\s]{3,4}$/', '', $image_name), sanitize_title($image_name), "attachment", $wp_filetype['type']));
|
50 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
|
52 |
+
// search attachment by file name without extension
|
53 |
+
if (empty($attch)) {
|
54 |
+
$attachment_title = explode(".", $image_name);
|
55 |
+
if (is_array($attachment_title) and count($attachment_title) > 1) {
|
56 |
+
array_pop($attachment_title);
|
57 |
+
}
|
58 |
+
$image_name = implode(".", $attachment_title);
|
59 |
+
$attch = $wpdb->get_row($wpdb->prepare("SELECT * FROM " . $wpdb->posts . " WHERE (post_title = %s OR post_title = %s OR post_name = %s) AND post_type = %s AND post_mime_type LIKE %s;", $image_name, preg_replace('/\\.[^.\\s]{3,4}$/', '', $image_name), sanitize_title($image_name), "attachment", "image%"));
|
60 |
+
}
|
61 |
}
|
62 |
|
63 |
+
// search attachment by file headers
|
64 |
+
if (empty($attch) and @file_exists($targetDir . DIRECTORY_SEPARATOR . $original_image_name)) {
|
65 |
+
if ($bundle_type == 'images' and ($img_meta = wp_read_image_metadata($targetDir . DIRECTORY_SEPARATOR . $original_image_name))) {
|
66 |
+
if (trim($img_meta['title']) && !is_numeric(sanitize_title($img_meta['title']))) {
|
67 |
+
$img_title = $img_meta['title'];
|
68 |
+
$attch = $wpdb->get_row($wpdb->prepare("SELECT * FROM " . $wpdb->posts . " WHERE post_title = %s AND post_type = %s AND post_mime_type LIKE %s;", $img_title, "attachment", "image%"));
|
69 |
+
}
|
70 |
+
}
|
71 |
+
if (empty($attch)){
|
72 |
+
@unlink($targetDir . DIRECTORY_SEPARATOR . $original_image_name);
|
73 |
+
}
|
74 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
|
76 |
+
return apply_filters('wp_all_import_get_image_from_gallery', $attch, $original_image_name, $targetDir);
|
77 |
}
|
helpers/wp_all_import_template_notifications.php
CHANGED
@@ -3,7 +3,7 @@ if ( ! function_exists('wp_all_import_template_notifications') )
|
|
3 |
{
|
4 |
function wp_all_import_template_notifications( $post, $type = 'warning')
|
5 |
{
|
6 |
-
$notifications = array();
|
7 |
// import template was generated via WP All Export
|
8 |
if ( ! empty($post['required_add_ons']) )
|
9 |
{
|
@@ -20,11 +20,11 @@ if ( ! function_exists('wp_all_import_template_notifications') )
|
|
20 |
|
21 |
if ( $post['custom_type'] == 'import_users' && ! class_exists('PMUI_Plugin') )
|
22 |
{
|
23 |
-
$notifications[] = __('The import template you are using requires the User Import Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href="http://www.wpallimport.com/
|
24 |
}
|
25 |
elseif ( $post['custom_type'] == 'product' && ! class_exists('PMWI_Plugin') && class_exists( 'Woocommerce' ))
|
26 |
{
|
27 |
-
$notifications[] = __('
|
28 |
}
|
29 |
// Realia Add-On
|
30 |
elseif ( ! empty($post['realia_addon']) and ! is_plugin_active('realia-xml-csv-property-listings-import/realia-add-on.php') )
|
@@ -37,7 +37,7 @@ if ( ! function_exists('wp_all_import_template_notifications') )
|
|
37 |
and ! is_plugin_active('wp-residence-add-on-for-wp-all-import/wp-residence-add-on.php') )
|
38 |
{
|
39 |
$notifications[] = __('The import template you are using requires the WP Residence Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href="https://wordpress.org/plugins/wp-residence-add-on-for-wp-all-import/" target="_blank">Download the WP Residence Add-On</a>.', 'wp_all_import_plugin');
|
40 |
-
}
|
41 |
// RealHomes Add-On
|
42 |
elseif ( ! empty($post['realhomes_addon'])
|
43 |
and isset($post['realhomes_addon']['REAL_HOMES_property_price'])
|
@@ -75,12 +75,18 @@ if ( ! function_exists('wp_all_import_template_notifications') )
|
|
75 |
{
|
76 |
$notifications[] = __('The import template you are using requires the Yoast SEO Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href="https://wordpress.org/plugins/yoast-seo-settings-xml-csv-import/" target="_blank">Download the Yoast SEO Add-On</a>.', 'wp_all_import_plugin');
|
77 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
78 |
// 3rd party Add-On
|
79 |
elseif( ! empty($post['rapid_addon']) and ! is_plugin_active($post['rapid_addon']) )
|
80 |
{
|
81 |
$notification[] = __('The import template you are using requires an Add-On for WP All Import. If you continue without using this Add-On your data may import incorrectly.', 'wp_all_import_plugin');
|
82 |
}
|
83 |
-
}
|
84 |
|
85 |
if ( ! empty($notifications))
|
86 |
{
|
3 |
{
|
4 |
function wp_all_import_template_notifications( $post, $type = 'warning')
|
5 |
{
|
6 |
+
$notifications = array();
|
7 |
// import template was generated via WP All Export
|
8 |
if ( ! empty($post['required_add_ons']) )
|
9 |
{
|
20 |
|
21 |
if ( $post['custom_type'] == 'import_users' && ! class_exists('PMUI_Plugin') )
|
22 |
{
|
23 |
+
$notifications[] = __('The import template you are using requires the User Import Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href="http://www.wpallimport.com/add-ons/user-import/?utm_source=wordpress.org&utm_medium=wpai-import-template&utm_campaign=free+wp+all+export+plugin" target="_blank">Purchase the User Import Add-On</a>.', 'wp_all_import_plugin');
|
24 |
}
|
25 |
elseif ( $post['custom_type'] == 'product' && ! class_exists('PMWI_Plugin') && class_exists( 'Woocommerce' ))
|
26 |
{
|
27 |
+
$notifications[] = __('The import template you are using requires the WooCommerce Import Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href="http://www.wpallimport.com/woocommerce-product-import/" target="_blank">Purchase the WooCommerce Import Add-On</a>.', 'wp_all_import_plugin');
|
28 |
}
|
29 |
// Realia Add-On
|
30 |
elseif ( ! empty($post['realia_addon']) and ! is_plugin_active('realia-xml-csv-property-listings-import/realia-add-on.php') )
|
37 |
and ! is_plugin_active('wp-residence-add-on-for-wp-all-import/wp-residence-add-on.php') )
|
38 |
{
|
39 |
$notifications[] = __('The import template you are using requires the WP Residence Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href="https://wordpress.org/plugins/wp-residence-add-on-for-wp-all-import/" target="_blank">Download the WP Residence Add-On</a>.', 'wp_all_import_plugin');
|
40 |
+
}
|
41 |
// RealHomes Add-On
|
42 |
elseif ( ! empty($post['realhomes_addon'])
|
43 |
and isset($post['realhomes_addon']['REAL_HOMES_property_price'])
|
75 |
{
|
76 |
$notifications[] = __('The import template you are using requires the Yoast SEO Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href="https://wordpress.org/plugins/yoast-seo-settings-xml-csv-import/" target="_blank">Download the Yoast SEO Add-On</a>.', 'wp_all_import_plugin');
|
77 |
}
|
78 |
+
// Listable SEO Add-On
|
79 |
+
elseif ( ! empty($post['listable_addon'])
|
80 |
+
and ! is_plugin_active('import-xml-csv-listings-to-listable-theme/listable-add-on.php') )
|
81 |
+
{
|
82 |
+
$notifications[] = __('The import template you are using requires the Listable Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href="https://wordpress.org/plugins/import-xml-csv-listings-to-listable-theme/" target="_blank">Download the Listable Add-On</a>.', 'wp_all_import_plugin');
|
83 |
+
}
|
84 |
// 3rd party Add-On
|
85 |
elseif( ! empty($post['rapid_addon']) and ! is_plugin_active($post['rapid_addon']) )
|
86 |
{
|
87 |
$notification[] = __('The import template you are using requires an Add-On for WP All Import. If you continue without using this Add-On your data may import incorrectly.', 'wp_all_import_plugin');
|
88 |
}
|
89 |
+
}
|
90 |
|
91 |
if ( ! empty($notifications))
|
92 |
{
|
i18n/languages/wp_all_import_plugin-ja.mo
ADDED
Binary file
|
i18n/languages/wp_all_import_plugin-ja.po
ADDED
@@ -0,0 +1,5623 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: WP All Import Pro\n"
|
4 |
+
"POT-Creation-Date: 2017-03-24 11:23+0900\n"
|
5 |
+
"PO-Revision-Date: 2017-03-24 11:44+0900\n"
|
6 |
+
"Last-Translator: \n"
|
7 |
+
"Language-Team: \n"
|
8 |
+
"Language: ja\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.8.12\n"
|
13 |
+
"X-Poedit-Basepath: ../..\n"
|
14 |
+
"X-Poedit-WPHeader: wp-all-import-pro.php\n"
|
15 |
+
"Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n"
|
16 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
18 |
+
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
19 |
+
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
20 |
+
"X-Poedit-SearchPath-0: .\n"
|
21 |
+
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
+
|
23 |
+
#: actions/admin_menu.php:12
|
24 |
+
msgid "New Import"
|
25 |
+
msgstr "新規インポート"
|
26 |
+
|
27 |
+
#: actions/admin_menu.php:13 views/admin/import/process.php:71
|
28 |
+
#: views/admin/manage/index.php:5
|
29 |
+
msgid "Manage Imports"
|
30 |
+
msgstr "インポートを管理"
|
31 |
+
|
32 |
+
#: actions/admin_menu.php:14 views/admin/settings/index.php:7
|
33 |
+
msgid "Settings"
|
34 |
+
msgstr "設定"
|
35 |
+
|
36 |
+
#: actions/admin_menu.php:16
|
37 |
+
msgid "History"
|
38 |
+
msgstr "履歴"
|
39 |
+
|
40 |
+
#: actions/admin_menu.php:22 controllers/admin/license.php:18
|
41 |
+
#: controllers/admin/settings.php:50 views/admin/import/confirm.php:11
|
42 |
+
#: views/admin/import/element.php:8 views/admin/import/index.php:43
|
43 |
+
#: views/admin/import/options.php:18 views/admin/import/process.php:8
|
44 |
+
#: views/admin/import/template.php:9 views/admin/manage/index.php:4
|
45 |
+
#: views/admin/settings/index.php:6
|
46 |
+
msgid "WP All Import"
|
47 |
+
msgstr "WP オールインポート"
|
48 |
+
|
49 |
+
#: actions/admin_menu.php:22
|
50 |
+
msgid "All Import"
|
51 |
+
msgstr "すべてインポート"
|
52 |
+
|
53 |
+
#: actions/admin_notices.php:12
|
54 |
+
#, php-format
|
55 |
+
msgid ""
|
56 |
+
"<b>%s Plugin</b>: Please update your WP All Import WooCommerce add-on to the "
|
57 |
+
"latest version"
|
58 |
+
msgstr ""
|
59 |
+
"<b>%s Plugin</b>: 最新バージョンへのアドオンWooCommerce WPすべてのインポート"
|
60 |
+
"のためにを更新してください。"
|
61 |
+
|
62 |
+
#: actions/admin_notices.php:39
|
63 |
+
#, php-format
|
64 |
+
msgid ""
|
65 |
+
"<b>%s Plugin</b>: Please update your WP All Import ACF add-on to the latest "
|
66 |
+
"version"
|
67 |
+
msgstr ""
|
68 |
+
"<b>%s Plugin</b>: WP All Import ACFアドオンを最新バージョンに更新してください"
|
69 |
+
|
70 |
+
#: actions/admin_notices.php:56
|
71 |
+
#, php-format
|
72 |
+
msgid ""
|
73 |
+
"<b>%s Plugin</b>: Please update your WP All Import Linkcloak add-on to the "
|
74 |
+
"latest version"
|
75 |
+
msgstr ""
|
76 |
+
"<b>%s Plugin</b>: WP All Import Linkcloakアドオンを最新バージョンに更新してく"
|
77 |
+
"ださい"
|
78 |
+
|
79 |
+
#: actions/admin_notices.php:73
|
80 |
+
#, php-format
|
81 |
+
msgid ""
|
82 |
+
"<b>%s Plugin</b>: Please update your WP All Import User add-on to the latest "
|
83 |
+
"version"
|
84 |
+
msgstr ""
|
85 |
+
"<b>%s Plugin</b>: WP All Import Userアドオンを最新バージョンに更新してくださ"
|
86 |
+
"い"
|
87 |
+
|
88 |
+
#: actions/admin_notices.php:90
|
89 |
+
#, php-format
|
90 |
+
msgid ""
|
91 |
+
"<b>%s Plugin</b>: The WPML Add-On Plugin is no longer compatible with this "
|
92 |
+
"version of WP All Import - please contact support@wpallimport.com and we "
|
93 |
+
"will supply the latest version of WP All Import that is compatible with the "
|
94 |
+
"WPML Add-On."
|
95 |
+
msgstr ""
|
96 |
+
"<b>%s Plugin</b>: WPMLアドオンプラグインは、このバージョンのWP All Importとの"
|
97 |
+
"互換性がなくなりました。support@wpallimport.comまでご連絡ください。WPMLアドオ"
|
98 |
+
"ンと互換性のあるWP All Importの最新バージョンが提供されます。"
|
99 |
+
|
100 |
+
#: actions/admin_notices.php:119 controllers/admin/import.php:1547
|
101 |
+
#: controllers/admin/import.php:1789 controllers/admin/import.php:2339
|
102 |
+
msgid "<strong>Warning:</strong> your title is blank."
|
103 |
+
msgstr "<strong>警告:</strong> あなたのタイトルは空白です。"
|
104 |
+
|
105 |
+
#: actions/admin_notices.php:122 controllers/admin/import.php:1554
|
106 |
+
msgid "<strong>Warning:</strong> your content is blank."
|
107 |
+
msgstr "<strong>警告: </strong> あなたのコンテンツは空白です。"
|
108 |
+
|
109 |
+
#: actions/wp_ajax_auto_detect_cf.php:5 actions/wp_ajax_auto_detect_cf.php:9
|
110 |
+
#: actions/wp_ajax_auto_detect_sf.php:5 actions/wp_ajax_auto_detect_sf.php:9
|
111 |
+
#: actions/wp_ajax_delete_import.php:5 actions/wp_ajax_delete_import.php:9
|
112 |
+
#: actions/wp_ajax_dismiss_notifications.php:5
|
113 |
+
#: actions/wp_ajax_dismiss_notifications.php:9
|
114 |
+
#: actions/wp_ajax_get_bundle_post_type.php:6
|
115 |
+
#: actions/wp_ajax_get_bundle_post_type.php:10
|
116 |
+
#: actions/wp_ajax_import_failed.php:5 actions/wp_ajax_import_failed.php:9
|
117 |
+
#: actions/wp_ajax_nested_merge.php:6 actions/wp_ajax_nested_merge.php:10
|
118 |
+
#: actions/wp_ajax_nested_xpath.php:6 actions/wp_ajax_nested_xpath.php:10
|
119 |
+
#: actions/wp_ajax_parse_nested_file.php:10
|
120 |
+
#: actions/wp_ajax_parse_nested_file.php:14
|
121 |
+
#: actions/wp_ajax_save_import_functions.php:6
|
122 |
+
#: actions/wp_ajax_save_import_functions.php:10
|
123 |
+
#: actions/wp_ajax_test_images.php:6 actions/wp_ajax_test_images.php:10
|
124 |
+
#: actions/wp_ajax_unmerge_file.php:5 actions/wp_ajax_unmerge_file.php:9
|
125 |
+
#: actions/wp_ajax_upload_resource.php:6 actions/wp_ajax_upload_resource.php:10
|
126 |
+
#: controllers/admin/history.php:74 controllers/admin/import.php:591
|
127 |
+
#: controllers/admin/import.php:899 controllers/admin/import.php:1037
|
128 |
+
#: controllers/admin/import.php:1177 controllers/admin/import.php:1333
|
129 |
+
#: controllers/admin/import.php:2589 controllers/admin/manage.php:136
|
130 |
+
#: controllers/admin/manage.php:179 controllers/admin/manage.php:293
|
131 |
+
#: controllers/admin/manage.php:545 controllers/admin/settings.php:427
|
132 |
+
msgid "Security check"
|
133 |
+
msgstr "セキュリティーチェック"
|
134 |
+
|
135 |
+
#: actions/wp_ajax_auto_detect_cf.php:71 models/import/record.php:1538
|
136 |
+
#: views/admin/import/element.php:21
|
137 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:8
|
138 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:7
|
139 |
+
#: views/admin/import/process.php:40
|
140 |
+
#: views/admin/import/template/_custom_fields_template.php:7
|
141 |
+
#: views/admin/import/template/_other_template.php:6
|
142 |
+
#: views/admin/import/template/_term_meta_template.php:7
|
143 |
+
#: views/admin/import/template/_term_other_template.php:7
|
144 |
+
msgid "Taxonomy Term"
|
145 |
+
msgstr "タクソノミータームをセット"
|
146 |
+
|
147 |
+
#: actions/wp_ajax_auto_detect_cf.php:77
|
148 |
+
#, php-format
|
149 |
+
msgid "No Custom Fields are present in your database for %s"
|
150 |
+
msgstr "%sのデータベースにカスタムフィールドがありません"
|
151 |
+
|
152 |
+
#: actions/wp_ajax_auto_detect_cf.php:80
|
153 |
+
#, php-format
|
154 |
+
msgid "%s field was automatically detected."
|
155 |
+
msgstr "%s のフィールドが自動的に検出されました。"
|
156 |
+
|
157 |
+
#: actions/wp_ajax_auto_detect_cf.php:82
|
158 |
+
#, php-format
|
159 |
+
msgid "%s fields were automatically detected."
|
160 |
+
msgstr "%s のフィールドが自動的に検出されました。"
|
161 |
+
|
162 |
+
#: actions/wp_ajax_delete_import.php:32 controllers/admin/manage.php:608
|
163 |
+
msgid "Import deleted"
|
164 |
+
msgstr "インポート削除"
|
165 |
+
|
166 |
+
#: actions/wp_ajax_delete_import.php:36 controllers/admin/manage.php:612
|
167 |
+
msgid "All associated posts deleted."
|
168 |
+
msgstr "関連記事を全て削除します。"
|
169 |
+
|
170 |
+
#: actions/wp_ajax_delete_import.php:40 controllers/admin/manage.php:616
|
171 |
+
msgid "Import and all associated posts deleted."
|
172 |
+
msgstr "インポートと削除されたすべての関連記事。"
|
173 |
+
|
174 |
+
#: actions/wp_ajax_delete_import.php:44 controllers/admin/manage.php:597
|
175 |
+
msgid "Nothing to delete."
|
176 |
+
msgstr "何も削除します。"
|
177 |
+
|
178 |
+
#: actions/wp_ajax_delete_import.php:66
|
179 |
+
#, php-format
|
180 |
+
msgid "Import #%d - %d records deleted"
|
181 |
+
msgstr "インポート#%d - %dのレコードが削除されました"
|
182 |
+
|
183 |
+
#: actions/wp_ajax_get_bundle_post_type.php:73
|
184 |
+
#: actions/wp_ajax_upload_resource.php:141 controllers/admin/settings.php:610
|
185 |
+
msgid ""
|
186 |
+
"<p class=\"wpallimport-bundle-notice\">The import bundle you are using "
|
187 |
+
"requires WooCommerce.</p><a class=\"upgrade_link\" href=\"https://wordpress."
|
188 |
+
"org/plugins/woocommerce/\" target=\"_blank\">Get WooCommerce</a>."
|
189 |
+
msgstr ""
|
190 |
+
"<p class=\"wpallimport-bundle-notice\">使用しているインポート バンドルには、"
|
191 |
+
"WooCommerce が必要です。</p><a class=\"upgrade_link\" href=\"https://"
|
192 |
+
"wordpress.org/plugins/woocommerce/\" target=\"_blank\">WooCommerce を取得しま"
|
193 |
+
"す。</a>"
|
194 |
+
|
195 |
+
#: actions/wp_ajax_get_bundle_post_type.php:79
|
196 |
+
#: actions/wp_ajax_upload_resource.php:147 controllers/admin/settings.php:616
|
197 |
+
msgid ""
|
198 |
+
"<p class=\"wpallimport-bundle-notice\">The import bundle you are using "
|
199 |
+
"requires the Pro version of the WooCommerce Add-On.</p><a href=\"http://www."
|
200 |
+
"wpallimport.com/checkout/?edd_action=add_to_cart&download_id=1529&edd_options"
|
201 |
+
"%5Bprice_id%5D=1\" class=\"upgrade_link\" target=\"_blank\">Purchase the "
|
202 |
+
"WooCommerce Add-On</a>."
|
203 |
+
msgstr ""
|
204 |
+
"<p class=\"wpallimport-bundle-notice\">使用しているインポート バンドル "
|
205 |
+
"WooCommerce アドオンの Pro バージョンが必要です。</p><a href=\"http://www."
|
206 |
+
"wpallimport.com/checkout/?edd_action=add_to_cart&download_id=1529&edd_options"
|
207 |
+
"%5Bprice_id%5D=1\" class=\"upgrade_link\" target=\"_blank\">WooCommerce アド"
|
208 |
+
"オンの購入</a>。"
|
209 |
+
|
210 |
+
#: actions/wp_ajax_get_bundle_post_type.php:84
|
211 |
+
#: actions/wp_ajax_upload_resource.php:152 controllers/admin/settings.php:621
|
212 |
+
msgid ""
|
213 |
+
"<p class=\"wpallimport-bundle-notice\">The import bundle you are using "
|
214 |
+
"requires the Pro version of the WooCommerce Add-On, but you have the free "
|
215 |
+
"version installed.</p><a href=\"http://www.wpallimport.com/checkout/?"
|
216 |
+
"edd_action=add_to_cart&download_id=1529&edd_options%5Bprice_id%5D=1\" target="
|
217 |
+
"\"_blank\" class=\"upgrade_link\">Purchase the WooCommerce Add-On</a>."
|
218 |
+
msgstr ""
|
219 |
+
"<p class=\"wpallimport-bundle-notice\">使用しているインポート バンドル "
|
220 |
+
"WooCommerce アドオンの Pro バージョンが必要ですが無料版をインストールします。"
|
221 |
+
"</p><a href=\"http://www.wpallimport.com/checkout/?"
|
222 |
+
"edd_action=add_to_cart&download_id=1529&edd_options%5Bprice_id%5D=1\" target="
|
223 |
+
"\"_blank\" class=\"upgrade_link\">WooCommerce アドオンの購入</a>。"
|
224 |
+
|
225 |
+
#: actions/wp_ajax_get_bundle_post_type.php:94
|
226 |
+
#: actions/wp_ajax_upload_resource.php:162 controllers/admin/settings.php:631
|
227 |
+
msgid ""
|
228 |
+
"<p class=\"wpallimport-bundle-notice\">The import bundle you are using "
|
229 |
+
"requires the User Import Add-On.</p><a href=\"http://www.wpallimport.com/"
|
230 |
+
"checkout/?edd_action=add_to_cart&download_id=1921&edd_options%5Bprice_id"
|
231 |
+
"%5D=1\" target=\"_blank\" class=\"upgrade_link\">Purchase the User Import "
|
232 |
+
"Add-On</a>."
|
233 |
+
msgstr ""
|
234 |
+
"<p class=\"wpallimport-bundle-notice\">使用しているインポート バンドル ユー"
|
235 |
+
"ザー インポート アドオンが必要です。</p><a href=\"http://www.wpallimport.com/"
|
236 |
+
"checkout/?edd_action=add_to_cart&download_id=1921&edd_options%5Bprice_id"
|
237 |
+
"%5D=1\" target=\"_blank\" class=\"upgrade_link\">ユーザー インポートのアドオ"
|
238 |
+
"ンを購入します。</a>"
|
239 |
+
|
240 |
+
#: actions/wp_ajax_nested_xpath.php:51
|
241 |
+
msgid "XPath is required"
|
242 |
+
msgstr "XPathが必須"
|
243 |
+
|
244 |
+
#: actions/wp_ajax_nested_xpath.php:65
|
245 |
+
#: actions/wp_ajax_parse_nested_file.php:159
|
246 |
+
msgid "Elements found"
|
247 |
+
msgstr "要素が見つかりました"
|
248 |
+
|
249 |
+
#: actions/wp_ajax_nested_xpath.php:65
|
250 |
+
#: actions/wp_ajax_parse_nested_file.php:159
|
251 |
+
msgid "Elements not found"
|
252 |
+
msgstr "要素が見つかりません"
|
253 |
+
|
254 |
+
#: actions/wp_ajax_save_import_functions.php:31
|
255 |
+
#: actions/wp_ajax_save_import_functions.php:52
|
256 |
+
msgid "PHP code must be wrapped in \"<?php\" and \"?>\""
|
257 |
+
msgstr "PHP コードを囲む必要があります\"<? php「と」? >\""
|
258 |
+
|
259 |
+
#: actions/wp_ajax_save_import_functions.php:38
|
260 |
+
#: actions/wp_ajax_save_import_functions.php:61
|
261 |
+
msgid "File has been successfully updated."
|
262 |
+
msgstr "ファイルは正常に更新されました。"
|
263 |
+
|
264 |
+
#: actions/wp_ajax_test_images.php:32
|
265 |
+
#, php-format
|
266 |
+
msgid "Uploads folder `%s` is not writable."
|
267 |
+
msgstr "アップロードフォルダ `%s`は書き込み可能ではありません。"
|
268 |
+
|
269 |
+
#: actions/wp_ajax_test_images.php:46
|
270 |
+
#, php-format
|
271 |
+
msgid "Use image name instead of URL `%s`."
|
272 |
+
msgstr "URL `%s`の代わりにイメージ名を使用してください。"
|
273 |
+
|
274 |
+
#: actions/wp_ajax_test_images.php:53
|
275 |
+
#, php-format
|
276 |
+
msgid "File `%s` isn't readable"
|
277 |
+
msgstr "ファイル `%s`は読み込みできません"
|
278 |
+
|
279 |
+
#: actions/wp_ajax_test_images.php:57
|
280 |
+
#, php-format
|
281 |
+
msgid "File `%s` doesn't exist"
|
282 |
+
msgstr "ファイル '%s'は存在しません"
|
283 |
+
|
284 |
+
#: actions/wp_ajax_test_images.php:63
|
285 |
+
#, php-format
|
286 |
+
msgid "%d image was successfully retrieved from `%s`"
|
287 |
+
msgstr "%d個の画像は `%s`から正常に取得されました"
|
288 |
+
|
289 |
+
#: actions/wp_ajax_test_images.php:67
|
290 |
+
#, php-format
|
291 |
+
msgid "%d images were successfully retrieved from `%s`"
|
292 |
+
msgstr "%d個の画像が `%s`から正常に取得されました"
|
293 |
+
|
294 |
+
#: actions/wp_ajax_test_images.php:95
|
295 |
+
#, php-format
|
296 |
+
msgid "Image `%s` not found in media library."
|
297 |
+
msgstr "イメージ '%s' がメディア ・ ライブラリ内に見つかりません。"
|
298 |
+
|
299 |
+
#: actions/wp_ajax_test_images.php:102
|
300 |
+
#, php-format
|
301 |
+
msgid "%d image was successfully founded in media gallery"
|
302 |
+
msgstr "%d のイメージはメディア ギャラリーに設立され正常に"
|
303 |
+
|
304 |
+
#: actions/wp_ajax_test_images.php:106
|
305 |
+
#, php-format
|
306 |
+
msgid "%d images were successfully founded in media gallery"
|
307 |
+
msgstr "メディア ギャラリーに正常に設立された %d 画像"
|
308 |
+
|
309 |
+
#: actions/wp_ajax_test_images.php:120
|
310 |
+
#, php-format
|
311 |
+
msgid "URL `%s` is not valid."
|
312 |
+
msgstr "URL '%s'は無効です。"
|
313 |
+
|
314 |
+
#: actions/wp_ajax_test_images.php:135
|
315 |
+
#, php-format
|
316 |
+
msgid "File `%s` cannot be saved locally"
|
317 |
+
msgstr "ファイル '%s'はローカルには保存できません"
|
318 |
+
|
319 |
+
#: actions/wp_ajax_test_images.php:137
|
320 |
+
#, php-format
|
321 |
+
msgid "File `%s` is not a valid image."
|
322 |
+
msgstr "ファイル '%s'は有効な画像ではありません。"
|
323 |
+
|
324 |
+
#: actions/wp_ajax_test_images.php:148
|
325 |
+
#, php-format
|
326 |
+
msgid "%d image was successfully downloaded in %s seconds"
|
327 |
+
msgstr "%d個のイメージが%s秒で正常にダウンロードされました"
|
328 |
+
|
329 |
+
#: actions/wp_ajax_test_images.php:152
|
330 |
+
#, php-format
|
331 |
+
msgid "%d images were successfully downloaded in %s seconds"
|
332 |
+
msgstr "%d個の画像が%s秒間に正常にダウンロードされました"
|
333 |
+
|
334 |
+
#: actions/wp_ajax_upload_resource.php:124
|
335 |
+
msgid "Please verify that the URL returns a valid import file."
|
336 |
+
msgstr "URL が有効なインポート ファイルを返すことを確認してください。"
|
337 |
+
|
338 |
+
#: actions/wp_loaded.php:38
|
339 |
+
msgid "Cleanup completed."
|
340 |
+
msgstr "クリーンアップが完了しました。"
|
341 |
+
|
342 |
+
#: actions/wp_loaded.php:44
|
343 |
+
msgid "Missing import ID."
|
344 |
+
msgstr "インポートIDがありません。"
|
345 |
+
|
346 |
+
#: actions/wp_loaded.php:72
|
347 |
+
#, php-format
|
348 |
+
msgid "Other imports are currently in process [%s]."
|
349 |
+
msgstr "Other imports are currently in process [%s]."
|
350 |
+
|
351 |
+
#: actions/wp_loaded.php:82
|
352 |
+
#, php-format
|
353 |
+
msgid ""
|
354 |
+
"Scheduling update is not working with \"upload\" import type. Import #%s."
|
355 |
+
msgstr ""
|
356 |
+
"更新のスケジュール設定が「アップロード」インポートタイプで機能していません。 "
|
357 |
+
"インポート #%s."
|
358 |
+
|
359 |
+
#: actions/wp_loaded.php:95 actions/wp_loaded.php:167
|
360 |
+
#, php-format
|
361 |
+
msgid "Import #%s is currently in manually process. Request skipped."
|
362 |
+
msgstr ""
|
363 |
+
"インポート#%sは現在手動で処理されています。 リクエストはスキップされました。"
|
364 |
+
|
365 |
+
#: actions/wp_loaded.php:118 views/admin/history/index.php:170
|
366 |
+
msgid "triggered by cron"
|
367 |
+
msgstr "cronによって引き起こされる"
|
368 |
+
|
369 |
+
#: actions/wp_loaded.php:124
|
370 |
+
#, php-format
|
371 |
+
msgid "#%s Cron job triggered."
|
372 |
+
msgstr "#%s のCronジョブがトリガーされました。"
|
373 |
+
|
374 |
+
#: actions/wp_loaded.php:131
|
375 |
+
#, php-format
|
376 |
+
msgid "Import #%s currently in process. Request skipped."
|
377 |
+
msgstr ""
|
378 |
+
"現在処理中の#%sをインポートしてください。 リクエストはスキップされました。"
|
379 |
+
|
380 |
+
#: actions/wp_loaded.php:140
|
381 |
+
#, php-format
|
382 |
+
msgid "Import #%s already triggered. Request skipped."
|
383 |
+
msgstr "#%s を既にインポートしました。 リクエストはスキップされました。"
|
384 |
+
|
385 |
+
#: actions/wp_loaded.php:160
|
386 |
+
#, php-format
|
387 |
+
msgid "Import #%s is not triggered. Request skipped."
|
388 |
+
msgstr "インポート #%s はトリガーされません。 リクエストはスキップされました。"
|
389 |
+
|
390 |
+
#: actions/wp_loaded.php:198 views/admin/history/index.php:167
|
391 |
+
msgid "cron processing"
|
392 |
+
msgstr "cron処理"
|
393 |
+
|
394 |
+
#: actions/wp_loaded.php:230 models/import/record.php:633
|
395 |
+
#, php-format
|
396 |
+
msgid "Import #%s complete"
|
397 |
+
msgstr "#%sのインポートを完了しました"
|
398 |
+
|
399 |
+
#: actions/wp_loaded.php:239
|
400 |
+
#, php-format
|
401 |
+
msgid "Records Processed %s. Records Count %s."
|
402 |
+
msgstr "レコード%sが処理されました。 %sをカウントします。"
|
403 |
+
|
404 |
+
#: actions/wp_loaded.php:251
|
405 |
+
#, php-format
|
406 |
+
msgid "Import #%s already processing. Request skipped."
|
407 |
+
msgstr "Importación #%s actualmente procesando. Solicitud omitida."
|
408 |
+
|
409 |
+
#: actions/wp_loaded.php:275
|
410 |
+
#, php-format
|
411 |
+
msgid "Import #%s canceled"
|
412 |
+
msgstr "インポート#%s キャンセル"
|
413 |
+
|
414 |
+
#: classes/api.php:112 views/admin/import/template/_other_template.php:39
|
415 |
+
#: views/admin/import/template/_other_template.php:88
|
416 |
+
#: views/admin/import/template/_other_template.php:111
|
417 |
+
#: views/admin/import/template/_other_template.php:178
|
418 |
+
#: views/admin/import/template/_other_template.php:210
|
419 |
+
#: views/admin/import/template/_other_template.php:238
|
420 |
+
#: views/admin/import/template/_other_template.php:264
|
421 |
+
msgid "Set with XPath"
|
422 |
+
msgstr "XPathで設定"
|
423 |
+
|
424 |
+
#: classes/api.php:128
|
425 |
+
#: views/admin/import/template/_custom_fields_template.php:69
|
426 |
+
#: views/admin/import/template/_custom_fields_template.php:278
|
427 |
+
#: views/admin/import/template/_custom_fields_template.php:412
|
428 |
+
#: views/admin/import/template/_term_meta_template.php:69
|
429 |
+
#: views/admin/import/template/_term_meta_template.php:278
|
430 |
+
#: views/admin/import/template/_term_meta_template.php:412
|
431 |
+
msgid "Field Options..."
|
432 |
+
msgstr "フィールドのオプション"
|
433 |
+
|
434 |
+
#: classes/api.php:131
|
435 |
+
#: views/admin/import/template/_custom_fields_template.php:75
|
436 |
+
#: views/admin/import/template/_custom_fields_template.php:284
|
437 |
+
#: views/admin/import/template/_custom_fields_template.php:418
|
438 |
+
#: views/admin/import/template/_term_meta_template.php:75
|
439 |
+
#: views/admin/import/template/_term_meta_template.php:284
|
440 |
+
#: views/admin/import/template/_term_meta_template.php:418
|
441 |
+
msgid "Mapping"
|
442 |
+
msgstr "マッピング"
|
443 |
+
|
444 |
+
#: classes/api.php:140
|
445 |
+
#: views/admin/import/template/_custom_fields_template.php:182
|
446 |
+
#: views/admin/import/template/_custom_fields_template.php:350
|
447 |
+
#: views/admin/import/template/_custom_fields_template.php:484
|
448 |
+
#: views/admin/import/template/_taxonomies_template.php:233
|
449 |
+
#: views/admin/import/template/_term_meta_template.php:182
|
450 |
+
#: views/admin/import/template/_term_meta_template.php:350
|
451 |
+
#: views/admin/import/template/_term_meta_template.php:484
|
452 |
+
msgid "In Your File"
|
453 |
+
msgstr "ファイル内"
|
454 |
+
|
455 |
+
#: classes/api.php:141
|
456 |
+
#: views/admin/import/template/_custom_fields_template.php:183
|
457 |
+
#: views/admin/import/template/_custom_fields_template.php:351
|
458 |
+
#: views/admin/import/template/_custom_fields_template.php:485
|
459 |
+
#: views/admin/import/template/_taxonomies_template.php:234
|
460 |
+
#: views/admin/import/template/_term_meta_template.php:183
|
461 |
+
#: views/admin/import/template/_term_meta_template.php:351
|
462 |
+
#: views/admin/import/template/_term_meta_template.php:485
|
463 |
+
msgid "Translated To"
|
464 |
+
msgstr "翻訳先"
|
465 |
+
|
466 |
+
#: classes/api.php:220
|
467 |
+
#: views/admin/import/template/_custom_fields_template.php:156
|
468 |
+
#: views/admin/import/template/_custom_fields_template.php:245
|
469 |
+
#: views/admin/import/template/_custom_fields_template.php:324
|
470 |
+
#: views/admin/import/template/_custom_fields_template.php:380
|
471 |
+
#: views/admin/import/template/_custom_fields_template.php:458
|
472 |
+
#: views/admin/import/template/_custom_fields_template.php:514
|
473 |
+
#: views/admin/import/template/_term_meta_template.php:156
|
474 |
+
#: views/admin/import/template/_term_meta_template.php:245
|
475 |
+
#: views/admin/import/template/_term_meta_template.php:324
|
476 |
+
#: views/admin/import/template/_term_meta_template.php:380
|
477 |
+
#: views/admin/import/template/_term_meta_template.php:458
|
478 |
+
#: views/admin/import/template/_term_meta_template.php:514
|
479 |
+
msgid "Add Another"
|
480 |
+
msgstr "情報を追加"
|
481 |
+
|
482 |
+
#: classes/api.php:226
|
483 |
+
#: views/admin/import/template/_custom_fields_template.php:251
|
484 |
+
#: views/admin/import/template/_custom_fields_template.php:386
|
485 |
+
#: views/admin/import/template/_custom_fields_template.php:520
|
486 |
+
#: views/admin/import/template/_term_meta_template.php:251
|
487 |
+
#: views/admin/import/template/_term_meta_template.php:386
|
488 |
+
#: views/admin/import/template/_term_meta_template.php:520
|
489 |
+
msgid "Save Rules"
|
490 |
+
msgstr "ルールを保存"
|
491 |
+
|
492 |
+
#: classes/api.php:270
|
493 |
+
msgid "Download image hosted elsewhere"
|
494 |
+
msgstr "他の場所でホストされている画像をダウンロードする"
|
495 |
+
|
496 |
+
#: classes/api.php:271 classes/api.php:291
|
497 |
+
#: views/admin/import/template/_featured_template.php:16
|
498 |
+
#: views/admin/import/template/_featured_template.php:26
|
499 |
+
msgid "http:// or https://"
|
500 |
+
msgstr "http:// or https://"
|
501 |
+
|
502 |
+
#: classes/api.php:276
|
503 |
+
#, php-format
|
504 |
+
msgid "Use image(s) currently uploaded in %s"
|
505 |
+
msgstr "現在%sにアップロードされている画像を使用する"
|
506 |
+
|
507 |
+
#: classes/api.php:290
|
508 |
+
msgid "Download file hosted elsewhere"
|
509 |
+
msgstr "他の場所でホストされているファイルをダウンロードする"
|
510 |
+
|
511 |
+
#: classes/api.php:296
|
512 |
+
#, php-format
|
513 |
+
msgid "Use file(s) currently uploaded in %s"
|
514 |
+
msgstr "現在%sにアップロードされているファイルを使用する"
|
515 |
+
|
516 |
+
#: classes/api.php:410 models/import/record.php:2695
|
517 |
+
#, php-format
|
518 |
+
msgid "- Searching for existing image `%s` in `%s` folder"
|
519 |
+
msgstr "- 既存のイメージ `%s`を`%s`フォルダ内で検索しています"
|
520 |
+
|
521 |
+
#: classes/api.php:417 classes/api.php:488 models/import/record.php:2702
|
522 |
+
#: models/import/record.php:2786 models/import/record.php:3050
|
523 |
+
#, php-format
|
524 |
+
msgid "- <b>WARNING</b>: Can't detect attachment file type %s"
|
525 |
+
msgstr "- <b>警告</b>: 添付ファイルの種類%sを検出できません"
|
526 |
+
|
527 |
+
#: classes/api.php:422 classes/api.php:493 models/import/record.php:2708
|
528 |
+
#: models/import/record.php:2792
|
529 |
+
#, php-format
|
530 |
+
msgid "- File `%s` has been successfully found"
|
531 |
+
msgstr "- ファイル `%s`が正常に見つかりました"
|
532 |
+
|
533 |
+
#: classes/api.php:428 classes/api.php:479 models/import/record.php:2616
|
534 |
+
#: models/import/record.php:2719 models/import/record.php:2745
|
535 |
+
#: models/import/record.php:2779
|
536 |
+
#, php-format
|
537 |
+
msgid ""
|
538 |
+
"- <b>WARNING</b>: File %s is not a valid image and cannot be set as featured "
|
539 |
+
"one"
|
540 |
+
msgstr ""
|
541 |
+
"- <b>警告</b>: ファイル%sは有効な画像ではないため、特典として設定することはで"
|
542 |
+
"きません"
|
543 |
+
|
544 |
+
#: classes/api.php:431 models/import/record.php:2715
|
545 |
+
#, php-format
|
546 |
+
msgid "- Image `%s` has been successfully found"
|
547 |
+
msgstr "- 画像`%s` が正常に見つかりました"
|
548 |
+
|
549 |
+
#: classes/api.php:441 models/import/record.php:2728
|
550 |
+
#, php-format
|
551 |
+
msgid "- Downloading image from `%s`"
|
552 |
+
msgstr "- `%s`から画像をダウンロードしています"
|
553 |
+
|
554 |
+
#: classes/api.php:444
|
555 |
+
#, php-format
|
556 |
+
msgid "- Downloading file from `%s`"
|
557 |
+
msgstr "- `%s`からファイルをダウンロードしています"
|
558 |
+
|
559 |
+
#: classes/api.php:456 classes/api.php:483 models/import/record.php:2741
|
560 |
+
#: models/import/record.php:2777
|
561 |
+
#, php-format
|
562 |
+
msgid "- Image `%s` has been successfully downloaded"
|
563 |
+
msgstr "- 画像`%s`が正常にダウンロードされました"
|
564 |
+
|
565 |
+
#: classes/api.php:462 models/import/record.php:2752
|
566 |
+
#, php-format
|
567 |
+
msgid "- File `%s` has been successfully downloaded"
|
568 |
+
msgstr "- ファイル `%s`が正常にダウンロードされました"
|
569 |
+
|
570 |
+
#: classes/api.php:473 models/import/record.php:2769
|
571 |
+
#, php-format
|
572 |
+
msgid "- <b>WARNING</b>: File %s cannot be saved locally as %s"
|
573 |
+
msgstr "- <b>警告</b>: ファイル%sをローカルに%sとして保存することはできません"
|
574 |
+
|
575 |
+
#: classes/api.php:507 models/import/record.php:2830
|
576 |
+
#, php-format
|
577 |
+
msgid "- Creating an attachment for image `%s`"
|
578 |
+
msgstr "- 画像 `%s`の添付ファイルを作成しています"
|
579 |
+
|
580 |
+
#: classes/api.php:510
|
581 |
+
#, php-format
|
582 |
+
msgid "- Creating an attachment for file `%s`"
|
583 |
+
msgstr "- ファイル `%s`の添付ファイルを作成する"
|
584 |
+
|
585 |
+
#: classes/api.php:529 models/import/record.php:2857
|
586 |
+
#: models/import/record.php:3072
|
587 |
+
msgid "- <b>WARNING</b>"
|
588 |
+
msgstr "- <b>警告</b>"
|
589 |
+
|
590 |
+
#: classes/api.php:533 models/import/record.php:2917
|
591 |
+
#, php-format
|
592 |
+
msgid "- Attachment has been successfully created for image `%s`"
|
593 |
+
msgstr "- 画像`%s`の添付ファイルが正常に作成されました"
|
594 |
+
|
595 |
+
#: classes/render.php:68 classes/render.php:88 classes/render.php:166
|
596 |
+
#: classes/render.php:186
|
597 |
+
#, php-format
|
598 |
+
msgid "<strong>%s</strong> %s more"
|
599 |
+
msgstr "<strong>%s</strong> %s さらに"
|
600 |
+
|
601 |
+
#: classes/render.php:68 classes/render.php:88 classes/render.php:166
|
602 |
+
#: classes/render.php:186 views/admin/import/evaluate.php:5
|
603 |
+
#: views/admin/import/evaluate_variations.php:3
|
604 |
+
msgid "element"
|
605 |
+
msgid_plural "elements"
|
606 |
+
msgstr[0] "要素"
|
607 |
+
msgstr[1] "要素"
|
608 |
+
|
609 |
+
#: classes/render.php:94 classes/render.php:192
|
610 |
+
msgid "more"
|
611 |
+
msgstr "さらに"
|
612 |
+
|
613 |
+
#: classes/updater.php:66
|
614 |
+
msgid "View WP All Import Pro Changelog"
|
615 |
+
msgstr "WP All Import Proの変更履歴を表示します。"
|
616 |
+
|
617 |
+
#: classes/updater.php:66
|
618 |
+
msgid "Changelog"
|
619 |
+
msgstr "変更履歴"
|
620 |
+
|
621 |
+
#: classes/updater.php:261
|
622 |
+
#, php-format
|
623 |
+
msgid ""
|
624 |
+
"There is a new version of %1$s available. <a target=\"_blank\" class="
|
625 |
+
"\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
|
626 |
+
msgstr ""
|
627 |
+
"%1$s の利用可能な新しいバージョンがあります。<a target=\"_blank\" class="
|
628 |
+
"\"thickbox\" href=\"%2$s\"> %3$s バージョンの詳細を表示</a>"
|
629 |
+
|
630 |
+
#: classes/updater.php:268
|
631 |
+
#, php-format
|
632 |
+
msgid ""
|
633 |
+
"There is a new version of %1$s available. <a target=\"_blank\" class="
|
634 |
+
"\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s"
|
635 |
+
"\">update now</a>."
|
636 |
+
msgstr ""
|
637 |
+
"%1$s の利用可能な新しいバージョンがあります。<a target=\"_blank\" class="
|
638 |
+
"\"thickbox\" href=\"%2$s\">%3$s バージョンの詳細を表示</a> か <a href=\"%4$s"
|
639 |
+
"\">今すぐ更新</a>"
|
640 |
+
|
641 |
+
#: classes/updater.php:456
|
642 |
+
msgid "You do not have permission to install plugin updates"
|
643 |
+
msgstr "あなたはプラグインの更新プログラムをインストールする権限がありません"
|
644 |
+
|
645 |
+
#: classes/updater.php:456
|
646 |
+
msgid "Error"
|
647 |
+
msgstr "エラー"
|
648 |
+
|
649 |
+
#: classes/upload.php:50
|
650 |
+
msgid ""
|
651 |
+
"Please specify a file to import.<br/><br/>If you are uploading the file from "
|
652 |
+
"your computer, please wait for it to finish uploading (progress bar at "
|
653 |
+
"100%), before trying to continue."
|
654 |
+
msgstr ""
|
655 |
+
"インポートするファイルを指定してください。 <br/><br/>お使いのコンピュータから"
|
656 |
+
"ファイルをアップロードする場合、それは(100%でプログレスバーを)アップロード"
|
657 |
+
"を完了するために、継続しようとする前に、お待ちください。"
|
658 |
+
|
659 |
+
#: classes/upload.php:52
|
660 |
+
msgid "Uploaded file is empty"
|
661 |
+
msgstr "アップロードされたファイルは空です"
|
662 |
+
|
663 |
+
#: classes/upload.php:54 controllers/admin/settings.php:466
|
664 |
+
msgid ""
|
665 |
+
"Uploaded file must be XML, CSV, ZIP, GZIP, GZ, JSON, SQL, TXT, DAT or PSV"
|
666 |
+
msgstr ""
|
667 |
+
"アップロードされたファイルは、XML、CSV、ZIP、GZIP、GZ、JSON、SQL、TXT、DATや"
|
668 |
+
"PSVでなければなりません"
|
669 |
+
|
670 |
+
#: classes/upload.php:61 classes/upload.php:149 classes/upload.php:357
|
671 |
+
#: classes/upload.php:428 classes/upload.php:690 classes/upload.php:761
|
672 |
+
msgid ""
|
673 |
+
"WP All Import couldn't find a file to import inside your ZIP.<br/><br/"
|
674 |
+
">Either the .ZIP file is broken, or doesn't contain a file with an extension "
|
675 |
+
"of XML, CSV, PSV, DAT, or TXT. <br/>Please attempt to unzip your .ZIP file "
|
676 |
+
"on your computer to ensure it is a valid .ZIP file which can actually be "
|
677 |
+
"unzipped, and that it contains a file which WP All Import can import."
|
678 |
+
msgstr ""
|
679 |
+
"WPすべてのインポートは、あなたのZIPの内側にインポートするファイルを見つけるこ"
|
680 |
+
"とができませんでした。 <br/><br/>いずれかの.ZIPファイルが壊れている、または"
|
681 |
+
"XML、CSV、PSV、DAT、またはTXTの拡張子を持つファイルが含まれていません。 <br/>"
|
682 |
+
"それは実際に解凍することができ、有効な.ZIPファイルであり、それはWPすべてのイ"
|
683 |
+
"ンポートがインポートできるファイルが含まれていることを確認するために、コン"
|
684 |
+
"ピュータ上の.ZIPファイルを解凍しようとしてください。"
|
685 |
+
|
686 |
+
#: classes/upload.php:129 classes/upload.php:169 classes/upload.php:408
|
687 |
+
#: classes/upload.php:677 classes/upload.php:741 classes/upload.php:781
|
688 |
+
#: classes/upload.php:808 classes/upload.php:847 classes/upload.php:871
|
689 |
+
#: classes/upload.php:895 classes/upload.php:967
|
690 |
+
msgid "WP All Import can't access your WordPress uploads folder."
|
691 |
+
msgstr ""
|
692 |
+
"WPすべてのインポートは、WordPressのアップロードフォルダにアクセスすることはで"
|
693 |
+
"きません。"
|
694 |
+
|
695 |
+
#: classes/upload.php:236 classes/upload.php:500 classes/upload.php:602
|
696 |
+
#: classes/upload.php:834 classes/upload.php:992
|
697 |
+
msgid "Can not import this file. JSON to XML convertation failed."
|
698 |
+
msgstr ""
|
699 |
+
"このファイルをインポートすることはできません。 XMLのconvertationにJSONに失敗"
|
700 |
+
"しました。"
|
701 |
+
|
702 |
+
#: classes/upload.php:326 classes/upload.php:673
|
703 |
+
msgid "Please specify a file to import."
|
704 |
+
msgstr "インポートするファイルを指定してください。"
|
705 |
+
|
706 |
+
#: classes/upload.php:328
|
707 |
+
msgid ""
|
708 |
+
"The URL to your file is not valid.<br/><br/>Please make sure the URL starts "
|
709 |
+
"with http:// or https://. To import from https://, your server must have "
|
710 |
+
"OpenSSL installed."
|
711 |
+
msgstr ""
|
712 |
+
"ファイルへのURLが無効です。<br/><br/>URLがhttp://またはhttps://で始まってい"
|
713 |
+
"ることを確認してください。 https://からインポートするには、サーバーにOpenSSL"
|
714 |
+
"がインストールされている必要があります。"
|
715 |
+
|
716 |
+
#: classes/upload.php:330
|
717 |
+
msgid "Uploads folder "
|
718 |
+
msgstr "アップロードフォルダ%sは書き込み可能でなければなりません"
|
719 |
+
|
720 |
+
#: classes/upload.php:350
|
721 |
+
msgid "Failed upload ZIP archive"
|
722 |
+
msgstr "ZIPアーカイブアップロードが失敗した"
|
723 |
+
|
724 |
+
#: classes/upload.php:461 classes/upload.php:565
|
725 |
+
msgid ""
|
726 |
+
"WP All Import was not able to download your file.<br/><br/>Please make sure "
|
727 |
+
"the URL to your file is valid.<br/>You can test this by pasting it into your "
|
728 |
+
"browser.<br/>Other reasons for this error can include some server setting on "
|
729 |
+
"your host restricting access to this particular URL or external URLs in "
|
730 |
+
"general, or some setting on the server hosting the file you are trying to "
|
731 |
+
"access preventing your server from accessing it."
|
732 |
+
msgstr ""
|
733 |
+
"WP All Importでファイルをダウンロードできませんでした。<br/> <br/>ファイルへ"
|
734 |
+
"のURLが有効であることを確認してください。<br/>これをブラウザに貼り付けること"
|
735 |
+
"でテストできます。このエラーの原因には、ホスト上のこの特定のURLまたは外部URL"
|
736 |
+
"へのアクセスを制限するサーバー設定や、アクセスしようとしているファイルをホス"
|
737 |
+
"トしているサーバーの設定などがあります。"
|
738 |
+
|
739 |
+
#: controllers/admin/addons.php:21
|
740 |
+
msgid "WooCommerce Addon"
|
741 |
+
msgstr "WooCommerceアドオン"
|
742 |
+
|
743 |
+
#: controllers/admin/addons.php:22 controllers/admin/addons.php:76
|
744 |
+
msgid "Import Products from any XML or CSV to WooCommerce"
|
745 |
+
msgstr "製品のインポートWooCommerceに任意のXMLまたはCSVから"
|
746 |
+
|
747 |
+
#: controllers/admin/addons.php:32
|
748 |
+
msgid "ACF Addon"
|
749 |
+
msgstr "ACFアドオン"
|
750 |
+
|
751 |
+
#: controllers/admin/addons.php:33
|
752 |
+
msgid "Import to advanced custom fields"
|
753 |
+
msgstr "高度なカスタムフィールドへのインポート"
|
754 |
+
|
755 |
+
#: controllers/admin/addons.php:43
|
756 |
+
msgid "WPML Addon"
|
757 |
+
msgstr "WPMLアドオン"
|
758 |
+
|
759 |
+
#: controllers/admin/addons.php:44
|
760 |
+
msgid "Import to WPML"
|
761 |
+
msgstr "WPMLインポート"
|
762 |
+
|
763 |
+
#: controllers/admin/addons.php:54
|
764 |
+
msgid "User Addon"
|
765 |
+
msgstr "ユーザーアドオン"
|
766 |
+
|
767 |
+
#: controllers/admin/addons.php:55
|
768 |
+
msgid "Import Users"
|
769 |
+
msgstr "ユーザーのインポート"
|
770 |
+
|
771 |
+
#: controllers/admin/addons.php:65
|
772 |
+
msgid "Link cloaking Addon"
|
773 |
+
msgstr "リンククローキングアドオン"
|
774 |
+
|
775 |
+
#: controllers/admin/addons.php:66
|
776 |
+
msgid "Affiliate link cloaking"
|
777 |
+
msgstr "アフィリエイトリンククローキング"
|
778 |
+
|
779 |
+
#: controllers/admin/addons.php:75
|
780 |
+
msgid "WooCommerce Addon - free edition"
|
781 |
+
msgstr "WooCommerceアドオン - 無料版"
|
782 |
+
|
783 |
+
#: controllers/admin/addons.php:84
|
784 |
+
msgid "WooCommerce Tabs Addon"
|
785 |
+
msgstr "WooCommerceタブのアドオン"
|
786 |
+
|
787 |
+
#: controllers/admin/addons.php:85
|
788 |
+
msgid "Import data to WooCommerce tabs"
|
789 |
+
msgstr "WooCommerceのタブにデータをインポートする"
|
790 |
+
|
791 |
+
#: controllers/admin/history.php:31
|
792 |
+
msgid "Import is not specified."
|
793 |
+
msgstr "インポートは指定されていません。"
|
794 |
+
|
795 |
+
#: controllers/admin/history.php:57 controllers/admin/manage.php:60
|
796 |
+
msgid "«"
|
797 |
+
msgstr "«"
|
798 |
+
|
799 |
+
#: controllers/admin/history.php:58 controllers/admin/manage.php:61
|
800 |
+
msgid "»"
|
801 |
+
msgstr "»"
|
802 |
+
|
803 |
+
#: controllers/admin/history.php:92
|
804 |
+
msgid "Log file does not exists."
|
805 |
+
msgstr "ログファイルは存在しません。"
|
806 |
+
|
807 |
+
#: controllers/admin/history.php:112
|
808 |
+
msgid "History deleted"
|
809 |
+
msgstr "履歴が削除されました"
|
810 |
+
|
811 |
+
#: controllers/admin/history.php:139 controllers/admin/manage.php:652
|
812 |
+
#, php-format
|
813 |
+
msgid "%d %s deleted"
|
814 |
+
msgstr "%d %s が削除されました"
|
815 |
+
|
816 |
+
#: controllers/admin/history.php:139
|
817 |
+
msgid "history"
|
818 |
+
msgid_plural "histories"
|
819 |
+
msgstr[0] "履歴"
|
820 |
+
msgstr[1] "履歴"
|
821 |
+
|
822 |
+
#: controllers/admin/import.php:75
|
823 |
+
msgid ""
|
824 |
+
"WP All Import lost track of where you are.<br/><br/>Maybe you cleared your "
|
825 |
+
"cookies or maybe it is just a temporary issue on your or your web host's end."
|
826 |
+
"<br/>If you can't do an import without seeing this error, change your "
|
827 |
+
"session settings on the All Import -> Settings page."
|
828 |
+
msgstr ""
|
829 |
+
"WP All Importはあなたの現在の場所を失ってしまいました。<br/> <br/>あなたの"
|
830 |
+
"クッキーをクリアしたのかもしれないし、あなたのウェブホストの終わりに一時的な"
|
831 |
+
"問題かもしれません。 このエラーが表示されずにインポートするには、[すべてのイ"
|
832 |
+
"ンポート - >設定]ページでセッション設定を変更します。"
|
833 |
+
|
834 |
+
#: controllers/admin/import.php:92 controllers/admin/import.php:684
|
835 |
+
msgid ""
|
836 |
+
"There are no elements to import based on your XPath.<br/><br/>If you are in "
|
837 |
+
"Step 2, you probably specified filtering options that don’t match any "
|
838 |
+
"elements present in your file.<br/>If you are seeing this error elsewhere, "
|
839 |
+
"it means that while the XPath expression for your initial import matched "
|
840 |
+
"some elements in your file previously, there are now zero elements in the "
|
841 |
+
"file that match this expression.<br/>You can edit the XPath for your import "
|
842 |
+
"by going to the Manage Imports -> Import Settings page."
|
843 |
+
msgstr ""
|
844 |
+
"あなたのXPathに基づいてインポートする要素はありません。<br/>ステップ2の場合"
|
845 |
+
"は、ファイルに存在する要素と一致しないフィルタリングオプションが指定されてい"
|
846 |
+
"る可能性があります。 このエラーを他の場所で見ると、最初のインポートのXPath式"
|
847 |
+
"がファイル内のいくつかの要素と一致していましたが、この式に一致する要素がファ"
|
848 |
+
"イル内にゼロになりました。 [インポートの管理] - > [設定のインポート]ページに"
|
849 |
+
"移動します。"
|
850 |
+
|
851 |
+
#: controllers/admin/import.php:151
|
852 |
+
msgid "The import associated with this export has been deleted."
|
853 |
+
msgstr "このエクスポートに関連したインポートは削除されました。"
|
854 |
+
|
855 |
+
#: controllers/admin/import.php:151
|
856 |
+
msgid ""
|
857 |
+
"Please re-run your export by clicking Run Export on the All Export -> Manage "
|
858 |
+
"Exports page. Then try your import again."
|
859 |
+
msgstr ""
|
860 |
+
"[すべてのエクスポート] - > [エクスポートの管理]ページで[エクスポートの実行]を"
|
861 |
+
"クリックして、エクスポートを再実行してください。 次に、インポートを再試行して"
|
862 |
+
"ください。"
|
863 |
+
|
864 |
+
#: controllers/admin/import.php:156
|
865 |
+
msgid "This import has been deleted."
|
866 |
+
msgstr "このインポートは削除されました。"
|
867 |
+
|
868 |
+
#: controllers/admin/import.php:177
|
869 |
+
msgid ""
|
870 |
+
"Required PHP components are missing.<br/><br/>WP All Import requires "
|
871 |
+
"DOMDocument, XMLReader, and XMLWriter PHP modules to be installed.<br/>These "
|
872 |
+
"are standard features of PHP, and are necessary for WP All Import to read "
|
873 |
+
"the files you are trying to import.<br/>Please contact your web hosting "
|
874 |
+
"provider and ask them to install and activate the DOMDocument, XMLReader, "
|
875 |
+
"and XMLWriter PHP modules."
|
876 |
+
msgstr ""
|
877 |
+
"必要なPHPコンポーネントが欠落しています。 <br/><br/> WPすべてのインポートの"
|
878 |
+
"DOMDocument、XMLReaderのを必要とし、するXMLWriter PHPモジュールがインストール"
|
879 |
+
"されています。 <br/>これらは、PHPの標準機能であり、WPすべてのインポートは、イ"
|
880 |
+
"ンポートしようとしているファイルを読み取るために必要です。 <br/>あなたのWebホ"
|
881 |
+
"スティングプロバイダに連絡したDOMDocument、XMLReaderを、とするXMLWriter PHPモ"
|
882 |
+
"ジュールをインストールし、アクティブにするように依頼してください。"
|
883 |
+
|
884 |
+
#: controllers/admin/import.php:252
|
885 |
+
msgid "Select an item type to import the data"
|
886 |
+
msgstr "データをインポートするアイテムの種類を選択します"
|
887 |
+
|
888 |
+
#: controllers/admin/import.php:256
|
889 |
+
msgid "Previous import for update must be selected to proceed with a new one"
|
890 |
+
msgstr ""
|
891 |
+
"更新の前のインポートは、新しいものを続行するように選択する必要があります"
|
892 |
+
|
893 |
+
#: controllers/admin/import.php:260
|
894 |
+
msgid "Select a taxonomy to import the data"
|
895 |
+
msgstr "データをインポートする分類を選択します。"
|
896 |
+
|
897 |
+
#: controllers/admin/import.php:303
|
898 |
+
msgid "File is no longer in the correct format"
|
899 |
+
msgstr "ファイルは正しい形式になっていません"
|
900 |
+
|
901 |
+
#: controllers/admin/import.php:306 controllers/admin/import.php:349
|
902 |
+
msgid ""
|
903 |
+
"Certain columns are required to be present in your file to enable it to be "
|
904 |
+
"re-imported with WP All Import. These columns are missing. Re-export your "
|
905 |
+
"file using WP All Export, and don't delete any of the columns when editing "
|
906 |
+
"it. Then, re-import will work correctly."
|
907 |
+
msgstr ""
|
908 |
+
"特定の列は、WPすべてのインポートで再インポートすることを可能にするために、あ"
|
909 |
+
"なたのファイルに存在することが必要とされています。これらの列は表示されませ"
|
910 |
+
"ん。 WPすべてのエクスポートを使用してファイルを再エクスポートし、それを編集す"
|
911 |
+
"るときに任意の列を削除しないでください。その後、再インポートが正常に動作しま"
|
912 |
+
"す。"
|
913 |
+
|
914 |
+
#: controllers/admin/import.php:309
|
915 |
+
msgid ""
|
916 |
+
"The import template you are using requires User Import Add-On.<br/><a href="
|
917 |
+
"\"http://www.wpallimport.com/add-ons/user-import/?utm_source=wordpress."
|
918 |
+
"org&utm_medium=wpai-import-template&utm_campaign=free+wp+all+export+plugin\" "
|
919 |
+
"target=\"_blank\">Purchase the User Import Add-On</a>"
|
920 |
+
msgstr ""
|
921 |
+
"あなたが使用しているインポートテンプレートは、ユーザーのインポートアドオンが"
|
922 |
+
"必要です。 <br/> <a href=\"http://www.wpallimport.com/add-ons/user-import/?"
|
923 |
+
"utm_source=wordpress.org&utm_medium=wpai-import-template&utm_campaign=free "
|
924 |
+
"wp all export plugin\" target=\"_blank\">ユーザーのインポートアドオンを購入</"
|
925 |
+
"a>"
|
926 |
+
|
927 |
+
#: controllers/admin/import.php:384
|
928 |
+
msgid "Unable to download feed resource."
|
929 |
+
msgstr "フィードリソースをダウンロードできません。"
|
930 |
+
|
931 |
+
#: controllers/admin/import.php:461 controllers/admin/import.php:485
|
932 |
+
#: controllers/admin/settings.php:705
|
933 |
+
msgid ""
|
934 |
+
"Please confirm you are importing a valid feed.<br/> Often, feed providers "
|
935 |
+
"distribute feeds with invalid data, improperly wrapped HTML, line breaks "
|
936 |
+
"where they should not be, faulty character encodings, syntax errors in the "
|
937 |
+
"XML, and other issues.<br/><br/>WP All Import has checks in place to "
|
938 |
+
"automatically fix some of the most common problems, but we can’t catch every "
|
939 |
+
"single one.<br/><br/>It is also possible that there is a bug in WP All "
|
940 |
+
"Import, and the problem is not with the feed.<br/><br/>If you need "
|
941 |
+
"assistance, please contact support – <a href=\"mailto:support@wpallimport.com"
|
942 |
+
"\">support@wpallimport.com</a> – with your XML/CSV file. We will identify "
|
943 |
+
"the problem and release a bug fix if necessary."
|
944 |
+
msgstr ""
|
945 |
+
"多くの場合、フィードプロバイダは、無効なデータ、不適切にラップされたHTML、不"
|
946 |
+
"適切な行の改行、誤った文字エンコード、XMLの構文エラーなどのフィードを配布しま"
|
947 |
+
"す。< br /> <br/> WPすべてのインポートでは、最も一般的な問題のいくつかを自動"
|
948 |
+
"的に修正するためのチェックが行われていますが、すべての問題を自動的に検出する"
|
949 |
+
"ことはできません。 あなたが援助を必要とする場合は、サポートに連絡してくださ"
|
950 |
+
"い - <a href=\"mailto:support@wpallimport.com\"> @ wpallimportをサポートして"
|
951 |
+
"ください。 com </a> - あなたのXML / CSVファイルで。 問題を特定し、必要に応じ"
|
952 |
+
"てバグ修正をリリースします。"
|
953 |
+
|
954 |
+
#: controllers/admin/import.php:480
|
955 |
+
msgid ""
|
956 |
+
"WP All Import unable to detect file type.<br/><br/>WP All Import not able to "
|
957 |
+
"determine what type of file you are importing. Make sure your file extension "
|
958 |
+
"is correct for the file type you are importing.<br/> Please choose the "
|
959 |
+
"correct file type from the dropdown below, or try adding &type=xml or "
|
960 |
+
"&type=csv to the end of the URL, for example http://example.com/export-"
|
961 |
+
"products.php?&type=xml"
|
962 |
+
msgstr ""
|
963 |
+
"WP All Importでファイルタイプを検出できません。<br/> <br/> WP All Importは、"
|
964 |
+
"インポートするファイルのタイプを特定できません。 ファイルの拡張子が、インポー"
|
965 |
+
"トするファイルの種類に合っていることを確認してください。<br/>下のドロップダウ"
|
966 |
+
"ンから正しいファイルの種類を選択するか、http://example.com/export-products."
|
967 |
+
"php?&type=xml のように &type=xml または &type=csv をURLの末尾に追加してみてく"
|
968 |
+
"ださい "
|
969 |
+
|
970 |
+
#: controllers/admin/import.php:513
|
971 |
+
msgid "No elements selected"
|
972 |
+
msgstr "要素が選択されていません"
|
973 |
+
|
974 |
+
#: controllers/admin/import.php:518 controllers/admin/import.php:747
|
975 |
+
msgid ""
|
976 |
+
"Your XPath is not valid.<br/><br/>Click \"get default XPath\" to get the "
|
977 |
+
"default XPath."
|
978 |
+
msgstr ""
|
979 |
+
"あなたのXPathは無効です。<br/> <br/>デフォルトのXPathを取得するには、「デフォ"
|
980 |
+
"ルトのXPathを取得」をクリックします。"
|
981 |
+
|
982 |
+
#: controllers/admin/import.php:522 controllers/admin/import.php:753
|
983 |
+
msgid "XPath must match only elements"
|
984 |
+
msgstr "XPathは要素のみと一致する必要があります"
|
985 |
+
|
986 |
+
#: controllers/admin/import.php:552
|
987 |
+
msgid ""
|
988 |
+
"Warning: No matching elements found for XPath expression from the import "
|
989 |
+
"being updated. It probably means that new XML file has different format. "
|
990 |
+
"Though you can update XPath, procceed only if you sure about update "
|
991 |
+
"operation being valid."
|
992 |
+
msgstr ""
|
993 |
+
"警告:インポートが更新されてから、XPath式が見つかりません整合素子。これはおそ"
|
994 |
+
"らく、新しいXMLファイルは、異なるフォーマットを有することを意味します。あなた"
|
995 |
+
"はXPathを更新することができますが、唯一の更新操作が有効であることについてよく"
|
996 |
+
"わから場合procceed。"
|
997 |
+
|
998 |
+
#: controllers/admin/import.php:594 controllers/admin/import.php:740
|
999 |
+
msgid ""
|
1000 |
+
"Your XPath is empty.<br/><br/>Please enter an XPath expression, or click "
|
1001 |
+
"\"get default XPath\" to get the default XPath."
|
1002 |
+
msgstr ""
|
1003 |
+
"あなたのXPathは空です。 <br/><br/> XPath式を入力するか、デフォルトのXPathを取"
|
1004 |
+
"得するには、「取得デフォルトのXPath」をクリックしてください。"
|
1005 |
+
|
1006 |
+
#: controllers/admin/import.php:749
|
1007 |
+
msgid "No matching variations found for XPath specified"
|
1008 |
+
msgstr "XPathのが見つかりませマッチングバリエーションが指定されていません"
|
1009 |
+
|
1010 |
+
#: controllers/admin/import.php:990 controllers/admin/import.php:1006
|
1011 |
+
#: controllers/admin/import.php:1137
|
1012 |
+
msgid ""
|
1013 |
+
"WP All Import lost track of where you are.<br/><br/>Maybe you cleared your "
|
1014 |
+
"cookies or maybe it is just a temporary issue on your web host's end.<br/>If "
|
1015 |
+
"you can't do an import without seeing this error, change your session "
|
1016 |
+
"settings on the All Import -> Settings page."
|
1017 |
+
msgstr ""
|
1018 |
+
"WP All Importはあなたの現在の場所を失ってしまいました。<br/> <br/>あなたの"
|
1019 |
+
"クッキーをクリアしたのかもしれないし、あなたのウェブホストの終わりに一時的な"
|
1020 |
+
"問題かもしれません。 このエラーが表示されずにインポートするには、[すべてのイ"
|
1021 |
+
"ンポート - >設定]ページでセッション設定を変更します。"
|
1022 |
+
|
1023 |
+
#: controllers/admin/import.php:992
|
1024 |
+
msgid "<strong>Warning</strong>: your title is blank."
|
1025 |
+
msgstr "<strong>警告:</strong> あなたのタイトルは空白です。"
|
1026 |
+
|
1027 |
+
#: controllers/admin/import.php:997
|
1028 |
+
msgid "<strong>Warning</strong>: resulting post title is empty"
|
1029 |
+
msgstr "<strong>警告</strong>: 結果の投稿タイトルは空です"
|
1030 |
+
|
1031 |
+
#: controllers/admin/import.php:1002
|
1032 |
+
#, php-format
|
1033 |
+
msgid "Error parsing title: %s"
|
1034 |
+
msgstr "タイトルの解析中にエラーが発生しました: %s"
|
1035 |
+
|
1036 |
+
#: controllers/admin/import.php:1008
|
1037 |
+
msgid "<strong>Warning</strong>: your content is blank."
|
1038 |
+
msgstr "<strong>警告</strong>: あなたのコンテンツは空白です。"
|
1039 |
+
|
1040 |
+
#: controllers/admin/import.php:1013
|
1041 |
+
msgid "<strong>Warning</strong>: resulting post content is empty"
|
1042 |
+
msgstr "<strong>警告</strong>: 結果の投稿コンテンツは空です"
|
1043 |
+
|
1044 |
+
#: controllers/admin/import.php:1018
|
1045 |
+
#, php-format
|
1046 |
+
msgid "Error parsing content: %s"
|
1047 |
+
msgstr "コンテンツの解析中にエラーが発生しました: %s"
|
1048 |
+
|
1049 |
+
#: controllers/admin/import.php:1157 controllers/admin/import.php:1313
|
1050 |
+
#: controllers/admin/import.php:1446
|
1051 |
+
#, php-format
|
1052 |
+
msgid "Error parsing: %s"
|
1053 |
+
msgstr "エラー解析: %s"
|
1054 |
+
|
1055 |
+
#: controllers/admin/import.php:1269 controllers/admin/import.php:1425
|
1056 |
+
msgid "Error parsing: String could not be parsed as XML"
|
1057 |
+
msgstr "エラー解析:文字列をXMLとして解析できませんでした"
|
1058 |
+
|
1059 |
+
#: controllers/admin/import.php:1310 controllers/admin/import.php:1443
|
1060 |
+
msgid "There is no data to preview"
|
1061 |
+
msgstr "プレビューするデータはありません"
|
1062 |
+
|
1063 |
+
#: controllers/admin/import.php:1506
|
1064 |
+
#, php-format
|
1065 |
+
msgid "You've reached your max_input_vars limit of %d. Please increase this."
|
1066 |
+
msgstr "max_input_varsの上限(%d)に達しました。 これを増やしてください。"
|
1067 |
+
|
1068 |
+
#: controllers/admin/import.php:1563 views/admin/import/template.php:71
|
1069 |
+
msgid "Excerpt"
|
1070 |
+
msgstr "抜粋"
|
1071 |
+
|
1072 |
+
#: controllers/admin/import.php:1567 controllers/admin/import.php:1571
|
1073 |
+
#: models/import/record.php:1303
|
1074 |
+
#: views/admin/import/options/_reimport_options.php:143
|
1075 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:106
|
1076 |
+
#: views/admin/import/template.php:116
|
1077 |
+
msgid "Images"
|
1078 |
+
msgstr "画像"
|
1079 |
+
|
1080 |
+
#: controllers/admin/import.php:1577
|
1081 |
+
msgid "Images meta "
|
1082 |
+
msgstr "画像メタ"
|
1083 |
+
|
1084 |
+
#: controllers/admin/import.php:1592
|
1085 |
+
msgid "Custom Field Name"
|
1086 |
+
msgstr "カスタムフィールド名"
|
1087 |
+
|
1088 |
+
#: controllers/admin/import.php:1596
|
1089 |
+
msgid "Custom Field Value"
|
1090 |
+
msgstr "カスタムフィールド値"
|
1091 |
+
|
1092 |
+
#: controllers/admin/import.php:1609
|
1093 |
+
msgid "Both name and value must be set for all woocommerce attributes"
|
1094 |
+
msgstr "名前と値の両方がすべてのwoocommerce属性に設定する必要があります"
|
1095 |
+
|
1096 |
+
#: controllers/admin/import.php:1612
|
1097 |
+
msgid "Attribute Field Name"
|
1098 |
+
msgstr "属性フィールド名"
|
1099 |
+
|
1100 |
+
#: controllers/admin/import.php:1615
|
1101 |
+
msgid "Attribute Field Value"
|
1102 |
+
msgstr "属性フィールドの値"
|
1103 |
+
|
1104 |
+
#: controllers/admin/import.php:1626
|
1105 |
+
msgid "Tags"
|
1106 |
+
msgstr "タグ"
|
1107 |
+
|
1108 |
+
#: controllers/admin/import.php:1629 views/admin/history/index.php:33
|
1109 |
+
msgid "Date"
|
1110 |
+
msgstr "日付"
|
1111 |
+
|
1112 |
+
#: controllers/admin/import.php:1631 controllers/admin/import.php:1632
|
1113 |
+
msgid "Start Date"
|
1114 |
+
msgstr "開始日"
|
1115 |
+
|
1116 |
+
#: controllers/admin/import.php:1666
|
1117 |
+
msgid "Template updated"
|
1118 |
+
msgstr "テンプレートアップデート"
|
1119 |
+
|
1120 |
+
#: controllers/admin/import.php:1766
|
1121 |
+
#, php-format
|
1122 |
+
msgid "%s template is invalid: %s"
|
1123 |
+
msgstr "%s のテンプレートは無効: %s"
|
1124 |
+
|
1125 |
+
#: controllers/admin/import.php:1878
|
1126 |
+
msgid ""
|
1127 |
+
"Records to import must be specified or uncheck `Import only specified "
|
1128 |
+
"records` option to process all records"
|
1129 |
+
msgstr ""
|
1130 |
+
"すべてのレコードを処理するには、インポートするレコードを指定するか、「特定の"
|
1131 |
+
"レコードのみをインポートする」オプションをオフにする必要があります"
|
1132 |
+
|
1133 |
+
#: controllers/admin/import.php:1883
|
1134 |
+
msgid "Wrong format of `Import only specified records` value"
|
1135 |
+
msgstr ""
|
1136 |
+
"`指定されたレコードだけをインポートする 'ための値の形式が間違っています"
|
1137 |
+
|
1138 |
+
#: controllers/admin/import.php:1886
|
1139 |
+
msgid ""
|
1140 |
+
"One of the numbers in `Import only specified records` value exceeds record "
|
1141 |
+
"quantity in XML file"
|
1142 |
+
msgstr ""
|
1143 |
+
"`インポートのみ指定レコード`の値の数字の一つは、XMLファイル内のレコード数を超"
|
1144 |
+
"えます"
|
1145 |
+
|
1146 |
+
#: controllers/admin/import.php:1893
|
1147 |
+
msgid ""
|
1148 |
+
"Expression for `Post Unique Key` must be set, use the same expression as "
|
1149 |
+
"specified for post title if you are not sure what to put there"
|
1150 |
+
msgstr ""
|
1151 |
+
"`投稿ユニーク Key`の表示を設定する必要があります。何を置くべきか分からない場"
|
1152 |
+
"合は、ポストタイトルに指定されているのと同じ式を使用しなければなりません"
|
1153 |
+
|
1154 |
+
#: controllers/admin/import.php:1895
|
1155 |
+
msgid "Post Unique Key"
|
1156 |
+
msgstr "投稿ユニーク Key"
|
1157 |
+
|
1158 |
+
#: controllers/admin/import.php:1899
|
1159 |
+
msgid "Custom field name must be specified."
|
1160 |
+
msgstr "カスタムフィールド名を指定する必要があります。"
|
1161 |
+
|
1162 |
+
#: controllers/admin/import.php:1901
|
1163 |
+
msgid "Custom field value must be specified."
|
1164 |
+
msgstr "カスタムフィールド値を指定する必要があります。"
|
1165 |
+
|
1166 |
+
#: controllers/admin/import.php:1905
|
1167 |
+
msgid "Post ID must be specified."
|
1168 |
+
msgstr "投稿 ID を指定する必要があります。"
|
1169 |
+
|
1170 |
+
#: controllers/admin/import.php:1909
|
1171 |
+
msgid "Term name must be specified."
|
1172 |
+
msgstr "用語の名前を指定する必要があります。"
|
1173 |
+
|
1174 |
+
#: controllers/admin/import.php:1912
|
1175 |
+
msgid "Term slug must be specified."
|
1176 |
+
msgstr "用語スラグを指定する必要があります。"
|
1177 |
+
|
1178 |
+
#: controllers/admin/import.php:1991
|
1179 |
+
msgid "WP All Import doesn't support this import type."
|
1180 |
+
msgstr "WP All Import はこのインポートタイプをサポートしていません。"
|
1181 |
+
|
1182 |
+
#: controllers/admin/import.php:2039
|
1183 |
+
msgid ""
|
1184 |
+
"<strong>Warning:</strong> this file does not have the same structure as the "
|
1185 |
+
"last file associated with this import. WP All Import won't be able to import "
|
1186 |
+
"this file with your current settings. Probably you'll need to adjust your "
|
1187 |
+
"XPath in the \"Configure Advanced Settings\" box below, and reconfigure your "
|
1188 |
+
"import by clicking \"Edit\" on the Manage Imports page."
|
1189 |
+
msgstr ""
|
1190 |
+
"<strong>警告:</strong>このファイルは、このインポートに関連付けられた最後の"
|
1191 |
+
"ファイルと同じ構造を持っていません。 WPすべてのインポートは、あなたの現在の設"
|
1192 |
+
"定でこのファイルをインポートすることはできません。おそらくあなたは、以下の"
|
1193 |
+
"「設定詳細設定」ボックスにXPathを調整し、管理インポートページの「編集」をク"
|
1194 |
+
"リックして、インポートを再設定する必要があります。"
|
1195 |
+
|
1196 |
+
#: controllers/admin/import.php:2084
|
1197 |
+
msgid "Root element not found for uploaded feed."
|
1198 |
+
msgstr "ルート要素は、アップロードされたフィードが見つかりません。"
|
1199 |
+
|
1200 |
+
#: controllers/admin/import.php:2136
|
1201 |
+
msgid "Import updated"
|
1202 |
+
msgstr "インポートを更新"
|
1203 |
+
|
1204 |
+
#: controllers/admin/import.php:2136
|
1205 |
+
msgid "Import created"
|
1206 |
+
msgstr "インポートを作成"
|
1207 |
+
|
1208 |
+
#: controllers/admin/import.php:2238
|
1209 |
+
msgid "Configuration updated"
|
1210 |
+
msgstr "設定が更新されました"
|
1211 |
+
|
1212 |
+
#: controllers/admin/import.php:2417 controllers/admin/import.php:2737
|
1213 |
+
#: controllers/admin/import.php:2876
|
1214 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:7
|
1215 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:6
|
1216 |
+
#: views/admin/import/template/_custom_fields_template.php:6
|
1217 |
+
#: views/admin/import/template/_term_meta_template.php:6
|
1218 |
+
#: views/admin/import/template/_term_other_template.php:6
|
1219 |
+
#: views/admin/manage/delete.php:45 views/admin/manage/index.php:284
|
1220 |
+
msgid "Taxonomy Terms"
|
1221 |
+
msgstr "分類規則"
|
1222 |
+
|
1223 |
+
#: controllers/admin/import.php:2443 controllers/admin/import.php:2745
|
1224 |
+
#: controllers/admin/import.php:2883 models/import/record.php:650
|
1225 |
+
#, php-format
|
1226 |
+
msgid "%d %s created %d updated %d deleted %d skipped"
|
1227 |
+
msgstr ""
|
1228 |
+
"%d 件の %s が作成されました。 %d 個は更新され %d 個は削除され %d 個はスキップ"
|
1229 |
+
"されました"
|
1230 |
+
|
1231 |
+
#: controllers/admin/import.php:2890
|
1232 |
+
msgid "Canceled"
|
1233 |
+
msgstr "キャンセル済み"
|
1234 |
+
|
1235 |
+
#: controllers/admin/import.php:2890
|
1236 |
+
msgid "Complete"
|
1237 |
+
msgstr "完了"
|
1238 |
+
|
1239 |
+
#: controllers/admin/license.php:43
|
1240 |
+
msgid "Licenses saved"
|
1241 |
+
msgstr "ライセンス保存"
|
1242 |
+
|
1243 |
+
#: controllers/admin/manage.php:257
|
1244 |
+
msgid ""
|
1245 |
+
"The other two files in this zip are the export file containing all of your "
|
1246 |
+
"data and the import template for WP All Import. \n"
|
1247 |
+
"\n"
|
1248 |
+
"To import this data, create a new import with WP All Import and upload this "
|
1249 |
+
"zip file."
|
1250 |
+
msgstr ""
|
1251 |
+
"この zip ファイルに他の 2 つのファイルは、WP をすべてインポートのすべてのあな"
|
1252 |
+
"たのデータとテンプレートのインポートを含むエクスポート ファイルです。\n"
|
1253 |
+
"\n"
|
1254 |
+
"このデータをインポートするには、WP をすべてインポートと新しいインポートを作成"
|
1255 |
+
"し、この zip ファイルをアップロードします。"
|
1256 |
+
|
1257 |
+
#: controllers/admin/manage.php:312 views/admin/manage/index.php:272
|
1258 |
+
msgid "Import canceled"
|
1259 |
+
msgstr "インポートがキャンセル"
|
1260 |
+
|
1261 |
+
#: controllers/admin/manage.php:377
|
1262 |
+
msgid ""
|
1263 |
+
"This import appears to be using FTP. Unfortunately WP All Import no longer "
|
1264 |
+
"supports the FTP protocol. Please contact <a href=\"mailto:"
|
1265 |
+
"support@wpallimport.com\">support@wpallimport.com</a> if you have any "
|
1266 |
+
"questions."
|
1267 |
+
msgstr ""
|
1268 |
+
"このインポートはFTPを使用しているようです。残念なことにWP All ImportはFTPプロ"
|
1269 |
+
"トコルをサポートしなくなりました。ご不明な点がございましたら、<a href="
|
1270 |
+
"\"mailto:support@wpallimport.com\"> support@wpallimport.com </a>までご連絡く"
|
1271 |
+
"ださい。"
|
1272 |
+
|
1273 |
+
#: controllers/admin/manage.php:477
|
1274 |
+
msgid ""
|
1275 |
+
"No matching elements found for Root element and XPath expression specified"
|
1276 |
+
msgstr "ルート要素とXPath式が一致する要素が見つかりません"
|
1277 |
+
|
1278 |
+
#: controllers/admin/manage.php:573
|
1279 |
+
msgid "File does not exists."
|
1280 |
+
msgstr "ファイルが存在しません。"
|
1281 |
+
|
1282 |
+
#: controllers/admin/manage.php:652 views/admin/manage/bulk.php:10
|
1283 |
+
msgid "import"
|
1284 |
+
msgid_plural "imports"
|
1285 |
+
msgstr[0] "インポート"
|
1286 |
+
msgstr[1] "インポート"
|
1287 |
+
|
1288 |
+
#: controllers/admin/settings.php:60
|
1289 |
+
msgid "History File Count must be a non-negative integer"
|
1290 |
+
msgstr "履歴ファイル数は、負でない整数でなければなりません"
|
1291 |
+
|
1292 |
+
#: controllers/admin/settings.php:63
|
1293 |
+
msgid "History Age must be a non-negative integer"
|
1294 |
+
msgstr "履歴経年は非負整数でなければなりません"
|
1295 |
+
|
1296 |
+
#: controllers/admin/settings.php:83
|
1297 |
+
msgid "Settings saved"
|
1298 |
+
msgstr "設定保存"
|
1299 |
+
|
1300 |
+
#: controllers/admin/settings.php:114
|
1301 |
+
msgid "Unknown File extension. Only txt files are permitted"
|
1302 |
+
msgstr "不明なファイルの拡張子。唯一のTXTファイルが許可されています"
|
1303 |
+
|
1304 |
+
#: controllers/admin/settings.php:127
|
1305 |
+
#, php-format
|
1306 |
+
msgid "%d template imported"
|
1307 |
+
msgid_plural "%d templates imported"
|
1308 |
+
msgstr[0] "%d テンプレートのインポート"
|
1309 |
+
msgstr[1] "%d テンプレートのインポート"
|
1310 |
+
|
1311 |
+
#: controllers/admin/settings.php:129
|
1312 |
+
msgid "Wrong imported data format"
|
1313 |
+
msgstr "間違ってインポートされたデータ形式"
|
1314 |
+
|
1315 |
+
#: controllers/admin/settings.php:131
|
1316 |
+
msgid "File is empty or doesn't exests"
|
1317 |
+
msgstr "ファイルが空または存在しません"
|
1318 |
+
|
1319 |
+
#: controllers/admin/settings.php:134
|
1320 |
+
msgid "Undefined entry!"
|
1321 |
+
msgstr "未定義のエントリ!"
|
1322 |
+
|
1323 |
+
#: controllers/admin/settings.php:136
|
1324 |
+
msgid "Please select file."
|
1325 |
+
msgstr "ファイルを選択してください。"
|
1326 |
+
|
1327 |
+
#: controllers/admin/settings.php:142
|
1328 |
+
msgid "Templates must be selected"
|
1329 |
+
msgstr "テンプレートを選択する必要があります"
|
1330 |
+
|
1331 |
+
#: controllers/admin/settings.php:151
|
1332 |
+
#, php-format
|
1333 |
+
msgid "%d template deleted"
|
1334 |
+
msgid_plural "%d templates deleted"
|
1335 |
+
msgstr[0] "%d テンプレートは削除されました"
|
1336 |
+
msgstr[1] "%d テンプレートは削除されました"
|
1337 |
+
|
1338 |
+
#: controllers/admin/settings.php:279
|
1339 |
+
msgid "Files not found"
|
1340 |
+
msgstr "ファイルが見つかりません"
|
1341 |
+
|
1342 |
+
#: controllers/admin/settings.php:287
|
1343 |
+
msgid "Clean Up has been successfully completed."
|
1344 |
+
msgstr "クリーンアップが正常に完了しました。"
|
1345 |
+
|
1346 |
+
#: controllers/admin/settings.php:445
|
1347 |
+
msgid "Uploads folder is not writable."
|
1348 |
+
msgstr "アップロードフォルダは書き込み可能ではありません。"
|
1349 |
+
|
1350 |
+
#: controllers/admin/settings.php:502
|
1351 |
+
msgid "Failed to open temp directory."
|
1352 |
+
msgstr "一時ディレクトリを開くことができませんでした。"
|
1353 |
+
|
1354 |
+
#: controllers/admin/settings.php:527 controllers/admin/settings.php:552
|
1355 |
+
msgid "Failed to open input stream."
|
1356 |
+
msgstr "入力ストリームを開くことができませんでした。"
|
1357 |
+
|
1358 |
+
#: controllers/admin/settings.php:534 controllers/admin/settings.php:559
|
1359 |
+
msgid "Failed to open output stream."
|
1360 |
+
msgstr "出力ストリームを開くことができませんでした。"
|
1361 |
+
|
1362 |
+
#: controllers/admin/settings.php:538
|
1363 |
+
msgid "Failed to move uploaded file."
|
1364 |
+
msgstr "アップロードされたファイルの移動に失敗しました。"
|
1365 |
+
|
1366 |
+
#: controllers/admin/settings.php:713
|
1367 |
+
#: views/admin/import/options/_import_file.php:51
|
1368 |
+
#, php-format
|
1369 |
+
msgid "This %s file has errors and is not valid."
|
1370 |
+
msgstr "ファイル %s にエラーと有効ではありません。"
|
1371 |
+
|
1372 |
+
#: filters/pmxi_custom_types.php:8
|
1373 |
+
msgid "WooCommerce Products"
|
1374 |
+
msgstr "WooCommerce 商品リスト"
|
1375 |
+
|
1376 |
+
#: filters/pmxi_custom_types.php:9
|
1377 |
+
msgid "WooCommerce Orders"
|
1378 |
+
msgstr "WooCommerceの注文"
|
1379 |
+
|
1380 |
+
#: filters/pmxi_custom_types.php:10
|
1381 |
+
msgid "WooCommerce Coupons"
|
1382 |
+
msgstr "WooCommerce クーポン"
|
1383 |
+
|
1384 |
+
#: helpers/import_custom_meta_box.php:25
|
1385 |
+
msgid ""
|
1386 |
+
"Custom fields can be used to add extra metadata to a post that you can <a "
|
1387 |
+
"href=\"http://codex.wordpress.org/Using_Custom_Fields\" target=\"_blank"
|
1388 |
+
"\">use in your theme</a>."
|
1389 |
+
msgstr ""
|
1390 |
+
"カスタムフィールドを使用して、<a href=\"http://codex.wordpress.org/"
|
1391 |
+
"Using_Custom_Fields\" target=\"_blank\">あなたのテーマで使用できる</a>投稿に"
|
1392 |
+
"特別なメタデータを追加することができます。"
|
1393 |
+
|
1394 |
+
#: helpers/reverse_taxonomies_html.php:18
|
1395 |
+
#: views/admin/import/template/_taxonomies_template.php:41
|
1396 |
+
#: views/admin/import/template/_taxonomies_template.php:63
|
1397 |
+
#: views/admin/import/template/_taxonomies_template.php:97
|
1398 |
+
#: views/admin/import/template/_taxonomies_template.php:107
|
1399 |
+
#: views/admin/import/template/_taxonomies_template.php:116
|
1400 |
+
#: views/admin/import/template/_taxonomies_template.php:164
|
1401 |
+
#: views/admin/import/template/_taxonomies_template.php:182
|
1402 |
+
#: views/admin/import/template/_taxonomies_template.php:189
|
1403 |
+
#: views/admin/import/template/_taxonomies_template.php:201
|
1404 |
+
msgid "Assign post to the taxonomy."
|
1405 |
+
msgstr "投稿をタクソノミーに割り当てます。"
|
1406 |
+
|
1407 |
+
#: helpers/wp_all_import_addon_notifications.php:120
|
1408 |
+
#, php-format
|
1409 |
+
msgid ""
|
1410 |
+
"Make imports easier with the <strong>Advanced Custom Fields Add-On</strong> "
|
1411 |
+
"for WP All Import: <a href=\"%s\" target=\"_blank\">Read More</a>"
|
1412 |
+
msgstr ""
|
1413 |
+
"WP All Importの<strong>高度なカスタムフィールドアドオン</ strong>でインポート"
|
1414 |
+
"を簡単にする:<a href=\"%s\" target=\"_blank\">続きを読む</a>"
|
1415 |
+
|
1416 |
+
#: helpers/wp_all_import_addon_notifications.php:136
|
1417 |
+
msgid "WP All Export"
|
1418 |
+
msgstr "WP すべてエクスポート"
|
1419 |
+
|
1420 |
+
#: helpers/wp_all_import_addon_notifications.php:137
|
1421 |
+
msgid "Export anything in WordPress to CSV, XML, or Excel."
|
1422 |
+
msgstr "ワードプレスで何かを CSV、XML、または Excel にエクスポートします。"
|
1423 |
+
|
1424 |
+
#: helpers/wp_all_import_addon_notifications.php:140
|
1425 |
+
#: views/admin/import/confirm.php:53 views/admin/import/index.php:356
|
1426 |
+
#: views/admin/import/index.php:373 views/admin/import/options.php:70
|
1427 |
+
#: views/admin/import/options/_import_file.php:40
|
1428 |
+
#: views/admin/import/options/_import_file.php:57
|
1429 |
+
#: views/admin/import/process.php:86 views/admin/import/process.php:120
|
1430 |
+
msgid "Read More"
|
1431 |
+
msgstr "詳細表示"
|
1432 |
+
|
1433 |
+
#: helpers/wp_all_import_addon_notifications.php:153
|
1434 |
+
#, php-format
|
1435 |
+
msgid ""
|
1436 |
+
"Make imports easier with the <strong>free %s Add-On</strong> for WP All "
|
1437 |
+
"Import: <a href=\"%s\" target=\"_blank\">Get Add-On</a>"
|
1438 |
+
msgstr ""
|
1439 |
+
"WP all Importの<strong>無料%sアドオン</ strong>を使用してインポートを簡単にす"
|
1440 |
+
"る:<a href=\"%s\" target=\"_blank\">アドオンを取得する</a>"
|
1441 |
+
|
1442 |
+
#: helpers/wp_all_import_is_json.php:13
|
1443 |
+
msgid "Maximum stack depth exceeded"
|
1444 |
+
msgstr "最大スタック深度を超えました"
|
1445 |
+
|
1446 |
+
#: helpers/wp_all_import_is_json.php:16
|
1447 |
+
msgid "Underflow or the modes mismatch"
|
1448 |
+
msgstr "アンダーフローまたはモードの不一致"
|
1449 |
+
|
1450 |
+
#: helpers/wp_all_import_is_json.php:19
|
1451 |
+
msgid "Unexpected control character found"
|
1452 |
+
msgstr "予期しない制御文字が見つかりました"
|
1453 |
+
|
1454 |
+
#: helpers/wp_all_import_is_json.php:22
|
1455 |
+
msgid "Syntax error, malformed JSON"
|
1456 |
+
msgstr "構文エラー、不正な形式のJSON"
|
1457 |
+
|
1458 |
+
#: helpers/wp_all_import_is_json.php:25
|
1459 |
+
msgid "Malformed UTF-8 characters, possibly incorrectly encoded"
|
1460 |
+
msgstr "誤ってエンコードされた可能性のある不正なUTF-8文字列"
|
1461 |
+
|
1462 |
+
#: helpers/wp_all_import_is_json.php:28
|
1463 |
+
msgid "Unknown json error"
|
1464 |
+
msgstr "不明なJSONエラー"
|
1465 |
+
|
1466 |
+
#: helpers/wp_all_import_template_notifications.php:14
|
1467 |
+
#, php-format
|
1468 |
+
msgid ""
|
1469 |
+
"The import template you are using requires the %s. If you continue without "
|
1470 |
+
"it your data may import incorrectly.<br/><br/><a href=\"%s\" target=\"_blank"
|
1471 |
+
"\">"
|
1472 |
+
msgstr ""
|
1473 |
+
"使用しているテンプレートのインポートには、%s が必要です。それせずに続行した場"
|
1474 |
+
"合、データが正しくインポート可能性があります。<br><br><a href=\"%s\" target="
|
1475 |
+
"\"_blank\"></a>"
|
1476 |
+
|
1477 |
+
#: helpers/wp_all_import_template_notifications.php:23
|
1478 |
+
msgid ""
|
1479 |
+
"The import template you are using requires the User Import Add-On. If you "
|
1480 |
+
"continue without it your data may import incorrectly.<br/><br/><a href="
|
1481 |
+
"\"http://www.wpallimport.com/add-ons/user-import/?utm_source=wordpress."
|
1482 |
+
"org&utm_medium=wpai-import-template&utm_campaign=free+wp+all+export+plugin\" "
|
1483 |
+
"target=\"_blank\">Purchase the User Import Add-On</a>."
|
1484 |
+
msgstr ""
|
1485 |
+
"使用しているインポートテンプレートには、ユーザーインポートアドオンが必要で"
|
1486 |
+
"す。あなたがそれなしで続けると、あなたのデータは間違ってインポートされる可能"
|
1487 |
+
"性があります。<br/> <br/><a href=\"http://www.wpallimport.com/add-ons/user-"
|
1488 |
+
"import/?utm_source=wordpress.org&utm_medium=wpai-import-"
|
1489 |
+
"template&utm_campaign=free+wp+all+export+plugin\" target=\"_blank\">ユーザー"
|
1490 |
+
"インポートアドオンを購入してください</a>。"
|
1491 |
+
|
1492 |
+
#: helpers/wp_all_import_template_notifications.php:27
|
1493 |
+
msgid ""
|
1494 |
+
"The import template you are using requires the WooCommerce Import Add-On. If "
|
1495 |
+
"you continue without it your data may import incorrectly.<br/><br/><a href="
|
1496 |
+
"\"http://www.wpallimport.com/woocommerce-product-import/\" target=\"_blank"
|
1497 |
+
"\">Purchase the WooCommerce Import Add-On</a>."
|
1498 |
+
msgstr ""
|
1499 |
+
"使用しているインポートテンプレートには、WooCommerceインポートアドオンが必要で"
|
1500 |
+
"す。それがなくてもデータが間違ってインポートされる可能性があります。<br/> "
|
1501 |
+
"<br/> <a href=\"http://www.wpallimport.com/woocommerce-product-import/\" "
|
1502 |
+
"target=\"_blank\"> WooCommerceインポートアドオンを購入する</a>をします。"
|
1503 |
+
|
1504 |
+
#: helpers/wp_all_import_template_notifications.php:32
|
1505 |
+
msgid ""
|
1506 |
+
"The import template you are using requires the Realia Add-On. If you "
|
1507 |
+
"continue without it your data may import incorrectly.<br/><br/><a href="
|
1508 |
+
"\"https://wordpress.org/plugins/realia-xml-csv-property-listings-import/\" "
|
1509 |
+
"target=\"_blank\">Download the Realia Add-On</a>."
|
1510 |
+
msgstr ""
|
1511 |
+
"あなたが使用しているインポートテンプレートは、実物教材アドオンが必要です。あ"
|
1512 |
+
"なたはそれなしで続行した場合、あなたのデータが間違ってインポートすることがあ"
|
1513 |
+
"ります。 <br/><br/> <a href=\"https://wordpress.org/plugins/realia-xml-csv-"
|
1514 |
+
"property-listings-import/\" target=\"_blank\">実物教材は、アドオンのダウン"
|
1515 |
+
"ロード</a> 。"
|
1516 |
+
|
1517 |
+
#: helpers/wp_all_import_template_notifications.php:39
|
1518 |
+
msgid ""
|
1519 |
+
"The import template you are using requires the WP Residence Add-On. If you "
|
1520 |
+
"continue without it your data may import incorrectly.<br/><br/><a href="
|
1521 |
+
"\"https://wordpress.org/plugins/wp-residence-add-on-for-wp-all-import/\" "
|
1522 |
+
"target=\"_blank\">Download the WP Residence Add-On</a>."
|
1523 |
+
msgstr ""
|
1524 |
+
"あなたが使用しているインポートテンプレートは、WPレジデンスアドオンが必要で"
|
1525 |
+
"す。あなたはそれなしで続行した場合、あなたのデータが間違ってインポートするこ"
|
1526 |
+
"とがあります。 <br/><br/> <a href=\"https://wordpress.org/plugins/wp-"
|
1527 |
+
"residence-add-on-for-wp-all-import/\" target=\"_blank\">ダウンロードWPレジデ"
|
1528 |
+
"ンスアドオン</a> 。"
|
1529 |
+
|
1530 |
+
#: helpers/wp_all_import_template_notifications.php:46
|
1531 |
+
msgid ""
|
1532 |
+
"The import template you are using requires the RealHomes Add-On. If you "
|
1533 |
+
"continue without it your data may import incorrectly.<br/><br/><a href="
|
1534 |
+
"\"https://wordpress.org/plugins/realhomes-xml-csv-property-listings-import/"
|
1535 |
+
"\" target=\"_blank\">Download the RealHomes Add-On</a>."
|
1536 |
+
msgstr ""
|
1537 |
+
"あなたが使用しているインポートテンプレートはRealHomesアドオンが必要です。あな"
|
1538 |
+
"たはそれなしで続行した場合、あなたのデータが間違ってインポートすることがあり"
|
1539 |
+
"ます。 <br/><br/> <a href=\"https://wordpress.org/plugins/realhomes-xml-csv-"
|
1540 |
+
"property-listings-import/\" target=\"_blank\">RealHomesは、アドオンのダウン"
|
1541 |
+
"ロード</a> 。"
|
1542 |
+
|
1543 |
+
#: helpers/wp_all_import_template_notifications.php:52
|
1544 |
+
msgid ""
|
1545 |
+
"The import template you are using requires the Jobify Add-On. If you "
|
1546 |
+
"continue without it your data may import incorrectly.<br/><br/><a href="
|
1547 |
+
"\"https://wordpress.org/plugins/jobify-xml-csv-listings-import/\" target="
|
1548 |
+
"\"_blank\">Download the Jobify Add-On</a>."
|
1549 |
+
msgstr ""
|
1550 |
+
"あなたが使用しているインポートテンプレートはJobifyアドオンが必要です。あなた"
|
1551 |
+
"はそれなしで続行した場合、あなたのデータが間違ってインポートすることがありま"
|
1552 |
+
"す。 <br/><br/> <a href=\"https://wordpress.org/plugins/jobify-xml-csv-"
|
1553 |
+
"listings-import/\" target=\"_blank\">Jobifyは、アドオンのダウンロード</a> 。"
|
1554 |
+
|
1555 |
+
#: helpers/wp_all_import_template_notifications.php:58
|
1556 |
+
msgid ""
|
1557 |
+
"The import template you are using requires the Listify Add-On. If you "
|
1558 |
+
"continue without it your data may import incorrectly.<br/><br/><a href="
|
1559 |
+
"\"https://wordpress.org/plugins/listify-xml-csv-listings-import/\" target="
|
1560 |
+
"\"_blank\">Download the Listify Add-On</a>."
|
1561 |
+
msgstr ""
|
1562 |
+
"あなたが使用しているインポートテンプレートはListifyアドオンが必要です。あなた"
|
1563 |
+
"はそれなしで続行した場合、あなたのデータが間違ってインポートすることがありま"
|
1564 |
+
"す。 <br/><br/> <a href=\"https://wordpress.org/plugins/listify-xml-csv-"
|
1565 |
+
"listings-import/\" target=\"_blank\">Listifyは、アドオンのダウンロード</a> 。"
|
1566 |
+
|
1567 |
+
#: helpers/wp_all_import_template_notifications.php:64
|
1568 |
+
msgid ""
|
1569 |
+
"The import template you are using requires the Reales WP Add-On. If you "
|
1570 |
+
"continue without it your data may import incorrectly.<br/><br/><a href="
|
1571 |
+
"\"https://wordpress.org/plugins/reales-wp-xml-csv-property-listings-import/"
|
1572 |
+
"\" target=\"_blank\">Download the Reales WP Add-On</a>."
|
1573 |
+
msgstr ""
|
1574 |
+
"あなたが使用しているインポートテンプレートはレアレスWPアドオンが必要です。あ"
|
1575 |
+
"なたはそれなしで続行した場合、あなたのデータが間違ってインポートすることがあ"
|
1576 |
+
"ります。 <br/><br/> <a href=\"https://wordpress.org/plugins/reales-wp-xml-"
|
1577 |
+
"csv-property-listings-import/\" target=\"_blank\">ダウンロードレアレスWPアド"
|
1578 |
+
"オン</a> 。"
|
1579 |
+
|
1580 |
+
#: helpers/wp_all_import_template_notifications.php:70
|
1581 |
+
msgid ""
|
1582 |
+
"The import template you are using requires the WP Job Manager Add-On. If you "
|
1583 |
+
"continue without it your data may import incorrectly.<br/><br/><a href="
|
1584 |
+
"\"https://wordpress.org/plugins/wp-job-manager-xml-csv-listings-import/\" "
|
1585 |
+
"target=\"_blank\">Download the WP Job Manager Add-On</a>."
|
1586 |
+
msgstr ""
|
1587 |
+
"あなたが使用しているインポートテンプレートは、WPジョブマネージャアドオンが必"
|
1588 |
+
"要です。あなたはそれなしで続行した場合、あなたのデータが間違ってインポートす"
|
1589 |
+
"ることがあります。 <br/><br/> <a href=\"https://wordpress.org/plugins/wp-job-"
|
1590 |
+
"manager-xml-csv-listings-import/\" target=\"_blank\">WPジョブマネージャは、ア"
|
1591 |
+
"ドオンのダウンロード</a> 。"
|
1592 |
+
|
1593 |
+
#: helpers/wp_all_import_template_notifications.php:76
|
1594 |
+
msgid ""
|
1595 |
+
"The import template you are using requires the Yoast SEO Add-On. If you "
|
1596 |
+
"continue without it your data may import incorrectly.<br/><br/><a href="
|
1597 |
+
"\"https://wordpress.org/plugins/yoast-seo-settings-xml-csv-import/\" target="
|
1598 |
+
"\"_blank\">Download the Yoast SEO Add-On</a>."
|
1599 |
+
msgstr ""
|
1600 |
+
"あなたが使用しているインポートテンプレートはYoast SEOアドオンが必要です。あな"
|
1601 |
+
"たはそれなしで続行した場合、あなたのデータが間違ってインポートすることがあり"
|
1602 |
+
"ます。 <br/><br/> <a href=\"https://wordpress.org/plugins/yoast-seo-settings-"
|
1603 |
+
"xml-csv-import/\" target=\"_blank\">Yoast SEOアドオンのダウンロード</a> 。"
|
1604 |
+
|
1605 |
+
#: helpers/wp_all_import_template_notifications.php:82
|
1606 |
+
msgid ""
|
1607 |
+
"The import template you are using requires the Listable Add-On. If you "
|
1608 |
+
"continue without it your data may import incorrectly.<br/><br/><a href="
|
1609 |
+
"\"https://wordpress.org/plugins/import-xml-csv-listings-to-listable-theme/\" "
|
1610 |
+
"target=\"_blank\">Download the Listable Add-On</a>."
|
1611 |
+
msgstr ""
|
1612 |
+
"あなたが使用しているインポートテンプレートは、リスト可能アドオンが必要です。"
|
1613 |
+
"あなたはそれなしで続行した場合、あなたのデータが間違ってインポートすることが"
|
1614 |
+
"あります。 <br/><br/> <a href=\"https://wordpress.org/plugins/import-xml-csv-"
|
1615 |
+
"listings-to-listable-theme/\" target=\"_blank\">リスト可能なアドオンのダウン"
|
1616 |
+
"ロード</a> 。"
|
1617 |
+
|
1618 |
+
#: helpers/wp_all_import_template_notifications.php:87
|
1619 |
+
msgid ""
|
1620 |
+
"The import template you are using requires an Add-On for WP All Import. If "
|
1621 |
+
"you continue without using this Add-On your data may import incorrectly."
|
1622 |
+
msgstr ""
|
1623 |
+
"あなたが使用しているインポートテンプレートは、アドオンWPすべてのインポートの"
|
1624 |
+
"ためにする必要があります。あなたはこのアドオンあなたのデータ使用せずに続行し"
|
1625 |
+
"た場合、誤ってインポートすることができます。"
|
1626 |
+
|
1627 |
+
#: helpers/wp_all_import_template_notifications.php:99
|
1628 |
+
msgid "<strong>Warning:</strong>"
|
1629 |
+
msgstr "<strong>警告:</strong>"
|
1630 |
+
|
1631 |
+
#: models/import/record.php:44
|
1632 |
+
#, php-format
|
1633 |
+
msgid ""
|
1634 |
+
"WP All Import can't read your file.<br/><br/>Probably, you are trying to "
|
1635 |
+
"import an invalid XML feed. Try opening the XML feed in a web browser "
|
1636 |
+
"(Google Chrome is recommended for opening XML files) to see if there is an "
|
1637 |
+
"error message.<br/>Alternatively, run the feed through a validator: http://"
|
1638 |
+
"validator.w3.org/<br/>99% of the time, the reason for this error is because "
|
1639 |
+
"your XML feed isn't valid.<br/>If you are 100% sure you are importing a "
|
1640 |
+
"valid XML feed, please contact WP All Import support."
|
1641 |
+
msgstr ""
|
1642 |
+
"WP All Import can't read your file.<br/><br/>Probably, you are trying to "
|
1643 |
+
"import an invalid XML feed. Try opening the XML feed in a web browser "
|
1644 |
+
"(Google Chrome is recommended for opening XML files) to see if there is an "
|
1645 |
+
"error message.<br/>Alternatively, run the feed through a validator: http://"
|
1646 |
+
"validator.w3.org/<br/>99% of the time, the reason for this error is because "
|
1647 |
+
"your XML feed isn't valid.<br/>If you are 100% sure you are importing a "
|
1648 |
+
"valid XML feed, please contact WP All Import support."
|
1649 |
+
|
1650 |
+
#: models/import/record.php:56
|
1651 |
+
msgid "Invalid XML"
|
1652 |
+
msgstr "無効なXML"
|
1653 |
+
|
1654 |
+
#: models/import/record.php:59
|
1655 |
+
msgid "Line"
|
1656 |
+
msgstr "線"
|
1657 |
+
|
1658 |
+
#: models/import/record.php:60
|
1659 |
+
msgid "Column"
|
1660 |
+
msgstr "カラム"
|
1661 |
+
|
1662 |
+
#: models/import/record.php:61
|
1663 |
+
msgid "Code"
|
1664 |
+
msgstr "コード"
|
1665 |
+
|
1666 |
+
#: models/import/record.php:72
|
1667 |
+
msgid "Required PHP components are missing."
|
1668 |
+
msgstr "必要なPHPコンポーネントが欠落しています。"
|
1669 |
+
|
1670 |
+
#: models/import/record.php:73
|
1671 |
+
msgid ""
|
1672 |
+
"WP All Import requires the SimpleXML PHP module to be installed. This is a "
|
1673 |
+
"standard feature of PHP, and is necessary for WP All Import to read the "
|
1674 |
+
"files you are trying to import.<br/>Please contact your web hosting provider "
|
1675 |
+
"and ask them to install and activate the SimpleXML PHP module."
|
1676 |
+
msgstr ""
|
1677 |
+
"WP All ImportがインストールされているのSimpleXML PHPモジュールが必要です。こ"
|
1678 |
+
"れは、PHPの標準機能であり、WPすべてのインポートは、インポートしようとしている"
|
1679 |
+
"ファイルを読み取るために必要です。 <br/>あなたのWebホスティングプロバイダに連"
|
1680 |
+
"絡し、SimpleXMLをPHPモジュールをインストールしてアクティブにするように依頼し"
|
1681 |
+
"てください。"
|
1682 |
+
|
1683 |
+
#: models/import/record.php:117
|
1684 |
+
#, php-format
|
1685 |
+
msgid ""
|
1686 |
+
"This import appears to be using FTP. Unfortunately WP All Import no longer "
|
1687 |
+
"supports the FTP protocol. Please contact <a href=\"mailto:"
|
1688 |
+
"support@wpallimport.com\">%s</a> if you have any questions."
|
1689 |
+
msgstr ""
|
1690 |
+
"このインポートはFTPを使用しているようです。残念なことにWP All ImportはFTPプロ"
|
1691 |
+
"トコルをサポートしなくなりました。ご不明な点がございましたら、<a href="
|
1692 |
+
"\"mailto:support@wpallimport.com\">%s </a>にお問い合わせください。"
|
1693 |
+
|
1694 |
+
#: models/import/record.php:267
|
1695 |
+
#, php-format
|
1696 |
+
msgid ""
|
1697 |
+
"#%s No matching elements found for Root element and XPath expression "
|
1698 |
+
"specified"
|
1699 |
+
msgstr "#%s はルート要素とXPath式が一致する要素が見つかりません"
|
1700 |
+
|
1701 |
+
#: models/import/record.php:533
|
1702 |
+
#, php-format
|
1703 |
+
msgid "Deleted missing records %s for import #%s"
|
1704 |
+
msgstr "インポート #%s の %s を記録削除された行方不明"
|
1705 |
+
|
1706 |
+
#: models/import/record.php:596
|
1707 |
+
#, php-format
|
1708 |
+
msgid "Updating stock status for missing records %s for import #%s"
|
1709 |
+
msgstr "インポート #%s の %s を記録が見つからないため在庫状況の更新"
|
1710 |
+
|
1711 |
+
#: models/import/record.php:624
|
1712 |
+
#, php-format
|
1713 |
+
msgid ""
|
1714 |
+
"import finished & cron un-triggered<br>%s %s created %s updated %s deleted "
|
1715 |
+
"%s skipped"
|
1716 |
+
msgstr ""
|
1717 |
+
"インポートが完了し、cronがトリガされました<br>%s の %s を作成した %s を更新 "
|
1718 |
+
"%s を削除 %s をスキップ"
|
1719 |
+
|
1720 |
+
#: models/import/record.php:657
|
1721 |
+
#, php-format
|
1722 |
+
msgid "Records Processed %s. Records imported %s of %s."
|
1723 |
+
msgstr "処理済みのレコード %s は %s のインポートされた %s を記録。"
|
1724 |
+
|
1725 |
+
#: models/import/record.php:676
|
1726 |
+
#, php-format
|
1727 |
+
msgid "#%s source file not found"
|
1728 |
+
msgstr "#%s のソースファイルが見つかりません"
|
1729 |
+
|
1730 |
+
#: models/import/record.php:733
|
1731 |
+
msgid "Composing titles..."
|
1732 |
+
msgstr "タイトルを構成します..."
|
1733 |
+
|
1734 |
+
#: models/import/record.php:743
|
1735 |
+
msgid "Composing parent terms..."
|
1736 |
+
msgstr "親の条件を作成する."
|
1737 |
+
|
1738 |
+
#: models/import/record.php:752
|
1739 |
+
msgid "Composing terms slug..."
|
1740 |
+
msgstr "用語スラグを構成する."
|
1741 |
+
|
1742 |
+
#: models/import/record.php:763
|
1743 |
+
msgid "Composing excerpts..."
|
1744 |
+
msgstr "抜粋の作成..."
|
1745 |
+
|
1746 |
+
#: models/import/record.php:774
|
1747 |
+
msgid "Composing statuses..."
|
1748 |
+
msgstr "ステータスを構成します..."
|
1749 |
+
|
1750 |
+
#: models/import/record.php:785
|
1751 |
+
msgid "Composing comment statuses..."
|
1752 |
+
msgstr "コメントのステータスを構成します..."
|
1753 |
+
|
1754 |
+
#: models/import/record.php:796
|
1755 |
+
msgid "Composing ping statuses..."
|
1756 |
+
msgstr "pingのステータスを構成します..."
|
1757 |
+
|
1758 |
+
#: models/import/record.php:807
|
1759 |
+
msgid "Composing post formats..."
|
1760 |
+
msgstr "投稿フォーマットを作る..."
|
1761 |
+
|
1762 |
+
#: models/import/record.php:819
|
1763 |
+
msgid "Composing duplicate indicators..."
|
1764 |
+
msgstr "重複するインジケーターを構成するには."
|
1765 |
+
|
1766 |
+
#: models/import/record.php:832
|
1767 |
+
msgid "Composing page templates..."
|
1768 |
+
msgstr "ページテンプレートの作成..."
|
1769 |
+
|
1770 |
+
#: models/import/record.php:843
|
1771 |
+
msgid "Composing post types..."
|
1772 |
+
msgstr "ポストタイプを構成します..."
|
1773 |
+
|
1774 |
+
#: models/import/record.php:857
|
1775 |
+
msgid "Composing page parent..."
|
1776 |
+
msgstr "ページの親を構成します..."
|
1777 |
+
|
1778 |
+
#: models/import/record.php:868
|
1779 |
+
msgid "Composing authors..."
|
1780 |
+
msgstr "著者を構成します..."
|
1781 |
+
|
1782 |
+
#: models/import/record.php:914
|
1783 |
+
msgid "Composing slugs..."
|
1784 |
+
msgstr "スラッグを構成します..."
|
1785 |
+
|
1786 |
+
#: models/import/record.php:923
|
1787 |
+
msgid "Composing menu order..."
|
1788 |
+
msgstr "メニューの順序を構成します..."
|
1789 |
+
|
1790 |
+
#: models/import/record.php:932
|
1791 |
+
msgid "Composing contents..."
|
1792 |
+
msgstr "コンテンツを構成します..."
|
1793 |
+
|
1794 |
+
#: models/import/record.php:945
|
1795 |
+
msgid "Composing dates..."
|
1796 |
+
msgstr "日付の作成..."
|
1797 |
+
|
1798 |
+
#: models/import/record.php:954 models/import/record.php:967
|
1799 |
+
#: models/import/record.php:973
|
1800 |
+
#, php-format
|
1801 |
+
msgid "<b>WARNING</b>: unrecognized date format `%s`, assigning current date"
|
1802 |
+
msgstr ""
|
1803 |
+
"<b>警告</b> :認識できない日付フォーマット`%s`、現在の日付を割り当てます"
|
1804 |
+
|
1805 |
+
#: models/import/record.php:993
|
1806 |
+
#, php-format
|
1807 |
+
msgid "Composing terms for `%s` taxonomy..."
|
1808 |
+
msgstr "`%s`分類のための条項を構成します..."
|
1809 |
+
|
1810 |
+
#: models/import/record.php:1205
|
1811 |
+
msgid "Composing custom parameters..."
|
1812 |
+
msgstr "カスタムパラメータの作成..."
|
1813 |
+
|
1814 |
+
#: models/import/record.php:1309 models/import/record.php:1430
|
1815 |
+
msgid "<b>WARNING</b>"
|
1816 |
+
msgstr "<b>警告</b>"
|
1817 |
+
|
1818 |
+
#: models/import/record.php:1310
|
1819 |
+
msgid ""
|
1820 |
+
"<b>WARNING</b>: No featured images will be created. Uploads folder is not "
|
1821 |
+
"found."
|
1822 |
+
msgstr ""
|
1823 |
+
"<b>警告</b>:注目画像は作成されません。 アップロードフォルダが見つかりませ"
|
1824 |
+
"ん。"
|
1825 |
+
|
1826 |
+
#: models/import/record.php:1323
|
1827 |
+
msgid "Composing URLs for "
|
1828 |
+
msgstr "URLを構成します。"
|
1829 |
+
|
1830 |
+
#: models/import/record.php:1354 models/import/record.php:1366
|
1831 |
+
#: models/import/record.php:1378 models/import/record.php:1390
|
1832 |
+
#: models/import/record.php:1402 models/import/record.php:1413
|
1833 |
+
msgid "Composing "
|
1834 |
+
msgstr "構成"
|
1835 |
+
|
1836 |
+
#: models/import/record.php:1431
|
1837 |
+
msgid "<b>WARNING</b>: No attachments will be created"
|
1838 |
+
msgstr "<b>警告</b> :添付ファイルは作成されません"
|
1839 |
+
|
1840 |
+
#: models/import/record.php:1434
|
1841 |
+
msgid "Composing URLs for attachments files..."
|
1842 |
+
msgstr "添付ファイルのURLを構成します..."
|
1843 |
+
|
1844 |
+
#: models/import/record.php:1463
|
1845 |
+
msgid "Composing unique keys..."
|
1846 |
+
msgstr "一意キーを構成します..."
|
1847 |
+
|
1848 |
+
#: models/import/record.php:1471
|
1849 |
+
msgid "Processing posts..."
|
1850 |
+
msgstr "処理の記事..."
|
1851 |
+
|
1852 |
+
#: models/import/record.php:1477
|
1853 |
+
msgid "Data parsing via add-ons..."
|
1854 |
+
msgstr "アドオンを経由しての解析データ..."
|
1855 |
+
|
1856 |
+
#: models/import/record.php:1520
|
1857 |
+
msgid "Calculate specified records to import..."
|
1858 |
+
msgstr "インポートする指定されたレコードを計算し..."
|
1859 |
+
|
1860 |
+
#: models/import/record.php:1547
|
1861 |
+
msgid "---"
|
1862 |
+
msgstr "---"
|
1863 |
+
|
1864 |
+
#: models/import/record.php:1548
|
1865 |
+
#, php-format
|
1866 |
+
msgid "Record #%s"
|
1867 |
+
msgstr "レコード #%s"
|
1868 |
+
|
1869 |
+
#: models/import/record.php:1555 models/import/record.php:1758
|
1870 |
+
msgid "<b>SKIPPED</b>: by specified records option"
|
1871 |
+
msgstr "<b>スキップ</b>:指定されたレコードオプション"
|
1872 |
+
|
1873 |
+
#: models/import/record.php:1564
|
1874 |
+
msgid "<b>ACTION</b>: pmxi_before_post_import ..."
|
1875 |
+
msgstr "<b>アクション</b>: pmxi_before_post_import ..."
|
1876 |
+
|
1877 |
+
#: models/import/record.php:1572
|
1878 |
+
msgid "<b>WARNING</b>: title is empty."
|
1879 |
+
msgstr "<b>警告</b> :タイトルは空です。"
|
1880 |
+
|
1881 |
+
#: models/import/record.php:1593
|
1882 |
+
#, php-format
|
1883 |
+
msgid "Combine all data for user %s..."
|
1884 |
+
msgstr "ユーザー%sのすべてのデータを結合する..."
|
1885 |
+
|
1886 |
+
#: models/import/record.php:1613
|
1887 |
+
#, php-format
|
1888 |
+
msgid "Combine all data for term %s..."
|
1889 |
+
msgstr "ユーザー%sのすべてのデータを結合する..."
|
1890 |
+
|
1891 |
+
#: models/import/record.php:1635
|
1892 |
+
#, php-format
|
1893 |
+
msgid "Combine all data for post `%s`..."
|
1894 |
+
msgstr "投稿 `%s`のすべてのデータを結合します..."
|
1895 |
+
|
1896 |
+
#: models/import/record.php:1664
|
1897 |
+
#, php-format
|
1898 |
+
msgid "Find corresponding article among previously imported for post `%s`..."
|
1899 |
+
msgstr ""
|
1900 |
+
"以前にインポートされた記事のうち、投稿 `%s`に対応する記事を検索します..."
|
1901 |
+
|
1902 |
+
#: models/import/record.php:1686
|
1903 |
+
#, php-format
|
1904 |
+
msgid "Duplicate post was found for post %s with unique key `%s`..."
|
1905 |
+
msgstr "重複投稿は、投稿%sの一意のキー `%s`持つために発見されました..."
|
1906 |
+
|
1907 |
+
#: models/import/record.php:1695
|
1908 |
+
#, php-format
|
1909 |
+
msgid "Duplicate post wasn't found with unique key `%s`..."
|
1910 |
+
msgstr "重複した後は、一意のキー、 `%s`で見つかりませんでした..."
|
1911 |
+
|
1912 |
+
#: models/import/record.php:1709
|
1913 |
+
#, php-format
|
1914 |
+
msgid "Find corresponding article among database for post `%s`..."
|
1915 |
+
msgstr "ポスト `%s`のためのデータベースの間で対応する記事を検索..."
|
1916 |
+
|
1917 |
+
#: models/import/record.php:1722
|
1918 |
+
#, php-format
|
1919 |
+
msgid "Duplicate post was found for post `%s`..."
|
1920 |
+
msgstr "重複投稿は、投稿 '%s' で見つかりませんでした."
|
1921 |
+
|
1922 |
+
#: models/import/record.php:1736
|
1923 |
+
#, php-format
|
1924 |
+
msgid "Duplicate post wasn't found for post `%s`..."
|
1925 |
+
msgstr "重複投稿は、ポスト '%s' に見つかりませんでした."
|
1926 |
+
|
1927 |
+
#: models/import/record.php:1779
|
1928 |
+
#, php-format
|
1929 |
+
msgid "<b>SKIPPED</b>: By filter wp_all_import_is_post_to_update `%s`"
|
1930 |
+
msgstr "<b>スキップ:</b>フィルタwp_all_import_is_post_to_updateでは`%s`"
|
1931 |
+
|
1932 |
+
#: models/import/record.php:1796
|
1933 |
+
#, php-format
|
1934 |
+
msgid "<b>SKIPPED</b>: Previously imported record found for `%s`"
|
1935 |
+
msgstr "<b>スキップ</b>: `%s`見つかり以前にインポートされたレコードを"
|
1936 |
+
|
1937 |
+
#: models/import/record.php:1825
|
1938 |
+
#, php-format
|
1939 |
+
msgid "Preserve description of already existing taxonomy term for `%s`"
|
1940 |
+
msgstr "既存の説明を保持する '%s' の分類用語"
|
1941 |
+
|
1942 |
+
#: models/import/record.php:1829
|
1943 |
+
#, php-format
|
1944 |
+
msgid "Preserve name of already existing taxonomy term for `%s`"
|
1945 |
+
msgstr "既存の名前を維持 '%s' の分類用語"
|
1946 |
+
|
1947 |
+
#: models/import/record.php:1833
|
1948 |
+
#, php-format
|
1949 |
+
msgid "Preserve slug of already existing taxonomy term for `%s`"
|
1950 |
+
msgstr "既存のスラグを保持 '%s' の分類用語"
|
1951 |
+
|
1952 |
+
#: models/import/record.php:1841
|
1953 |
+
#, php-format
|
1954 |
+
msgid "Preserve parent of already existing taxonomy term for `%s`"
|
1955 |
+
msgstr "既存の親を保持 '%s' の分類用語"
|
1956 |
+
|
1957 |
+
#: models/import/record.php:1847
|
1958 |
+
#, php-format
|
1959 |
+
msgid "Preserve taxonomies of already existing article for `%s`"
|
1960 |
+
msgstr "`%s`のための既存の記事の分類法を維持"
|
1961 |
+
|
1962 |
+
#: models/import/record.php:1852
|
1963 |
+
#, php-format
|
1964 |
+
msgid ""
|
1965 |
+
"<b>WARNING</b>: Unable to get current taxonomies for article #%d, updating "
|
1966 |
+
"with those read from XML file"
|
1967 |
+
msgstr ""
|
1968 |
+
"<b>警告</b> :XMLファイルから読み込まれたもので、更新、記事の#%dの現在の分類"
|
1969 |
+
"法を取得できません"
|
1970 |
+
|
1971 |
+
#: models/import/record.php:1869
|
1972 |
+
#, php-format
|
1973 |
+
msgid "Preserve date of already existing article for `%s`"
|
1974 |
+
msgstr "`%s`のために既存の記事の日付を保持"
|
1975 |
+
|
1976 |
+
#: models/import/record.php:1873
|
1977 |
+
#, php-format
|
1978 |
+
msgid "Preserve status of already existing article for `%s`"
|
1979 |
+
msgstr "`%s`のために既存の記事の状態を保持"
|
1980 |
+
|
1981 |
+
#: models/import/record.php:1877
|
1982 |
+
#, php-format
|
1983 |
+
msgid "Preserve content of already existing article for `%s`"
|
1984 |
+
msgstr "`%s`のための既存の記事の内容を保存します"
|
1985 |
+
|
1986 |
+
#: models/import/record.php:1881
|
1987 |
+
#, php-format
|
1988 |
+
msgid "Preserve title of already existing article for `%s`"
|
1989 |
+
msgstr "`%s`のために既存の記事のタイトルを保持"
|
1990 |
+
|
1991 |
+
#: models/import/record.php:1885
|
1992 |
+
#, php-format
|
1993 |
+
msgid "Preserve slug of already existing article for `%s`"
|
1994 |
+
msgstr "`%s`のために既存の物品のスラグを保持"
|
1995 |
+
|
1996 |
+
#: models/import/record.php:1905
|
1997 |
+
#, php-format
|
1998 |
+
msgid "Preserve excerpt of already existing article for `%s`"
|
1999 |
+
msgstr "`%s`のために既存の記事の抜粋を保ちます"
|
2000 |
+
|
2001 |
+
#: models/import/record.php:1909
|
2002 |
+
#, php-format
|
2003 |
+
msgid "Preserve menu order of already existing article for `%s`"
|
2004 |
+
msgstr "`%s`のために既存の記事のメニューの順序を保持"
|
2005 |
+
|
2006 |
+
#: models/import/record.php:1913
|
2007 |
+
#, php-format
|
2008 |
+
msgid "Preserve post parent of already existing article for `%s`"
|
2009 |
+
msgstr "`%s`のために既存の記事のポストの親を保持"
|
2010 |
+
|
2011 |
+
#: models/import/record.php:1917
|
2012 |
+
#, php-format
|
2013 |
+
msgid "Preserve post type of already existing article for `%s`"
|
2014 |
+
msgstr "既存のポストの種類を保持 '%s' の記事"
|
2015 |
+
|
2016 |
+
#: models/import/record.php:1921
|
2017 |
+
#, php-format
|
2018 |
+
msgid "Preserve comment status of already existing article for `%s`"
|
2019 |
+
msgstr "既存の注釈のステータスを保持する '%s' の記事"
|
2020 |
+
|
2021 |
+
#: models/import/record.php:1925
|
2022 |
+
#, php-format
|
2023 |
+
msgid "Preserve post author of already existing article for `%s`"
|
2024 |
+
msgstr "`%s`のために既存の記事の投稿者を保持"
|
2025 |
+
|
2026 |
+
#: models/import/record.php:1944 models/import/record.php:1963
|
2027 |
+
#, php-format
|
2028 |
+
msgid "Deleting images for `%s`"
|
2029 |
+
msgstr "`%s`のための削除画像"
|
2030 |
+
|
2031 |
+
#: models/import/record.php:1958
|
2032 |
+
#, php-format
|
2033 |
+
msgid "Deleting attachments for `%s`"
|
2034 |
+
msgstr "`%s`のための添付ファイルを削除"
|
2035 |
+
|
2036 |
+
#: models/import/record.php:1986
|
2037 |
+
#, php-format
|
2038 |
+
msgid "Applying filter `pmxi_article_data` for `%s`"
|
2039 |
+
msgstr "`%s`のフィルタ` pmxi_article_data`を適用します"
|
2040 |
+
|
2041 |
+
#: models/import/record.php:1994
|
2042 |
+
msgid "<b>SKIPPED</b>: by do not create new posts option."
|
2043 |
+
msgstr "<b>スキップ</b>:新しい記事オプションを作成しないことで。"
|
2044 |
+
|
2045 |
+
#: models/import/record.php:2066
|
2046 |
+
#, php-format
|
2047 |
+
msgid "<b>WARNING</b>: Unable to create cloaked link for %s"
|
2048 |
+
msgstr "<b>警告</b> :%sのクロークリンクを作成することができません。"
|
2049 |
+
|
2050 |
+
#: models/import/record.php:2093
|
2051 |
+
#, php-format
|
2052 |
+
msgid "<b>SKIPPED</b>: By filter wp_all_import_is_post_to_create `%s`"
|
2053 |
+
msgstr "<b>スキップ</b>:フィルタwp_all_import_is_post_to_updateでは`%s`"
|
2054 |
+
|
2055 |
+
#: models/import/record.php:2104
|
2056 |
+
#, php-format
|
2057 |
+
msgid "<b>ERROR</b> Sorry, that email address `%s` is already used!"
|
2058 |
+
msgstr ""
|
2059 |
+
"<strong>エラー</strong>:申し訳ありませんがメールアドレス `%s` はすでに使用さ"
|
2060 |
+
"れています!"
|
2061 |
+
|
2062 |
+
#: models/import/record.php:2114 models/import/record.php:2144
|
2063 |
+
#, php-format
|
2064 |
+
msgid "<b>CREATING</b> `%s` `%s`"
|
2065 |
+
msgstr "<b>作成</b> `%s` `%s`"
|
2066 |
+
|
2067 |
+
#: models/import/record.php:2117 models/import/record.php:2147
|
2068 |
+
#, php-format
|
2069 |
+
msgid "<b>UPDATING</b> `%s` `%s`"
|
2070 |
+
msgstr "<b>更新</b> `%s` `%s`"
|
2071 |
+
|
2072 |
+
#: models/import/record.php:2130 models/import/record.php:2155
|
2073 |
+
#: models/import/record.php:2160 models/import/record.php:3357
|
2074 |
+
msgid "<b>ERROR</b>"
|
2075 |
+
msgstr "<b>エラー</b>"
|
2076 |
+
|
2077 |
+
#: models/import/record.php:2190
|
2078 |
+
#, php-format
|
2079 |
+
msgid "Associate post `%s` with current import ..."
|
2080 |
+
msgstr "現在のインポートに関連付けポスト `%s` ..."
|
2081 |
+
|
2082 |
+
#: models/import/record.php:2196
|
2083 |
+
#, php-format
|
2084 |
+
msgid "Associate post `%s` with post format %s ..."
|
2085 |
+
msgstr "投稿 `%s`を投稿形式 %s に関連付ける"
|
2086 |
+
|
2087 |
+
#: models/import/record.php:2208
|
2088 |
+
msgid "<b>CUSTOM FIELDS:</b>"
|
2089 |
+
msgstr "<b>CAMPOS PERSONALIZADOS:</b>"
|
2090 |
+
|
2091 |
+
#: models/import/record.php:2255
|
2092 |
+
#, php-format
|
2093 |
+
msgid ""
|
2094 |
+
"- Custom field %s has been deleted for `%s` attempted to `update all custom "
|
2095 |
+
"fields` setting ..."
|
2096 |
+
msgstr ""
|
2097 |
+
"- カスタムフィールド`%s`で%sがすべてのカスタムフィールドの設定'を更新しようと"
|
2098 |
+
"しましたが削除されました..."
|
2099 |
+
|
2100 |
+
#: models/import/record.php:2272
|
2101 |
+
#, php-format
|
2102 |
+
msgid ""
|
2103 |
+
"- Custom field %s has been deleted for `%s` attempted to `update only these "
|
2104 |
+
"custom fields: %s, leave rest alone` setting ..."
|
2105 |
+
msgstr ""
|
2106 |
+
" - カスタムフィールド%sが `%s`のために削除されました:`これらのカスタム"
|
2107 |
+
"フィールドのみを更新しようとしました:%sの設定残しておくだけです。..."
|
2108 |
+
|
2109 |
+
#: models/import/record.php:2290
|
2110 |
+
#, php-format
|
2111 |
+
msgid ""
|
2112 |
+
"- Custom field %s has been deleted for `%s` attempted to `leave these fields "
|
2113 |
+
"alone: %s, update all other Custom Fields` setting ..."
|
2114 |
+
msgstr ""
|
2115 |
+
"- `%s`のカスタムフィールド%sが削除されました。`これらのフィールドだけを残しま"
|
2116 |
+
"した:%s は他のすべてのカスタムフィールドの設定を更新しました。"
|
2117 |
+
|
2118 |
+
#: models/import/record.php:2360
|
2119 |
+
#, php-format
|
2120 |
+
msgid ""
|
2121 |
+
"- Custom field `%s` has been skipped attempted to record matching options ..."
|
2122 |
+
msgstr ""
|
2123 |
+
"- カスタムフィールド `%s`は、一致するオプションを記録しようとスキップされてい"
|
2124 |
+
"ます..."
|
2125 |
+
|
2126 |
+
#: models/import/record.php:2368
|
2127 |
+
msgid "- <b>ACTION</b>: pmxi_custom_field"
|
2128 |
+
msgstr "<b>アクション</b>: pmxi_custom_field"
|
2129 |
+
|
2130 |
+
#: models/import/record.php:2406
|
2131 |
+
#, php-format
|
2132 |
+
msgid "- Custom field `%s` has been updated with value `%s` for post `%s` ..."
|
2133 |
+
msgstr "- カスタムフィールド `%s`は値`ポスト `%s`の%s`で更新されています..."
|
2134 |
+
|
2135 |
+
#: models/import/record.php:2407
|
2136 |
+
msgid "- <b>ACTION</b>: pmxi_update_post_meta"
|
2137 |
+
msgstr "- <b>アクション</b>: pmxi_update_post_meta"
|
2138 |
+
|
2139 |
+
#: models/import/record.php:2448
|
2140 |
+
msgid "<b>IMAGES:</b>"
|
2141 |
+
msgstr "<b>画像:</b>"
|
2142 |
+
|
2143 |
+
#: models/import/record.php:2452
|
2144 |
+
#, php-format
|
2145 |
+
msgid "<b>ERROR</b>: Target directory %s is not writable"
|
2146 |
+
msgstr "<b>エラー</b>: ターゲットディレクトリ %s は書き込み可能ではありません"
|
2147 |
+
|
2148 |
+
#: models/import/record.php:2481
|
2149 |
+
msgid "- Keep existing and add newest images ..."
|
2150 |
+
msgstr "- 既存のままにして最新の画像を追加..."
|
2151 |
+
|
2152 |
+
#: models/import/record.php:2567
|
2153 |
+
#, php-format
|
2154 |
+
msgid "- Importing image `%s` for `%s` ..."
|
2155 |
+
msgstr "- `%s`の画像 '%s`の読み込み中..."
|
2156 |
+
|
2157 |
+
#: models/import/record.php:2595 models/import/record.php:2673
|
2158 |
+
#, php-format
|
2159 |
+
msgid "- <b>WARNING</b>: Image %s not found in media gallery."
|
2160 |
+
msgstr "-<b>警告</b>: イメージ %s メディア ギャラリー内に見つかりません。"
|
2161 |
+
|
2162 |
+
#: models/import/record.php:2599 models/import/record.php:2677
|
2163 |
+
#, php-format
|
2164 |
+
msgid "- Using existing image `%s` for post `%s` ..."
|
2165 |
+
msgstr "-ポスト '%s' を '%s' の既存のイメージを使用して."
|
2166 |
+
|
2167 |
+
#: models/import/record.php:2610
|
2168 |
+
msgid "- found base64_encoded image"
|
2169 |
+
msgstr "- Base64エンコードされた画像を発見"
|
2170 |
+
|
2171 |
+
#: models/import/record.php:2884
|
2172 |
+
msgid "- <b>ACTION</b>: "
|
2173 |
+
msgstr "-<b>アクション</b>。"
|
2174 |
+
|
2175 |
+
#: models/import/record.php:2913
|
2176 |
+
#, php-format
|
2177 |
+
msgid "- Attachment has been successfully updated for image `%s`"
|
2178 |
+
msgstr "-添付ファイル イメージ '%s' を正常に更新しました"
|
2179 |
+
|
2180 |
+
#: models/import/record.php:2932
|
2181 |
+
#, php-format
|
2182 |
+
msgid ""
|
2183 |
+
"- Post `%s` saved as Draft, because no images are downloaded successfully"
|
2184 |
+
msgstr ""
|
2185 |
+
"- 正常にダウンロードされたイメージがないため、 `%s`を下書きとして保存しまし"
|
2186 |
+
"た。"
|
2187 |
+
|
2188 |
+
#: models/import/record.php:2941
|
2189 |
+
#, php-format
|
2190 |
+
msgid "Post `%s` saved as Draft, because no images are downloaded successfully"
|
2191 |
+
msgstr ""
|
2192 |
+
"画像が正常にダウンロードされなかったため、投稿 `%s`を下書きとして保存しまし"
|
2193 |
+
"た。"
|
2194 |
+
|
2195 |
+
#: models/import/record.php:2980
|
2196 |
+
#, php-format
|
2197 |
+
msgid ""
|
2198 |
+
"Images import skipped for post `%s` according to 'pmxi_is_images_to_update' "
|
2199 |
+
"filter..."
|
2200 |
+
msgstr ""
|
2201 |
+
"'pmxi_is_images_to_update'フィルタに基づいて画像のインポートが `%s`の投稿でス"
|
2202 |
+
"キップされました..."
|
2203 |
+
|
2204 |
+
#: models/import/record.php:2992
|
2205 |
+
msgid "<b>ATTACHMENTS:</b>"
|
2206 |
+
msgstr "<b>添付ファイル:</b>"
|
2207 |
+
|
2208 |
+
#: models/import/record.php:2995
|
2209 |
+
#, php-format
|
2210 |
+
msgid "- <b>ERROR</b>: Target directory %s is not writable"
|
2211 |
+
msgstr "- <b>エラー</b>: ターゲットディレクトリ%sは書き込み可能ではありません"
|
2212 |
+
|
2213 |
+
#: models/import/record.php:3004
|
2214 |
+
#, php-format
|
2215 |
+
msgid "- Importing attachments for `%s` ..."
|
2216 |
+
msgstr "- `%s`の添付ファイルのインポート中..."
|
2217 |
+
|
2218 |
+
#: models/import/record.php:3029
|
2219 |
+
#, php-format
|
2220 |
+
msgid "- Using existing file `%s` for post `%s` ..."
|
2221 |
+
msgstr "投稿 '%s' の既存のファイル '%s' を使用して."
|
2222 |
+
|
2223 |
+
#: models/import/record.php:3038
|
2224 |
+
#, php-format
|
2225 |
+
msgid "- Filename for attachment was generated as %s"
|
2226 |
+
msgstr "- 添付ファイルのファイル名が%sとして生成されました"
|
2227 |
+
|
2228 |
+
#: models/import/record.php:3045
|
2229 |
+
#, php-format
|
2230 |
+
msgid "- <b>WARNING</b>: Attachment file %s cannot be saved locally as %s"
|
2231 |
+
msgstr ""
|
2232 |
+
"- <b>警告</ b>:添付ファイル%sをローカルで%sとして保存することはできません"
|
2233 |
+
|
2234 |
+
#: models/import/record.php:3046
|
2235 |
+
#, php-format
|
2236 |
+
msgid "- <b>WP Error</b>: %s"
|
2237 |
+
msgstr "- <b>WP エラー</b>: %s"
|
2238 |
+
|
2239 |
+
#: models/import/record.php:3060
|
2240 |
+
#, php-format
|
2241 |
+
msgid "- File %s has been successfully downloaded"
|
2242 |
+
msgstr "- ファイル%sが正常にダウンロードされました"
|
2243 |
+
|
2244 |
+
#: models/import/record.php:3076
|
2245 |
+
#, php-format
|
2246 |
+
msgid "- Attachment has been successfully created for post `%s`"
|
2247 |
+
msgstr "- 投稿 '%s`の添付ファイルが正常に作成されました"
|
2248 |
+
|
2249 |
+
#: models/import/record.php:3077 models/import/record.php:3102
|
2250 |
+
msgid "- <b>ACTION</b>: pmxi_attachment_uploaded"
|
2251 |
+
msgstr "- <b>アクション</b>: pmxi_attachment_uploaded"
|
2252 |
+
|
2253 |
+
#: models/import/record.php:3096
|
2254 |
+
#, php-format
|
2255 |
+
msgid "- Attachment has been successfully updated for file `%s`"
|
2256 |
+
msgstr "-添付ファイル ファイル '%s' を正常に更新しました"
|
2257 |
+
|
2258 |
+
#: models/import/record.php:3100
|
2259 |
+
#, php-format
|
2260 |
+
msgid "- Attachment has been successfully created for file `%s`"
|
2261 |
+
msgstr "- 投稿 '%s`の添付ファイルが正常に作成されました"
|
2262 |
+
|
2263 |
+
#: models/import/record.php:3113
|
2264 |
+
#, php-format
|
2265 |
+
msgid ""
|
2266 |
+
"Attachments import skipped for post `%s` according to "
|
2267 |
+
"'pmxi_is_attachments_to_update' filter..."
|
2268 |
+
msgstr ""
|
2269 |
+
"'pmxi_is_attachments_to_update'フィルタに従って添付ファイルのインポートが `"
|
2270 |
+
"%s`の投稿にスキップされました..."
|
2271 |
+
|
2272 |
+
#: models/import/record.php:3120
|
2273 |
+
msgid "<b>TAXONOMIES:</b>"
|
2274 |
+
msgstr "<b>タクソノミー:</b>"
|
2275 |
+
|
2276 |
+
#: models/import/record.php:3129
|
2277 |
+
#, php-format
|
2278 |
+
msgid "- Importing taxonomy `%s` ..."
|
2279 |
+
msgstr "- タクソノミー `%s` をインポートしています..."
|
2280 |
+
|
2281 |
+
#: models/import/record.php:3132
|
2282 |
+
#, php-format
|
2283 |
+
msgid "- Auto-nest enabled with separator `%s` ..."
|
2284 |
+
msgstr "- 自動巣は、セパレータ `%s`で有効になって..."
|
2285 |
+
|
2286 |
+
#: models/import/record.php:3138
|
2287 |
+
#, php-format
|
2288 |
+
msgid ""
|
2289 |
+
"- %s %s `%s` has been skipped attempted to `Leave these taxonomies alone, "
|
2290 |
+
"update all others`..."
|
2291 |
+
msgstr ""
|
2292 |
+
"- %sの%sの`%s`は`すべてothers`を更新し、単独でこれらの分類法のままにしようと"
|
2293 |
+
"し、スキップされています..."
|
2294 |
+
|
2295 |
+
#: models/import/record.php:3143
|
2296 |
+
#, php-format
|
2297 |
+
msgid ""
|
2298 |
+
"- %s %s `%s` has been skipped attempted to `Update only these taxonomies, "
|
2299 |
+
"leave the rest alone`..."
|
2300 |
+
msgstr ""
|
2301 |
+
"- %sの%sの `%s`は、`更新のみこれらの分類法に試みスキップされた、alone`残りの"
|
2302 |
+
"部分を残して..."
|
2303 |
+
|
2304 |
+
#: models/import/record.php:3182
|
2305 |
+
#, php-format
|
2306 |
+
msgid "- Creating parent %s %s `%s` ..."
|
2307 |
+
msgstr "- 親%sの%sの `%s`を作成しています..."
|
2308 |
+
|
2309 |
+
#: models/import/record.php:3185
|
2310 |
+
#, php-format
|
2311 |
+
msgid "- Creating child %s %s for %s named `%s` ..."
|
2312 |
+
msgstr "- `%s`という名前の%sの子%sの%sを作成しています..."
|
2313 |
+
|
2314 |
+
#: models/import/record.php:3192
|
2315 |
+
#, php-format
|
2316 |
+
msgid "- <b>WARNING</b>: `%s`"
|
2317 |
+
msgstr "- <b>警告</b>: `%s`"
|
2318 |
+
|
2319 |
+
#: models/import/record.php:3213
|
2320 |
+
#, php-format
|
2321 |
+
msgid ""
|
2322 |
+
"- Attempted to create parent %s %s `%s`, duplicate detected. Importing %s to "
|
2323 |
+
"existing `%s` %s, ID %d, slug `%s` ..."
|
2324 |
+
msgstr ""
|
2325 |
+
"- 親%sの%sの `%s`、検出された複製を作成しようとしました。 %sの `%s`は%sの既存"
|
2326 |
+
"の、ID %d の、スラグ`%s`のインポート..."
|
2327 |
+
|
2328 |
+
#: models/import/record.php:3216
|
2329 |
+
#, php-format
|
2330 |
+
msgid ""
|
2331 |
+
"- Attempted to create child %s %s `%s`, duplicate detected. Importing %s to "
|
2332 |
+
"existing `%s` %s, ID %d, slug `%s` ..."
|
2333 |
+
msgstr ""
|
2334 |
+
"- 子%s、%sの '%s`を作成しようとしましたが重複が検出されました。 %sを既存の `"
|
2335 |
+
"%s`%s、ID %d、スラッグ`%s`にインポートしています..."
|
2336 |
+
|
2337 |
+
#: models/import/record.php:3231
|
2338 |
+
#, php-format
|
2339 |
+
msgid ""
|
2340 |
+
"- %s %s `%s` has been skipped attempted to `Do not update Taxonomies (incl. "
|
2341 |
+
"Categories and Tags)`..."
|
2342 |
+
msgstr ""
|
2343 |
+
"- %sの%sの `%s`は` `タクソノミー(税込カテゴリとタグ)を更新しないと試みス"
|
2344 |
+
"キップされています..."
|
2345 |
+
|
2346 |
+
#: models/import/record.php:3250
|
2347 |
+
#, php-format
|
2348 |
+
msgid "<b>CREATED</b> `%s` `%s` (ID: %s)"
|
2349 |
+
msgstr "<b>作成</b> `%s` `%s` (ID: %s)"
|
2350 |
+
|
2351 |
+
#: models/import/record.php:3252
|
2352 |
+
#, php-format
|
2353 |
+
msgid "<b>UPDATED</b> `%s` `%s` (ID: %s)"
|
2354 |
+
msgstr "<b>更新</b> `%s` `%s` (ID: %s)"
|
2355 |
+
|
2356 |
+
#: models/import/record.php:3297
|
2357 |
+
msgid "<b>ACTION</b>: pmxi_saved_post"
|
2358 |
+
msgstr "<b>アクション</b>: pmxi_saved_post"
|
2359 |
+
|
2360 |
+
#: models/import/record.php:3304
|
2361 |
+
#, php-format
|
2362 |
+
msgid ""
|
2363 |
+
"<span class=\"processing_info\"><span class=\"created_count\">%s</span><span "
|
2364 |
+
"class=\"updated_count\">%s</span><span class=\"percents_count\">%s</span></"
|
2365 |
+
"span>"
|
2366 |
+
msgstr ""
|
2367 |
+
"<span class=\"processing_info\"><span class=\"created_count\">%s</span><span "
|
2368 |
+
"class=\"updated_count\">%s</span><span class=\"percents_count\">%s</span></"
|
2369 |
+
"span>"
|
2370 |
+
|
2371 |
+
#: models/import/record.php:3308
|
2372 |
+
msgid "<b>ACTION</b>: pmxi_after_post_import"
|
2373 |
+
msgstr "<b>アクション</b>: pmxi_after_post_import"
|
2374 |
+
|
2375 |
+
#: models/import/record.php:3337
|
2376 |
+
msgid ""
|
2377 |
+
"Update stock status previously imported posts which are no longer actual..."
|
2378 |
+
msgstr ""
|
2379 |
+
"以前にインポートされた在庫ステータスを更新しました。これはもはや実際のもので"
|
2380 |
+
"はありません..."
|
2381 |
+
|
2382 |
+
#: models/import/record.php:3361
|
2383 |
+
msgid "Cleaning temporary data..."
|
2384 |
+
msgstr "一時的なデータのクリーニング..."
|
2385 |
+
|
2386 |
+
#: models/import/record.php:3377
|
2387 |
+
msgid "Deleting source XML file..."
|
2388 |
+
msgstr "ソースXMLファイルを削除しています..."
|
2389 |
+
|
2390 |
+
#: models/import/record.php:3381
|
2391 |
+
msgid "Deleting chunks files..."
|
2392 |
+
msgstr "チャンクファイルを削除しています..."
|
2393 |
+
|
2394 |
+
#: models/import/record.php:3388 models/import/record.php:3397
|
2395 |
+
#, php-format
|
2396 |
+
msgid "<b>WARNING</b>: Unable to remove %s"
|
2397 |
+
msgstr "<b>警告</b> :%sは削除できません。"
|
2398 |
+
|
2399 |
+
#: models/import/record.php:3409
|
2400 |
+
msgid "Removing previously imported posts which are no longer actual..."
|
2401 |
+
msgstr "以前はインポートされた投稿は削除されました..."
|
2402 |
+
|
2403 |
+
#: models/import/record.php:3431
|
2404 |
+
msgid "<b>ACTION</b>: pmxi_delete_post"
|
2405 |
+
msgstr "<b>アクション</b>: pmxi_delete_post"
|
2406 |
+
|
2407 |
+
#: models/import/record.php:3433
|
2408 |
+
msgid "Deleting posts from database"
|
2409 |
+
msgstr "データベースから投稿を削除する"
|
2410 |
+
|
2411 |
+
#: models/import/record.php:3450
|
2412 |
+
#, php-format
|
2413 |
+
msgid ""
|
2414 |
+
"Instead of deletion user with ID `%s`, set Custom Field `%s` to value `%s`"
|
2415 |
+
msgstr ""
|
2416 |
+
"ID '%s' の削除ユーザーの代わりにカスタム フィールド '%s' を '%s' の値に設定し"
|
2417 |
+
"ます。"
|
2418 |
+
|
2419 |
+
#: models/import/record.php:3454
|
2420 |
+
#, php-format
|
2421 |
+
msgid ""
|
2422 |
+
"Instead of deletion taxonomy term with ID `%s`, set Custom Field `%s` to "
|
2423 |
+
"value `%s`"
|
2424 |
+
msgstr ""
|
2425 |
+
"ID '%s' の分類用語を削除、代わりにカスタム フィールド '%s' を '%s' の値に設定"
|
2426 |
+
"します。"
|
2427 |
+
|
2428 |
+
#: models/import/record.php:3458
|
2429 |
+
#, php-format
|
2430 |
+
msgid ""
|
2431 |
+
"Instead of deletion post with ID `%s`, set Custom Field `%s` to value `%s`"
|
2432 |
+
msgstr "代わりにID `%s`と削除後の、`%s`を大切にカスタムフィールド `%s`を設定"
|
2433 |
+
|
2434 |
+
#: models/import/record.php:3470
|
2435 |
+
#, php-format
|
2436 |
+
msgid "Instead of deletion, change post with ID `%s` status to Draft"
|
2437 |
+
msgstr "削除する代わりに、ID `%s`ステータスの投稿をDraftに変更してください"
|
2438 |
+
|
2439 |
+
#: models/import/record.php:3555
|
2440 |
+
#, php-format
|
2441 |
+
msgid "%d Posts deleted from database. IDs (%s)"
|
2442 |
+
msgstr "%d 件の記事はデータベースから削除されます。Id (%s)"
|
2443 |
+
|
2444 |
+
#: models/import/record.php:3647
|
2445 |
+
msgid "<b>ERROR</b> Could not insert term relationship into the database"
|
2446 |
+
msgstr "<b>エラー</b> データベースに用語の関係を挿入できませんでした"
|
2447 |
+
|
2448 |
+
#: views/admin/addons/index.php:3
|
2449 |
+
msgid "WP All Import Add-ons"
|
2450 |
+
msgstr "WP All Import アドオン"
|
2451 |
+
|
2452 |
+
#: views/admin/addons/index.php:8
|
2453 |
+
msgid "Premium Add-ons"
|
2454 |
+
msgstr "プレミアムアドオン"
|
2455 |
+
|
2456 |
+
#: views/admin/addons/index.php:20 views/admin/addons/index.php:61
|
2457 |
+
msgid "Installed"
|
2458 |
+
msgstr "インストール済み"
|
2459 |
+
|
2460 |
+
#: views/admin/addons/index.php:22
|
2461 |
+
msgid "Free Version Installed"
|
2462 |
+
msgstr "無料版がインストールされている"
|
2463 |
+
|
2464 |
+
#: views/admin/addons/index.php:29 views/admin/addons/index.php:70
|
2465 |
+
msgid " required"
|
2466 |
+
msgstr "必須"
|
2467 |
+
|
2468 |
+
#: views/admin/addons/index.php:36 views/admin/addons/index.php:77
|
2469 |
+
#: views/admin/addons/index.php:82 views/admin/import/index.php:115
|
2470 |
+
msgid "Download"
|
2471 |
+
msgstr "ダウンロード"
|
2472 |
+
|
2473 |
+
#: views/admin/addons/index.php:41
|
2474 |
+
msgid "Purchase & Install"
|
2475 |
+
msgstr "購入 & インストール"
|
2476 |
+
|
2477 |
+
#: views/admin/addons/index.php:49
|
2478 |
+
msgid "Free Add-ons"
|
2479 |
+
msgstr "無料アドオン"
|
2480 |
+
|
2481 |
+
#: views/admin/addons/index.php:63
|
2482 |
+
msgid "Paid Version Installed"
|
2483 |
+
msgstr "有料版インストール"
|
2484 |
+
|
2485 |
+
#: views/admin/help/index.php:1
|
2486 |
+
msgid "WP All Import Help"
|
2487 |
+
msgstr "WP All Import ヘルプ"
|
2488 |
+
|
2489 |
+
#: views/admin/history/index.php:16 views/admin/history/index.php:18
|
2490 |
+
#: views/admin/history/index.php:20
|
2491 |
+
#, php-format
|
2492 |
+
msgid "%s - Import History"
|
2493 |
+
msgstr "%s - インポート履歴"
|
2494 |
+
|
2495 |
+
#: views/admin/history/index.php:32 views/admin/manage/index.php:27
|
2496 |
+
msgid "ID"
|
2497 |
+
msgstr "ID"
|
2498 |
+
|
2499 |
+
#: views/admin/history/index.php:34
|
2500 |
+
msgid "Run Time"
|
2501 |
+
msgstr "実使用時間"
|
2502 |
+
|
2503 |
+
#: views/admin/history/index.php:35
|
2504 |
+
msgid "Type"
|
2505 |
+
msgstr "種類"
|
2506 |
+
|
2507 |
+
#: views/admin/history/index.php:36 views/admin/manage/index.php:30
|
2508 |
+
msgid "Summary"
|
2509 |
+
msgstr "要約"
|
2510 |
+
|
2511 |
+
#: views/admin/history/index.php:42
|
2512 |
+
msgid "Scheduling Status"
|
2513 |
+
msgstr "スケジューリングステータス"
|
2514 |
+
|
2515 |
+
#: views/admin/history/index.php:42
|
2516 |
+
msgid "triggered"
|
2517 |
+
msgstr "トリガー"
|
2518 |
+
|
2519 |
+
#: views/admin/history/index.php:42
|
2520 |
+
msgid "and processing"
|
2521 |
+
msgstr "処理中…"
|
2522 |
+
|
2523 |
+
#: views/admin/history/index.php:52 views/admin/history/index.php:226
|
2524 |
+
#: views/admin/manage/index.php:44 views/admin/manage/index.php:359
|
2525 |
+
msgid "Bulk Actions"
|
2526 |
+
msgstr "一括操作"
|
2527 |
+
|
2528 |
+
#: views/admin/history/index.php:53 views/admin/history/index.php:228
|
2529 |
+
#: views/admin/manage/index.php:45 views/admin/manage/index.php:192
|
2530 |
+
#: views/admin/manage/index.php:361
|
2531 |
+
msgid "Delete"
|
2532 |
+
msgstr "削除"
|
2533 |
+
|
2534 |
+
#: views/admin/history/index.php:55 views/admin/history/index.php:234
|
2535 |
+
#: views/admin/import/element.php:97 views/admin/manage/index.php:47
|
2536 |
+
#: views/admin/manage/index.php:367
|
2537 |
+
msgid "Apply"
|
2538 |
+
msgstr "適用"
|
2539 |
+
|
2540 |
+
#: views/admin/history/index.php:61 views/admin/manage/index.php:53
|
2541 |
+
#, php-format
|
2542 |
+
msgid "Displaying %s–%s of %s"
|
2543 |
+
msgstr "%s–%s の %sを表示しています"
|
2544 |
+
|
2545 |
+
#: views/admin/history/index.php:108
|
2546 |
+
msgid "No previous history found."
|
2547 |
+
msgstr "以前の履歴が見つかりませんでした。"
|
2548 |
+
|
2549 |
+
#: views/admin/history/index.php:161
|
2550 |
+
msgid "manual run"
|
2551 |
+
msgstr "手動実行"
|
2552 |
+
|
2553 |
+
#: views/admin/history/index.php:164
|
2554 |
+
msgid "continue run"
|
2555 |
+
msgstr "実行を継続"
|
2556 |
+
|
2557 |
+
#: views/admin/history/index.php:189
|
2558 |
+
msgid "Download Log"
|
2559 |
+
msgstr "ダウンロード履歴"
|
2560 |
+
|
2561 |
+
#: views/admin/history/index.php:193
|
2562 |
+
msgid "Log Unavailable"
|
2563 |
+
msgstr "ログを使用できません"
|
2564 |
+
|
2565 |
+
#: views/admin/history/index.php:230 views/admin/manage/index.php:363
|
2566 |
+
msgid "Restore"
|
2567 |
+
msgstr "復元"
|
2568 |
+
|
2569 |
+
#: views/admin/history/index.php:231 views/admin/manage/index.php:364
|
2570 |
+
msgid "Delete Permanently"
|
2571 |
+
msgstr "完全削除"
|
2572 |
+
|
2573 |
+
#: views/admin/history/index.php:238 views/admin/import/confirm.php:359
|
2574 |
+
#: views/admin/import/element.php:224 views/admin/import/index.php:388
|
2575 |
+
#: views/admin/import/options.php:104 views/admin/import/process.php:124
|
2576 |
+
#: views/admin/import/template.php:234 views/admin/manage/index.php:372
|
2577 |
+
#: views/admin/manage/scheduling.php:62 views/admin/settings/index.php:230
|
2578 |
+
msgid "Created by"
|
2579 |
+
msgstr "作成者"
|
2580 |
+
|
2581 |
+
#: views/admin/import/confirm.php:12 views/admin/import/element.php:9
|
2582 |
+
#: views/admin/import/index.php:44 views/admin/import/options.php:19
|
2583 |
+
#: views/admin/import/process.php:9 views/admin/import/template.php:10
|
2584 |
+
msgid "Import XML / CSV"
|
2585 |
+
msgstr "XML/ CSVインポーター"
|
2586 |
+
|
2587 |
+
#: views/admin/import/confirm.php:15 views/admin/import/element.php:12
|
2588 |
+
#: views/admin/import/index.php:47 views/admin/import/options.php:22
|
2589 |
+
#: views/admin/import/process.php:12 views/admin/import/template.php:13
|
2590 |
+
msgid "Support"
|
2591 |
+
msgstr "サポート"
|
2592 |
+
|
2593 |
+
#: views/admin/import/confirm.php:15 views/admin/import/element.php:12
|
2594 |
+
#: views/admin/import/index.php:47 views/admin/import/options.php:22
|
2595 |
+
#: views/admin/import/process.php:12 views/admin/import/template.php:13
|
2596 |
+
msgid "Documentation"
|
2597 |
+
msgstr "ドキュメンテーション"
|
2598 |
+
|
2599 |
+
#: views/admin/import/confirm.php:45 views/admin/import/options.php:62
|
2600 |
+
msgid "This URL no longer returns an import file"
|
2601 |
+
msgstr "この URL は、もはやインポート ファイルを返します"
|
2602 |
+
|
2603 |
+
#: views/admin/import/confirm.php:46 views/admin/import/options.php:63
|
2604 |
+
msgid "You must provide a URL that returns a valid import file."
|
2605 |
+
msgstr "有効なインポート ファイルを返す URL を指定する必要があります。"
|
2606 |
+
|
2607 |
+
#: views/admin/import/confirm.php:48 views/admin/import/index.php:362
|
2608 |
+
#: views/admin/import/options.php:65
|
2609 |
+
#: views/admin/import/options/_import_file.php:46
|
2610 |
+
msgid "There's a problem with your import file"
|
2611 |
+
msgstr "インポート ファイルに問題があります。"
|
2612 |
+
|
2613 |
+
#: views/admin/import/confirm.php:49 views/admin/import/options.php:66
|
2614 |
+
msgid "It has changed and is not compatible with this import template."
|
2615 |
+
msgstr "それが変更され、このテンプレートのインポートと互換性がありません。"
|
2616 |
+
|
2617 |
+
#: views/admin/import/confirm.php:72
|
2618 |
+
msgid "Your file is all set up!"
|
2619 |
+
msgstr "あなたのファイルはすべてセットアップされています!"
|
2620 |
+
|
2621 |
+
#: views/admin/import/confirm.php:74
|
2622 |
+
msgid "This import did not finish successfuly last time it was run."
|
2623 |
+
msgstr "このインポートは、前回の実行時に正常に終了しませんでした。"
|
2624 |
+
|
2625 |
+
#: views/admin/import/confirm.php:78
|
2626 |
+
msgid ""
|
2627 |
+
"Check the settings below, then click the green button to run the import."
|
2628 |
+
msgstr "下の設定を確認し、緑のボタンをクリックしてインポートを実行します。"
|
2629 |
+
|
2630 |
+
#: views/admin/import/confirm.php:80
|
2631 |
+
msgid "You can attempt to continue where it left off."
|
2632 |
+
msgstr "中断したところから続けることができます。"
|
2633 |
+
|
2634 |
+
#: views/admin/import/confirm.php:88 views/admin/import/confirm.php:348
|
2635 |
+
msgid "Confirm & Run Import"
|
2636 |
+
msgstr "インポートの確認 & 実行"
|
2637 |
+
|
2638 |
+
#: views/admin/import/confirm.php:98
|
2639 |
+
msgid "Continue from the last run"
|
2640 |
+
msgstr "最後の実行から続行"
|
2641 |
+
|
2642 |
+
#: views/admin/import/confirm.php:102
|
2643 |
+
msgid "Run from the beginning"
|
2644 |
+
msgstr "最初から実行します"
|
2645 |
+
|
2646 |
+
#: views/admin/import/confirm.php:105 views/admin/import/process.php:99
|
2647 |
+
msgid "Continue Import"
|
2648 |
+
msgstr "インポートを続行"
|
2649 |
+
|
2650 |
+
#: views/admin/import/confirm.php:107
|
2651 |
+
msgid "Run entire import from the beginning"
|
2652 |
+
msgstr "最初から全体のインポートを実行します。"
|
2653 |
+
|
2654 |
+
#: views/admin/import/confirm.php:127
|
2655 |
+
msgid "Import Summary"
|
2656 |
+
msgstr "インポートの概要"
|
2657 |
+
|
2658 |
+
#: views/admin/import/confirm.php:133
|
2659 |
+
#, php-format
|
2660 |
+
msgid "Your max_execution_time is %s seconds"
|
2661 |
+
msgstr "あなたのmax_execution_timeには、%s秒です"
|
2662 |
+
|
2663 |
+
#: views/admin/import/confirm.php:157
|
2664 |
+
#, php-format
|
2665 |
+
msgid ""
|
2666 |
+
"WP All Import will import the file <span style=\"color:#40acad;\">%s</span>, "
|
2667 |
+
"which is <span style=\"color:#000; font-weight:bold;\">%s</span>"
|
2668 |
+
msgstr ""
|
2669 |
+
"WP All Importがファイルをインポートします <span style=\"color:#40acad;\">%s</"
|
2670 |
+
"span>, である <span style=\"color:#000; font-weight:bold;\">%s</span>"
|
2671 |
+
|
2672 |
+
#: views/admin/import/confirm.php:157
|
2673 |
+
msgid "undefined"
|
2674 |
+
msgstr "未定義"
|
2675 |
+
|
2676 |
+
#: views/admin/import/confirm.php:160
|
2677 |
+
#, php-format
|
2678 |
+
msgid ""
|
2679 |
+
"WP All Import will process the records matching the XPath expression: <span "
|
2680 |
+
"style=\"color:#46ba69; font-weight:bold;\">%s</span>"
|
2681 |
+
msgstr ""
|
2682 |
+
"WP All Importは、XPath式に一致するレコードを処理します:<span style=\"color:"
|
2683 |
+
"#46ba69; font-weight:bold;\">%s</span>"
|
2684 |
+
|
2685 |
+
#: views/admin/import/confirm.php:162
|
2686 |
+
#, php-format
|
2687 |
+
msgid ""
|
2688 |
+
"WP All Import will process <span style=\"color:#46ba69; font-weight:bold;\">"
|
2689 |
+
"%s</span> rows in your file"
|
2690 |
+
msgstr ""
|
2691 |
+
"WP All Importは、ファイル内の<span style=\"color:#46ba69; font-weight:bold;"
|
2692 |
+
"\">%s</span>行を処理します"
|
2693 |
+
|
2694 |
+
#: views/admin/import/confirm.php:164
|
2695 |
+
#, php-format
|
2696 |
+
msgid ""
|
2697 |
+
"WP All Import will process all %s <span style=\"color:#46ba69; font-weight:"
|
2698 |
+
"bold;\"><%s></span> records in your file"
|
2699 |
+
msgstr ""
|
2700 |
+
"WP All Import は、ファイル内のすべての%s <span style=\"color:#46ba69; font-"
|
2701 |
+
"weight:bold;\"><%s></span>レコードを処理します"
|
2702 |
+
|
2703 |
+
#: views/admin/import/confirm.php:168
|
2704 |
+
#, php-format
|
2705 |
+
msgid "WP All Import will process only specified records: %s"
|
2706 |
+
msgstr "WP All Importは、指定されたレコードを処理します:%s"
|
2707 |
+
|
2708 |
+
#: views/admin/import/confirm.php:175
|
2709 |
+
#, php-format
|
2710 |
+
msgid ""
|
2711 |
+
"Your unique key is <span style=\"color:#000; font-weight:bold;\">%s</span>"
|
2712 |
+
msgstr ""
|
2713 |
+
"あなたのユニークなキーが<span style=\"color:#000; font-weight:bold;\">%s</"
|
2714 |
+
"span>であります"
|
2715 |
+
|
2716 |
+
#: views/admin/import/confirm.php:179
|
2717 |
+
#, php-format
|
2718 |
+
msgid ""
|
2719 |
+
"%ss previously imported by this import (ID: %s) with the same unique key "
|
2720 |
+
"will be updated."
|
2721 |
+
msgstr ""
|
2722 |
+
"以前にこのインポート (ID: %s) によってインポート%ssの同じ一意のキーでは更新さ"
|
2723 |
+
"れます。"
|
2724 |
+
|
2725 |
+
#: views/admin/import/confirm.php:182
|
2726 |
+
#, php-format
|
2727 |
+
msgid ""
|
2728 |
+
"%ss previously imported by this import (ID: %s) that aren't present for this "
|
2729 |
+
"run of the import will be deleted."
|
2730 |
+
msgstr ""
|
2731 |
+
"以前にこのインポートによってインポート%ss (ID: %s)インポートのこの実行のため"
|
2732 |
+
"に存在していない削除されます。"
|
2733 |
+
|
2734 |
+
#: views/admin/import/confirm.php:186
|
2735 |
+
#, php-format
|
2736 |
+
msgid ""
|
2737 |
+
"%ss previously imported by this import (ID: %s) that aren't present for this "
|
2738 |
+
"run of the import will be set to draft."
|
2739 |
+
msgstr ""
|
2740 |
+
"以前にこのインポートによってインポート%ss(ID: %s)インポートのこの実行のため"
|
2741 |
+
"に存在していないドラフトに設定されます。"
|
2742 |
+
|
2743 |
+
#: views/admin/import/confirm.php:190
|
2744 |
+
#, php-format
|
2745 |
+
msgid ""
|
2746 |
+
"Records with unique keys that don't match any unique keys from %ss created "
|
2747 |
+
"by previous runs of this import (ID: %s) will be created."
|
2748 |
+
msgstr ""
|
2749 |
+
"このインポートの以前の実行によって作成された%ssから任意の一意のキーと一致しな"
|
2750 |
+
"い一意キーを持つレコード(ID: %s)が作成されます。"
|
2751 |
+
|
2752 |
+
#: views/admin/import/confirm.php:204
|
2753 |
+
#, php-format
|
2754 |
+
msgid ""
|
2755 |
+
"WP All Import will merge data into existing %ss, matching the following "
|
2756 |
+
"criteria: %s"
|
2757 |
+
msgstr ""
|
2758 |
+
"WP All Importには、次の条件に一致する、既存 %ss,にデータをマージします:%s"
|
2759 |
+
|
2760 |
+
#: views/admin/import/confirm.php:207
|
2761 |
+
msgid "Existing data will be updated with the data specified in this import."
|
2762 |
+
msgstr "既存のデータは、このインポートで指定されたデータで更新されます。"
|
2763 |
+
|
2764 |
+
#: views/admin/import/confirm.php:210
|
2765 |
+
#, php-format
|
2766 |
+
msgid ""
|
2767 |
+
"Next %s data will be updated, <strong>all other data will be left alone</"
|
2768 |
+
"strong>"
|
2769 |
+
msgstr ""
|
2770 |
+
"次に%sのデータが更新され、 <strong>他のすべてのデータがそのまま残されます</"
|
2771 |
+
"strong>"
|
2772 |
+
|
2773 |
+
#: views/admin/import/confirm.php:214
|
2774 |
+
msgid "status"
|
2775 |
+
msgstr "ステータス"
|
2776 |
+
|
2777 |
+
#: views/admin/import/confirm.php:217
|
2778 |
+
msgid "title"
|
2779 |
+
msgstr "タイトル"
|
2780 |
+
|
2781 |
+
#: views/admin/import/confirm.php:220
|
2782 |
+
msgid "slug"
|
2783 |
+
msgstr "slug"
|
2784 |
+
|
2785 |
+
#: views/admin/import/confirm.php:223
|
2786 |
+
msgid "content"
|
2787 |
+
msgstr "コンテンツ"
|
2788 |
+
|
2789 |
+
#: views/admin/import/confirm.php:226
|
2790 |
+
msgid "excerpt"
|
2791 |
+
msgstr "抜粋"
|
2792 |
+
|
2793 |
+
#: views/admin/import/confirm.php:229
|
2794 |
+
msgid "dates"
|
2795 |
+
msgstr "日付"
|
2796 |
+
|
2797 |
+
#: views/admin/import/confirm.php:232
|
2798 |
+
msgid "menu order"
|
2799 |
+
msgstr "メニュー順"
|
2800 |
+
|
2801 |
+
#: views/admin/import/confirm.php:235
|
2802 |
+
msgid "parent post"
|
2803 |
+
msgstr "親投稿"
|
2804 |
+
|
2805 |
+
#: views/admin/import/confirm.php:238
|
2806 |
+
msgid "post type"
|
2807 |
+
msgstr "編集する投稿タイプを選択"
|
2808 |
+
|
2809 |
+
#: views/admin/import/confirm.php:241
|
2810 |
+
msgid "attachments"
|
2811 |
+
msgstr "添付ファイル"
|
2812 |
+
|
2813 |
+
#: views/admin/import/confirm.php:248
|
2814 |
+
msgid "all advanced custom fields"
|
2815 |
+
msgstr "すべてのアドバンスカスタムフィールド"
|
2816 |
+
|
2817 |
+
#: views/admin/import/confirm.php:251
|
2818 |
+
msgid "only ACF presented in import options"
|
2819 |
+
msgstr "唯一のACFインポートオプションで提供"
|
2820 |
+
|
2821 |
+
#: views/admin/import/confirm.php:254
|
2822 |
+
#, php-format
|
2823 |
+
msgid "only these ACF : %s"
|
2824 |
+
msgstr "これらのACF : %s"
|
2825 |
+
|
2826 |
+
#: views/admin/import/confirm.php:257
|
2827 |
+
#, php-format
|
2828 |
+
msgid "all ACF except these: %s"
|
2829 |
+
msgstr "これらを除くすべてのACF: %s"
|
2830 |
+
|
2831 |
+
#: views/admin/import/confirm.php:267
|
2832 |
+
msgid "old images will be updated with new"
|
2833 |
+
msgstr "古い画像は新しい画像に更新されます"
|
2834 |
+
|
2835 |
+
#: views/admin/import/confirm.php:270
|
2836 |
+
msgid "only new images will be added"
|
2837 |
+
msgstr "新しい画像のみが追加されます"
|
2838 |
+
|
2839 |
+
#: views/admin/import/confirm.php:280
|
2840 |
+
msgid "all custom fields"
|
2841 |
+
msgstr "すべてのカスタムフィールド"
|
2842 |
+
|
2843 |
+
#: views/admin/import/confirm.php:283
|
2844 |
+
#, php-format
|
2845 |
+
msgid "only these custom fields : %s"
|
2846 |
+
msgstr "これらのカスタムフィールドのみ : %s"
|
2847 |
+
|
2848 |
+
#: views/admin/import/confirm.php:286
|
2849 |
+
#, php-format
|
2850 |
+
msgid "all cusom fields except these: %s"
|
2851 |
+
msgstr "これらを除くすべてのカスタムフィールド: %s"
|
2852 |
+
|
2853 |
+
#: views/admin/import/confirm.php:296
|
2854 |
+
msgid "remove existing taxonomies, add new taxonomies"
|
2855 |
+
msgstr "既存のタクソノミーを削除し、新しいタクソノミーを追加する"
|
2856 |
+
|
2857 |
+
#: views/admin/import/confirm.php:299
|
2858 |
+
msgid "only add new"
|
2859 |
+
msgstr "新しく追加する"
|
2860 |
+
|
2861 |
+
#: views/admin/import/confirm.php:302
|
2862 |
+
#, php-format
|
2863 |
+
msgid "update only these taxonomies: %s , leave the rest alone"
|
2864 |
+
msgstr "これらの分類だけを更新する: %s ,残りを一人で残す"
|
2865 |
+
|
2866 |
+
#: views/admin/import/confirm.php:305
|
2867 |
+
#, php-format
|
2868 |
+
msgid "leave these taxonomies: %s alone, update all others"
|
2869 |
+
msgstr "これらの分類法を残す:%sの一人で、他のすべてを更新"
|
2870 |
+
|
2871 |
+
#: views/admin/import/confirm.php:316
|
2872 |
+
#, php-format
|
2873 |
+
msgid ""
|
2874 |
+
"New %ss will be created from records that don't match the above criteria."
|
2875 |
+
msgstr "新しい%ssは上記の基準に一致しないレコードから作成されます。"
|
2876 |
+
|
2877 |
+
#: views/admin/import/confirm.php:322
|
2878 |
+
msgid ""
|
2879 |
+
"High-Speed, Small File Processing enabled. Your import will fail if it takes "
|
2880 |
+
"longer than your server's max_execution_time."
|
2881 |
+
msgstr ""
|
2882 |
+
"高速、小型ファイル処理が有効になっています。それはあなたのサーバーの"
|
2883 |
+
"max_execution_timeはより長い時間がかかる場合は、あなたのインポートは失敗しま"
|
2884 |
+
"す。"
|
2885 |
+
|
2886 |
+
#: views/admin/import/confirm.php:324
|
2887 |
+
#, php-format
|
2888 |
+
msgid ""
|
2889 |
+
"Piece By Piece Processing enabled. %s records will be processed each "
|
2890 |
+
"iteration. If it takes longer than your server's max_execution_time to "
|
2891 |
+
"process %s records, your import will fail."
|
2892 |
+
msgstr ""
|
2893 |
+
"少しずつでは有効になって処理します。 %sのレコードは、各反復が処理されます。そ"
|
2894 |
+
"れは%sのレコードを処理するために、サーバーのmax_execution_timeはより長い時間"
|
2895 |
+
"がかかる場合は、インポートは失敗します。"
|
2896 |
+
|
2897 |
+
#: views/admin/import/confirm.php:328
|
2898 |
+
#, php-format
|
2899 |
+
msgid "Your file will be split into %s records chunks before processing."
|
2900 |
+
msgstr "あなたのファイルが処理する前に、%sのレコードのチャンクに分割されます。"
|
2901 |
+
|
2902 |
+
#: views/admin/import/confirm.php:332
|
2903 |
+
msgid ""
|
2904 |
+
"do_action calls will be disabled in wp_insert_post and wp_insert_attachment "
|
2905 |
+
"during the import."
|
2906 |
+
msgstr ""
|
2907 |
+
"do_actionコールは、インポート時にwp_insert_postとwp_insert_attachmentに無効に"
|
2908 |
+
"なります。"
|
2909 |
+
|
2910 |
+
#: views/admin/import/confirm.php:351
|
2911 |
+
msgid "or go back to Step 4"
|
2912 |
+
msgstr "またはステップ4に戻ります"
|
2913 |
+
|
2914 |
+
#: views/admin/import/confirm.php:353
|
2915 |
+
msgid "or go back to Manage Imports"
|
2916 |
+
msgstr "インポートの管理に戻る"
|
2917 |
+
|
2918 |
+
#: views/admin/import/element.php:34 views/admin/import/element.php:221
|
2919 |
+
msgid "Continue to Step 3"
|
2920 |
+
msgstr "ステップ3に進みます"
|
2921 |
+
|
2922 |
+
#: views/admin/import/element.php:47
|
2923 |
+
msgid "What element are you looking for?"
|
2924 |
+
msgstr "あなたはどんな要素を探していますか?"
|
2925 |
+
|
2926 |
+
#: views/admin/import/element.php:76
|
2927 |
+
#, php-format
|
2928 |
+
msgid "of <span class=\"wpallimport-elements-count-info\">%s</span>"
|
2929 |
+
msgstr "の <span class=\"wpallimport-elements-count-info\">%s</span>"
|
2930 |
+
|
2931 |
+
#: views/admin/import/element.php:94
|
2932 |
+
msgid "Set delimiter for CSV fields:"
|
2933 |
+
msgstr "CSVフィールドの区切り文字を設定:"
|
2934 |
+
|
2935 |
+
#: views/admin/import/element.php:115
|
2936 |
+
#, php-format
|
2937 |
+
msgid ""
|
2938 |
+
"Each <span><<span class=\"root_element\">%s</span>></span> element "
|
2939 |
+
"will be imported into a <span>New %s</span>"
|
2940 |
+
msgstr ""
|
2941 |
+
"各 <span><<span class=\"root_element\">%s</span>></span> 要素は<span>新"
|
2942 |
+
"しい%s </span>要素にインポートされます。"
|
2943 |
+
|
2944 |
+
#: views/admin/import/element.php:119
|
2945 |
+
#, php-format
|
2946 |
+
msgid ""
|
2947 |
+
"Data in <span><<span class=\"root_element\">%s</span>></span> elements "
|
2948 |
+
"will be imported to <span>%s</span>"
|
2949 |
+
msgstr ""
|
2950 |
+
"<span><<span class=\"root_element\">%s</span>></span>のデータ、要素は"
|
2951 |
+
"<span>%s</span>にインポートされます"
|
2952 |
+
|
2953 |
+
#: views/admin/import/element.php:124
|
2954 |
+
msgid ""
|
2955 |
+
"This doesn't look right, try manually selecting a different root element on "
|
2956 |
+
"the left."
|
2957 |
+
msgstr ""
|
2958 |
+
"これは正しく表示されません。左側の別のルート要素を手動で選択してみてくださ"
|
2959 |
+
"い。"
|
2960 |
+
|
2961 |
+
#: views/admin/import/element.php:136
|
2962 |
+
msgid "Add Filtering Options"
|
2963 |
+
msgstr "フィルタリングオプションを追加する"
|
2964 |
+
|
2965 |
+
#: views/admin/import/element.php:143 views/admin/import/element.php:195
|
2966 |
+
msgid "Element"
|
2967 |
+
msgstr "要素"
|
2968 |
+
|
2969 |
+
#: views/admin/import/element.php:144 views/admin/import/element.php:196
|
2970 |
+
msgid "Rule"
|
2971 |
+
msgstr "ルール"
|
2972 |
+
|
2973 |
+
#: views/admin/import/element.php:145 views/admin/import/element.php:197
|
2974 |
+
#: views/admin/import/options/_reimport_options.php:42
|
2975 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:46
|
2976 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:125
|
2977 |
+
#: views/admin/import/options/_reimport_template.php:107
|
2978 |
+
#: views/admin/import/template/_custom_fields_template.php:52
|
2979 |
+
#: views/admin/import/template/_custom_fields_template.php:86
|
2980 |
+
#: views/admin/import/template/_custom_fields_template.php:295
|
2981 |
+
#: views/admin/import/template/_custom_fields_template.php:429
|
2982 |
+
#: views/admin/import/template/_term_meta_template.php:52
|
2983 |
+
#: views/admin/import/template/_term_meta_template.php:86
|
2984 |
+
#: views/admin/import/template/_term_meta_template.php:295
|
2985 |
+
#: views/admin/import/template/_term_meta_template.php:429
|
2986 |
+
msgid "Value"
|
2987 |
+
msgstr "値"
|
2988 |
+
|
2989 |
+
#: views/admin/import/element.php:151
|
2990 |
+
msgid "Select Element"
|
2991 |
+
msgstr "要素を選択"
|
2992 |
+
|
2993 |
+
#: views/admin/import/element.php:157
|
2994 |
+
msgid "Select Rule"
|
2995 |
+
msgstr "ルールを選択"
|
2996 |
+
|
2997 |
+
#: views/admin/import/element.php:158
|
2998 |
+
msgid "equals"
|
2999 |
+
msgstr "等しい"
|
3000 |
+
|
3001 |
+
#: views/admin/import/element.php:159
|
3002 |
+
msgid "not equals"
|
3003 |
+
msgstr "等しくありません"
|
3004 |
+
|
3005 |
+
#: views/admin/import/element.php:160
|
3006 |
+
msgid "greater than"
|
3007 |
+
msgstr "大なり"
|
3008 |
+
|
3009 |
+
#: views/admin/import/element.php:161
|
3010 |
+
msgid "equals or greater than"
|
3011 |
+
msgstr "等しいかより大きい"
|
3012 |
+
|
3013 |
+
#: views/admin/import/element.php:162
|
3014 |
+
msgid "less than"
|
3015 |
+
msgstr "最小化"
|
3016 |
+
|
3017 |
+
#: views/admin/import/element.php:163
|
3018 |
+
msgid "equals or less than"
|
3019 |
+
msgstr "等しいまたは未満"
|
3020 |
+
|
3021 |
+
#: views/admin/import/element.php:164
|
3022 |
+
msgid "contains"
|
3023 |
+
msgstr "含む"
|
3024 |
+
|
3025 |
+
#: views/admin/import/element.php:165
|
3026 |
+
msgid "not contains"
|
3027 |
+
msgstr "含まれていません"
|
3028 |
+
|
3029 |
+
#: views/admin/import/element.php:166
|
3030 |
+
msgid "is empty"
|
3031 |
+
msgstr "空である"
|
3032 |
+
|
3033 |
+
#: views/admin/import/element.php:167
|
3034 |
+
msgid "is not empty"
|
3035 |
+
msgstr "空ではない"
|
3036 |
+
|
3037 |
+
#: views/admin/import/element.php:174
|
3038 |
+
msgid "Add Rule"
|
3039 |
+
msgstr "ルールを追加"
|
3040 |
+
|
3041 |
+
#: views/admin/import/element.php:183
|
3042 |
+
#: views/admin/import/options/_settings_template.php:174
|
3043 |
+
msgid "XPath"
|
3044 |
+
msgstr "XPath"
|
3045 |
+
|
3046 |
+
#: views/admin/import/element.php:198
|
3047 |
+
msgid "Condition"
|
3048 |
+
msgstr "状態"
|
3049 |
+
|
3050 |
+
#: views/admin/import/element.php:203
|
3051 |
+
msgid ""
|
3052 |
+
"No filtering options. Add filtering options to only import records matching "
|
3053 |
+
"some specified criteria."
|
3054 |
+
msgstr ""
|
3055 |
+
"いいえフィルタリングオプションはありません。いくつかの指定された条件に一致す"
|
3056 |
+
"るのみインポートレコードをフィルタリングオプションを追加します。"
|
3057 |
+
|
3058 |
+
#: views/admin/import/element.php:208
|
3059 |
+
msgid "Apply Filters To XPath"
|
3060 |
+
msgstr "XPathのにフィルタを適用"
|
3061 |
+
|
3062 |
+
#: views/admin/import/element.php:217
|
3063 |
+
msgid "Back to Step 1"
|
3064 |
+
msgstr "ステップ1に戻る"
|
3065 |
+
|
3066 |
+
#: views/admin/import/evaluate.php:3
|
3067 |
+
#, php-format
|
3068 |
+
msgid ""
|
3069 |
+
"<span class=\"matches_count\">%s</span> <strong>%s</strong> will be imported"
|
3070 |
+
msgstr ""
|
3071 |
+
"<span class=\"matches_count\">%s</span> <strong>%s</strong> インポートされま"
|
3072 |
+
"す"
|
3073 |
+
|
3074 |
+
#: views/admin/import/evaluate.php:3
|
3075 |
+
msgid "row"
|
3076 |
+
msgid_plural "rows"
|
3077 |
+
msgstr[0] "行"
|
3078 |
+
msgstr[1] "行"
|
3079 |
+
|
3080 |
+
#: views/admin/import/evaluate.php:5
|
3081 |
+
#, php-format
|
3082 |
+
msgid ""
|
3083 |
+
"<span class=\"matches_count\">%s</span> <strong>%s</strong> %s will be "
|
3084 |
+
"imported"
|
3085 |
+
msgstr ""
|
3086 |
+
"<span class=\"matches_count\">%s</span>の<strong>%s</strong> %sがインポートさ"
|
3087 |
+
"れます"
|
3088 |
+
|
3089 |
+
#: views/admin/import/evaluate.php:7
|
3090 |
+
msgid "Click an element to select it, or scroll down to add filtering options."
|
3091 |
+
msgstr ""
|
3092 |
+
"それを選択するか、フィルタリングオプションを追加するには、スクロールダウンす"
|
3093 |
+
"る要素をクリックします。"
|
3094 |
+
|
3095 |
+
#: views/admin/import/evaluate.php:9
|
3096 |
+
#: views/admin/import/evaluate_variations.php:5
|
3097 |
+
msgid ""
|
3098 |
+
"<strong>Note</strong>: Highlighting is turned off since can be very slow on "
|
3099 |
+
"large sets of elements."
|
3100 |
+
msgstr ""
|
3101 |
+
"<strong>注</strong> :要素の大規模なセットに非常に遅くなることがありますの"
|
3102 |
+
"で、強調表示がオフになっています。"
|
3103 |
+
|
3104 |
+
#: views/admin/import/evaluate_variations.php:3
|
3105 |
+
#, php-format
|
3106 |
+
msgid "Current selection matches <span class=\"matches_count\">%s</span> %s."
|
3107 |
+
msgstr "現在の選択は<span class=\"matches_count\">%s</span>の%s.の一致します。"
|
3108 |
+
|
3109 |
+
#: views/admin/import/evaluate_variations.php:14
|
3110 |
+
#, php-format
|
3111 |
+
msgid "#<strong>%s</strong> out of <strong>%s</strong>"
|
3112 |
+
msgstr "#<strong>%s</strong> 中の <strong>%s</strong>"
|
3113 |
+
|
3114 |
+
#: views/admin/import/index.php:69
|
3115 |
+
msgid "First, specify how you want to import your data"
|
3116 |
+
msgstr "まず、あなたがあなたのデータをインポートする方法を指定します"
|
3117 |
+
|
3118 |
+
#: views/admin/import/index.php:71
|
3119 |
+
msgid "First, specify previously exported file"
|
3120 |
+
msgstr "まず、以前にエクスポートしたファイルを指定します"
|
3121 |
+
|
3122 |
+
#: views/admin/import/index.php:72
|
3123 |
+
msgid ""
|
3124 |
+
"The data in this file can be modified, but the structure of the file (column/"
|
3125 |
+
"element names) should not change."
|
3126 |
+
msgstr ""
|
3127 |
+
"このファイル内のデータを変更することができますが、ファイル(列/要素名)の構造"
|
3128 |
+
"は変更しないでください。"
|
3129 |
+
|
3130 |
+
#: views/admin/import/index.php:76
|
3131 |
+
#: views/admin/import/options/_import_file.php:74
|
3132 |
+
msgid "Upload a file"
|
3133 |
+
msgstr "ファイルをアップロード"
|
3134 |
+
|
3135 |
+
#: views/admin/import/index.php:80
|
3136 |
+
#: views/admin/import/options/_import_file.php:78
|
3137 |
+
msgid "Download from URL"
|
3138 |
+
msgstr "URLからダウンロード"
|
3139 |
+
|
3140 |
+
#: views/admin/import/index.php:84
|
3141 |
+
#: views/admin/import/options/_import_file.php:82
|
3142 |
+
msgid "Use existing file"
|
3143 |
+
msgstr "既存のファイルを使用します"
|
3144 |
+
|
3145 |
+
#: views/admin/import/index.php:94
|
3146 |
+
#: views/admin/import/options/_import_file.php:92
|
3147 |
+
msgid "Click here to select file from your computer..."
|
3148 |
+
msgstr ""
|
3149 |
+
"お使いのコンピュータからファイルを選択するには、ここをクリックしてください..."
|
3150 |
+
|
3151 |
+
#: views/admin/import/index.php:97
|
3152 |
+
msgid "Upload Complete"
|
3153 |
+
msgstr "アップロード完了"
|
3154 |
+
|
3155 |
+
#: views/admin/import/index.php:119
|
3156 |
+
msgid ""
|
3157 |
+
"<strong>Hint:</strong> After you create this import, you can schedule it to "
|
3158 |
+
"run automatically, on a pre-defined schedule, with cron jobs. If anything in "
|
3159 |
+
"your file has changed, WP All Import can update your site with the changed "
|
3160 |
+
"data automatically."
|
3161 |
+
msgstr ""
|
3162 |
+
"<strong>ヒント:</strong>このインポートを作成した後、あなたはcronジョブで、事"
|
3163 |
+
"前に定義されたスケジュールに基づいて、自動的に実行するようにスケジュールする"
|
3164 |
+
"ことができます。あなたのファイルで何かが変更されている場合は、WPのすべてのイ"
|
3165 |
+
"ンポートが自動的に変更されたデータを使用してサイトを更新することができます。"
|
3166 |
+
|
3167 |
+
#: views/admin/import/index.php:159
|
3168 |
+
#: views/admin/import/options/_import_file.php:144
|
3169 |
+
msgid "Select a previously uploaded file"
|
3170 |
+
msgstr "以前にアップロードしたファイルを選択します"
|
3171 |
+
|
3172 |
+
#: views/admin/import/index.php:168
|
3173 |
+
#: views/admin/import/options/_import_file.php:156
|
3174 |
+
#, php-format
|
3175 |
+
msgid "Upload files to <strong>%s</strong> and they will appear in this list"
|
3176 |
+
msgstr "Cargar archivos a <strong>%s</strong> y ellos aparecerán en esta lista"
|
3177 |
+
|
3178 |
+
#: views/admin/import/index.php:183
|
3179 |
+
msgid "Import data from this file into..."
|
3180 |
+
msgstr "このファイルからデータをインポート..."
|
3181 |
+
|
3182 |
+
#: views/admin/import/index.php:187
|
3183 |
+
msgid "New Items"
|
3184 |
+
msgstr "新しいアイテム"
|
3185 |
+
|
3186 |
+
#: views/admin/import/index.php:191
|
3187 |
+
msgid "Existing Items"
|
3188 |
+
msgstr "既存のアイテム"
|
3189 |
+
|
3190 |
+
#: views/admin/import/index.php:214
|
3191 |
+
msgid "Taxonomies"
|
3192 |
+
msgstr "分類"
|
3193 |
+
|
3194 |
+
#: views/admin/import/index.php:218
|
3195 |
+
#: views/admin/import/options/_settings_template.php:81
|
3196 |
+
msgid "Users"
|
3197 |
+
msgstr "ユーザー"
|
3198 |
+
|
3199 |
+
#: views/admin/import/index.php:244
|
3200 |
+
msgid "Create new"
|
3201 |
+
msgstr "新規作成"
|
3202 |
+
|
3203 |
+
#: views/admin/import/index.php:245
|
3204 |
+
msgid "Import to existing"
|
3205 |
+
msgstr "既存のインポート"
|
3206 |
+
|
3207 |
+
#: views/admin/import/index.php:248
|
3208 |
+
msgid "for each record in my data file."
|
3209 |
+
msgstr "のデータファイルの各レコードとして作成。"
|
3210 |
+
|
3211 |
+
#: views/admin/import/index.php:249
|
3212 |
+
msgid "and update some or all of their data."
|
3213 |
+
msgstr "そのデータの一部または全部を更新します。"
|
3214 |
+
|
3215 |
+
#: views/admin/import/index.php:298
|
3216 |
+
msgid "Select taxonomy to import into..."
|
3217 |
+
msgstr "インポートする分類を選択してください."
|
3218 |
+
|
3219 |
+
#: views/admin/import/index.php:300
|
3220 |
+
#: views/admin/import/options/_settings_template.php:56
|
3221 |
+
msgid "Select Taxonomy"
|
3222 |
+
msgstr "分類選択"
|
3223 |
+
|
3224 |
+
#: views/admin/import/index.php:309
|
3225 |
+
#: views/admin/import/options/_settings_template.php:151
|
3226 |
+
msgid "The User Import Add-On is Required to Import Users"
|
3227 |
+
msgstr "ユーザー インポートのアドオンはユーザーのインポートに必要です"
|
3228 |
+
|
3229 |
+
#: views/admin/import/index.php:310
|
3230 |
+
#: views/admin/import/options/_settings_template.php:152
|
3231 |
+
msgid "Purchase the User Import Add-On"
|
3232 |
+
msgstr "ユーザーインポートアドオンの購入"
|
3233 |
+
|
3234 |
+
#: views/admin/import/index.php:315
|
3235 |
+
#: views/admin/import/options/_settings_template.php:157
|
3236 |
+
msgid "The WooCommerce Add-On is Required to Import Products"
|
3237 |
+
msgstr "WooCommerce アドオンはインポートに必要です"
|
3238 |
+
|
3239 |
+
#: views/admin/import/index.php:316 views/admin/import/index.php:326
|
3240 |
+
#: views/admin/import/index.php:334
|
3241 |
+
#: views/admin/import/options/_settings_template.php:158
|
3242 |
+
#: views/admin/import/options/_settings_template.php:164
|
3243 |
+
#: views/admin/import/options/_settings_template.php:168
|
3244 |
+
msgid "Purchase the WooCommerce Add-On Pro"
|
3245 |
+
msgstr "WooCommerceアドオンプロを購入する"
|
3246 |
+
|
3247 |
+
#: views/admin/import/index.php:322
|
3248 |
+
msgid ""
|
3249 |
+
"The Pro version of the WooCommerce Add-On is required to Import Orders, but "
|
3250 |
+
"you have the free version installed"
|
3251 |
+
msgstr ""
|
3252 |
+
"WooCommerce アドオンの Pro バージョンがインポートの順序、する必要が無料版をイ"
|
3253 |
+
"ンストールします。"
|
3254 |
+
|
3255 |
+
#: views/admin/import/index.php:324
|
3256 |
+
#: views/admin/import/options/_settings_template.php:163
|
3257 |
+
msgid "The WooCommerce Add-On Pro is Required to Import Orders"
|
3258 |
+
msgstr "WooCommerce アドオン Pro は、インポートの順序に必要です"
|
3259 |
+
|
3260 |
+
#: views/admin/import/index.php:330
|
3261 |
+
msgid ""
|
3262 |
+
"The Pro version of the WooCommerce Add-On is required to Import Coupons, but "
|
3263 |
+
"you have the free version installed"
|
3264 |
+
msgstr ""
|
3265 |
+
"WooCommerce アドオンの Pro バージョンがインポート クーポンに必要が無料版をイ"
|
3266 |
+
"ンストールします。"
|
3267 |
+
|
3268 |
+
#: views/admin/import/index.php:332
|
3269 |
+
#: views/admin/import/options/_settings_template.php:167
|
3270 |
+
msgid "The WooCommerce Add-On Pro is Required to Import Coupons"
|
3271 |
+
msgstr "WooCommerce アドオン Pro はインポート クーポンに必要です"
|
3272 |
+
|
3273 |
+
#: views/admin/import/index.php:340
|
3274 |
+
msgid ""
|
3275 |
+
"In Step 4, you will map the records in your file to the existing items on "
|
3276 |
+
"your site and specify which data points will be updated and which will be "
|
3277 |
+
"left alone."
|
3278 |
+
msgstr ""
|
3279 |
+
"ステップ4では、あなたのサイト上の既存のアイテムにファイル内のレコードをマップ"
|
3280 |
+
"し、データ点が更新され、放置されるかを指定します。"
|
3281 |
+
|
3282 |
+
#: views/admin/import/index.php:341
|
3283 |
+
msgid ""
|
3284 |
+
"The Existing Items option is commonly used to update existing products with "
|
3285 |
+
"new stock quantities while leaving all their other data alone, update "
|
3286 |
+
"properties on your site with new pricing, etc."
|
3287 |
+
msgstr ""
|
3288 |
+
"一人ですべての他のデータを残したまま、既存のアイテムのオプションは、一般的に"
|
3289 |
+
"など、新価格であなたのサイトのプロパティを更新し、新たな在庫数量を持つ既存の"
|
3290 |
+
"製品を更新するために使用されます"
|
3291 |
+
|
3292 |
+
#: views/admin/import/index.php:352
|
3293 |
+
#: views/admin/import/options/_import_file.php:36
|
3294 |
+
msgid "File upload rejected by server"
|
3295 |
+
msgstr "ファイルのアップロード サーバーによって拒否されました"
|
3296 |
+
|
3297 |
+
#: views/admin/import/index.php:353
|
3298 |
+
#: views/admin/import/options/_import_file.php:37
|
3299 |
+
msgid "Contact your host and have them check your server's error log."
|
3300 |
+
msgstr "あなたのホストに連絡し、サーバーのエラー ログを確認してもらいます。"
|
3301 |
+
|
3302 |
+
#: views/admin/import/index.php:367
|
3303 |
+
#, php-format
|
3304 |
+
msgid "Please verify that the file you using is a valid %s file."
|
3305 |
+
msgstr "ファイルを使用してあなたが確認してください有効な %s ファイルです。"
|
3306 |
+
|
3307 |
+
#: views/admin/import/index.php:382
|
3308 |
+
msgid "Skip to Step 4"
|
3309 |
+
msgstr "ステップ4をスキップ"
|
3310 |
+
|
3311 |
+
#: views/admin/import/index.php:383
|
3312 |
+
msgid "Continue to Step 2"
|
3313 |
+
msgstr "ステップ2に進みます"
|
3314 |
+
|
3315 |
+
#: views/admin/import/options.php:119
|
3316 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:22
|
3317 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:89
|
3318 |
+
#: views/admin/import/options/_reimport_template.php:14
|
3319 |
+
#: views/admin/import/options/_reimport_template.php:81
|
3320 |
+
msgid "Record Matching"
|
3321 |
+
msgstr "レコードマッチング"
|
3322 |
+
|
3323 |
+
#: views/admin/import/options.php:122
|
3324 |
+
msgid ""
|
3325 |
+
"Record Matching is how WP All Import matches records in your file with posts "
|
3326 |
+
"that already exist WordPress."
|
3327 |
+
msgstr ""
|
3328 |
+
"レコードマッチングはWPすべてのインポートがすでにWordPressの存在ポストにあなた"
|
3329 |
+
"のファイル内のレコードを照合する方法です。"
|
3330 |
+
|
3331 |
+
#: views/admin/import/options.php:126
|
3332 |
+
msgid ""
|
3333 |
+
"Record Matching is most commonly used to tell WP All Import how to match up "
|
3334 |
+
"records in your file with posts WP All Import has already created on your "
|
3335 |
+
"site, so that if your file is updated with new data, WP All Import can "
|
3336 |
+
"update your posts accordingly."
|
3337 |
+
msgstr ""
|
3338 |
+
"レコードマッチングは、最も一般的にあなたのファイルが新しいデータで更新される"
|
3339 |
+
"場合、WPのすべてのインポートがそれに応じてあなたの記事を更新できるように、WP"
|
3340 |
+
"のすべてのインポートがすでにあなたのサイト上で作成された記事で、ファイル内の"
|
3341 |
+
"レコードを一致させるためにどのようにWPすべてのインポートを指示するために使用"
|
3342 |
+
"され。"
|
3343 |
+
|
3344 |
+
#: views/admin/import/options.php:131
|
3345 |
+
msgid "AUTOMATIC RECORD MATCHING"
|
3346 |
+
msgstr "レコードの自動マッチング"
|
3347 |
+
|
3348 |
+
#: views/admin/import/options.php:134
|
3349 |
+
msgid ""
|
3350 |
+
"Automatic Record Matching allows WP All Import to update records that were "
|
3351 |
+
"imported or updated during the last run of this same import."
|
3352 |
+
msgstr ""
|
3353 |
+
"自動レコードマッチングでは、WP All Importを使用して、この同じインポートの前回"
|
3354 |
+
"の実行時にインポートまたは更新されたレコードを更新できます。"
|
3355 |
+
|
3356 |
+
#: views/admin/import/options.php:138
|
3357 |
+
msgid ""
|
3358 |
+
"Your unique key must be UNIQUE for each record in your feed. Make sure you "
|
3359 |
+
"get it right - you can't change it later. You'll have to re-create your "
|
3360 |
+
"import."
|
3361 |
+
msgstr ""
|
3362 |
+
"あなたのユニークなキーは、フィード内の各レコードの一意である必要があります。"
|
3363 |
+
"あなたは右のそれを得ることを確認してください - あなたは後でそれを変更すること"
|
3364 |
+
"はできません。あなたのインポートを再作成する必要があります。"
|
3365 |
+
|
3366 |
+
#: views/admin/import/options.php:143
|
3367 |
+
msgid "MANUAL RECORD MATCHING"
|
3368 |
+
msgstr "手動レコードマッチング"
|
3369 |
+
|
3370 |
+
#: views/admin/import/options.php:146
|
3371 |
+
msgid ""
|
3372 |
+
"Manual record matching allows WP All Import to update any records, even "
|
3373 |
+
"records that were not imported with WP All Import, or are part of a "
|
3374 |
+
"different import."
|
3375 |
+
msgstr ""
|
3376 |
+
"マニュアルレコードマッチングは、WPすべてのインポートがすべてのレコードを更新"
|
3377 |
+
"することを可能にするWPすべてのインポートでインポートされなかったとしても、レ"
|
3378 |
+
"コード、または異なる輸入の一部です。"
|
3379 |
+
|
3380 |
+
#: views/admin/import/options/_buttons_template.php:2
|
3381 |
+
msgid "To run the import, click Run Import on the Manage Imports page."
|
3382 |
+
msgstr ""
|
3383 |
+
"インポートを実行するには、輸入を管理]ページの[実行インポート]をクリックしま"
|
3384 |
+
"す。"
|
3385 |
+
|
3386 |
+
#: views/admin/import/options/_buttons_template.php:11
|
3387 |
+
msgid "Back to Step 3"
|
3388 |
+
msgstr "ステップ3に戻る"
|
3389 |
+
|
3390 |
+
#: views/admin/import/options/_buttons_template.php:15
|
3391 |
+
msgid "Save Only"
|
3392 |
+
msgstr "保存のみ"
|
3393 |
+
|
3394 |
+
#: views/admin/import/options/_buttons_template.php:18
|
3395 |
+
msgid "Continue"
|
3396 |
+
msgstr "続行"
|
3397 |
+
|
3398 |
+
#: views/admin/import/options/_buttons_template.php:21
|
3399 |
+
#: views/admin/import/template.php:227
|
3400 |
+
msgid "Back to Manage Imports"
|
3401 |
+
msgstr "インポートの管理に戻る"
|
3402 |
+
|
3403 |
+
#: views/admin/import/options/_buttons_template.php:22
|
3404 |
+
msgid "Save Import Configuration"
|
3405 |
+
msgstr "インポート設定を保存"
|
3406 |
+
|
3407 |
+
#: views/admin/import/options/_import_file.php:62
|
3408 |
+
msgid "Import File"
|
3409 |
+
msgstr "ファイルのインポート"
|
3410 |
+
|
3411 |
+
#: views/admin/import/options/_import_file.php:71
|
3412 |
+
msgid "Specify the location of the file to use for future runs of this import."
|
3413 |
+
msgstr "このインポートの将来の実行に使用するファイルの場所を指定します。"
|
3414 |
+
|
3415 |
+
#: views/admin/import/options/_import_file.php:94
|
3416 |
+
msgid "<span>Upload Complete</span> - "
|
3417 |
+
msgstr "<span>アップロードが完了</span>-"
|
3418 |
+
|
3419 |
+
#: views/admin/import/options/_import_file.php:106
|
3420 |
+
msgid "Upload"
|
3421 |
+
msgstr "アップロード"
|
3422 |
+
|
3423 |
+
#: views/admin/import/options/_reimport_options.php:2
|
3424 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:11
|
3425 |
+
msgid "When WP All Import finds new or changed data..."
|
3426 |
+
msgstr "WP All Importは、新規または変更されたデータを見つけます..."
|
3427 |
+
|
3428 |
+
#: views/admin/import/options/_reimport_options.php:4
|
3429 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:13
|
3430 |
+
msgid ""
|
3431 |
+
"If this import is run again and WP All Import finds new or changed data..."
|
3432 |
+
msgstr ""
|
3433 |
+
"このインポートを再度実行するかどうか、新しい検索 WP をすべてインポートまたは"
|
3434 |
+
"変更されたデータ."
|
3435 |
+
|
3436 |
+
#: views/admin/import/options/_reimport_options.php:9
|
3437 |
+
msgid "Create new posts from records newly present in your file"
|
3438 |
+
msgstr "あなたのファイルに新しく存在レコードから、新しい投稿を作成します。"
|
3439 |
+
|
3440 |
+
#: views/admin/import/options/_reimport_options.php:11
|
3441 |
+
msgid ""
|
3442 |
+
"New posts will only be created when ID column is present and value in ID "
|
3443 |
+
"column is unique."
|
3444 |
+
msgstr ""
|
3445 |
+
"ID列が存在し、ID列の値が一意である場合に、新しいポストにのみ作成されます。"
|
3446 |
+
|
3447 |
+
#: views/admin/import/options/_reimport_options.php:18
|
3448 |
+
msgid "Delete posts that are no longer present in your file"
|
3449 |
+
msgstr "ファイルに存在しなくなった投稿を削除する"
|
3450 |
+
|
3451 |
+
#: views/admin/import/options/_reimport_options.php:20
|
3452 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:29
|
3453 |
+
msgid ""
|
3454 |
+
"Records removed from the import file can only be deleted when importing into "
|
3455 |
+
"New Items. This feature cannot be enabled when importing into Existing Items."
|
3456 |
+
msgstr ""
|
3457 |
+
"インポート ファイルから削除されたレコードは、新しいアイテムにインポートする場"
|
3458 |
+
"合にのみ削除できます。既存のアイテムにインポートする場合、この機能を有効にで"
|
3459 |
+
"きません。"
|
3460 |
+
|
3461 |
+
#: views/admin/import/options/_reimport_options.php:27
|
3462 |
+
msgid "Do not remove attachments"
|
3463 |
+
msgstr "添付ファイルを削除しない"
|
3464 |
+
|
3465 |
+
#: views/admin/import/options/_reimport_options.php:32
|
3466 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:36
|
3467 |
+
msgid "Do not remove images"
|
3468 |
+
msgstr "画像を削除しない"
|
3469 |
+
|
3470 |
+
#: views/admin/import/options/_reimport_options.php:37
|
3471 |
+
msgid "Instead of deletion, set Custom Field"
|
3472 |
+
msgstr "削除の代わりにカスタムフィールドを設定する"
|
3473 |
+
|
3474 |
+
#: views/admin/import/options/_reimport_options.php:40
|
3475 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:44
|
3476 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:73
|
3477 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:106
|
3478 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:123
|
3479 |
+
#: views/admin/import/options/_reimport_template.php:105
|
3480 |
+
#: views/admin/import/template/_custom_fields_template.php:51
|
3481 |
+
#: views/admin/import/template/_term_meta_template.php:51
|
3482 |
+
msgid "Name"
|
3483 |
+
msgstr "名前"
|
3484 |
+
|
3485 |
+
#: views/admin/import/options/_reimport_options.php:50
|
3486 |
+
msgid "Instead of deletion, change post status to Draft"
|
3487 |
+
msgstr "削除の代わりに、ステータスを下書きに変更します"
|
3488 |
+
|
3489 |
+
#: views/admin/import/options/_reimport_options.php:57
|
3490 |
+
msgid "Update existing posts with changed data in your file"
|
3491 |
+
msgstr "既存の投稿をファイル内の変更されたデータで更新する"
|
3492 |
+
|
3493 |
+
#: views/admin/import/options/_reimport_options.php:59
|
3494 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:58
|
3495 |
+
msgid ""
|
3496 |
+
"These options will only be used if you run this import again later. All data "
|
3497 |
+
"is imported the first time you run an import."
|
3498 |
+
msgstr ""
|
3499 |
+
"後で再びこのインポートを実行する場合、これらのオプションは使用されます。すべ"
|
3500 |
+
"てのデータは、インポートを最初に実行したときにインポートされます。"
|
3501 |
+
|
3502 |
+
#: views/admin/import/options/_reimport_options.php:63
|
3503 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:62
|
3504 |
+
msgid "Update all data"
|
3505 |
+
msgstr "すべてのデータ更新"
|
3506 |
+
|
3507 |
+
#: views/admin/import/options/_reimport_options.php:66
|
3508 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:65
|
3509 |
+
msgid "Choose which data to update"
|
3510 |
+
msgstr "更新するデータを選択します"
|
3511 |
+
|
3512 |
+
#: views/admin/import/options/_reimport_options.php:69
|
3513 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:68
|
3514 |
+
msgid "Unselect All"
|
3515 |
+
msgstr "すべての選択を解除"
|
3516 |
+
|
3517 |
+
#: views/admin/import/options/_reimport_options.php:69
|
3518 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:68
|
3519 |
+
msgid "Select All"
|
3520 |
+
msgstr "全選択"
|
3521 |
+
|
3522 |
+
#: views/admin/import/options/_reimport_options.php:74
|
3523 |
+
msgid "Post status"
|
3524 |
+
msgstr "投稿ステータス"
|
3525 |
+
|
3526 |
+
#: views/admin/import/options/_reimport_options.php:75
|
3527 |
+
msgid "Hint: uncheck this box to keep trashed posts in the trash."
|
3528 |
+
msgstr "ヒント: ゴミ箱にゴミ箱の注文を残すには、このボックスをオフします。"
|
3529 |
+
|
3530 |
+
#: views/admin/import/options/_reimport_options.php:80
|
3531 |
+
#: views/admin/import/options/_reimport_template.php:98
|
3532 |
+
msgid "Title"
|
3533 |
+
msgstr "タイトル"
|
3534 |
+
|
3535 |
+
#: views/admin/import/options/_reimport_options.php:85
|
3536 |
+
msgid "Author"
|
3537 |
+
msgstr "販売者"
|
3538 |
+
|
3539 |
+
#: views/admin/import/options/_reimport_options.php:90
|
3540 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:78
|
3541 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:113
|
3542 |
+
#: views/admin/import/template/_other_template.php:292
|
3543 |
+
msgid "Slug"
|
3544 |
+
msgstr "Slug"
|
3545 |
+
|
3546 |
+
#: views/admin/import/options/_reimport_options.php:95
|
3547 |
+
#: views/admin/import/options/_reimport_template.php:100
|
3548 |
+
msgid "Content"
|
3549 |
+
msgstr "コンテンツ"
|
3550 |
+
|
3551 |
+
#: views/admin/import/options/_reimport_options.php:100
|
3552 |
+
msgid "Excerpt/Short Description"
|
3553 |
+
msgstr "抜粋/簡単な説明"
|
3554 |
+
|
3555 |
+
#: views/admin/import/options/_reimport_options.php:105
|
3556 |
+
msgid "Dates"
|
3557 |
+
msgstr "日付"
|
3558 |
+
|
3559 |
+
#: views/admin/import/options/_reimport_options.php:110
|
3560 |
+
msgid "Menu order"
|
3561 |
+
msgstr "表示順番"
|
3562 |
+
|
3563 |
+
#: views/admin/import/options/_reimport_options.php:115
|
3564 |
+
msgid "Parent post"
|
3565 |
+
msgstr "親投稿"
|
3566 |
+
|
3567 |
+
#: views/admin/import/options/_reimport_options.php:120
|
3568 |
+
msgid "Post type"
|
3569 |
+
msgstr "編集する投稿タイプを選択"
|
3570 |
+
|
3571 |
+
#: views/admin/import/options/_reimport_options.php:125
|
3572 |
+
msgid "Comment status"
|
3573 |
+
msgstr "コメント ステータス"
|
3574 |
+
|
3575 |
+
#: views/admin/import/options/_reimport_options.php:130
|
3576 |
+
msgid "Attachments"
|
3577 |
+
msgstr "添付"
|
3578 |
+
|
3579 |
+
#: views/admin/import/options/_reimport_options.php:144
|
3580 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:107
|
3581 |
+
msgid ""
|
3582 |
+
"This will keep the featured image if it exists, so you could modify the post "
|
3583 |
+
"image manually, and then do a reimport, and it would not overwrite the "
|
3584 |
+
"manually modified post image."
|
3585 |
+
msgstr ""
|
3586 |
+
"手動でポスト画像を変更し、再インポートを行うと、それは手動で変更後のイメージ"
|
3587 |
+
"を上書きしませんでしたので、これは、それが存在する場合、機能のイメージを維持"
|
3588 |
+
"します。"
|
3589 |
+
|
3590 |
+
#: views/admin/import/options/_reimport_options.php:148
|
3591 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:111
|
3592 |
+
msgid "Update all images"
|
3593 |
+
msgstr "すべての画像を更新"
|
3594 |
+
|
3595 |
+
#: views/admin/import/options/_reimport_options.php:154
|
3596 |
+
msgid "Don't touch existing images, append new images"
|
3597 |
+
msgstr "新しい画像を追加し、既存の画像をそのままにする。"
|
3598 |
+
|
3599 |
+
#: views/admin/import/options/_reimport_options.php:163
|
3600 |
+
#: views/admin/import/template/_custom_fields_template.php:17
|
3601 |
+
msgid "Custom Fields"
|
3602 |
+
msgstr "カスタム フィールド"
|
3603 |
+
|
3604 |
+
#: views/admin/import/options/_reimport_options.php:164
|
3605 |
+
msgid ""
|
3606 |
+
"If Keep Custom Fields box is checked, it will keep all Custom Fields, and "
|
3607 |
+
"add any new Custom Fields specified in Custom Fields section, as long as "
|
3608 |
+
"they do not overwrite existing fields. If 'Only keep this Custom Fields' is "
|
3609 |
+
"specified, it will only keep the specified fields."
|
3610 |
+
msgstr ""
|
3611 |
+
"キープカスタムフィールドのチェックボックスをオンにすると、それはすべてのカス"
|
3612 |
+
"タムフィールドを維持し、限り、彼らは既存のフィールドを上書きしないように、カ"
|
3613 |
+
"スタムフィールド]セクションで指定された新しいカスタムフィールドを追加しま"
|
3614 |
+
"す。 'のみ続けるこのカスタムフィールド」が指定されている場合、それだけで指定"
|
3615 |
+
"したフィールドを保持します。"
|
3616 |
+
|
3617 |
+
#: views/admin/import/options/_reimport_options.php:168
|
3618 |
+
msgid "Update all Custom Fields"
|
3619 |
+
msgstr "カスタムフィールドを更新"
|
3620 |
+
|
3621 |
+
#: views/admin/import/options/_reimport_options.php:172
|
3622 |
+
msgid "Update only these Custom Fields, leave the rest alone"
|
3623 |
+
msgstr "これらのカスタムフィールドのみを更新し、残りはそのままにします"
|
3624 |
+
|
3625 |
+
#: views/admin/import/options/_reimport_options.php:180
|
3626 |
+
msgid "Leave these fields alone, update all other Custom Fields"
|
3627 |
+
msgstr ""
|
3628 |
+
"他のすべてのカスタムフィールドを更新し、単独でこれらのフィールドを残します"
|
3629 |
+
|
3630 |
+
#: views/admin/import/options/_reimport_options.php:192
|
3631 |
+
msgid "Taxonomies (incl. Categories and Tags)"
|
3632 |
+
msgstr "タクソノミー(incl. カテゴリとタグ)"
|
3633 |
+
|
3634 |
+
#: views/admin/import/options/_reimport_options.php:206
|
3635 |
+
msgid "Leave these taxonomies alone, update all others"
|
3636 |
+
msgstr "これらのタクソノミーだけを残し、他のすべてを更新する"
|
3637 |
+
|
3638 |
+
#: views/admin/import/options/_reimport_options.php:214
|
3639 |
+
msgid "Update only these taxonomies, leave the rest alone"
|
3640 |
+
msgstr "これらのタクソノミーのみを更新し、残りは単独で残す"
|
3641 |
+
|
3642 |
+
#: views/admin/import/options/_reimport_options.php:222
|
3643 |
+
msgid "Remove existing taxonomies, add new taxonomies"
|
3644 |
+
msgstr "既存のタクソノミーを削除し、新しいタクソノミーを追加する"
|
3645 |
+
|
3646 |
+
#: views/admin/import/options/_reimport_options.php:226
|
3647 |
+
msgid "Only add new"
|
3648 |
+
msgstr "新規追加のみ"
|
3649 |
+
|
3650 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:18
|
3651 |
+
#, php-format
|
3652 |
+
msgid "Create new %s from records newly present in your file"
|
3653 |
+
msgstr "あなたのファイルに新しく存在するレコードから新しい%sを作成する"
|
3654 |
+
|
3655 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:20
|
3656 |
+
#, php-format
|
3657 |
+
msgid ""
|
3658 |
+
"New %s will only be created when ID column is present and value in ID column "
|
3659 |
+
"is unique."
|
3660 |
+
msgstr "新しい %s は、ID 列があり、ID 列の値が一意場合にのみ作成されます。"
|
3661 |
+
|
3662 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:27
|
3663 |
+
#, php-format
|
3664 |
+
msgid "Delete %s that are no longer present in your file"
|
3665 |
+
msgstr "ファイルに存在しない%sを削除する"
|
3666 |
+
|
3667 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:41
|
3668 |
+
msgid "Instead of deletion, set Term Meta"
|
3669 |
+
msgstr "削除ではなく用語 Meta を設定します。"
|
3670 |
+
|
3671 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:56
|
3672 |
+
#, php-format
|
3673 |
+
msgid "Update existing %s with changed data in your file"
|
3674 |
+
msgstr "既存の%sをファイル内の変更されたデータで更新する"
|
3675 |
+
|
3676 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:83
|
3677 |
+
msgid "Description"
|
3678 |
+
msgstr "詳細"
|
3679 |
+
|
3680 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:93
|
3681 |
+
#: views/admin/import/template/_term_other_template.php:23
|
3682 |
+
msgid "Parent term"
|
3683 |
+
msgstr "親ターム"
|
3684 |
+
|
3685 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:119
|
3686 |
+
#: views/admin/import/template/_term_meta_template.php:17
|
3687 |
+
msgid "Term Meta"
|
3688 |
+
msgstr "タームメタ"
|
3689 |
+
|
3690 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:120
|
3691 |
+
msgid ""
|
3692 |
+
"If Keep Term Meta box is checked, it will keep all Term Meta, and add any "
|
3693 |
+
"new Term Meta specified in Term Meta section, as long as they do not "
|
3694 |
+
"overwrite existing fields. If 'Only keep this Term Meta' is specified, it "
|
3695 |
+
"will only keep the specified fields."
|
3696 |
+
msgstr ""
|
3697 |
+
"タームメタを保持するチェックボックスがオンの場合、既存のフィールドを上書きし"
|
3698 |
+
"ないかぎり、すべてのタームメタを保持し、タームメタセクションで指定された新し"
|
3699 |
+
"いTerm Metaを追加します。 「この期間をメタのみ保持する」が指定されている場"
|
3700 |
+
"合、指定されたフィールドのみが保持されます。"
|
3701 |
+
|
3702 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:124
|
3703 |
+
msgid "Update all Term Meta"
|
3704 |
+
msgstr "すべてのタームメタ を更新します。"
|
3705 |
+
|
3706 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:128
|
3707 |
+
msgid "Update only these Term Meta, leave the rest alone"
|
3708 |
+
msgstr "これらのタクソノミーのみを更新し、残りは単独で残す"
|
3709 |
+
|
3710 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:136
|
3711 |
+
msgid "Leave these fields alone, update all other Term Meta"
|
3712 |
+
msgstr "単独でこれらのフィールドを残して、他のすべての用語のメタを更新"
|
3713 |
+
|
3714 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:30
|
3715 |
+
#: views/admin/import/options/_reimport_template.php:22
|
3716 |
+
msgid "Choose how exported data will be re-imported."
|
3717 |
+
msgstr "エクスポートされたデータをどのように再インポートするかを選択します。"
|
3718 |
+
|
3719 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:36
|
3720 |
+
#: views/admin/import/options/_reimport_template.php:28
|
3721 |
+
#, php-format
|
3722 |
+
msgid "WP All Import will create new %s for each unique record in your file."
|
3723 |
+
msgstr ""
|
3724 |
+
"WP All Importは、新しい%sのあなたのファイル内の各一意のレコードのために作成さ"
|
3725 |
+
"れます。"
|
3726 |
+
|
3727 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:49
|
3728 |
+
#: views/admin/import/options/_reimport_template.php:41
|
3729 |
+
#, php-format
|
3730 |
+
msgid ""
|
3731 |
+
"WP All Import will associate records in your file with %s it has already "
|
3732 |
+
"created from previous runs of this import based on the Unique Identifier."
|
3733 |
+
msgstr ""
|
3734 |
+
"WP All Importは、%sのそれは既に一意識別子に基づいて、このインポートの以前の実"
|
3735 |
+
"行から作成していると、ファイル内のレコードを関連付けます。"
|
3736 |
+
|
3737 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:52
|
3738 |
+
#: views/admin/import/options/_reimport_template.php:44
|
3739 |
+
msgid "Unique Identifier"
|
3740 |
+
msgstr "一意の識別子"
|
3741 |
+
|
3742 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:58
|
3743 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:69
|
3744 |
+
#: views/admin/import/options/_reimport_template.php:50
|
3745 |
+
#: views/admin/import/options/_reimport_template.php:61
|
3746 |
+
msgid "Auto-detect"
|
3747 |
+
msgstr "自動検知"
|
3748 |
+
|
3749 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:61
|
3750 |
+
#: views/admin/import/options/_reimport_template.php:53
|
3751 |
+
#: views/admin/manage/index.php:327
|
3752 |
+
msgid "Edit"
|
3753 |
+
msgstr "編集 "
|
3754 |
+
|
3755 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:62
|
3756 |
+
#: views/admin/import/options/_reimport_template.php:54
|
3757 |
+
msgid "Warning: Are you sure you want to edit the Unique Identifier?"
|
3758 |
+
msgstr "警告:あなたは一意の識別子を編集してもよろしいですか?"
|
3759 |
+
|
3760 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:63
|
3761 |
+
#: views/admin/import/options/_reimport_template.php:55
|
3762 |
+
#, php-format
|
3763 |
+
msgid ""
|
3764 |
+
"It is recommended you delete all %s associated with this import before "
|
3765 |
+
"editing the unique identifier."
|
3766 |
+
msgstr ""
|
3767 |
+
"あなたが一意の識別子を編集する前に、このインポートに関連付けられているすべて"
|
3768 |
+
"の%sを削除することをお勧めします。"
|
3769 |
+
|
3770 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:64
|
3771 |
+
#: views/admin/import/options/_reimport_template.php:56
|
3772 |
+
#, php-format
|
3773 |
+
msgid ""
|
3774 |
+
"Editing the unique identifier will dissociate all existing %s linked to this "
|
3775 |
+
"import. Future runs of the import will result in duplicates, as WP All "
|
3776 |
+
"Import will no longer be able to update these %s."
|
3777 |
+
msgstr ""
|
3778 |
+
"一意の識別子を編集すると、このインポートにリンクされているすべての既存の%sが"
|
3779 |
+
"分離されます。 WP All Importはこれらの%sを更新することができなくなるので、イ"
|
3780 |
+
"ンポートの将来の実行は重複を招きます。"
|
3781 |
+
|
3782 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:65
|
3783 |
+
#: views/admin/import/options/_reimport_template.php:57
|
3784 |
+
msgid ""
|
3785 |
+
"You really should just re-create your import, and pick the right unique "
|
3786 |
+
"identifier to start with."
|
3787 |
+
msgstr ""
|
3788 |
+
"あなたは本当に自分のインポートを再作成し、で開始する権利一意の識別子を選択す"
|
3789 |
+
"る必要があります。"
|
3790 |
+
|
3791 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:75
|
3792 |
+
#: views/admin/import/options/_reimport_template.php:67
|
3793 |
+
msgid ""
|
3794 |
+
"Drag an element, or combo of elements, to the box above. The Unique "
|
3795 |
+
"Identifier should be unique for each record in your file, and should stay "
|
3796 |
+
"the same even if your file is updated. Things like product IDs, titles, and "
|
3797 |
+
"SKUs are good Unique Identifiers because they probably won't change. Don't "
|
3798 |
+
"use a description or price, since that might be changed."
|
3799 |
+
msgstr ""
|
3800 |
+
"上のボックスに、要素、または要素のコンボをドラッグします。一意識別子は、ファ"
|
3801 |
+
"イル内のレコードごとに一意である必要があり、あなたのファイルが更新されていて"
|
3802 |
+
"も同じままである必要があります。彼らはおそらく変更されませんので、製品ID、タ"
|
3803 |
+
"イトル、およびSKUのようなものが良いユニークな識別子です。それは変更される場合"
|
3804 |
+
"がありますので、説明や価格を使用しないでください。"
|
3805 |
+
|
3806 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:76
|
3807 |
+
#: views/admin/import/options/_reimport_template.php:68
|
3808 |
+
#, php-format
|
3809 |
+
msgid ""
|
3810 |
+
"If you run this import again with an updated file, the Unique Identifier "
|
3811 |
+
"allows WP All Import to correctly link the records in your updated file with "
|
3812 |
+
"the %s it will create right now. If multiple records in this file have the "
|
3813 |
+
"same Unique Identifier, only the first will be created. The others will be "
|
3814 |
+
"detected as duplicates."
|
3815 |
+
msgstr ""
|
3816 |
+
"あなたが更新されたファイルで再びこのインポートを実行する場合は、一意の識別子"
|
3817 |
+
"がWPすべてのインポートが正しく%sのあなたの更新されたファイル内のレコードをリ"
|
3818 |
+
"ンクすることができ、それは今作成されます。このファイルに複数のレコードが同じ"
|
3819 |
+
"一意の識別子を使用している場合は、最初に作成されます。他の人が重複として検出"
|
3820 |
+
"されます。"
|
3821 |
+
|
3822 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:91
|
3823 |
+
#: views/admin/import/options/_reimport_template.php:83
|
3824 |
+
#, php-format
|
3825 |
+
msgid "WP All Import will merge data into existing %s."
|
3826 |
+
msgstr "WP All Import は、既存の %sにデータをマージします。"
|
3827 |
+
|
3828 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:101
|
3829 |
+
#, php-format
|
3830 |
+
msgid "Records in your file will be matched with %s on your site based on..."
|
3831 |
+
msgstr "あなたのファイルのレコードは、あなたのサイトの%ssと一致します..."
|
3832 |
+
|
3833 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:120
|
3834 |
+
#: views/admin/import/options/_reimport_template.php:103
|
3835 |
+
msgid "Custom field"
|
3836 |
+
msgstr "カスタムフィールド"
|
3837 |
+
|
3838 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:130
|
3839 |
+
msgid "Term ID"
|
3840 |
+
msgstr "ターム ID"
|
3841 |
+
|
3842 |
+
#: views/admin/import/options/_reimport_template.php:93
|
3843 |
+
#, php-format
|
3844 |
+
msgid "Records in your file will be matched with %ss on your site based on..."
|
3845 |
+
msgstr "あなたのファイルのレコードは、あなたのサイトの%ssと一致します..."
|
3846 |
+
|
3847 |
+
#: views/admin/import/options/_reimport_template.php:113
|
3848 |
+
msgid "Post ID"
|
3849 |
+
msgstr "投稿ID"
|
3850 |
+
|
3851 |
+
#: views/admin/import/options/_settings_template.php:4
|
3852 |
+
msgid "Configure Advanced Settings"
|
3853 |
+
msgstr "詳細設定を構成します"
|
3854 |
+
|
3855 |
+
#: views/admin/import/options/_settings_template.php:11
|
3856 |
+
msgid "Import Speed Optimization"
|
3857 |
+
msgstr "インポート速度の最適化"
|
3858 |
+
|
3859 |
+
#: views/admin/import/options/_settings_template.php:15
|
3860 |
+
msgid "High Speed Small File Processing"
|
3861 |
+
msgstr "高速小ファイル処理"
|
3862 |
+
|
3863 |
+
#: views/admin/import/options/_settings_template.php:15
|
3864 |
+
msgid ""
|
3865 |
+
"If the import takes longer than your server's timeout settings "
|
3866 |
+
"(max_execution_time, mod_fcgid read data timeout, etc.) it will fail."
|
3867 |
+
msgstr ""
|
3868 |
+
"インポートがサーバーのタイムアウト設定(max_execution_time、mod_fcgid読み取り"
|
3869 |
+
"データタイムアウトなど)よりも時間がかかる場合は、失敗します。"
|
3870 |
+
|
3871 |
+
#: views/admin/import/options/_settings_template.php:19
|
3872 |
+
msgid "Iterative, Piece-by-Piece Processing"
|
3873 |
+
msgstr "反復的なピース・バイ・ピース処理"
|
3874 |
+
|
3875 |
+
#: views/admin/import/options/_settings_template.php:23
|
3876 |
+
msgid "In each iteration, process"
|
3877 |
+
msgstr "各反復において、プロセス"
|
3878 |
+
|
3879 |
+
#: views/admin/import/options/_settings_template.php:23
|
3880 |
+
#: views/admin/import/process.php:31
|
3881 |
+
msgid "records"
|
3882 |
+
msgstr "レコード"
|
3883 |
+
|
3884 |
+
#: views/admin/import/options/_settings_template.php:24
|
3885 |
+
msgid ""
|
3886 |
+
"WP All Import must be able to process this many records in less than your "
|
3887 |
+
"server's timeout settings. If your import fails before completion, to "
|
3888 |
+
"troubleshoot you should lower this number. If you are importing images, "
|
3889 |
+
"especially high resolution images, high numbers here are probably a bad "
|
3890 |
+
"idea, since downloading the images can take lots of time - for example, 20 "
|
3891 |
+
"posts with 5 images each = 100 images. At 500Kb per image that's 50Mb that "
|
3892 |
+
"needs to be downloaded. Can your server download that before timing out? If "
|
3893 |
+
"not, the import will fail."
|
3894 |
+
msgstr ""
|
3895 |
+
"WP All Importは、サーバーのタイムアウト設定よりも少なくても、この多くのレコー"
|
3896 |
+
"ドを処理できる必要があります。 完了前にインポートに失敗した場合は、トラブル"
|
3897 |
+
"シューティングのためにこの数を減らす必要があります。 イメージ、特に高解像度の"
|
3898 |
+
"イメージをインポートする場合は、イメージのダウンロードに時間がかかりすぎる可"
|
3899 |
+
"能性が高いため、ここでの数字は多分悪い考えです。 画像あたり500Kbでダウンロー"
|
3900 |
+
"ドする必要がある50MBです。 タイムアウトする前にサーバからダウンロードできます"
|
3901 |
+
"か? そうでない場合、インポートは失敗します。"
|
3902 |
+
|
3903 |
+
#: views/admin/import/options/_settings_template.php:29
|
3904 |
+
msgid "Split file up into <strong>"
|
3905 |
+
msgstr "ファイルを分割する<strong>"
|
3906 |
+
|
3907 |
+
#: views/admin/import/options/_settings_template.php:30
|
3908 |
+
msgid ""
|
3909 |
+
"This option will decrease the amount of slowdown experienced at the end of "
|
3910 |
+
"large imports. The slowdown is partially caused by the need for WP All "
|
3911 |
+
"Import to read deeper and deeper into the file on each successive iteration. "
|
3912 |
+
"Splitting the file into pieces means that, for example, instead of having to "
|
3913 |
+
"read 19000 records into a 20000 record file when importing the last 1000 "
|
3914 |
+
"records, WP All Import will just split it into 20 chunks, and then read the "
|
3915 |
+
"last chunk from the beginning."
|
3916 |
+
msgstr ""
|
3917 |
+
"減速の量を減少させます。このオプションは、大規模な輸入の最後に経験しました。"
|
3918 |
+
"景気減速は、部分的に連続する各繰り返しでファイルに深く深く読むためにWPすべて"
|
3919 |
+
"のインポートの必要性によって引き起こされます。粉々にファイルを分割すると、た"
|
3920 |
+
"とえば、代わりに最後の1000個のレコードをインポートするときに20000レコードファ"
|
3921 |
+
"イルに19000レコードを読み取るするので、WPすべてのインポートがちょうど20チャン"
|
3922 |
+
"クに分割し、その後、最初から最後のチャンクを読んで、ということを意味します。"
|
3923 |
+
|
3924 |
+
#: views/admin/import/options/_settings_template.php:37
|
3925 |
+
msgid ""
|
3926 |
+
"Increase speed by disabling do_action calls in wp_insert_post during import."
|
3927 |
+
msgstr ""
|
3928 |
+
"インポート中にwp_insert_postでdo_action呼び出しを無効にすることで高速化を図り"
|
3929 |
+
"ます。"
|
3930 |
+
|
3931 |
+
#: views/admin/import/options/_settings_template.php:38
|
3932 |
+
msgid ""
|
3933 |
+
"This option is for advanced users with knowledge of WordPress development. "
|
3934 |
+
"Your theme or plugins may require these calls when posts are created. Next "
|
3935 |
+
"action will be disabled: 'transition_post_status', 'save_post', "
|
3936 |
+
"'pre_post_update', 'add_attachment', 'edit_attachment', 'edit_post', "
|
3937 |
+
"'post_updated', 'wp_insert_post'. Verify your created posts work properly if "
|
3938 |
+
"you check this box."
|
3939 |
+
msgstr ""
|
3940 |
+
"このオプションは、WordPressの開発の知識を持つ上級者向けの機能です。ポストが作"
|
3941 |
+
"成されたときにあなたのテーマやプラグインは、これらの呼び出しが必要な場合があ"
|
3942 |
+
"ります。次のアクションは無効になります: 'transition_post_status'、 "
|
3943 |
+
"'save_post'、 'pre_post_update'、 'ADD_ATTACHMENT'、 'edit_attachment'、 "
|
3944 |
+
"'edit_post'、 'post_updated'、 'wp_insert_post」。このチェックボックスをオン"
|
3945 |
+
"にした場合、あなたの作成したポストが正しく動作を確認してください。"
|
3946 |
+
|
3947 |
+
#: views/admin/import/options/_settings_template.php:43
|
3948 |
+
msgid "Taxonomy Type"
|
3949 |
+
msgstr "分類体系"
|
3950 |
+
|
3951 |
+
#: views/admin/import/options/_settings_template.php:44
|
3952 |
+
msgid ""
|
3953 |
+
"Editing this will change the taxonomy type of the taxonomies processed by "
|
3954 |
+
"this import. Re-run the import for the changes to take effect."
|
3955 |
+
msgstr ""
|
3956 |
+
"これを編集は、このインポートによって処理された分類の分類型を変更します。変更"
|
3957 |
+
"を反映のためインポートを再実行します。"
|
3958 |
+
|
3959 |
+
#: views/admin/import/options/_settings_template.php:46
|
3960 |
+
msgid "Post Type"
|
3961 |
+
msgstr "投稿タイプ"
|
3962 |
+
|
3963 |
+
#: views/admin/import/options/_settings_template.php:47
|
3964 |
+
msgid ""
|
3965 |
+
"Editing this will change the post type of the posts processed by this "
|
3966 |
+
"import. Re-run the import for the changes to take effect."
|
3967 |
+
msgstr ""
|
3968 |
+
"これを編集すると、このインポートによって処理されたポストのポストタイプを変更"
|
3969 |
+
"します。変更を有効にするには、インポートを再実行します。"
|
3970 |
+
|
3971 |
+
#: views/admin/import/options/_settings_template.php:175
|
3972 |
+
msgid ""
|
3973 |
+
"Editing this can break your entire import. You will have to re-create it "
|
3974 |
+
"from scratch."
|
3975 |
+
msgstr ""
|
3976 |
+
"これを編集すると、あなたの全体のインポートを破ることができます。あなたは最初"
|
3977 |
+
"からそれを再作成する必要があります。"
|
3978 |
+
|
3979 |
+
#: views/admin/import/options/_settings_template.php:180
|
3980 |
+
msgid "CSV Delimiter"
|
3981 |
+
msgstr "CSV区切り記号"
|
3982 |
+
|
3983 |
+
#: views/admin/import/options/_settings_template.php:185
|
3984 |
+
msgid "Downloads"
|
3985 |
+
msgstr "ダウンロード"
|
3986 |
+
|
3987 |
+
#: views/admin/import/options/_settings_template.php:188
|
3988 |
+
msgid "Import Template"
|
3989 |
+
msgstr "テンプレートをインポート"
|
3990 |
+
|
3991 |
+
#: views/admin/import/options/_settings_template.php:189
|
3992 |
+
msgid "Import Bundle"
|
3993 |
+
msgstr "インポートのバンドル"
|
3994 |
+
|
3995 |
+
#: views/admin/import/options/_settings_template.php:192
|
3996 |
+
msgid "Other"
|
3997 |
+
msgstr "その他"
|
3998 |
+
|
3999 |
+
#: views/admin/import/options/_settings_template.php:196
|
4000 |
+
msgid "Import only specified records"
|
4001 |
+
msgstr "指定されたレコードのみをインポートする"
|
4002 |
+
|
4003 |
+
#: views/admin/import/options/_settings_template.php:196
|
4004 |
+
msgid ""
|
4005 |
+
"Enter records or record ranges separated by commas, e.g. <b>1,5,7-10</b> "
|
4006 |
+
"would import the first, the fifth, and the seventh to tenth."
|
4007 |
+
msgstr ""
|
4008 |
+
"カンマで区切られたレコードまたはレコードの範囲を入力し、例えば<b>1,5,7-10</"
|
4009 |
+
"b> 、第1〜第5、及び第十に七インポートされます。"
|
4010 |
+
|
4011 |
+
#: views/admin/import/options/_settings_template.php:207
|
4012 |
+
msgid "Delete source XML file after importing"
|
4013 |
+
msgstr "インポート後にソースXMLファイルを削除します。"
|
4014 |
+
|
4015 |
+
#: views/admin/import/options/_settings_template.php:207
|
4016 |
+
msgid ""
|
4017 |
+
"This setting takes effect only when script has access rights to perform the "
|
4018 |
+
"action, e.g. file is not deleted when pulled via HTTP or delete permission "
|
4019 |
+
"is not granted to the user that script is executed under."
|
4020 |
+
msgstr ""
|
4021 |
+
"この設定は、スクリプトのアクションを実行するためのアクセス権を持っているHTTP"
|
4022 |
+
"経由で引っ張られたり、権限を削除すると、例えばファイルが削除されていません"
|
4023 |
+
"が、スクリプトの下で実行されているユーザーに付与されていない場合にのみ有効に"
|
4024 |
+
"なります。"
|
4025 |
+
|
4026 |
+
#: views/admin/import/options/_settings_template.php:214
|
4027 |
+
msgid "Auto-Cloak Links"
|
4028 |
+
msgstr "自動クロック リンク"
|
4029 |
+
|
4030 |
+
#: views/admin/import/options/_settings_template.php:214
|
4031 |
+
#, php-format
|
4032 |
+
msgid ""
|
4033 |
+
"Automatically process all links present in body of created post or page with "
|
4034 |
+
"<b>%s</b> plugin"
|
4035 |
+
msgstr ""
|
4036 |
+
"自動的に<b>%s</b>プラグインで作成したポストやページの体内に存在するすべてのリ"
|
4037 |
+
"ンクを処理"
|
4038 |
+
|
4039 |
+
#: views/admin/import/options/_settings_template.php:222
|
4040 |
+
#: views/admin/import/options/_settings_template.php:225
|
4041 |
+
msgid "Use StreamReader instead of XMLReader to parse import file"
|
4042 |
+
msgstr ""
|
4043 |
+
"インポート ファイルの解析に XMLReader の代わりに StreamReader を使用します。"
|
4044 |
+
|
4045 |
+
#: views/admin/import/options/_settings_template.php:222
|
4046 |
+
msgid ""
|
4047 |
+
"WP All Import is being forced to use Stream Reader for all imports. Go to WP "
|
4048 |
+
"All Import ▸ Settings to modify this setting."
|
4049 |
+
msgstr ""
|
4050 |
+
"WP すべてインポートは強制的にすべてのインポートのストリーム リーダーを使用し"
|
4051 |
+
"ます。WP すべてインポート ▸ 設定この設定を変更するに移動します。"
|
4052 |
+
|
4053 |
+
#: views/admin/import/options/_settings_template.php:225
|
4054 |
+
#: views/admin/settings/index.php:188
|
4055 |
+
msgid ""
|
4056 |
+
"XMLReader is much faster, but has a bug that sometimes prevents certain "
|
4057 |
+
"records from being imported with import files that contain special cases."
|
4058 |
+
msgstr ""
|
4059 |
+
"XMLReaderははるかに高速ですが、特殊なケースを含むインポートファイルで特定のレ"
|
4060 |
+
"コードがインポートされないことがあるバグがあります。"
|
4061 |
+
|
4062 |
+
#: views/admin/import/options/_settings_template.php:230
|
4063 |
+
msgid "Friendly Name"
|
4064 |
+
msgstr "フレンドリ名"
|
4065 |
+
|
4066 |
+
#: views/admin/import/preview.php:6 views/admin/import/preview_images.php:6
|
4067 |
+
#: views/admin/import/preview_prices.php:6
|
4068 |
+
#: views/admin/import/preview_taxonomies.php:6 views/admin/import/tag.php:8
|
4069 |
+
#, php-format
|
4070 |
+
msgid ""
|
4071 |
+
"<strong><input type=\"text\" value=\"%s\" name=\"tagno\" class=\"tagno\"/></"
|
4072 |
+
"strong><span class=\"out_of\"> of <strong class=\"pmxi_count\">%s</strong></"
|
4073 |
+
"span>"
|
4074 |
+
msgstr ""
|
4075 |
+
"<strong><input type=\"text\" value=\"%s\" name=\"tagno\" class=\"tagno\"/></"
|
4076 |
+
"strong><span class=\"out_of\"> の <strong class=\"pmxi_count\">%s</strong></"
|
4077 |
+
"span>"
|
4078 |
+
|
4079 |
+
#: views/admin/import/preview_images.php:17
|
4080 |
+
msgid "Test Images"
|
4081 |
+
msgstr "テスト画像"
|
4082 |
+
|
4083 |
+
#: views/admin/import/preview_images.php:24
|
4084 |
+
msgid ""
|
4085 |
+
"Click to test that your images are able to be accessed by WP All Import."
|
4086 |
+
msgstr ""
|
4087 |
+
"あなたのイメージが WP すべてインポートにアクセスすることをテストするをクリッ"
|
4088 |
+
"クします。"
|
4089 |
+
|
4090 |
+
#: views/admin/import/preview_images.php:26
|
4091 |
+
msgid "Run Test"
|
4092 |
+
msgstr "テスト実行"
|
4093 |
+
|
4094 |
+
#: views/admin/import/preview_images.php:60
|
4095 |
+
msgid "Retrieving images..."
|
4096 |
+
msgstr "画像の取得中..."
|
4097 |
+
|
4098 |
+
#: views/admin/import/preview_images.php:64
|
4099 |
+
msgid "WP All Import will import images from the following file paths:"
|
4100 |
+
msgstr "WP All Importには、次のファイルパスから画像をインポートします:"
|
4101 |
+
|
4102 |
+
#: views/admin/import/preview_images.php:65
|
4103 |
+
msgid "Please ensure the images exists at these file paths"
|
4104 |
+
msgstr "これらのファイルパスにイメージが存在することを確認してください"
|
4105 |
+
|
4106 |
+
#: views/admin/import/preview_images.php:73
|
4107 |
+
#: views/admin/import/preview_images.php:115
|
4108 |
+
#: views/admin/import/preview_images.php:154
|
4109 |
+
msgid "Here are the above URLs, in <img> tags. "
|
4110 |
+
msgstr "ここでの<img> タグ内の上記のURLは、あります。"
|
4111 |
+
|
4112 |
+
#: views/admin/import/preview_images.php:92
|
4113 |
+
msgid "Searching images..."
|
4114 |
+
msgstr "画像を検索しています."
|
4115 |
+
|
4116 |
+
#: views/admin/import/preview_images.php:96
|
4117 |
+
msgid "WP All Import will import images from the media library"
|
4118 |
+
msgstr ""
|
4119 |
+
"WP をすべてインポート メディア ライブラリからイメージをインポートします。"
|
4120 |
+
|
4121 |
+
#: views/admin/import/preview_images.php:97
|
4122 |
+
msgid "Please ensure the images exists at media library"
|
4123 |
+
msgstr "画像はメディア ライブラリに存在するか確認してください。"
|
4124 |
+
|
4125 |
+
#: views/admin/import/preview_images.php:141
|
4126 |
+
msgid "Download in progress..."
|
4127 |
+
msgstr "プログレスバーの表示"
|
4128 |
+
|
4129 |
+
#: views/admin/import/preview_images.php:145
|
4130 |
+
msgid "WP All Import will attempt to import images from the following URLs:"
|
4131 |
+
msgstr "WP All Import には、次のURLからイメージをインポートしようとします:"
|
4132 |
+
|
4133 |
+
#: views/admin/import/preview_images.php:146
|
4134 |
+
msgid "Please check the URLs to ensure they point to valid images"
|
4135 |
+
msgstr "URLを確認して、有効な画像を指していることを確認してください"
|
4136 |
+
|
4137 |
+
#: views/admin/import/preview_images.php:169
|
4138 |
+
msgid "Images not found for current record."
|
4139 |
+
msgstr "現在のレコードで画像が見つかりません。"
|
4140 |
+
|
4141 |
+
#: views/admin/import/preview_prices.php:16
|
4142 |
+
msgid "Preview Prices"
|
4143 |
+
msgstr "プレビュー価格"
|
4144 |
+
|
4145 |
+
#: views/admin/import/preview_prices.php:18
|
4146 |
+
msgid "Regular Price"
|
4147 |
+
msgstr "通常価格"
|
4148 |
+
|
4149 |
+
#: views/admin/import/preview_prices.php:19
|
4150 |
+
msgid "Sale Price"
|
4151 |
+
msgstr "セール価格"
|
4152 |
+
|
4153 |
+
#: views/admin/import/preview_taxonomies.php:16
|
4154 |
+
msgid "Test Taxonomies Hierarchy"
|
4155 |
+
msgstr "タクソノミーの階層テスト"
|
4156 |
+
|
4157 |
+
#: views/admin/import/process.php:21
|
4158 |
+
msgid "Import <span id=\"status\">in Progress</span>"
|
4159 |
+
msgstr "<span id=\"status\">進行中</span>インポート"
|
4160 |
+
|
4161 |
+
#: views/admin/import/process.php:22
|
4162 |
+
msgid ""
|
4163 |
+
"Importing may take some time. Please do not close your browser or refresh "
|
4164 |
+
"the page until the process is complete."
|
4165 |
+
msgstr ""
|
4166 |
+
"インポートには多少時間がかかる場合があります。ブラウザを閉じるか、プロセスが"
|
4167 |
+
"完了するまで、ページを更新しないでください。"
|
4168 |
+
|
4169 |
+
#: views/admin/import/process.php:29
|
4170 |
+
msgid "Time Elapsed"
|
4171 |
+
msgstr "経過時間"
|
4172 |
+
|
4173 |
+
#: views/admin/import/process.php:31
|
4174 |
+
msgid "Created"
|
4175 |
+
msgstr "作成済み"
|
4176 |
+
|
4177 |
+
#: views/admin/import/process.php:31
|
4178 |
+
msgid "Updated"
|
4179 |
+
msgstr "更新済み"
|
4180 |
+
|
4181 |
+
#: views/admin/import/process.php:31
|
4182 |
+
msgid "of"
|
4183 |
+
msgstr "の"
|
4184 |
+
|
4185 |
+
#: views/admin/import/process.php:48
|
4186 |
+
msgid "Import Complete!"
|
4187 |
+
msgstr "インポート完了!"
|
4188 |
+
|
4189 |
+
#: views/admin/import/process.php:50
|
4190 |
+
msgid "Duplicate records detected during import"
|
4191 |
+
msgstr "重複レコードのインポート中に検出"
|
4192 |
+
|
4193 |
+
#: views/admin/import/process.php:50
|
4194 |
+
msgid ""
|
4195 |
+
"The unique identifier is how WP All Import tells two items in your import "
|
4196 |
+
"file apart. If it is the same for two items, then the first item will be "
|
4197 |
+
"overwritten when the second is imported."
|
4198 |
+
msgstr ""
|
4199 |
+
"一意の識別子は、離れてあなたのインポート ファイルの 2 つの項目が指示 WP をす"
|
4200 |
+
"べてインポートされます。2 つの項目と同じ場合、最初の項目は 2 番目がインポート"
|
4201 |
+
"されると上書きされます。"
|
4202 |
+
|
4203 |
+
#: views/admin/import/process.php:52
|
4204 |
+
#, php-format
|
4205 |
+
msgid ""
|
4206 |
+
"The file you are importing has %s records, but WP All Import only created "
|
4207 |
+
"<span class=\"inserted_count\"></span> %s. It detected the other records in "
|
4208 |
+
"your file as duplicates. This could be because they actually are duplicates "
|
4209 |
+
"or it could be because your Unique Identifier is not unique for each record."
|
4210 |
+
"<br><br>If your import file has no duplicates and you want to import all %s "
|
4211 |
+
"records, you should delete everything that was just imported and then edit "
|
4212 |
+
"your Unique Identifier so it's unique for each item."
|
4213 |
+
msgstr ""
|
4214 |
+
"インポートするファイルには%s個のレコードがありますが、WP All Importは<span "
|
4215 |
+
"class = \"inserted_count\"> </ span>%sのみを作成しました。 ファイル内の他のレ"
|
4216 |
+
"コードが重複として検出されました。 これは、実際に重複しているか、一意の識別子"
|
4217 |
+
"がレコードごとに一意でないために発生する可能性があります。インポートファイル"
|
4218 |
+
"に重複がなく、すべてのレコード%sをインポートする場合は、一意のIDを編集して各"
|
4219 |
+
"アイテムに固有のものにします"
|
4220 |
+
|
4221 |
+
#: views/admin/import/process.php:54 views/admin/import/process.php:61
|
4222 |
+
msgid "Delete & Edit"
|
4223 |
+
msgstr "削除 & 編集"
|
4224 |
+
|
4225 |
+
#: views/admin/import/process.php:57
|
4226 |
+
#, php-format
|
4227 |
+
msgid ""
|
4228 |
+
"<span id=\"skipped_count\">%s</span> orders were skipped during this import"
|
4229 |
+
msgstr ""
|
4230 |
+
"<span id=\"skipped_count\">%s</span>注文がこのインポート中にスキップされまし"
|
4231 |
+
"た"
|
4232 |
+
|
4233 |
+
#: views/admin/import/process.php:59
|
4234 |
+
#, php-format
|
4235 |
+
msgid ""
|
4236 |
+
"WP All Import is unable import an order when it cannot match the products or "
|
4237 |
+
"customer specified. <a href=\"%s\" style=\"margin: 0;\">See the import log</"
|
4238 |
+
"a> for a list of which orders were skipped and why."
|
4239 |
+
msgstr ""
|
4240 |
+
"WP をすべてインポート製品または顧客の指定された一致できません輸入注文でありま"
|
4241 |
+
"す。<a href=\"%s\" style=\"margin: 0;\">インポートのログを参照してください</"
|
4242 |
+
"a>の注文がスキップされたリストを、なぜ。"
|
4243 |
+
|
4244 |
+
#: views/admin/import/process.php:63
|
4245 |
+
#, php-format
|
4246 |
+
msgid ""
|
4247 |
+
"WP All Import successfully imported your file <span>%s</span> into your "
|
4248 |
+
"WordPress installation!"
|
4249 |
+
msgstr ""
|
4250 |
+
"WP All Importは、あなたのワードプレスのインストールにファイル<span>%s</span>"
|
4251 |
+
"を正常にインポートしました!"
|
4252 |
+
|
4253 |
+
#: views/admin/import/process.php:65 views/admin/import/process.php:67
|
4254 |
+
#, php-format
|
4255 |
+
msgid ""
|
4256 |
+
"There were <span class=\"wpallimport-errors-count\">%s</span> errors and "
|
4257 |
+
"<span class=\"wpallimport-warnings-count\">%s</span> warnings in this "
|
4258 |
+
"import. You can see these in the import log."
|
4259 |
+
msgstr ""
|
4260 |
+
"エラー <span class=\"wpallimport-errors-count\">%s</span>と<span class="
|
4261 |
+
"\"wpallimport-warnings-count\">%s</span>警告このインポートであった。インポー"
|
4262 |
+
"ト ログでこれらを見ることができます。"
|
4263 |
+
|
4264 |
+
#: views/admin/import/process.php:70
|
4265 |
+
msgid "View Logs"
|
4266 |
+
msgstr "ログの表示"
|
4267 |
+
|
4268 |
+
#: views/admin/import/process.php:78
|
4269 |
+
msgid "Hide this notice."
|
4270 |
+
msgstr "このお知らせを隠す"
|
4271 |
+
|
4272 |
+
#: views/admin/import/process.php:82
|
4273 |
+
msgid "Want to speed up your import?"
|
4274 |
+
msgstr "あなたのインポートを高速化したいですか。"
|
4275 |
+
|
4276 |
+
#: views/admin/import/process.php:83
|
4277 |
+
msgid "Check out our guide on increasing import speed."
|
4278 |
+
msgstr "インポート速度の増加に私たちのガイドをチェックしてください。"
|
4279 |
+
|
4280 |
+
#: views/admin/import/process.php:87
|
4281 |
+
msgid "opens in new tab"
|
4282 |
+
msgstr "新しいタブで開きます"
|
4283 |
+
|
4284 |
+
#: views/admin/import/process.php:95 views/admin/import/process.php:116
|
4285 |
+
msgid "Your server terminated the import process"
|
4286 |
+
msgstr "サーバーでは、インポート プロセスを終了しました。"
|
4287 |
+
|
4288 |
+
#: views/admin/import/process.php:96
|
4289 |
+
#, php-format
|
4290 |
+
msgid ""
|
4291 |
+
"<a href='%s' target='_blank'>Read more</a> about how to prevent this from "
|
4292 |
+
"happening again."
|
4293 |
+
msgstr ""
|
4294 |
+
"再び起きてからこれを防止する方法について<a href='%s' target='_blank'>続きを読"
|
4295 |
+
"む</a>。"
|
4296 |
+
|
4297 |
+
#: views/admin/import/process.php:100
|
4298 |
+
#, php-format
|
4299 |
+
msgid ""
|
4300 |
+
"with <span id='wpallimport-new-records-per-iteration'>%s</span> records per "
|
4301 |
+
"iteration"
|
4302 |
+
msgstr ""
|
4303 |
+
"イテレーションごとに<span id='wpallimport-new-records-per-iteration'>%s</"
|
4304 |
+
"span>のレコードを"
|
4305 |
+
|
4306 |
+
#: views/admin/import/process.php:106
|
4307 |
+
msgid "Log"
|
4308 |
+
msgstr "ログ"
|
4309 |
+
|
4310 |
+
#: views/admin/import/process.php:117
|
4311 |
+
msgid ""
|
4312 |
+
"Ask your host to check your server's error log. They will be able to "
|
4313 |
+
"determine why your server is terminating the import process."
|
4314 |
+
msgstr ""
|
4315 |
+
"あなたのホスト サーバーのエラー ログを確認してくださいにお問い合わせくださ"
|
4316 |
+
"い。あなたのサーバーはインポート プロセスを終了する理由を判断することができる"
|
4317 |
+
"ようになります。"
|
4318 |
+
|
4319 |
+
#: views/admin/import/tag.php:5
|
4320 |
+
msgid "Elements"
|
4321 |
+
msgstr "要素"
|
4322 |
+
|
4323 |
+
#: views/admin/import/tag.php:27
|
4324 |
+
msgid "History file not found. Probably you are using wrong encoding."
|
4325 |
+
msgstr ""
|
4326 |
+
"履歴ファイルが見つかりません。おそらく間違ったエンコーディングを使用していま"
|
4327 |
+
"す。"
|
4328 |
+
|
4329 |
+
#: views/admin/import/template.php:42
|
4330 |
+
msgid "Name & Description"
|
4331 |
+
msgstr "名前と説明"
|
4332 |
+
|
4333 |
+
#: views/admin/import/template.php:44
|
4334 |
+
msgid "Title & Content"
|
4335 |
+
msgstr "タイトル & 内容"
|
4336 |
+
|
4337 |
+
#: views/admin/import/template.php:52
|
4338 |
+
msgid "Drag & drop any element on the right to set the title."
|
4339 |
+
msgstr "ドラッグ & タイトルを設定する右上の任意の要素を削除します。"
|
4340 |
+
|
4341 |
+
#: views/admin/import/template.php:71
|
4342 |
+
msgid "WooCommerce Short Description"
|
4343 |
+
msgstr "WooCommerceの簡単な説明"
|
4344 |
+
|
4345 |
+
#: views/admin/import/template.php:75
|
4346 |
+
#: views/admin/import/template/_taxonomies_template.php:138
|
4347 |
+
msgid "Preview"
|
4348 |
+
msgstr "プリビュー"
|
4349 |
+
|
4350 |
+
#: views/admin/import/template.php:81
|
4351 |
+
msgid "Advanced Options"
|
4352 |
+
msgstr "高度な設定"
|
4353 |
+
|
4354 |
+
#: views/admin/import/template.php:88
|
4355 |
+
msgid "Keep line breaks from file"
|
4356 |
+
msgstr "ファイルから改行を維持します。"
|
4357 |
+
|
4358 |
+
#: views/admin/import/template.php:93
|
4359 |
+
msgid "Decode HTML entities with <b>html_entity_decode</b>"
|
4360 |
+
msgstr "<b>html_entity_decode</b>を使用してHTMLエンティティをデコードする"
|
4361 |
+
|
4362 |
+
#: views/admin/import/template.php:161 views/admin/settings/index.php:212
|
4363 |
+
msgid "Function Editor"
|
4364 |
+
msgstr "関数エディター"
|
4365 |
+
|
4366 |
+
#: views/admin/import/template.php:171 views/admin/settings/index.php:220
|
4367 |
+
msgid "Save Functions"
|
4368 |
+
msgstr "関数を保存"
|
4369 |
+
|
4370 |
+
#: views/admin/import/template.php:172 views/admin/settings/index.php:221
|
4371 |
+
#, php-format
|
4372 |
+
msgid ""
|
4373 |
+
"Add functions here for use during your import. You can access this file at %s"
|
4374 |
+
msgstr ""
|
4375 |
+
"あなたのインポート時に使用するためにここに機能を追加します。あなたは%sでこの"
|
4376 |
+
"ファイルにアクセスすることができます"
|
4377 |
+
|
4378 |
+
#: views/admin/import/template.php:197
|
4379 |
+
msgid "Save settings as a template"
|
4380 |
+
msgstr "設定をテンプレートとして保存します。"
|
4381 |
+
|
4382 |
+
#: views/admin/import/template.php:200
|
4383 |
+
msgid "Template name..."
|
4384 |
+
msgstr "テンプレート名..."
|
4385 |
+
|
4386 |
+
#: views/admin/import/template.php:205
|
4387 |
+
msgid "Load Template..."
|
4388 |
+
msgstr "テンプレートを読み込みます..."
|
4389 |
+
|
4390 |
+
#: views/admin/import/template.php:225
|
4391 |
+
msgid "Back to Step 2"
|
4392 |
+
msgstr "ステップ2へ戻る"
|
4393 |
+
|
4394 |
+
#: views/admin/import/template.php:229
|
4395 |
+
msgid "Continue to Step 4"
|
4396 |
+
msgstr "ステップ4に進みます"
|
4397 |
+
|
4398 |
+
#: views/admin/import/template/_custom_fields_template.php:27
|
4399 |
+
#, php-format
|
4400 |
+
msgid "Your website is using Custom Fields to store data for %s."
|
4401 |
+
msgstr ""
|
4402 |
+
"あなたのウェブサイトは、%s のデータを格納するカスタム フィールドを使用してい"
|
4403 |
+
"ます。"
|
4404 |
+
|
4405 |
+
#: views/admin/import/template/_custom_fields_template.php:28
|
4406 |
+
#: views/admin/import/template/_term_meta_template.php:28
|
4407 |
+
msgid "See Detected Fields"
|
4408 |
+
msgstr "検出されたフィールドを参照"
|
4409 |
+
|
4410 |
+
#: views/admin/import/template/_custom_fields_template.php:30
|
4411 |
+
#, php-format
|
4412 |
+
msgid "No Custom Fields are present in your database for %s."
|
4413 |
+
msgstr "%s のデータベースにカスタムフィールドはありません。"
|
4414 |
+
|
4415 |
+
#: views/admin/import/template/_custom_fields_template.php:31
|
4416 |
+
#: views/admin/import/template/_term_meta_template.php:31
|
4417 |
+
#, php-format
|
4418 |
+
msgid ""
|
4419 |
+
"Manually create a %s, and fill out each field you want to import data to. WP "
|
4420 |
+
"All Import will then display these fields as available for import below."
|
4421 |
+
msgstr ""
|
4422 |
+
"手動で %s を作成し、データのインポートしたい各フィールドに記入します。WP をす"
|
4423 |
+
"べてインポートしても、これらのフィールドは以下のインポートに利用できるよう表"
|
4424 |
+
"示します。"
|
4425 |
+
|
4426 |
+
#: views/admin/import/template/_custom_fields_template.php:33
|
4427 |
+
#: views/admin/import/template/_custom_fields_template.php:41
|
4428 |
+
#: views/admin/import/template/_term_meta_template.php:33
|
4429 |
+
#: views/admin/import/template/_term_meta_template.php:41
|
4430 |
+
msgid "Hide Notice"
|
4431 |
+
msgstr "このお知らせを隠す"
|
4432 |
+
|
4433 |
+
#: views/admin/import/template/_custom_fields_template.php:38
|
4434 |
+
#: views/admin/import/template/_term_meta_template.php:38
|
4435 |
+
msgid "Clear All Fields"
|
4436 |
+
msgstr "すべてのフィールドをクリア"
|
4437 |
+
|
4438 |
+
#: views/admin/import/template/_custom_fields_template.php:40
|
4439 |
+
#: views/admin/import/template/_term_meta_template.php:40
|
4440 |
+
#, php-format
|
4441 |
+
msgid ""
|
4442 |
+
"If not all fields were detected, manually create a %s, and fill out each "
|
4443 |
+
"field you want to import data to. Then create a new import, and WP All "
|
4444 |
+
"Import will display these fields as available for import below."
|
4445 |
+
msgstr ""
|
4446 |
+
"すべてのフィールドが検出されていない場合は、手動で%sを作成し、データをイン"
|
4447 |
+
"ポートする各フィールドに入力します。 次に、新しいインポートを作成し、WP All "
|
4448 |
+
"Importはこれらのフィールドを下にインポートできるように表示します。"
|
4449 |
+
|
4450 |
+
#: views/admin/import/template/_custom_fields_template.php:67
|
4451 |
+
#: views/admin/import/template/_custom_fields_template.php:276
|
4452 |
+
#: views/admin/import/template/_custom_fields_template.php:410
|
4453 |
+
#: views/admin/import/template/_term_meta_template.php:67
|
4454 |
+
#: views/admin/import/template/_term_meta_template.php:276
|
4455 |
+
#: views/admin/import/template/_term_meta_template.php:410
|
4456 |
+
msgid "Click to specify"
|
4457 |
+
msgstr "クリックすると指定"
|
4458 |
+
|
4459 |
+
#: views/admin/import/template/_custom_fields_template.php:72
|
4460 |
+
#: views/admin/import/template/_custom_fields_template.php:281
|
4461 |
+
#: views/admin/import/template/_custom_fields_template.php:415
|
4462 |
+
#: views/admin/import/template/_term_meta_template.php:72
|
4463 |
+
#: views/admin/import/template/_term_meta_template.php:281
|
4464 |
+
#: views/admin/import/template/_term_meta_template.php:415
|
4465 |
+
msgid "Serialized"
|
4466 |
+
msgstr "シリアル化された"
|
4467 |
+
|
4468 |
+
#: views/admin/import/template/_custom_fields_template.php:85
|
4469 |
+
#: views/admin/import/template/_custom_fields_template.php:294
|
4470 |
+
#: views/admin/import/template/_custom_fields_template.php:428
|
4471 |
+
#: views/admin/import/template/_term_meta_template.php:85
|
4472 |
+
#: views/admin/import/template/_term_meta_template.php:294
|
4473 |
+
#: views/admin/import/template/_term_meta_template.php:428
|
4474 |
+
msgid "Key"
|
4475 |
+
msgstr "キー"
|
4476 |
+
|
4477 |
+
#: views/admin/import/template/_custom_fields_template.php:156
|
4478 |
+
#: views/admin/import/template/_custom_fields_template.php:536
|
4479 |
+
msgid "Add Custom Field"
|
4480 |
+
msgstr "カスタムフィールド追加"
|
4481 |
+
|
4482 |
+
#: views/admin/import/template/_custom_fields_template.php:162
|
4483 |
+
#: views/admin/import/template/_custom_fields_template.php:330
|
4484 |
+
#: views/admin/import/template/_custom_fields_template.php:464
|
4485 |
+
#: views/admin/import/template/_term_meta_template.php:162
|
4486 |
+
#: views/admin/import/template/_term_meta_template.php:330
|
4487 |
+
#: views/admin/import/template/_term_meta_template.php:464
|
4488 |
+
msgid "Auto-Detect"
|
4489 |
+
msgstr "自動検知"
|
4490 |
+
|
4491 |
+
#: views/admin/import/template/_custom_fields_template.php:167
|
4492 |
+
#: views/admin/import/template/_custom_fields_template.php:335
|
4493 |
+
#: views/admin/import/template/_custom_fields_template.php:469
|
4494 |
+
#: views/admin/import/template/_term_meta_template.php:167
|
4495 |
+
#: views/admin/import/template/_term_meta_template.php:335
|
4496 |
+
#: views/admin/import/template/_term_meta_template.php:469
|
4497 |
+
#: views/admin/license/index.php:40
|
4498 |
+
msgid "Save"
|
4499 |
+
msgstr "保存"
|
4500 |
+
|
4501 |
+
#: views/admin/import/template/_featured_template.php:8
|
4502 |
+
msgid "Show hints"
|
4503 |
+
msgstr "ヒントの表示"
|
4504 |
+
|
4505 |
+
#: views/admin/import/template/_featured_template.php:15
|
4506 |
+
msgid "Download images hosted elsewhere"
|
4507 |
+
msgstr "他の場所でホストされている画像をダウンロードします。"
|
4508 |
+
|
4509 |
+
#: views/admin/import/template/_featured_template.php:19
|
4510 |
+
msgid "Enter image URL one per line, or separate them with a "
|
4511 |
+
msgstr "画像URLを1行に1つずつ入力するか、または"
|
4512 |
+
|
4513 |
+
#: views/admin/import/template/_featured_template.php:25
|
4514 |
+
msgid "Use images currently in Media Library"
|
4515 |
+
msgstr "画像は現在のメディアライブラリで使用してください。"
|
4516 |
+
|
4517 |
+
#: views/admin/import/template/_featured_template.php:29
|
4518 |
+
#: views/admin/import/template/_featured_template.php:39
|
4519 |
+
msgid "Enter image filenames one per line, or separate them with a "
|
4520 |
+
msgstr "画像ファイル名を1行に1つずつ入力するか、または"
|
4521 |
+
|
4522 |
+
#: views/admin/import/template/_featured_template.php:36
|
4523 |
+
#, php-format
|
4524 |
+
msgid "Use images currently uploaded in %s"
|
4525 |
+
msgstr "現在 %s にアップロードされたイメージを使用します。"
|
4526 |
+
|
4527 |
+
#: views/admin/import/template/_featured_template.php:44
|
4528 |
+
msgid "Image Options"
|
4529 |
+
msgstr "画像オプション"
|
4530 |
+
|
4531 |
+
#: views/admin/import/template/_featured_template.php:49
|
4532 |
+
msgid ""
|
4533 |
+
"Search through the Media Library for existing images before importing new "
|
4534 |
+
"images"
|
4535 |
+
msgstr ""
|
4536 |
+
"新しい画像をインポートする前に、既存の画像をメディアライブラリから検索する"
|
4537 |
+
|
4538 |
+
#: views/admin/import/template/_featured_template.php:50
|
4539 |
+
msgid ""
|
4540 |
+
"If an image with the same file name is found in the Media Library then that "
|
4541 |
+
"image will be attached to this record instead of importing a new image. "
|
4542 |
+
"Disable this setting if your import has different images with the same file "
|
4543 |
+
"name."
|
4544 |
+
msgstr ""
|
4545 |
+
"同じファイル名の画像はメディア ライブラリで見つかった、新しいイメージをイン"
|
4546 |
+
"ポートする代わりにこのレコードにそのイメージがアタッチされます。インポートは"
|
4547 |
+
"同じファイル名を持つ画像を持っている場合は、この設定を無効にします。"
|
4548 |
+
|
4549 |
+
#: views/admin/import/template/_featured_template.php:55
|
4550 |
+
msgid "Keep images currently in Media Library"
|
4551 |
+
msgstr "画像は現在のメディアライブラリで使用してください。"
|
4552 |
+
|
4553 |
+
#: views/admin/import/template/_featured_template.php:56
|
4554 |
+
msgid ""
|
4555 |
+
"If disabled, images attached to imported posts will be deleted and then all "
|
4556 |
+
"images will be imported."
|
4557 |
+
msgstr ""
|
4558 |
+
"無効にすると、インポートされた投稿に添付した画像が削除され、すべての画像を取"
|
4559 |
+
"り込みます。"
|
4560 |
+
|
4561 |
+
#: views/admin/import/template/_featured_template.php:62
|
4562 |
+
msgid "Preview & Test"
|
4563 |
+
msgstr "プレビュー&テスト"
|
4564 |
+
|
4565 |
+
#: views/admin/import/template/_featured_template.php:67
|
4566 |
+
msgid "Set the first image to the Featured Image (_thumbnail_id)"
|
4567 |
+
msgstr "最初の画像をおすすめ画像に設定する (_thumbnail_id)"
|
4568 |
+
|
4569 |
+
#: views/admin/import/template/_featured_template.php:72
|
4570 |
+
msgid "If no images are downloaded successfully, create entry as Draft."
|
4571 |
+
msgstr ""
|
4572 |
+
"画像を正常にダウンロードしてない場合は、下書きとしてエントリを作成します。"
|
4573 |
+
|
4574 |
+
#: views/admin/import/template/_featured_template.php:83
|
4575 |
+
msgid "SEO & Advanced Options"
|
4576 |
+
msgstr "SEO & 高度なオプション"
|
4577 |
+
|
4578 |
+
#: views/admin/import/template/_featured_template.php:91
|
4579 |
+
msgid "Meta Data"
|
4580 |
+
msgstr "メタデータ"
|
4581 |
+
|
4582 |
+
#: views/admin/import/template/_featured_template.php:95
|
4583 |
+
msgid "Set Title(s)"
|
4584 |
+
msgstr "タイトル設定"
|
4585 |
+
|
4586 |
+
#: views/admin/import/template/_featured_template.php:97
|
4587 |
+
#: views/admin/import/template/_featured_template.php:108
|
4588 |
+
#: views/admin/import/template/_featured_template.php:119
|
4589 |
+
msgid "Enter one per line, or separate them with a "
|
4590 |
+
msgstr "画像URLを1行に1つずつ入力するか、または"
|
4591 |
+
|
4592 |
+
#: views/admin/import/template/_featured_template.php:99
|
4593 |
+
msgid ""
|
4594 |
+
"The first title will be linked to the first image, the second title will be "
|
4595 |
+
"linked to the second image, ..."
|
4596 |
+
msgstr ""
|
4597 |
+
"最初のタイトルは、最初の画像にリンクされます、2 番目のタイトルは、2 番目の画"
|
4598 |
+
"像にリンクされます."
|
4599 |
+
|
4600 |
+
#: views/admin/import/template/_featured_template.php:106
|
4601 |
+
msgid "Set Caption(s)"
|
4602 |
+
msgstr "設定キャプション(S)"
|
4603 |
+
|
4604 |
+
#: views/admin/import/template/_featured_template.php:110
|
4605 |
+
msgid ""
|
4606 |
+
"The first caption will be linked to the first image, the second caption will "
|
4607 |
+
"be linked to the second image, ..."
|
4608 |
+
msgstr ""
|
4609 |
+
"最初のキャプションは、最初の画像にリンクされます、2 番目のキャプションは、2 "
|
4610 |
+
"番目の画像にリンクされます."
|
4611 |
+
|
4612 |
+
#: views/admin/import/template/_featured_template.php:117
|
4613 |
+
msgid "Set Alt Text(s)"
|
4614 |
+
msgstr "代替テキスト設定"
|
4615 |
+
|
4616 |
+
#: views/admin/import/template/_featured_template.php:121
|
4617 |
+
msgid ""
|
4618 |
+
"The first alt text will be linked to the first image, the second alt text "
|
4619 |
+
"will be linked to the second image, ..."
|
4620 |
+
msgstr ""
|
4621 |
+
"最初の alt テキストは、最初の画像にリンクされます、2 番目の alt テキストは、"
|
4622 |
+
"2 番目の画像にリンクされます."
|
4623 |
+
|
4624 |
+
#: views/admin/import/template/_featured_template.php:128
|
4625 |
+
msgid "Set Description(s)"
|
4626 |
+
msgstr "詳細を設定"
|
4627 |
+
|
4628 |
+
#: views/admin/import/template/_featured_template.php:132
|
4629 |
+
msgid "Separate them with a"
|
4630 |
+
msgstr "それらを"
|
4631 |
+
|
4632 |
+
#: views/admin/import/template/_featured_template.php:137
|
4633 |
+
msgid "Enter them one per line"
|
4634 |
+
msgstr "1 行につき 1 つ入力します。"
|
4635 |
+
|
4636 |
+
#: views/admin/import/template/_featured_template.php:139
|
4637 |
+
msgid ""
|
4638 |
+
"The first description will be linked to the first image, the second "
|
4639 |
+
"description will be linked to the second image, ..."
|
4640 |
+
msgstr ""
|
4641 |
+
"最初の説明は、最初の画像にリンクされます、2 番目の説明は、2 番目の画像にリン"
|
4642 |
+
"クされます."
|
4643 |
+
|
4644 |
+
#: views/admin/import/template/_featured_template.php:143
|
4645 |
+
#: views/admin/settings/index.php:79
|
4646 |
+
msgid "Files"
|
4647 |
+
msgstr "ファイル"
|
4648 |
+
|
4649 |
+
#: views/admin/import/template/_featured_template.php:145
|
4650 |
+
msgid ""
|
4651 |
+
"These options only available if Download images hosted elsewhere is selected "
|
4652 |
+
"above."
|
4653 |
+
msgstr ""
|
4654 |
+
"ダウンロード画像は、他の場所でホストされている場合のみ利用できるこれらのオプ"
|
4655 |
+
"ションは上記選択されます。"
|
4656 |
+
|
4657 |
+
#: views/admin/import/template/_featured_template.php:149
|
4658 |
+
msgid "Change image file names to"
|
4659 |
+
msgstr "画像ファイル名を次のように変更する"
|
4660 |
+
|
4661 |
+
#: views/admin/import/template/_featured_template.php:152
|
4662 |
+
msgid ""
|
4663 |
+
"Multiple image will have numbers appended, i.e. image-name-1.jpg, image-"
|
4664 |
+
"name-2.jpg "
|
4665 |
+
msgstr ""
|
4666 |
+
"複数の画像に数字が追加されます。例. image-name-1.jpg, image-name-2.jpg "
|
4667 |
+
|
4668 |
+
#: views/admin/import/template/_featured_template.php:158
|
4669 |
+
msgid "Change image file extensions"
|
4670 |
+
msgstr "画像ファイルの拡張子を変更"
|
4671 |
+
|
4672 |
+
#: views/admin/import/template/_featured_template.php:176
|
4673 |
+
msgid ""
|
4674 |
+
"WP All Import will automatically ignore elements with blank image URLs/"
|
4675 |
+
"filenames."
|
4676 |
+
msgstr ""
|
4677 |
+
"WP All Import は、空のイメージURL /ファイル名を持つ要素を自動的に無視します。"
|
4678 |
+
|
4679 |
+
#: views/admin/import/template/_featured_template.php:177
|
4680 |
+
msgid ""
|
4681 |
+
"WP All Import must download the images to your server. You can't have images "
|
4682 |
+
"in a Gallery that are referenced by external URL. That's just how WordPress "
|
4683 |
+
"works."
|
4684 |
+
msgstr ""
|
4685 |
+
"WP All Import はあなたのサーバーに画像をダウンロードする必要があります。あな"
|
4686 |
+
"たは、外部のURLで参照されているギャラリーにイメージを持つことはできません。そ"
|
4687 |
+
"れはWordpressの動作方法です。"
|
4688 |
+
|
4689 |
+
#: views/admin/import/template/_featured_template.php:178
|
4690 |
+
#, php-format
|
4691 |
+
msgid ""
|
4692 |
+
"Importing a variable number of images can be done using a <a href=\"%s\" "
|
4693 |
+
"target=\"_blank\">FOREACH LOOP</a>"
|
4694 |
+
msgstr ""
|
4695 |
+
"可変数の画像をインポートするには、<a href=\"%s\" target=\"_blank\"> FOREACH"
|
4696 |
+
"ループ</a>を使用します"
|
4697 |
+
|
4698 |
+
#: views/admin/import/template/_featured_template.php:179
|
4699 |
+
#, php-format
|
4700 |
+
msgid ""
|
4701 |
+
"For more information check out our <a href=\"%s\" target=\"_blank"
|
4702 |
+
"\">comprehensive documentation</a>"
|
4703 |
+
msgstr ""
|
4704 |
+
"詳細については、<a href=\"%s\" target=\"_blank\">包括的なドキュメント</a>をご"
|
4705 |
+
"覧ください"
|
4706 |
+
|
4707 |
+
#: views/admin/import/template/_nested_template.php:35
|
4708 |
+
msgid "Nested XML/CSV files"
|
4709 |
+
msgstr "ネストされたXML / CSVファイル"
|
4710 |
+
|
4711 |
+
#: views/admin/import/template/_nested_template.php:48
|
4712 |
+
msgid "remove"
|
4713 |
+
msgstr "削除"
|
4714 |
+
|
4715 |
+
#: views/admin/import/template/_nested_template.php:69
|
4716 |
+
msgid "Specify the URL of the nested file to use."
|
4717 |
+
msgstr "使用するネストされたファイルのURLを指定します。"
|
4718 |
+
|
4719 |
+
#: views/admin/import/template/_nested_template.php:73
|
4720 |
+
msgid "Add"
|
4721 |
+
msgstr "追加"
|
4722 |
+
|
4723 |
+
#: views/admin/import/template/_other_template.php:16
|
4724 |
+
#: views/admin/import/template/_term_other_template.php:13
|
4725 |
+
#, php-format
|
4726 |
+
msgid "Other %s Options"
|
4727 |
+
msgstr "その他 %s のオプション"
|
4728 |
+
|
4729 |
+
#: views/admin/import/template/_other_template.php:28
|
4730 |
+
msgid "Post Status"
|
4731 |
+
msgstr "投稿ステータス"
|
4732 |
+
|
4733 |
+
#: views/admin/import/template/_other_template.php:31
|
4734 |
+
msgid "Published"
|
4735 |
+
msgstr "公開済み"
|
4736 |
+
|
4737 |
+
#: views/admin/import/template/_other_template.php:35
|
4738 |
+
msgid "Draft"
|
4739 |
+
msgstr "下書き"
|
4740 |
+
|
4741 |
+
#: views/admin/import/template/_other_template.php:43
|
4742 |
+
msgid ""
|
4743 |
+
"The value of presented XPath should be one of the following: ('publish', "
|
4744 |
+
"'draft', 'trash')."
|
4745 |
+
msgstr ""
|
4746 |
+
"提示された XPath の値は、次のいずれかをする必要があります: ('公開'、'下書"
|
4747 |
+
"き'、'ゴミ箱')。"
|
4748 |
+
|
4749 |
+
#: views/admin/import/template/_other_template.php:52
|
4750 |
+
msgid "Post Dates"
|
4751 |
+
msgstr "投稿日付"
|
4752 |
+
|
4753 |
+
#: views/admin/import/template/_other_template.php:52
|
4754 |
+
msgid ""
|
4755 |
+
"Use any format supported by the PHP <b>strtotime</b> function. That means "
|
4756 |
+
"pretty much any human-readable date will work."
|
4757 |
+
msgstr ""
|
4758 |
+
"PHP<b>strtotime</ b>の関数でサポートされている任意のフォーマットを使用してく"
|
4759 |
+
"ださい。それはほとんどすべての人間が読める日が動作することを意味します。"
|
4760 |
+
|
4761 |
+
#: views/admin/import/template/_other_template.php:56
|
4762 |
+
msgid "As specified"
|
4763 |
+
msgstr "指定通り"
|
4764 |
+
|
4765 |
+
#: views/admin/import/template/_other_template.php:65
|
4766 |
+
msgid "Random dates"
|
4767 |
+
msgstr "ランダム日付"
|
4768 |
+
|
4769 |
+
#: views/admin/import/template/_other_template.php:65
|
4770 |
+
msgid ""
|
4771 |
+
"Posts will be randomly assigned dates in this range. WordPress ensures posts "
|
4772 |
+
"with dates in the future will not appear until their date has been reached."
|
4773 |
+
msgstr ""
|
4774 |
+
"投稿はこの範囲内でランダムに割り当てられます。 WordPressは、将来の日付の投稿"
|
4775 |
+
"が日付に達するまで表示されないようにします。"
|
4776 |
+
|
4777 |
+
#: views/admin/import/template/_other_template.php:69
|
4778 |
+
#: views/admin/manage/delete.php:56
|
4779 |
+
msgid "and"
|
4780 |
+
msgstr "と"
|
4781 |
+
|
4782 |
+
#: views/admin/import/template/_other_template.php:77
|
4783 |
+
msgid "Comments"
|
4784 |
+
msgstr "コメント"
|
4785 |
+
|
4786 |
+
#: views/admin/import/template/_other_template.php:80
|
4787 |
+
#: views/admin/import/template/_other_template.php:103
|
4788 |
+
msgid "Open"
|
4789 |
+
msgstr "開く"
|
4790 |
+
|
4791 |
+
#: views/admin/import/template/_other_template.php:84
|
4792 |
+
#: views/admin/import/template/_other_template.php:107
|
4793 |
+
msgid "Closed"
|
4794 |
+
msgstr "閉じる"
|
4795 |
+
|
4796 |
+
#: views/admin/import/template/_other_template.php:92
|
4797 |
+
#: views/admin/import/template/_other_template.php:115
|
4798 |
+
msgid ""
|
4799 |
+
"The value of presented XPath should be one of the following: ('open', "
|
4800 |
+
"'closed')."
|
4801 |
+
msgstr ""
|
4802 |
+
"表示されるXPathの値は、次のいずれかである必要があります: ('open', 'closed')."
|
4803 |
+
|
4804 |
+
#: views/admin/import/template/_other_template.php:100
|
4805 |
+
msgid "Trackbacks and Pingbacks"
|
4806 |
+
msgstr "トラックバックとピンバック"
|
4807 |
+
|
4808 |
+
#: views/admin/import/template/_other_template.php:123
|
4809 |
+
msgid "Post Slug"
|
4810 |
+
msgstr "投稿スラッグ"
|
4811 |
+
|
4812 |
+
#: views/admin/import/template/_other_template.php:131
|
4813 |
+
msgid "Post Author"
|
4814 |
+
msgstr "投稿者"
|
4815 |
+
|
4816 |
+
#: views/admin/import/template/_other_template.php:133
|
4817 |
+
msgid ""
|
4818 |
+
"Assign the post to an existing user account by specifying the user ID, "
|
4819 |
+
"username, or e-mail address."
|
4820 |
+
msgstr ""
|
4821 |
+
"ユーザーID、ユーザー名、またはメールアドレスを指定して既存のユーザーアカウン"
|
4822 |
+
"トに投稿を割り当てます。"
|
4823 |
+
|
4824 |
+
#: views/admin/import/template/_other_template.php:139
|
4825 |
+
msgid "Download & Import Attachments"
|
4826 |
+
msgstr "ダウンロード&インポートファイル"
|
4827 |
+
|
4828 |
+
#: views/admin/import/template/_other_template.php:140
|
4829 |
+
#: views/admin/import/template/_taxonomies_template.php:65
|
4830 |
+
#: views/admin/import/template/_taxonomies_template.php:122
|
4831 |
+
#: views/admin/import/template/_taxonomies_template.php:134
|
4832 |
+
#: views/admin/import/template/_taxonomies_template.php:212
|
4833 |
+
msgid "Separated by"
|
4834 |
+
msgstr "区切る"
|
4835 |
+
|
4836 |
+
#: views/admin/import/template/_other_template.php:148
|
4837 |
+
msgid "Search for existing attachments to prevent duplicates in media library"
|
4838 |
+
msgstr "メディア ライブラリ内の重複を防ぐために既存の添付ファイルの検索"
|
4839 |
+
|
4840 |
+
#: views/admin/import/template/_other_template.php:155
|
4841 |
+
msgid "Post Format"
|
4842 |
+
msgstr "投稿フォーマット"
|
4843 |
+
|
4844 |
+
#: views/admin/import/template/_other_template.php:161
|
4845 |
+
msgid "Standard"
|
4846 |
+
msgstr "標準"
|
4847 |
+
|
4848 |
+
#: views/admin/import/template/_other_template.php:195
|
4849 |
+
msgid "Page Template"
|
4850 |
+
msgstr "ページ テンプレート"
|
4851 |
+
|
4852 |
+
#: views/admin/import/template/_other_template.php:198
|
4853 |
+
msgid "Select a template"
|
4854 |
+
msgstr "テンプレートを選択"
|
4855 |
+
|
4856 |
+
#: views/admin/import/template/_other_template.php:202
|
4857 |
+
msgid "Default"
|
4858 |
+
msgstr "デフォルト"
|
4859 |
+
|
4860 |
+
#: views/admin/import/template/_other_template.php:224
|
4861 |
+
msgid "Page Parent"
|
4862 |
+
msgstr "親ページ"
|
4863 |
+
|
4864 |
+
#: views/admin/import/template/_other_template.php:224
|
4865 |
+
msgid ""
|
4866 |
+
"Enter the ID, title, or slug of the desired page parent. If adding the child "
|
4867 |
+
"and parent pages in the same import, set 'Records per Iteration' to 1, run "
|
4868 |
+
"the import twice, or run separate imports for child and parent pages."
|
4869 |
+
msgstr ""
|
4870 |
+
"目的のページの親のスラッグを入力します。 同じインポートで子ページと親ページを"
|
4871 |
+
"追加する場合は、「1レコード/ 1反復」を1に設定し、インポートを2回実行するか、"
|
4872 |
+
"子ページと親ページのインポートを別々に実行します。"
|
4873 |
+
|
4874 |
+
#: views/admin/import/template/_other_template.php:228
|
4875 |
+
msgid "Select page parent"
|
4876 |
+
msgstr "親ページを選択します"
|
4877 |
+
|
4878 |
+
#: views/admin/import/template/_other_template.php:231
|
4879 |
+
msgid "(no parent)"
|
4880 |
+
msgstr "(親なし)"
|
4881 |
+
|
4882 |
+
#: views/admin/import/template/_other_template.php:250
|
4883 |
+
msgid "Post Parent"
|
4884 |
+
msgstr "親投稿"
|
4885 |
+
|
4886 |
+
#: views/admin/import/template/_other_template.php:250
|
4887 |
+
msgid ""
|
4888 |
+
"Enter the ID, title, or slug of the desired post parent. If adding the child "
|
4889 |
+
"and parent posts in the same import, set 'Records per Iteration' to 1, run "
|
4890 |
+
"the import twice, or run separate imports for child and parent posts."
|
4891 |
+
msgstr ""
|
4892 |
+
"目的のページの親のスラッグを入力します。 同じインポートで子ページと親ページを"
|
4893 |
+
"追加する場合は、「1レコード/ 1反復」を1に設定し、インポートを2回実行するか、"
|
4894 |
+
"子ページと親ページのインポートを別々に実行します。"
|
4895 |
+
|
4896 |
+
#: views/admin/import/template/_other_template.php:254
|
4897 |
+
msgid "Set post parent"
|
4898 |
+
msgstr "親投稿の設定"
|
4899 |
+
|
4900 |
+
#: views/admin/import/template/_other_template.php:278
|
4901 |
+
msgid "Menu Order"
|
4902 |
+
msgstr "メニュー順"
|
4903 |
+
|
4904 |
+
#: views/admin/import/template/_other_template.php:287
|
4905 |
+
msgid "Dynamic Post Type"
|
4906 |
+
msgstr "ダイナミック投稿タイプ"
|
4907 |
+
|
4908 |
+
#: views/admin/import/template/_other_template.php:297
|
4909 |
+
msgid ""
|
4910 |
+
"If records in this import have different post types specify the slug of the "
|
4911 |
+
"desired post type here.\n"
|
4912 |
+
msgstr ""
|
4913 |
+
"このインポートのレコードは、異なるポストタイプを持っている場合は、ここで希望"
|
4914 |
+
"のポストタイプのスラッグを指定します。\n"
|
4915 |
+
|
4916 |
+
#: views/admin/import/template/_taxonomies_template.php:13
|
4917 |
+
msgid "Taxonomies, Categories, Tags"
|
4918 |
+
msgstr "タクソノミー、カテゴリ、タグ"
|
4919 |
+
|
4920 |
+
#: views/admin/import/template/_taxonomies_template.php:17
|
4921 |
+
msgid "Show Hints"
|
4922 |
+
msgstr "ヒントの表示"
|
4923 |
+
|
4924 |
+
#: views/admin/import/template/_taxonomies_template.php:38
|
4925 |
+
#, php-format
|
4926 |
+
msgid "Each %s has just one %s"
|
4927 |
+
msgstr "それぞれの%sには1つの%sしかありません"
|
4928 |
+
|
4929 |
+
#: views/admin/import/template/_taxonomies_template.php:46
|
4930 |
+
#: views/admin/import/template/_taxonomies_template.php:70
|
4931 |
+
#, php-format
|
4932 |
+
msgid "Try to match terms to existing child %s"
|
4933 |
+
msgstr "既存の子 %s に条件を合わせてみてください。"
|
4934 |
+
|
4935 |
+
#: views/admin/import/template/_taxonomies_template.php:51
|
4936 |
+
#: views/admin/import/template/_taxonomies_template.php:75
|
4937 |
+
#, php-format
|
4938 |
+
msgid "Only assign %s to the imported %s, not the entire hierarchy"
|
4939 |
+
msgstr "階層全体ではなく、インポートされた%sにのみ%sを割り当てます"
|
4940 |
+
|
4941 |
+
#: views/admin/import/template/_taxonomies_template.php:52
|
4942 |
+
#: views/admin/import/template/_taxonomies_template.php:76
|
4943 |
+
msgid ""
|
4944 |
+
"By default all categories above the matched category will also be assigned "
|
4945 |
+
"to the post. If enabled, only the imported category will be assigned to the "
|
4946 |
+
"post."
|
4947 |
+
msgstr ""
|
4948 |
+
"既定では、投稿に一致するカテゴリの上のすべてのカテゴリが割り当てされます。有"
|
4949 |
+
"効な場合は、投稿にインポートされたカテゴリのみが割り当てられます。"
|
4950 |
+
|
4951 |
+
#: views/admin/import/template/_taxonomies_template.php:60
|
4952 |
+
#, php-format
|
4953 |
+
msgid "Each %s has multiple %s"
|
4954 |
+
msgstr "各 %s は複数の %s"
|
4955 |
+
|
4956 |
+
#: views/admin/import/template/_taxonomies_template.php:85
|
4957 |
+
#, php-format
|
4958 |
+
msgid ""
|
4959 |
+
"%ss have hierarchical (parent/child) %s (i.e. Sports > Golf > Clubs > "
|
4960 |
+
"Putters)"
|
4961 |
+
msgstr "%ss がある階層 (親/子) %s (例 スポーツ > ゴルフ > クラブ > パター)"
|
4962 |
+
|
4963 |
+
#: views/admin/import/template/_taxonomies_template.php:90
|
4964 |
+
msgid ""
|
4965 |
+
"An element in my file contains the entire hierarchy (i.e. you have an "
|
4966 |
+
"element with a value = Sports > Golf > Clubs > Putters)"
|
4967 |
+
msgstr ""
|
4968 |
+
"私のファイルの要素は、階層全体が含まれています(例 あなたが値を持つ要素を持っ"
|
4969 |
+
"ている=スポーツ>ゴルフ>クラブ>パター)"
|
4970 |
+
|
4971 |
+
#: views/admin/import/template/_taxonomies_template.php:127
|
4972 |
+
#, php-format
|
4973 |
+
msgid "Only assign %s to the bottom level term in the hierarchy"
|
4974 |
+
msgstr "階層の下のレベル用語に %s のみを割り当てる"
|
4975 |
+
|
4976 |
+
#: views/admin/import/template/_taxonomies_template.php:132
|
4977 |
+
msgid "Separate hierarchy groups via symbol"
|
4978 |
+
msgstr "シンボルを介して別の階層グループ"
|
4979 |
+
|
4980 |
+
#: views/admin/import/template/_taxonomies_template.php:140
|
4981 |
+
msgid "Add Another Hierarchy Group"
|
4982 |
+
msgstr "別の階層グループを追加"
|
4983 |
+
|
4984 |
+
#: views/admin/import/template/_taxonomies_template.php:147
|
4985 |
+
msgid "Manually design the hierarchy with drag & drop"
|
4986 |
+
msgstr "手動でドラッグ & ドロップと階層を設計"
|
4987 |
+
|
4988 |
+
#: views/admin/import/template/_taxonomies_template.php:149
|
4989 |
+
#, php-format
|
4990 |
+
msgid ""
|
4991 |
+
"Drag the <img src=\"%s\" class=\"wpallimport-drag-icon\"/> to the right to "
|
4992 |
+
"create a child, drag up and down to re-order."
|
4993 |
+
msgstr ""
|
4994 |
+
"<img src=\"%s\" class=\"wpallimport-drag-icon\"/>を右にドラッグして子を作成"
|
4995 |
+
"し、上下にドラッグして並べ替えます。"
|
4996 |
+
|
4997 |
+
#: views/admin/import/template/_taxonomies_template.php:215
|
4998 |
+
msgid "Add Another Row"
|
4999 |
+
msgstr "情報を追加"
|
5000 |
+
|
5001 |
+
#: views/admin/import/template/_taxonomies_template.php:227
|
5002 |
+
#, php-format
|
5003 |
+
msgid "Enable Mapping for %s"
|
5004 |
+
msgstr "%sのマッピングを有効にします"
|
5005 |
+
|
5006 |
+
#: views/admin/import/template/_taxonomies_template.php:296
|
5007 |
+
msgid "Add Another Rule"
|
5008 |
+
msgstr "他のルールを追加"
|
5009 |
+
|
5010 |
+
#: views/admin/import/template/_taxonomies_template.php:306
|
5011 |
+
msgid "Apply mapping rules before splitting via separator symbol"
|
5012 |
+
msgstr "区切り記号で分割する前に、マッピング ルールを適用します。"
|
5013 |
+
|
5014 |
+
#: views/admin/import/template/_taxonomies_template.php:321
|
5015 |
+
msgid "Show \"private\" taxonomies"
|
5016 |
+
msgstr "「プライベート」タクソノミーを表示"
|
5017 |
+
|
5018 |
+
#: views/admin/import/template/_taxonomies_template.php:332
|
5019 |
+
msgid "Taxonomies that don't already exist on your site will be created."
|
5020 |
+
msgstr "あなたのサイトに存在していないタクソノミーが作成されます。"
|
5021 |
+
|
5022 |
+
#: views/admin/import/template/_taxonomies_template.php:333
|
5023 |
+
msgid ""
|
5024 |
+
"To import to existing parent taxonomies, use the existing taxonomy name or "
|
5025 |
+
"slug."
|
5026 |
+
msgstr ""
|
5027 |
+
"既存の親分類にインポートするには、またはスラグの既存のタクソノミーの名前を使"
|
5028 |
+
"用します。"
|
5029 |
+
|
5030 |
+
#: views/admin/import/template/_taxonomies_template.php:334
|
5031 |
+
msgid ""
|
5032 |
+
"To import to existing hierarchical taxonomies, create the entire hierarchy "
|
5033 |
+
"using the taxonomy names or slugs."
|
5034 |
+
msgstr ""
|
5035 |
+
"既存の階層的な分類にインポートするには、タクソノミー名やスラッグを使用して階"
|
5036 |
+
"層全体を作成します。"
|
5037 |
+
|
5038 |
+
#: views/admin/import/template/_term_meta_template.php:27
|
5039 |
+
#, php-format
|
5040 |
+
msgid "Your website is using Term Meta to store data for %s."
|
5041 |
+
msgstr ""
|
5042 |
+
"あなたのウェブサイトは、%s のデータを格納するメタ用語を使用しています。"
|
5043 |
+
|
5044 |
+
#: views/admin/import/template/_term_meta_template.php:30
|
5045 |
+
#, php-format
|
5046 |
+
msgid "No Term Meta are present in your database for %s."
|
5047 |
+
msgstr "用語メタが %s のデータベースに存在しません。"
|
5048 |
+
|
5049 |
+
#: views/admin/import/template/_term_meta_template.php:156
|
5050 |
+
#: views/admin/import/template/_term_meta_template.php:536
|
5051 |
+
msgid "Add Term Meta"
|
5052 |
+
msgstr "タームメタ追加"
|
5053 |
+
|
5054 |
+
#: views/admin/import/template/_term_other_template.php:21
|
5055 |
+
msgid "Parent Term"
|
5056 |
+
msgstr "親ターム"
|
5057 |
+
|
5058 |
+
#: views/admin/import/template/_term_other_template.php:33
|
5059 |
+
#, php-format
|
5060 |
+
msgid "%s Slug"
|
5061 |
+
msgstr "%s のスラッグ"
|
5062 |
+
|
5063 |
+
#: views/admin/import/template/_term_other_template.php:36
|
5064 |
+
msgid "Set slug automatically"
|
5065 |
+
msgstr "スラッグを自動的に設定します。"
|
5066 |
+
|
5067 |
+
#: views/admin/import/template/_term_other_template.php:40
|
5068 |
+
msgid "Set slug manually"
|
5069 |
+
msgstr "スラグを手動で設定します。"
|
5070 |
+
|
5071 |
+
#: views/admin/import/template/_term_other_template.php:43
|
5072 |
+
msgid "Term Slug"
|
5073 |
+
msgstr "タームスラッグ"
|
5074 |
+
|
5075 |
+
#: views/admin/import/template/_term_other_template.php:44
|
5076 |
+
msgid ""
|
5077 |
+
"The term slug must be unique. If the slug is already in use by another term, "
|
5078 |
+
"WP All Import will add a number to the end of the slug."
|
5079 |
+
msgstr ""
|
5080 |
+
"タームスラグは一意である必要があります。スラッグが既に別の用語が使用されてい"
|
5081 |
+
"る場合、 WP All Importはスラッグの末尾に番号を追加します。"
|
5082 |
+
|
5083 |
+
#: views/admin/license/index.php:3
|
5084 |
+
msgid "WP All Import Licenses"
|
5085 |
+
msgstr "WP All Import ライセンス"
|
5086 |
+
|
5087 |
+
#: views/admin/license/index.php:23 views/admin/settings/index.php:163
|
5088 |
+
msgid "Active"
|
5089 |
+
msgstr "有効"
|
5090 |
+
|
5091 |
+
#: views/admin/license/index.php:24
|
5092 |
+
msgid "Deactivate License"
|
5093 |
+
msgstr "ライセンスを無効化"
|
5094 |
+
|
5095 |
+
#: views/admin/license/index.php:26 views/admin/settings/index.php:165
|
5096 |
+
msgid "Activate License"
|
5097 |
+
msgstr "ライセンスをアクティブ化"
|
5098 |
+
|
5099 |
+
#: views/admin/manage/bulk.php:1
|
5100 |
+
msgid "Bulk Delete Imports"
|
5101 |
+
msgstr "一括削除インポート"
|
5102 |
+
|
5103 |
+
#: views/admin/manage/bulk.php:10
|
5104 |
+
#, php-format
|
5105 |
+
msgid "Are you sure you want to delete <strong>%s</strong> selected %s?"
|
5106 |
+
msgstr "あなたは<strong>%s</strong>選択の%sを削除してもよろしいですか?"
|
5107 |
+
|
5108 |
+
#: views/admin/manage/bulk.php:12
|
5109 |
+
msgid "Delete associated posts as well"
|
5110 |
+
msgstr "同様に、関連する記事を削除"
|
5111 |
+
|
5112 |
+
#: views/admin/manage/bulk.php:17 views/admin/manage/delete.php:19
|
5113 |
+
msgid "Delete associated images from media gallery"
|
5114 |
+
msgstr "メディア ギャラリーから関連付けられている画像を削除します。"
|
5115 |
+
|
5116 |
+
#: views/admin/manage/bulk.php:22 views/admin/manage/delete.php:24
|
5117 |
+
msgid "Delete associated files from media gallery"
|
5118 |
+
msgstr "メディア ギャラリーから関連するファイルを削除します。"
|
5119 |
+
|
5120 |
+
#: views/admin/manage/bulk.php:31 views/admin/manage/delete.php:32
|
5121 |
+
#, php-format
|
5122 |
+
msgid ""
|
5123 |
+
"<p class=\"wpallimport-delete-posts-warning\"><strong>Important</strong>: "
|
5124 |
+
"this import was created automatically by WP All Export. All posts exported "
|
5125 |
+
"by the \"%s\" export job have been automatically associated with this import."
|
5126 |
+
"</p>"
|
5127 |
+
msgstr ""
|
5128 |
+
"<p class=\"wpallimport-delete-posts-warning\"><strong>重要</strong>: このイン"
|
5129 |
+
"ポートは WP をすべてエクスポートによって自動的に作成されました。\"%s\"のエク"
|
5130 |
+
"スポート ジョブによってエクスポートされるすべての記事は、自動的にこのインポー"
|
5131 |
+
"トに関連付けられています。</p>"
|
5132 |
+
|
5133 |
+
#: views/admin/manage/delete.php:1
|
5134 |
+
msgid "Delete Import"
|
5135 |
+
msgstr "インポートの削除"
|
5136 |
+
|
5137 |
+
#: views/admin/manage/delete.php:8
|
5138 |
+
msgid "Delete import"
|
5139 |
+
msgstr "インポートを削除"
|
5140 |
+
|
5141 |
+
#: views/admin/manage/delete.php:13
|
5142 |
+
#, php-format
|
5143 |
+
msgid "Delete %s created by %s"
|
5144 |
+
msgstr "%s によって作成された %s を削除します。"
|
5145 |
+
|
5146 |
+
#: views/admin/manage/delete.php:56
|
5147 |
+
msgid "Are you sure you want to delete "
|
5148 |
+
msgstr "あなたはこのスキャンを削除してもよろしいですか?"
|
5149 |
+
|
5150 |
+
#: views/admin/manage/delete.php:56
|
5151 |
+
#, php-format
|
5152 |
+
msgid "the <strong>%s</strong> import"
|
5153 |
+
msgstr "<strong>%s</strong>インポート"
|
5154 |
+
|
5155 |
+
#: views/admin/manage/index.php:18 views/admin/manage/index.php:20
|
5156 |
+
msgid "Search Imports"
|
5157 |
+
msgstr "インポートの検索"
|
5158 |
+
|
5159 |
+
#: views/admin/manage/index.php:28
|
5160 |
+
msgid "File"
|
5161 |
+
msgstr "ファイル"
|
5162 |
+
|
5163 |
+
#: views/admin/manage/index.php:31
|
5164 |
+
msgid "Info & Options"
|
5165 |
+
msgstr "情報&オプション"
|
5166 |
+
|
5167 |
+
#: views/admin/manage/index.php:100
|
5168 |
+
#, php-format
|
5169 |
+
msgid "No previous imports found. <a href=\"%s\">Start a new import...</a>"
|
5170 |
+
msgstr ""
|
5171 |
+
"前回のインポートは見つかりませんでした。<a href=\"%s\">新しいインポートを開始"
|
5172 |
+
"していません...</a>"
|
5173 |
+
|
5174 |
+
#: views/admin/manage/index.php:182
|
5175 |
+
msgid "Edit Import"
|
5176 |
+
msgstr "インポート編集"
|
5177 |
+
|
5178 |
+
#: views/admin/manage/index.php:187
|
5179 |
+
msgid "Import Settings"
|
5180 |
+
msgstr "インポート設定"
|
5181 |
+
|
5182 |
+
#: views/admin/manage/index.php:228
|
5183 |
+
msgid "triggered with cron"
|
5184 |
+
msgstr "cronでトリガ"
|
5185 |
+
|
5186 |
+
#: views/admin/manage/index.php:235 views/admin/manage/index.php:250
|
5187 |
+
#: views/admin/manage/index.php:264
|
5188 |
+
#, php-format
|
5189 |
+
msgid "last activity %s ago"
|
5190 |
+
msgstr "%s以前の最後のアクティビティ"
|
5191 |
+
|
5192 |
+
#: views/admin/manage/index.php:242
|
5193 |
+
msgid "currently processing with cron"
|
5194 |
+
msgstr "現在のcronで処理します"
|
5195 |
+
|
5196 |
+
#: views/admin/manage/index.php:257
|
5197 |
+
msgid "Import currently in progress"
|
5198 |
+
msgstr "現在進行中のインポート"
|
5199 |
+
|
5200 |
+
#: views/admin/manage/index.php:271 views/admin/manage/index.php:275
|
5201 |
+
#, php-format
|
5202 |
+
msgid "Import Attempt at %s"
|
5203 |
+
msgstr "%sのインポートテスト"
|
5204 |
+
|
5205 |
+
#: views/admin/manage/index.php:276
|
5206 |
+
msgid "Import failed, please check logs"
|
5207 |
+
msgstr "インポートに失敗しました、ログを確認してください。"
|
5208 |
+
|
5209 |
+
#: views/admin/manage/index.php:295
|
5210 |
+
#, php-format
|
5211 |
+
msgid "Last run: %s"
|
5212 |
+
msgstr "前回の実行:%s"
|
5213 |
+
|
5214 |
+
#: views/admin/manage/index.php:295
|
5215 |
+
msgid "never"
|
5216 |
+
msgstr "永遠"
|
5217 |
+
|
5218 |
+
#: views/admin/manage/index.php:296
|
5219 |
+
#, php-format
|
5220 |
+
msgid "%d %s created"
|
5221 |
+
msgstr "%d 件の %s を作成しました"
|
5222 |
+
|
5223 |
+
#: views/admin/manage/index.php:297
|
5224 |
+
#, php-format
|
5225 |
+
msgid "%d updated, %d skipped, %d deleted"
|
5226 |
+
msgstr "%d 件は更新され、%d 件はスキップされ、%d 件は削除されました"
|
5227 |
+
|
5228 |
+
#: views/admin/manage/index.php:304
|
5229 |
+
msgid "settings edited since last run"
|
5230 |
+
msgstr "前回の実行以降編集の設定"
|
5231 |
+
|
5232 |
+
#: views/admin/manage/index.php:316 views/admin/manage/scheduling.php:2
|
5233 |
+
msgid "Cron Scheduling"
|
5234 |
+
msgstr "Cron のスケジューリング"
|
5235 |
+
|
5236 |
+
#: views/admin/manage/index.php:318
|
5237 |
+
msgid "History Logs"
|
5238 |
+
msgstr "履歴ログ"
|
5239 |
+
|
5240 |
+
#: views/admin/manage/index.php:328
|
5241 |
+
msgid "Run Import"
|
5242 |
+
msgstr "インポート実行"
|
5243 |
+
|
5244 |
+
#: views/admin/manage/index.php:330
|
5245 |
+
msgid "Cancel Cron"
|
5246 |
+
msgstr "複製をキャンセル"
|
5247 |
+
|
5248 |
+
#: views/admin/manage/index.php:332
|
5249 |
+
msgid "Cancel"
|
5250 |
+
msgstr "キャンセル"
|
5251 |
+
|
5252 |
+
#: views/admin/manage/scheduling.php:8
|
5253 |
+
msgid ""
|
5254 |
+
"To schedule an import, you must create two cron jobs in your web hosting "
|
5255 |
+
"control panel. One cron job will be used to run the Trigger script, the "
|
5256 |
+
"other to run the Execution script."
|
5257 |
+
msgstr ""
|
5258 |
+
"インポートをスケジュールするには、あなたのウェブホスティングコントロールパネ"
|
5259 |
+
"ル内の2つのcronジョブを作成する必要があります。一つのcronジョブが実行スクリプ"
|
5260 |
+
"トを実行するために、他の、トリガースクリプトを実行するために使用されます。"
|
5261 |
+
|
5262 |
+
#: views/admin/manage/scheduling.php:19
|
5263 |
+
msgid "Trigger Script"
|
5264 |
+
msgstr "トリガー・スクリプト"
|
5265 |
+
|
5266 |
+
#: views/admin/manage/scheduling.php:21
|
5267 |
+
msgid "Every time you want to schedule the import, run the trigger script."
|
5268 |
+
msgstr "インポートをスケジュールするたびにトリガー スクリプトを実行します。"
|
5269 |
+
|
5270 |
+
#: views/admin/manage/scheduling.php:23
|
5271 |
+
msgid ""
|
5272 |
+
"To schedule the import to run once every 24 hours, run the trigger script "
|
5273 |
+
"every 24 hours. Most hosts require you to use “wget” to access a URL. Ask "
|
5274 |
+
"your host for details."
|
5275 |
+
msgstr ""
|
5276 |
+
"24時間ごとに実行するためのインポートをスケジュールするには、24時間ごとにトリ"
|
5277 |
+
"ガー・スクリプトを実行します。ほとんどのホストは、URLにアクセスするには、"
|
5278 |
+
"「wgetの \"を使用する必要があります。詳細については、お使いのホストを確認して"
|
5279 |
+
"下さい。"
|
5280 |
+
|
5281 |
+
#: views/admin/manage/scheduling.php:25 views/admin/manage/scheduling.php:37
|
5282 |
+
msgid "Example:"
|
5283 |
+
msgstr "例:"
|
5284 |
+
|
5285 |
+
#: views/admin/manage/scheduling.php:29
|
5286 |
+
msgid "Execution Script"
|
5287 |
+
msgstr "実行スクリプト"
|
5288 |
+
|
5289 |
+
#: views/admin/manage/scheduling.php:31
|
5290 |
+
msgid ""
|
5291 |
+
"The Execution script actually executes the import, once it has been "
|
5292 |
+
"triggered with the Trigger script."
|
5293 |
+
msgstr ""
|
5294 |
+
"それがトリガー スクリプトを起動実行スクリプトは実際にインポートを実行します。"
|
5295 |
+
|
5296 |
+
#: views/admin/manage/scheduling.php:33
|
5297 |
+
msgid ""
|
5298 |
+
"It processes in iteration (only importing a few records each time it runs) "
|
5299 |
+
"to optimize server load. It is recommended you run the execution script "
|
5300 |
+
"every 2 minutes."
|
5301 |
+
msgstr ""
|
5302 |
+
"それプロセスの反復 (だけでいくつかのレコードをインポートする実行時間) サー"
|
5303 |
+
"バーの負荷を最適化するために。2 分ごとの実行スクリプトを実行することをお勧め"
|
5304 |
+
"します。"
|
5305 |
+
|
5306 |
+
#: views/admin/manage/scheduling.php:35
|
5307 |
+
msgid ""
|
5308 |
+
"It also operates this way in case of unexpected crashes by your web host. If "
|
5309 |
+
"it crashes before the import is finished, the next run of the cron job two "
|
5310 |
+
"minutes later will continue it where it left off, ensuring reliability."
|
5311 |
+
msgstr ""
|
5312 |
+
"また、あなたのWebホストによって予期せぬクラッシュの場合にはこのように動作しま"
|
5313 |
+
"す。インポートが完了する前に、それがクラッシュした場合、cronジョブの次の実行"
|
5314 |
+
"は、2分後には信頼性を確保し、オフに左にそれを継続します。"
|
5315 |
+
|
5316 |
+
#: views/admin/manage/scheduling.php:41
|
5317 |
+
msgid "Notes"
|
5318 |
+
msgstr "注記"
|
5319 |
+
|
5320 |
+
#: views/admin/manage/scheduling.php:44
|
5321 |
+
msgid ""
|
5322 |
+
"Your web host may require you to use a command other than wget, although "
|
5323 |
+
"wget is most common. In this case, you must asking your web hosting provider "
|
5324 |
+
"for help."
|
5325 |
+
msgstr ""
|
5326 |
+
"あなたの web ホストは、wget は最も一般的な wget コマンド以外のコマンドを使用"
|
5327 |
+
"する必要があります。このケースでは、助けをあなたの web ホスティングプロバイ"
|
5328 |
+
"ダーを求めてする必要があります。"
|
5329 |
+
|
5330 |
+
#: views/admin/manage/scheduling.php:54
|
5331 |
+
msgid ""
|
5332 |
+
"To schedule this import with a cron job, you must use the \"Download from URL"
|
5333 |
+
"\" option on the Import Settings screen of WP All Import."
|
5334 |
+
msgstr ""
|
5335 |
+
"この cron ジョブのインポートをスケジュールするには、WP をすべてインポートのイ"
|
5336 |
+
"ンポート設定画面で「URL からダウンロード」オプションを使用する必要が。"
|
5337 |
+
|
5338 |
+
#: views/admin/manage/scheduling.php:57
|
5339 |
+
msgid "Go to Import Settings now..."
|
5340 |
+
msgstr "今すぐインポート設定に移動..."
|
5341 |
+
|
5342 |
+
#: views/admin/manage/update.php:1
|
5343 |
+
msgid "Update Import"
|
5344 |
+
msgstr "アップデートのインポート"
|
5345 |
+
|
5346 |
+
#: views/admin/manage/update.php:9
|
5347 |
+
#, php-format
|
5348 |
+
msgid "Are you sure you want to update <strong>%s</strong> import?"
|
5349 |
+
msgstr "<strong>%s</strong>のインポートを更新してもよろしいですか?"
|
5350 |
+
|
5351 |
+
#: views/admin/manage/update.php:10
|
5352 |
+
#, php-format
|
5353 |
+
msgid "Source path is <strong>%s</strong>"
|
5354 |
+
msgstr "ソースパスは<strong>%s</strong>です"
|
5355 |
+
|
5356 |
+
#: views/admin/manage/update.php:21
|
5357 |
+
msgid ""
|
5358 |
+
"Update feature is not available for this import since it has no external "
|
5359 |
+
"path linked."
|
5360 |
+
msgstr ""
|
5361 |
+
"リンクされている外部のパスがあるないので、更新機能はこのインポートに使用でき"
|
5362 |
+
"ません。"
|
5363 |
+
|
5364 |
+
#: views/admin/settings/index.php:18
|
5365 |
+
msgid "Import/Export Templates"
|
5366 |
+
msgstr "インポート/エクスポートのテンプレート"
|
5367 |
+
|
5368 |
+
#: views/admin/settings/index.php:32
|
5369 |
+
msgid "Delete Selected"
|
5370 |
+
msgstr "選択したものを削除"
|
5371 |
+
|
5372 |
+
#: views/admin/settings/index.php:33
|
5373 |
+
msgid "Export Selected"
|
5374 |
+
msgstr "エクスポート選択"
|
5375 |
+
|
5376 |
+
#: views/admin/settings/index.php:36
|
5377 |
+
msgid "There are no templates saved"
|
5378 |
+
msgstr "テンプレートは保存されてません"
|
5379 |
+
|
5380 |
+
#: views/admin/settings/index.php:41
|
5381 |
+
msgid "Import Templates"
|
5382 |
+
msgstr "テンプレートのインポート"
|
5383 |
+
|
5384 |
+
#: views/admin/settings/index.php:49
|
5385 |
+
msgid "Cron Imports"
|
5386 |
+
msgstr "Cron インポート"
|
5387 |
+
|
5388 |
+
#: views/admin/settings/index.php:54
|
5389 |
+
msgid "Secret Key"
|
5390 |
+
msgstr "シークレットキー"
|
5391 |
+
|
5392 |
+
#: views/admin/settings/index.php:57
|
5393 |
+
msgid "Changing this will require you to re-create your existing cron jobs."
|
5394 |
+
msgstr "この変更は既存の cron ジョブを再作成する上で必要になります。"
|
5395 |
+
|
5396 |
+
#: views/admin/settings/index.php:61
|
5397 |
+
msgid "Cron Processing Time Limit"
|
5398 |
+
msgstr "cronの処理時間の制限"
|
5399 |
+
|
5400 |
+
#: views/admin/settings/index.php:64
|
5401 |
+
msgid ""
|
5402 |
+
"Maximum execution time for the cron processing script. If this is blank, the "
|
5403 |
+
"default value of 120 (2 minutes) will be used."
|
5404 |
+
msgstr ""
|
5405 |
+
"Cron のスクリプトの処理の最大実行時間。これが空白の場合は、120 (2 分) の既定"
|
5406 |
+
"値が使用されます。"
|
5407 |
+
|
5408 |
+
#: views/admin/settings/index.php:68
|
5409 |
+
msgid "Cron Sleep"
|
5410 |
+
msgstr "cronのスリープ"
|
5411 |
+
|
5412 |
+
#: views/admin/settings/index.php:71
|
5413 |
+
msgid ""
|
5414 |
+
"Sleep the specified number of seconds between each post created, updated, or "
|
5415 |
+
"deleted with cron. Leave blank to not sleep. Only necessary on servers that "
|
5416 |
+
"are slowed down by the cron job because they have very minimal processing "
|
5417 |
+
"power and resources."
|
5418 |
+
msgstr ""
|
5419 |
+
"作成、更新、または cron を削除各ポスト間の秒指定された数をスリープ状態しま"
|
5420 |
+
"す。眠ることを空白のまま。彼らは非常に最小限の処理能力とリソースを持っている"
|
5421 |
+
"ので、cron ジョブによって減速されますサーバーでのみ必要です。"
|
5422 |
+
|
5423 |
+
#: views/admin/settings/index.php:84 views/admin/settings/index.php:87
|
5424 |
+
msgid "Secure Mode"
|
5425 |
+
msgstr "セキュアモード"
|
5426 |
+
|
5427 |
+
#: views/admin/settings/index.php:89
|
5428 |
+
msgid "Randomize folder names"
|
5429 |
+
msgstr "フォルダ名をランダム"
|
5430 |
+
|
5431 |
+
#: views/admin/settings/index.php:95
|
5432 |
+
#, php-format
|
5433 |
+
msgid ""
|
5434 |
+
"Imported files, chunks, logs and temporary files will be placed in a folder "
|
5435 |
+
"with a randomized name inside of %s."
|
5436 |
+
msgstr ""
|
5437 |
+
"インポートされたファイル、チャンク、ログ、および一時ファイルは、%sの中にラン"
|
5438 |
+
"ダムに名前が付けられたフォルダに置かれます。"
|
5439 |
+
|
5440 |
+
#: views/admin/settings/index.php:100
|
5441 |
+
msgid "Log Storage"
|
5442 |
+
msgstr "ログストレージ"
|
5443 |
+
|
5444 |
+
#: views/admin/settings/index.php:103
|
5445 |
+
msgid "Number of logs to store for each import. Enter 0 to never store logs."
|
5446 |
+
msgstr ""
|
5447 |
+
"各インポートに保存するログの数。決してログを保存する場合は 0 を入力します。"
|
5448 |
+
|
5449 |
+
#: views/admin/settings/index.php:107
|
5450 |
+
msgid "Clean Up Temp Files"
|
5451 |
+
msgstr "一時ファイルのクリーンアップ"
|
5452 |
+
|
5453 |
+
#: views/admin/settings/index.php:109
|
5454 |
+
msgid "Clean Up"
|
5455 |
+
msgstr "クリーンアップ"
|
5456 |
+
|
5457 |
+
#: views/admin/settings/index.php:110
|
5458 |
+
msgid ""
|
5459 |
+
"Attempt to remove temp files left over by imports that were improperly "
|
5460 |
+
"terminated."
|
5461 |
+
msgstr "適切にターミネートされた輸入によって一時ファイルを削除しようとします。"
|
5462 |
+
|
5463 |
+
#: views/admin/settings/index.php:118
|
5464 |
+
msgid "Advanced Settings"
|
5465 |
+
msgstr "高度な設定"
|
5466 |
+
|
5467 |
+
#: views/admin/settings/index.php:123
|
5468 |
+
msgid "Chunk Size"
|
5469 |
+
msgstr "チャンクサイズ"
|
5470 |
+
|
5471 |
+
#: views/admin/settings/index.php:126
|
5472 |
+
msgid "Split file into chunks containing the specified number of records."
|
5473 |
+
msgstr "指定された数のレコードを含むチャンクにファイルを分割します。"
|
5474 |
+
|
5475 |
+
#: views/admin/settings/index.php:130
|
5476 |
+
msgid "WP_IMPORTING"
|
5477 |
+
msgstr "WP_IMPORTING"
|
5478 |
+
|
5479 |
+
#: views/admin/settings/index.php:134
|
5480 |
+
msgid "Enable WP_IMPORTING"
|
5481 |
+
msgstr "WP_IMPORTINGを有効化"
|
5482 |
+
|
5483 |
+
#: views/admin/settings/index.php:136
|
5484 |
+
msgid "Setting this constant avoids triggering pingback."
|
5485 |
+
msgstr "ピングバックのトリガーを回避この定数を設定します。"
|
5486 |
+
|
5487 |
+
#: views/admin/settings/index.php:140
|
5488 |
+
msgid "Add Port To URL"
|
5489 |
+
msgstr "URLにポートを追加"
|
5490 |
+
|
5491 |
+
#: views/admin/settings/index.php:143
|
5492 |
+
msgid ""
|
5493 |
+
"Specify the port number to add if you're having problems continuing to Step "
|
5494 |
+
"2 and are running things on a custom port. Default is blank."
|
5495 |
+
msgstr ""
|
5496 |
+
"カスタムポートでの運用で、ステップ2へ進む際に問題が発生する場合、追加するポー"
|
5497 |
+
"ト番号を指定してください。デフォルトは空白です。"
|
5498 |
+
|
5499 |
+
#: views/admin/settings/index.php:150
|
5500 |
+
msgid "Licenses"
|
5501 |
+
msgstr "ライセンス"
|
5502 |
+
|
5503 |
+
#: views/admin/settings/index.php:157
|
5504 |
+
msgid "License Key"
|
5505 |
+
msgstr "ライセンスキー"
|
5506 |
+
|
5507 |
+
#: views/admin/settings/index.php:170
|
5508 |
+
msgid ""
|
5509 |
+
"A license key is required to access plugin updates. You can use your license "
|
5510 |
+
"key on an unlimited number of websites. Do not distribute your license key "
|
5511 |
+
"to 3rd parties. You can get your license key in the <a target=\"_blank\" "
|
5512 |
+
"href=\"http://www.wpallimport.com/portal\">customer portal</a>."
|
5513 |
+
msgstr ""
|
5514 |
+
"プラグインのアップデートにアクセスするには、ライセンスキーが必要です。無制限"
|
5515 |
+
"にWebサイトでライセンスキーを使用することができます。ライセンスキーを第三者に"
|
5516 |
+
"配布しないでください。ライセンスキーは<a target=\"_blank\" href=\"http://www."
|
5517 |
+
"wpallimport.com/portal\">カスタマーポータル</a>で入手できます。"
|
5518 |
+
|
5519 |
+
#: views/admin/settings/index.php:177
|
5520 |
+
msgid "Force Stream Reader"
|
5521 |
+
msgstr "力ストリーム リーダー"
|
5522 |
+
|
5523 |
+
#: views/admin/settings/index.php:182
|
5524 |
+
msgid ""
|
5525 |
+
"Force WP All Import to use StreamReader instead of XMLReader to parse all "
|
5526 |
+
"import files"
|
5527 |
+
msgstr ""
|
5528 |
+
"すべての解析に XMLReader の代わりに StreamReader を使用する WP 力すべてイン"
|
5529 |
+
"ポート ファイルをインポートします。"
|
5530 |
+
|
5531 |
+
#: views/admin/settings/index.php:186
|
5532 |
+
msgid "Enable Stream Reader"
|
5533 |
+
msgstr "有効にするストリーム リーダー"
|
5534 |
+
|
5535 |
+
#: wp-all-import-pro.php:20
|
5536 |
+
msgid ""
|
5537 |
+
"Please de-activate and remove the free version of WP All Import before "
|
5538 |
+
"activating the paid version."
|
5539 |
+
msgstr ""
|
5540 |
+
"有料版を有効にする前に、WP All Importの無料版を無効にして削除してください。"
|
5541 |
+
|
5542 |
+
#: wp-all-import-pro.php:332
|
5543 |
+
#, php-format
|
5544 |
+
msgid ""
|
5545 |
+
"To enable updates, please enter your license key on the <a href=\"%s"
|
5546 |
+
"\">Licenses</a> page. If you don't have a licence key, please see <a href="
|
5547 |
+
"\"%s\">details & pricing</a>"
|
5548 |
+
msgstr ""
|
5549 |
+
"更新を有効にするには、ページで<a href=\"%s\">ライセンス</a>上のライセンスキー"
|
5550 |
+
"を入力してください。ライセンスキーをお持ちでない場合は、<a href=\"%s\">詳細と"
|
5551 |
+
"価格</a>をご覧ください。"
|
5552 |
+
|
5553 |
+
#: wp-all-import-pro.php:827 wp-all-import-pro.php:831
|
5554 |
+
#, php-format
|
5555 |
+
msgid "Uploads folder %s must be writable"
|
5556 |
+
msgstr "アップロードフォルダ %s は書き込み可能でなければなりません"
|
5557 |
+
|
5558 |
+
#: wp-all-import-pro.php:968
|
5559 |
+
#, php-format
|
5560 |
+
msgid "<b>%s Plugin</b>: Current sql user %s doesn't have ALTER privileges"
|
5561 |
+
msgstr ""
|
5562 |
+
"<b>%sのプラグイン</b> :現在のSQLユーザー%s はALTER権限を持っていません。"
|
5563 |
+
|
5564 |
+
#. Plugin Name of the plugin/theme
|
5565 |
+
msgid "WP All Import Pro"
|
5566 |
+
msgstr "WP All Import Pro"
|
5567 |
+
|
5568 |
+
#. Plugin URI of the plugin/theme
|
5569 |
+
msgid "http://www.wpallimport.com/"
|
5570 |
+
msgstr "http://www.wpallimport.com/"
|
5571 |
+
|
5572 |
+
#. Description of the plugin/theme
|
5573 |
+
msgid ""
|
5574 |
+
"The most powerful solution for importing XML and CSV files to WordPress. "
|
5575 |
+
"Import to Posts, Pages, and Custom Post Types. Support for imports that run "
|
5576 |
+
"on a schedule, ability to update existing imports, and much more."
|
5577 |
+
msgstr ""
|
5578 |
+
"ワードプレスに XML および CSV ファイルをインポートするための最も強力なソ"
|
5579 |
+
"リューションです。インポートの投稿、ページ、およびカスタム ポスト タイプ。ス"
|
5580 |
+
"ケジュールで実行する既存の更新機能をインポートすると、インポートおよび大いに"
|
5581 |
+
"多くをサポートします。"
|
5582 |
+
|
5583 |
+
#. Author of the plugin/theme
|
5584 |
+
msgid "Soflyy"
|
5585 |
+
msgstr "Soflyy"
|
5586 |
+
|
5587 |
+
#~ msgid "Leave blank to use your server's limit on script run times."
|
5588 |
+
#~ msgstr "スクリプト実行時間のサーバーの制限を使用して空白のまま。"
|
5589 |
+
|
5590 |
+
#~ msgid "Both name and value must be set for all custom parameters"
|
5591 |
+
#~ msgstr "名前と値の両方がすべてのカスタムパラメータに設定する必要があります"
|
5592 |
+
|
5593 |
+
#~ msgid "%d %ss created %d updated %d deleted %d skipped"
|
5594 |
+
#~ msgstr ""
|
5595 |
+
#~ "%d件の%ss が作成され %d件が更新され %d件は削除され %d件はスキップされまし"
|
5596 |
+
#~ "た"
|
5597 |
+
|
5598 |
+
#~ msgid "Composing post IDs..."
|
5599 |
+
#~ msgstr "投稿ID を作る..."
|
5600 |
+
|
5601 |
+
#~ msgid "Duplicate post wasn'n found for post `%s`..."
|
5602 |
+
#~ msgstr "Entrada duplicada no fue encontrada para entrada `%s`..."
|
5603 |
+
|
5604 |
+
#~ msgid ""
|
5605 |
+
#~ "Enter the slug of the desired page parent. If adding the child and parent "
|
5606 |
+
#~ "pages in the same import, set 'Records per Iteration' to 1, run the "
|
5607 |
+
#~ "import twice, or run separate imports for child and parent pages."
|
5608 |
+
#~ msgstr ""
|
5609 |
+
#~ "目的のページの親のスラッグを入力します。 同じインポートで子ページと親ペー"
|
5610 |
+
#~ "ジを追加する場合は、「1レコード/ 1反復」を1に設定し、インポートを2回実行す"
|
5611 |
+
#~ "るか、子ページと親ページのインポートを別々に実行します。"
|
5612 |
+
|
5613 |
+
#~ msgid ""
|
5614 |
+
#~ "Enter the slug of the desired post parent. If adding the child and parent "
|
5615 |
+
#~ "posts in the same import, set 'Records per Iteration' to 1, run the "
|
5616 |
+
#~ "import twice, or run separate imports for child and parent posts."
|
5617 |
+
#~ msgstr ""
|
5618 |
+
#~ "目的のページの親のスラッグを入力します。 同じインポートで子ページと親ペー"
|
5619 |
+
#~ "ジを追加する場合は、「1レコード/ 1反復」を1に設定し、インポートを2回実行す"
|
5620 |
+
#~ "るか、子ページと親ページのインポートを別々に実行します。"
|
5621 |
+
|
5622 |
+
#~ msgid "Delete posts created by %s"
|
5623 |
+
#~ msgstr "%sで作成された投稿を削除"
|
i18n/languages/wp_all_import_plugin-pt_BR.mo
ADDED
Binary file
|
i18n/languages/wp_all_import_plugin-pt_BR.po
ADDED
@@ -0,0 +1,4206 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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: WP All Import Pro\n"
|
8 |
+
"Language: pt-br\n"
|
9 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
10 |
+
|
11 |
+
#: actions/admin_menu.php:12
|
12 |
+
msgid "New Import"
|
13 |
+
msgstr "Nova importação"
|
14 |
+
|
15 |
+
#: actions/admin_menu.php:13 views/admin/import/process.php:71
|
16 |
+
#: views/admin/manage/index.php:5
|
17 |
+
msgid "Manage Imports"
|
18 |
+
msgstr "Gerenciar importações"
|
19 |
+
|
20 |
+
#: actions/admin_menu.php:14 views/admin/settings/index.php:7
|
21 |
+
msgid "Settings"
|
22 |
+
msgstr "Configurações"
|
23 |
+
|
24 |
+
#: actions/admin_menu.php:16
|
25 |
+
msgid "History"
|
26 |
+
msgstr "Histórico"
|
27 |
+
|
28 |
+
#: actions/admin_menu.php:22 controllers/admin/license.php:18
|
29 |
+
#: controllers/admin/settings.php:50 views/admin/import/confirm.php:11
|
30 |
+
#: views/admin/import/element.php:8 views/admin/import/index.php:43
|
31 |
+
#: views/admin/import/options.php:18 views/admin/import/process.php:8
|
32 |
+
#: views/admin/import/template.php:9 views/admin/manage/index.php:4
|
33 |
+
#: views/admin/settings/index.php:6
|
34 |
+
msgid "WP All Import"
|
35 |
+
msgstr "WP All Import"
|
36 |
+
|
37 |
+
#: actions/admin_menu.php:22
|
38 |
+
msgid "All Import"
|
39 |
+
msgstr "All Import"
|
40 |
+
|
41 |
+
#: actions/admin_notices.php:12
|
42 |
+
msgid "<b>%s Plugin</b>: Please update your WP All Import WooCommerce add-on to the latest version"
|
43 |
+
msgstr "<b>%s Plugin</b>: Atualize o seu WP All Import WooCommerce add-on para a versão mais recente"
|
44 |
+
|
45 |
+
#: actions/admin_notices.php:39
|
46 |
+
msgid "<b>%s Plugin</b>: Please update your WP All Import ACF add-on to the latest version"
|
47 |
+
msgstr "<b>%s Plugin</b>: Atualize o seu WP All Import ACF add-on para a versão mais recente"
|
48 |
+
|
49 |
+
#: actions/admin_notices.php:56
|
50 |
+
msgid "<b>%s Plugin</b>: Please update your WP All Import Linkcloak add-on to the latest version"
|
51 |
+
msgstr "<b>%s Plugin</b>: Atualize o seu WP All Import Linkcloak add-on para a versão mais recente"
|
52 |
+
|
53 |
+
#: actions/admin_notices.php:73
|
54 |
+
msgid "<b>%s Plugin</b>: Please update your WP All Import User add-on to the latest version"
|
55 |
+
msgstr "<b>%s Plugin</b>: Atualize o seu WP All Import User add-on para a versão mais recente"
|
56 |
+
|
57 |
+
#: actions/admin_notices.php:90
|
58 |
+
msgid "<b>%s Plugin</b>: The WPML Add-On Plugin is no longer compatible with this version of WP All Import - please contact support@wpallimport.com and we will supply the latest version of WP All Import that is compatible with the WPML Add-On."
|
59 |
+
msgstr "<b>%s Plugin</b>: O plugin WPML Add-On já não é compatível com esta versão do WP All Import - por favor contate support@wpallimport.com e solicite a versão mais recente do WP All Import compatível com o Add-On WPML."
|
60 |
+
|
61 |
+
#: actions/admin_notices.php:119 controllers/admin/import.php:1547
|
62 |
+
#: controllers/admin/import.php:1789 controllers/admin/import.php:2339
|
63 |
+
msgid "<strong>Warning:</strong> your title is blank."
|
64 |
+
msgstr "<strong>Cuidado:</strong> seu título está vazio."
|
65 |
+
|
66 |
+
#: actions/admin_notices.php:122 controllers/admin/import.php:1554
|
67 |
+
msgid "<strong>Warning:</strong> your content is blank."
|
68 |
+
msgstr "<strong>Cuidado:</strong> seu conteúdo está vazio."
|
69 |
+
|
70 |
+
#: actions/wp_ajax_auto_detect_cf.php:5 actions/wp_ajax_auto_detect_cf.php:9
|
71 |
+
#: actions/wp_ajax_auto_detect_sf.php:5 actions/wp_ajax_auto_detect_sf.php:9
|
72 |
+
#: actions/wp_ajax_delete_import.php:5 actions/wp_ajax_delete_import.php:9
|
73 |
+
#: actions/wp_ajax_dismiss_notifications.php:5
|
74 |
+
#: actions/wp_ajax_dismiss_notifications.php:9
|
75 |
+
#: actions/wp_ajax_get_bundle_post_type.php:6
|
76 |
+
#: actions/wp_ajax_get_bundle_post_type.php:10
|
77 |
+
#: actions/wp_ajax_import_failed.php:5 actions/wp_ajax_import_failed.php:9
|
78 |
+
#: actions/wp_ajax_nested_merge.php:6 actions/wp_ajax_nested_merge.php:10
|
79 |
+
#: actions/wp_ajax_nested_xpath.php:6 actions/wp_ajax_nested_xpath.php:10
|
80 |
+
#: actions/wp_ajax_parse_nested_file.php:10
|
81 |
+
#: actions/wp_ajax_parse_nested_file.php:14
|
82 |
+
#: actions/wp_ajax_save_import_functions.php:6
|
83 |
+
#: actions/wp_ajax_save_import_functions.php:10
|
84 |
+
#: actions/wp_ajax_test_images.php:6 actions/wp_ajax_test_images.php:10
|
85 |
+
#: actions/wp_ajax_unmerge_file.php:5 actions/wp_ajax_unmerge_file.php:9
|
86 |
+
#: actions/wp_ajax_upload_resource.php:6 actions/wp_ajax_upload_resource.php:10
|
87 |
+
#: controllers/admin/history.php:74 controllers/admin/import.php:591
|
88 |
+
#: controllers/admin/import.php:899 controllers/admin/import.php:1037
|
89 |
+
#: controllers/admin/import.php:1177 controllers/admin/import.php:1333
|
90 |
+
#: controllers/admin/import.php:2589 controllers/admin/manage.php:136
|
91 |
+
#: controllers/admin/manage.php:179 controllers/admin/manage.php:293
|
92 |
+
#: controllers/admin/manage.php:545 controllers/admin/settings.php:427
|
93 |
+
msgid "Security check"
|
94 |
+
msgstr "Verificação de segurança"
|
95 |
+
|
96 |
+
#: actions/wp_ajax_auto_detect_cf.php:71 models/import/record.php:1572
|
97 |
+
#: views/admin/import/element.php:21
|
98 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:8
|
99 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:7
|
100 |
+
#: views/admin/import/process.php:40
|
101 |
+
#: views/admin/import/template/_custom_fields_template.php:7
|
102 |
+
#: views/admin/import/template/_other_template.php:6
|
103 |
+
#: views/admin/import/template/_term_meta_template.php:7
|
104 |
+
#: views/admin/import/template/_term_other_template.php:7
|
105 |
+
msgid "Taxonomy Term"
|
106 |
+
msgstr "Termo de Taxonomia"
|
107 |
+
|
108 |
+
#: actions/wp_ajax_auto_detect_cf.php:77
|
109 |
+
msgid "No Custom Fields are present in your database for %s"
|
110 |
+
msgstr "Nenhum campo personalizado está presente na sua base de dados para %s"
|
111 |
+
|
112 |
+
#: actions/wp_ajax_auto_detect_cf.php:80
|
113 |
+
msgid "%s field was automatically detected."
|
114 |
+
msgstr "%s o campo foi detectado automaticamente."
|
115 |
+
|
116 |
+
#: actions/wp_ajax_auto_detect_cf.php:82
|
117 |
+
msgid "%s fields were automatically detected."
|
118 |
+
msgstr "%s os campos foram detectados automaticamente."
|
119 |
+
|
120 |
+
#: actions/wp_ajax_delete_import.php:32 controllers/admin/manage.php:608
|
121 |
+
msgid "Import deleted"
|
122 |
+
msgstr "Importação excluída"
|
123 |
+
|
124 |
+
#: actions/wp_ajax_delete_import.php:36 controllers/admin/manage.php:612
|
125 |
+
msgid "All associated posts deleted."
|
126 |
+
msgstr "Todos os posts associados foram excluídos."
|
127 |
+
|
128 |
+
#: actions/wp_ajax_delete_import.php:40 controllers/admin/manage.php:616
|
129 |
+
msgid "Import and all associated posts deleted."
|
130 |
+
msgstr "Importação e todos os posts associados foram excluídos."
|
131 |
+
|
132 |
+
#: actions/wp_ajax_delete_import.php:44 controllers/admin/manage.php:597
|
133 |
+
msgid "Nothing to delete."
|
134 |
+
msgstr "Nada para apagar."
|
135 |
+
|
136 |
+
#: actions/wp_ajax_delete_import.php:66
|
137 |
+
msgid "Import #%d - %d records deleted"
|
138 |
+
msgstr "Importados #%d -%d registros excluídos"
|
139 |
+
|
140 |
+
#: actions/wp_ajax_get_bundle_post_type.php:73
|
141 |
+
#: actions/wp_ajax_upload_resource.php:141 controllers/admin/settings.php:610
|
142 |
+
msgid "<p class=\"wpallimport-bundle-notice\">The import bundle you are using requires WooCommerce.</p><a class=\"upgrade_link\" href=\"https://wordpress.org/plugins/woocommerce/\" target=\"_blank\">Get WooCommerce</a>."
|
143 |
+
msgstr "<p class =\"wpallimport-bundle-notice\">O pacote de importação que você está usando requer o WooCommerce.</p> <a class=\"upgrade_link\" href=\"https://wordpress.org/plugins/woocommerce/\" target=\"_blank\">Baixar WooCommerce</a>."
|
144 |
+
|
145 |
+
#: actions/wp_ajax_get_bundle_post_type.php:79
|
146 |
+
#: actions/wp_ajax_upload_resource.php:147 controllers/admin/settings.php:616
|
147 |
+
msgid "<p class=\"wpallimport-bundle-notice\">The import bundle you are using requires the Pro version of the WooCommerce Add-On.</p><a href=\"http://www.wpallimport.com/checkout/?edd_action=add_to_cart&download_id=1529&edd_options%5Bprice_id%5D=1\" class=\"upgrade_link\" target=\"_blank\">Purchase the WooCommerce Add-On</a>."
|
148 |
+
msgstr "<p class =\"wpallimport-bundle-notice\">O pacote de importação que você está usando requer a versão Pro do WooCommerce Add-on.</p> <a href=\"http://www.wpallimport.com/checkout/?edd_action=add_to_cart&download_id=1529&edd_options%5Bprice_id%5D=1\" class=\"upgrade_link\" target=\"_blank\">Comprar WooCommerce Add-On Pro</a>."
|
149 |
+
|
150 |
+
#: actions/wp_ajax_get_bundle_post_type.php:84
|
151 |
+
#: actions/wp_ajax_upload_resource.php:152 controllers/admin/settings.php:621
|
152 |
+
msgid "<p class=\"wpallimport-bundle-notice\">The import bundle you are using requires the Pro version of the WooCommerce Add-On, but you have the free version installed.</p><a href=\"http://www.wpallimport.com/checkout/?edd_action=add_to_cart&download_id=1529&edd_options%5Bprice_id%5D=1\" target=\"_blank\" class=\"upgrade_link\">Purchase the WooCommerce Add-On</a>."
|
153 |
+
msgstr "<p class=\"wpallimport-bundle-notice\">O pacote de importação que você está usando requer a versão Pro do WooCommerce Add-On, mas você tem a versão gratuita instalada.</p><a href=\"http://www.wpallimport.com/checkout/?edd_action=add_to_cart&download_id=1529&edd_options%5Bprice_id%5D=1\" target=\"_blank\" class=\"upgrade_link\">Comprar WooCommerce Add-On Pro</a>."
|
154 |
+
|
155 |
+
#: actions/wp_ajax_get_bundle_post_type.php:94
|
156 |
+
#: actions/wp_ajax_upload_resource.php:162 controllers/admin/settings.php:631
|
157 |
+
msgid "<p class=\"wpallimport-bundle-notice\">The import bundle you are using requires the User Import Add-On.</p><a href=\"http://www.wpallimport.com/checkout/?edd_action=add_to_cart&download_id=1921&edd_options%5Bprice_id%5D=1\" target=\"_blank\" class=\"upgrade_link\">Purchase the User Import Add-On</a>."
|
158 |
+
msgstr "<p class=\"wpallimport-bundle-notice\">O pacote de importação que você está usando requer o User Import Add-On.</p><a href=\"http://www.wpallimport.com/checkout/?edd_action=add_to_cart&download_id=1921&edd_options%5Bprice_id%5D=1\" target=\"_blank\" class=\"upgrade_link\">Comprar User Import Add-On</a>."
|
159 |
+
|
160 |
+
#: actions/wp_ajax_nested_xpath.php:51
|
161 |
+
msgid "XPath is required"
|
162 |
+
msgstr "XPath é necessário"
|
163 |
+
|
164 |
+
#: actions/wp_ajax_nested_xpath.php:65
|
165 |
+
#: actions/wp_ajax_parse_nested_file.php:159
|
166 |
+
msgid "Elements found"
|
167 |
+
msgstr "Elementos encontrados"
|
168 |
+
|
169 |
+
#: actions/wp_ajax_nested_xpath.php:65
|
170 |
+
#: actions/wp_ajax_parse_nested_file.php:159
|
171 |
+
msgid "Elements not found"
|
172 |
+
msgstr "Elementos não encontrados"
|
173 |
+
|
174 |
+
#: actions/wp_ajax_save_import_functions.php:31
|
175 |
+
#: actions/wp_ajax_save_import_functions.php:52
|
176 |
+
msgid "PHP code must be wrapped in \"<?php\" and \"?>\""
|
177 |
+
msgstr "O código PHP deve estar envolvido em \"<?php\" and \"?>\""
|
178 |
+
|
179 |
+
#: actions/wp_ajax_save_import_functions.php:38
|
180 |
+
#: actions/wp_ajax_save_import_functions.php:61
|
181 |
+
msgid "File has been successfully updated."
|
182 |
+
msgstr "O arquivo foi atualizado com sucesso."
|
183 |
+
|
184 |
+
#: actions/wp_ajax_test_images.php:32
|
185 |
+
msgid "Uploads folder `%s` is not writable."
|
186 |
+
msgstr "A pasta Uploads `%s` não pode ser gravada."
|
187 |
+
|
188 |
+
#: actions/wp_ajax_test_images.php:46
|
189 |
+
msgid "Use image name instead of URL `%s`."
|
190 |
+
msgstr "Use o nome da imagem em vez de URL `%s`."
|
191 |
+
|
192 |
+
#: actions/wp_ajax_test_images.php:53
|
193 |
+
msgid "File `%s` isn't readable"
|
194 |
+
msgstr "O arquivo `%s` não é legível"
|
195 |
+
|
196 |
+
#: actions/wp_ajax_test_images.php:57
|
197 |
+
msgid "File `%s` doesn't exist"
|
198 |
+
msgstr "Arquivo `%s` não existe"
|
199 |
+
|
200 |
+
#: actions/wp_ajax_test_images.php:63
|
201 |
+
msgid "%d image was successfully retrieved from `%s`"
|
202 |
+
msgstr "%d imagem foi recuperada com sucesso do `%s`"
|
203 |
+
|
204 |
+
#: actions/wp_ajax_test_images.php:67
|
205 |
+
msgid "%d images were successfully retrieved from `%s`"
|
206 |
+
msgstr "%d imagens foram recuperadas com sucesso do `%s`"
|
207 |
+
|
208 |
+
#: actions/wp_ajax_test_images.php:95
|
209 |
+
msgid "Image `%s` not found in media library."
|
210 |
+
msgstr "A imagem `%s` não encontrada na biblioteca de mídia."
|
211 |
+
|
212 |
+
#: actions/wp_ajax_test_images.php:102
|
213 |
+
msgid "%d image was successfully founded in media gallery"
|
214 |
+
msgstr "%d imagem encontrada na galeria"
|
215 |
+
|
216 |
+
#: actions/wp_ajax_test_images.php:106
|
217 |
+
msgid "%d images were successfully founded in media gallery"
|
218 |
+
msgstr "%d imagens encontradas na galeria"
|
219 |
+
|
220 |
+
#: actions/wp_ajax_test_images.php:120
|
221 |
+
msgid "URL `%s` is not valid."
|
222 |
+
msgstr "URL `%s` inválido."
|
223 |
+
|
224 |
+
#: actions/wp_ajax_test_images.php:135
|
225 |
+
msgid "File `%s` cannot be saved locally"
|
226 |
+
msgstr "O arquivo `% s` não pode ser salvo localmente"
|
227 |
+
|
228 |
+
#: actions/wp_ajax_test_images.php:137
|
229 |
+
msgid "File `%s` is not a valid image."
|
230 |
+
msgstr "O arquivo `%s` imagem inválida."
|
231 |
+
|
232 |
+
#: actions/wp_ajax_test_images.php:148
|
233 |
+
msgid "%d image was successfully downloaded in %s seconds"
|
234 |
+
msgstr "%d imagem foi baixada com sucesso em %s segundos"
|
235 |
+
|
236 |
+
#: actions/wp_ajax_test_images.php:152
|
237 |
+
msgid "%d images were successfully downloaded in %s seconds"
|
238 |
+
msgstr "%d imagens baixadas com sucesso em %s segundos"
|
239 |
+
|
240 |
+
#: actions/wp_ajax_upload_resource.php:124
|
241 |
+
msgid "Please verify that the URL returns a valid import file."
|
242 |
+
msgstr "Verifique se o URL retorna um arquivo de importação válido."
|
243 |
+
|
244 |
+
#: actions/wp_loaded.php:38
|
245 |
+
msgid "Cleanup completed."
|
246 |
+
msgstr "Limpeza concluída."
|
247 |
+
|
248 |
+
#: actions/wp_loaded.php:44
|
249 |
+
msgid "Missing import ID."
|
250 |
+
msgstr "ID de importação ausente."
|
251 |
+
|
252 |
+
#: actions/wp_loaded.php:72
|
253 |
+
msgid "Other imports are currently in process [%s]."
|
254 |
+
msgstr "Outras importações estão em processo [%s]."
|
255 |
+
|
256 |
+
#: actions/wp_loaded.php:82
|
257 |
+
msgid "Scheduling update is not working with \"upload\" import type. Import #%s."
|
258 |
+
msgstr "A atualização de agendamento não está funcionando com o tipo de importação \"upload\". Importe #%s."
|
259 |
+
|
260 |
+
#: actions/wp_loaded.php:95 actions/wp_loaded.php:167
|
261 |
+
msgid "Import #%s is currently in manually process. Request skipped."
|
262 |
+
msgstr "A importação #%s está atualmente no processo manual. Pedido ignorado."
|
263 |
+
|
264 |
+
#: actions/wp_loaded.php:118 views/admin/history/index.php:170
|
265 |
+
msgid "triggered by cron"
|
266 |
+
msgstr "Acionado pelo cron"
|
267 |
+
|
268 |
+
#: actions/wp_loaded.php:124
|
269 |
+
msgid "#%s Cron job triggered."
|
270 |
+
msgstr "#%s Processo cron acionado"
|
271 |
+
|
272 |
+
#: actions/wp_loaded.php:131
|
273 |
+
msgid "Import #%s currently in process. Request skipped."
|
274 |
+
msgstr "Importação #%s atualmente em processo. Pedido ignorado."
|
275 |
+
|
276 |
+
#: actions/wp_loaded.php:140
|
277 |
+
msgid "Import #%s already triggered. Request skipped."
|
278 |
+
msgstr "Importação #%s já iniciado. Pedido ignorado."
|
279 |
+
|
280 |
+
#: actions/wp_loaded.php:160
|
281 |
+
msgid "Import #%s is not triggered. Request skipped."
|
282 |
+
msgstr "Importação #%s não acionada. Pedido ignorado."
|
283 |
+
|
284 |
+
#: actions/wp_loaded.php:198 views/admin/history/index.php:167
|
285 |
+
msgid "cron processing"
|
286 |
+
msgstr "cron em processo"
|
287 |
+
|
288 |
+
#: actions/wp_loaded.php:230 models/import/record.php:633
|
289 |
+
msgid "Import #%s complete"
|
290 |
+
msgstr "Importação #%s completa"
|
291 |
+
|
292 |
+
#: actions/wp_loaded.php:239
|
293 |
+
msgid "Records Processed %s. Records Count %s."
|
294 |
+
msgstr "Registros Processados %s. Contagem de Registros %s."
|
295 |
+
|
296 |
+
#: actions/wp_loaded.php:251
|
297 |
+
msgid "Import #%s already processing. Request skipped."
|
298 |
+
msgstr "Importação #%s já está em andamento. Pedido ignorado."
|
299 |
+
|
300 |
+
#: actions/wp_loaded.php:275
|
301 |
+
msgid "Import #%s canceled"
|
302 |
+
msgstr "Importação #%s cancelado"
|
303 |
+
|
304 |
+
#: classes/api.php:113 views/admin/import/template/_other_template.php:39
|
305 |
+
#: views/admin/import/template/_other_template.php:88
|
306 |
+
#: views/admin/import/template/_other_template.php:111
|
307 |
+
#: views/admin/import/template/_other_template.php:178
|
308 |
+
#: views/admin/import/template/_other_template.php:208
|
309 |
+
#: views/admin/import/template/_other_template.php:236
|
310 |
+
#: views/admin/import/template/_other_template.php:262
|
311 |
+
msgid "Set with XPath"
|
312 |
+
msgstr "Definir com XPath"
|
313 |
+
|
314 |
+
#: classes/api.php:129
|
315 |
+
#: views/admin/import/template/_custom_fields_template.php:69
|
316 |
+
#: views/admin/import/template/_custom_fields_template.php:278
|
317 |
+
#: views/admin/import/template/_custom_fields_template.php:412
|
318 |
+
#: views/admin/import/template/_term_meta_template.php:69
|
319 |
+
#: views/admin/import/template/_term_meta_template.php:278
|
320 |
+
#: views/admin/import/template/_term_meta_template.php:412
|
321 |
+
msgid "Field Options..."
|
322 |
+
msgstr "Opções de Campo..."
|
323 |
+
|
324 |
+
#: classes/api.php:132
|
325 |
+
#: views/admin/import/template/_custom_fields_template.php:75
|
326 |
+
#: views/admin/import/template/_custom_fields_template.php:284
|
327 |
+
#: views/admin/import/template/_custom_fields_template.php:418
|
328 |
+
#: views/admin/import/template/_term_meta_template.php:75
|
329 |
+
#: views/admin/import/template/_term_meta_template.php:284
|
330 |
+
#: views/admin/import/template/_term_meta_template.php:418
|
331 |
+
msgid "Mapping"
|
332 |
+
msgstr "Mapeamento"
|
333 |
+
|
334 |
+
#: classes/api.php:141
|
335 |
+
#: views/admin/import/template/_custom_fields_template.php:182
|
336 |
+
#: views/admin/import/template/_custom_fields_template.php:350
|
337 |
+
#: views/admin/import/template/_custom_fields_template.php:484
|
338 |
+
#: views/admin/import/template/_taxonomies_template.php:233
|
339 |
+
#: views/admin/import/template/_term_meta_template.php:182
|
340 |
+
#: views/admin/import/template/_term_meta_template.php:350
|
341 |
+
#: views/admin/import/template/_term_meta_template.php:484
|
342 |
+
msgid "In Your File"
|
343 |
+
msgstr "No seu arquivo"
|
344 |
+
|
345 |
+
#: classes/api.php:142
|
346 |
+
#: views/admin/import/template/_custom_fields_template.php:183
|
347 |
+
#: views/admin/import/template/_custom_fields_template.php:351
|
348 |
+
#: views/admin/import/template/_custom_fields_template.php:485
|
349 |
+
#: views/admin/import/template/_taxonomies_template.php:234
|
350 |
+
#: views/admin/import/template/_term_meta_template.php:183
|
351 |
+
#: views/admin/import/template/_term_meta_template.php:351
|
352 |
+
#: views/admin/import/template/_term_meta_template.php:485
|
353 |
+
msgid "Translated To"
|
354 |
+
msgstr "Traduzido para"
|
355 |
+
|
356 |
+
#: classes/api.php:221
|
357 |
+
#: views/admin/import/template/_custom_fields_template.php:156
|
358 |
+
#: views/admin/import/template/_custom_fields_template.php:245
|
359 |
+
#: views/admin/import/template/_custom_fields_template.php:324
|
360 |
+
#: views/admin/import/template/_custom_fields_template.php:380
|
361 |
+
#: views/admin/import/template/_custom_fields_template.php:458
|
362 |
+
#: views/admin/import/template/_custom_fields_template.php:514
|
363 |
+
#: views/admin/import/template/_term_meta_template.php:156
|
364 |
+
#: views/admin/import/template/_term_meta_template.php:245
|
365 |
+
#: views/admin/import/template/_term_meta_template.php:324
|
366 |
+
#: views/admin/import/template/_term_meta_template.php:380
|
367 |
+
#: views/admin/import/template/_term_meta_template.php:458
|
368 |
+
#: views/admin/import/template/_term_meta_template.php:514
|
369 |
+
msgid "Add Another"
|
370 |
+
msgstr "Adicionar outro"
|
371 |
+
|
372 |
+
#: classes/api.php:227
|
373 |
+
#: views/admin/import/template/_custom_fields_template.php:251
|
374 |
+
#: views/admin/import/template/_custom_fields_template.php:386
|
375 |
+
#: views/admin/import/template/_custom_fields_template.php:520
|
376 |
+
#: views/admin/import/template/_term_meta_template.php:251
|
377 |
+
#: views/admin/import/template/_term_meta_template.php:386
|
378 |
+
#: views/admin/import/template/_term_meta_template.php:520
|
379 |
+
msgid "Save Rules"
|
380 |
+
msgstr "Salvar Regras"
|
381 |
+
|
382 |
+
#: classes/api.php:258
|
383 |
+
msgid "Download image hosted elsewhere"
|
384 |
+
msgstr "Fazer o download da imagem hospedada em outro host"
|
385 |
+
|
386 |
+
#: classes/api.php:259 classes/api.php:279
|
387 |
+
#: views/admin/import/template/_featured_template.php:16
|
388 |
+
#: views/admin/import/template/_featured_template.php:26
|
389 |
+
msgid "http:// or https://"
|
390 |
+
msgstr "http:// ou https://"
|
391 |
+
|
392 |
+
#: classes/api.php:264
|
393 |
+
msgid "Use image(s) currently uploaded in %s"
|
394 |
+
msgstr "Usar imagem(s) atualmente carregada de %s"
|
395 |
+
|
396 |
+
#: classes/api.php:278
|
397 |
+
msgid "Download file hosted elsewhere"
|
398 |
+
msgstr "Fazer o download do arquivo hospedado em outro host"
|
399 |
+
|
400 |
+
#: classes/api.php:284
|
401 |
+
msgid "Use file(s) currently uploaded in %s"
|
402 |
+
msgstr "Usar arquivo(s) atualmente carregado de %s"
|
403 |
+
|
404 |
+
#: classes/api.php:398 models/import/record.php:2710
|
405 |
+
msgid "- Searching for existing image `%s` in `%s` folder"
|
406 |
+
msgstr "- Procurando imagem existente `%s` na pasta `%s`"
|
407 |
+
|
408 |
+
#: classes/api.php:405 classes/api.php:476 models/import/record.php:2717
|
409 |
+
#: models/import/record.php:2801 models/import/record.php:3064
|
410 |
+
msgid "- <b>WARNING</b>: Can't detect attachment file type %s"
|
411 |
+
msgstr "- <b>AVISO</b>: Não é possível reconhecer o tipo de arquivo anexado %s"
|
412 |
+
|
413 |
+
#: classes/api.php:410 classes/api.php:481 models/import/record.php:2723
|
414 |
+
#: models/import/record.php:2807
|
415 |
+
msgid "- File `%s` has been successfully found"
|
416 |
+
msgstr "- O arquivo `%s` encontrado com sucesso"
|
417 |
+
|
418 |
+
#: classes/api.php:416 classes/api.php:467 models/import/record.php:2631
|
419 |
+
#: models/import/record.php:2734 models/import/record.php:2760
|
420 |
+
#: models/import/record.php:2794
|
421 |
+
msgid "- <b>WARNING</b>: File %s is not a valid image and cannot be set as featured one"
|
422 |
+
msgstr "- <b>ATENÇÃO</b>: O arquivo %s não é uma imagem válida e não pode ser definido como um destaque"
|
423 |
+
|
424 |
+
#: classes/api.php:419 models/import/record.php:2730
|
425 |
+
msgid "- Image `%s` has been successfully found"
|
426 |
+
msgstr "- A imagem `%s` foi encontrada com sucesso"
|
427 |
+
|
428 |
+
#: classes/api.php:429 models/import/record.php:2743
|
429 |
+
msgid "- Downloading image from `%s`"
|
430 |
+
msgstr "- Fazendo o download da imagem `%s`"
|
431 |
+
|
432 |
+
#: classes/api.php:432
|
433 |
+
msgid "- Downloading file from `%s`"
|
434 |
+
msgstr "- Fazendo o download do arquivo `%s`"
|
435 |
+
|
436 |
+
#: classes/api.php:444 classes/api.php:471 models/import/record.php:2756
|
437 |
+
#: models/import/record.php:2792
|
438 |
+
msgid "- Image `%s` has been successfully downloaded"
|
439 |
+
msgstr "- A imagem `%s` foi baixada com sucesso"
|
440 |
+
|
441 |
+
#: classes/api.php:450 models/import/record.php:2767
|
442 |
+
msgid "- File `%s` has been successfully downloaded"
|
443 |
+
msgstr "- O arquivo `%s` foi baixado com sucesso"
|
444 |
+
|
445 |
+
#: classes/api.php:461 models/import/record.php:2784
|
446 |
+
msgid "- <b>WARNING</b>: File %s cannot be saved locally as %s"
|
447 |
+
msgstr "- <b>ATENÇÃO</b>: O arquivo %s não pode ser salvo localmente como %s"
|
448 |
+
|
449 |
+
#: classes/api.php:495 models/import/record.php:2845
|
450 |
+
msgid "- Creating an attachment for image `%s`"
|
451 |
+
msgstr "- Criando um anexo para a imagem `%s`"
|
452 |
+
|
453 |
+
#: classes/api.php:498
|
454 |
+
msgid "- Creating an attachment for file `%s`"
|
455 |
+
msgstr "- Criando um anexo para o arquivo `%s`"
|
456 |
+
|
457 |
+
#: classes/api.php:517 models/import/record.php:2872
|
458 |
+
#: models/import/record.php:3086
|
459 |
+
msgid "- <b>WARNING</b>"
|
460 |
+
msgstr "- <b>ATENÇÃO</b>"
|
461 |
+
|
462 |
+
#: classes/api.php:521 models/import/record.php:2932
|
463 |
+
msgid "- Attachment has been successfully created for image `%s`"
|
464 |
+
msgstr "- O anexo foi criado com sucesso para a imagem `%s`"
|
465 |
+
|
466 |
+
#: classes/render.php:68 classes/render.php:88 classes/render.php:166
|
467 |
+
#: classes/render.php:186
|
468 |
+
msgid "<strong>%s</strong> %s more"
|
469 |
+
msgstr "<strong>%s</strong> %s mais"
|
470 |
+
|
471 |
+
#: classes/render.php:68 classes/render.php:88 classes/render.php:166
|
472 |
+
#: classes/render.php:186 views/admin/import/evaluate.php:5
|
473 |
+
#: views/admin/import/evaluate_variations.php:3
|
474 |
+
msgid "element"
|
475 |
+
msgid_plural "elements"
|
476 |
+
msgstr[0] "elemento"
|
477 |
+
msgstr[1] "elementos"
|
478 |
+
|
479 |
+
#: classes/render.php:94 classes/render.php:192
|
480 |
+
msgid "more"
|
481 |
+
msgstr "mais"
|
482 |
+
|
483 |
+
#: classes/updater.php:66
|
484 |
+
msgid "View WP All Import Pro Changelog"
|
485 |
+
msgstr "Exibir Log de mudanças WP All Import Pro"
|
486 |
+
|
487 |
+
#: classes/updater.php:66
|
488 |
+
msgid "Changelog"
|
489 |
+
msgstr "Log de mudanças"
|
490 |
+
|
491 |
+
#: classes/updater.php:261
|
492 |
+
msgid "There is a new version of %1$s available. <a target=\"_blank\" class=\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
|
493 |
+
msgstr "Existe uma nova versão do %1$s disponível. <a target=\"_blank\" class=\"thickbox\" href=\"%2$s\">Ver detalhes da versão %3$s</a>."
|
494 |
+
|
495 |
+
#: classes/updater.php:268
|
496 |
+
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>."
|
497 |
+
msgstr "Existe uma nova versão do %1$s disponível. <a target=\"_blank\" class=\"thickbox\" href=\"%2$s\">Ver detalhes da versão %3$s</a> ou <a href=\"%4$s\">atualizar agora</a>."
|
498 |
+
|
499 |
+
#: classes/updater.php:456
|
500 |
+
msgid "You do not have permission to install plugin updates"
|
501 |
+
msgstr "Você não tem permissão para instalar atualizações de plugin"
|
502 |
+
|
503 |
+
#: classes/updater.php:456
|
504 |
+
msgid "Error"
|
505 |
+
msgstr "Erro"
|
506 |
+
|
507 |
+
#: classes/upload.php:50
|
508 |
+
msgid "Please specify a file to import.<br/><br/>If you are uploading the file from your computer, please wait for it to finish uploading (progress bar at 100%), before trying to continue."
|
509 |
+
msgstr "Especifique um arquivo para importar. <br/><br/>Se você estiver carregando o arquivo no computador, aguarde até que ele termine de fazer o upload (barra de progresso em 100%) antes de tentar continuar."
|
510 |
+
|
511 |
+
#: classes/upload.php:52
|
512 |
+
msgid "Uploaded file is empty"
|
513 |
+
msgstr "O arquivo enviado está vazio"
|
514 |
+
|
515 |
+
#: classes/upload.php:54 controllers/admin/settings.php:466
|
516 |
+
msgid "Uploaded file must be XML, CSV, ZIP, GZIP, GZ, JSON, SQL, TXT, DAT or PSV"
|
517 |
+
msgstr "O arquivo enviado deve ser XML, CSV, ZIP, GZIP, GZ, JSON, SQL, TXT, DAT ou PSV"
|
518 |
+
|
519 |
+
#: classes/upload.php:61 classes/upload.php:149 classes/upload.php:357
|
520 |
+
#: classes/upload.php:428 classes/upload.php:690 classes/upload.php:761
|
521 |
+
msgid "WP All Import couldn't find a file to import inside your ZIP.<br/><br/>Either the .ZIP file is broken, or doesn't contain a file with an extension of XML, CSV, PSV, DAT, or TXT. <br/>Please attempt to unzip your .ZIP file on your computer to ensure it is a valid .ZIP file which can actually be unzipped, and that it contains a file which WP All Import can import."
|
522 |
+
msgstr "WP All Import não conseguiu encontrar um arquivo para importar dentro de seu ZIP.<br/><br/>Ou o arquivo .ZIP está corrompido ou não contém um arquivo com uma extensão de XML, CSV, PSV, DAT ou TXT.<br/>Por favor, tente descompactar o arquivo .ZIP no seu computador para verificar o funcionamento dele e também garantir que contenha um arquivo que o WP All Import possa importar."
|
523 |
+
|
524 |
+
#: classes/upload.php:129 classes/upload.php:169 classes/upload.php:408
|
525 |
+
#: classes/upload.php:677 classes/upload.php:741 classes/upload.php:781
|
526 |
+
#: classes/upload.php:808 classes/upload.php:847 classes/upload.php:871
|
527 |
+
#: classes/upload.php:895 classes/upload.php:967
|
528 |
+
msgid "WP All Import can't access your WordPress uploads folder."
|
529 |
+
msgstr "WP All Import não pode acessar a pasta de uploads do WordPress."
|
530 |
+
|
531 |
+
#: classes/upload.php:236 classes/upload.php:500 classes/upload.php:602
|
532 |
+
#: classes/upload.php:834 classes/upload.php:992
|
533 |
+
msgid "Can not import this file. JSON to XML convertation failed."
|
534 |
+
msgstr "Não é possível importar este arquivo. Falha na conversão de JSON para XML."
|
535 |
+
|
536 |
+
#: classes/upload.php:326 classes/upload.php:673
|
537 |
+
msgid "Please specify a file to import."
|
538 |
+
msgstr "Especifique um arquivo para importar."
|
539 |
+
|
540 |
+
#: classes/upload.php:328
|
541 |
+
msgid "The URL to your file is not valid.<br/><br/>Please make sure the URL starts with http:// or https://. To import from https://, your server must have OpenSSL installed."
|
542 |
+
msgstr "A URL do seu arquivo é inválida.<br/><br/>Por favor, verifique se a URL começa com http:// ou https://. Para importar do https://, seu servidor precisa ter OpenSSL instalado."
|
543 |
+
|
544 |
+
#: classes/upload.php:330
|
545 |
+
msgid "Uploads folder "
|
546 |
+
msgstr "Pasta Uploads"
|
547 |
+
|
548 |
+
#: classes/upload.php:350
|
549 |
+
msgid "Failed upload ZIP archive"
|
550 |
+
msgstr "Falha no upload do arquivo ZIP"
|
551 |
+
|
552 |
+
#: classes/upload.php:461 classes/upload.php:565
|
553 |
+
msgid "WP All Import was not able to download your file.<br/><br/>Please make sure the URL to your file is valid.<br/>You can test this by pasting it into your browser.<br/>Other reasons for this error can include some server setting on your host restricting access to this particular URL or external URLs in general, or some setting on the server hosting the file you are trying to access preventing your server from accessing it."
|
554 |
+
msgstr "WP All Import não pôde baixar seu arquivo.<br/><br/>Verifique se o URL do seu arquivo é válida.<br/>Você pode testar isso colando-o em seu navegador.<br/>Outras razões para esse erro podem incluir algumas configurações de servidor no host que restringem o acesso a essa URL específica ou URLs externas em geral, ou alguma outra configuração no servidor que hospeda o arquivo ao qual você está tentando acessar."
|
555 |
+
|
556 |
+
#: controllers/admin/addons.php:21
|
557 |
+
msgid "WooCommerce Addon"
|
558 |
+
msgstr "WooCommerce Addon"
|
559 |
+
|
560 |
+
#: controllers/admin/addons.php:22 controllers/admin/addons.php:76
|
561 |
+
msgid "Import Products from any XML or CSV to WooCommerce"
|
562 |
+
msgstr "Importar produtos de qualquer XML ou CSV para o WooCommerce"
|
563 |
+
|
564 |
+
#: controllers/admin/addons.php:32
|
565 |
+
msgid "ACF Addon"
|
566 |
+
msgstr "ACF Addon"
|
567 |
+
|
568 |
+
#: controllers/admin/addons.php:33
|
569 |
+
msgid "Import to advanced custom fields"
|
570 |
+
msgstr "Importar campos personalizados avançados"
|
571 |
+
|
572 |
+
#: controllers/admin/addons.php:43
|
573 |
+
msgid "WPML Addon"
|
574 |
+
msgstr "WPML Addon"
|
575 |
+
|
576 |
+
#: controllers/admin/addons.php:44
|
577 |
+
msgid "Import to WPML"
|
578 |
+
msgstr "Importar para WPML"
|
579 |
+
|
580 |
+
#: controllers/admin/addons.php:54
|
581 |
+
msgid "User Addon"
|
582 |
+
msgstr "User Addon"
|
583 |
+
|
584 |
+
#: controllers/admin/addons.php:55
|
585 |
+
msgid "Import Users"
|
586 |
+
msgstr "Importar usuários"
|
587 |
+
|
588 |
+
#: controllers/admin/addons.php:65
|
589 |
+
msgid "Link cloaking Addon"
|
590 |
+
msgstr "Link cloaking Addon"
|
591 |
+
|
592 |
+
#: controllers/admin/addons.php:66
|
593 |
+
msgid "Affiliate link cloaking"
|
594 |
+
msgstr "Afiliado link cloaking"
|
595 |
+
|
596 |
+
#: controllers/admin/addons.php:75
|
597 |
+
msgid "WooCommerce Addon - free edition"
|
598 |
+
msgstr "WooCommerce Addon - Versão Gratuita"
|
599 |
+
|
600 |
+
#: controllers/admin/addons.php:84
|
601 |
+
msgid "WooCommerce Tabs Addon"
|
602 |
+
msgstr "WooCommerce Tabs Addon"
|
603 |
+
|
604 |
+
#: controllers/admin/addons.php:85
|
605 |
+
msgid "Import data to WooCommerce tabs"
|
606 |
+
msgstr "Importar dados para WooCommerce tabs"
|
607 |
+
|
608 |
+
#: controllers/admin/history.php:31
|
609 |
+
msgid "Import is not specified."
|
610 |
+
msgstr "A importação não é especificada."
|
611 |
+
|
612 |
+
#: controllers/admin/history.php:57 controllers/admin/manage.php:60
|
613 |
+
msgid "«"
|
614 |
+
msgstr "«"
|
615 |
+
|
616 |
+
#: controllers/admin/history.php:58 controllers/admin/manage.php:61
|
617 |
+
msgid "»"
|
618 |
+
msgstr "»"
|
619 |
+
|
620 |
+
#: controllers/admin/history.php:92
|
621 |
+
msgid "Log file does not exists."
|
622 |
+
msgstr "O arquivo de log não existe."
|
623 |
+
|
624 |
+
#: controllers/admin/history.php:112
|
625 |
+
msgid "History deleted"
|
626 |
+
msgstr "Histórico excluído"
|
627 |
+
|
628 |
+
#: controllers/admin/history.php:139 controllers/admin/manage.php:652
|
629 |
+
msgid "%d %s deleted"
|
630 |
+
msgstr "%d %s excluído"
|
631 |
+
|
632 |
+
#: controllers/admin/history.php:139
|
633 |
+
msgid "history"
|
634 |
+
msgid_plural "histories"
|
635 |
+
msgstr[0] "histórico"
|
636 |
+
msgstr[1] "históricos"
|
637 |
+
|
638 |
+
#: controllers/admin/import.php:75
|
639 |
+
msgid "WP All Import lost track of where you are.<br/><br/>Maybe you cleared your cookies or maybe it is just a temporary issue on your or your web host's end.<br/>If you can't do an import without seeing this error, change your session settings on the All Import -> Settings page."
|
640 |
+
msgstr "WP All Import perdeu o controle de onde a importação possa estar.<br/><br/>Talvez você tenha limpado seus cookies ou talvez seja apenas um problema temporário do seu host.<br/>Se você não consegue fazer uma importação e aparece esse erro, altere suas configurações de sessão na página All Import -> Configurações."
|
641 |
+
|
642 |
+
#: controllers/admin/import.php:92 controllers/admin/import.php:684
|
643 |
+
msgid "There are no elements to import based on your XPath.<br/><br/>If you are in Step 2, you probably specified filtering options that don’t match any elements present in your file.<br/>If you are seeing this error elsewhere, it means that while the XPath expression for your initial import matched some elements in your file previously, there are now zero elements in the file that match this expression.<br/>You can edit the XPath for your import by going to the Manage Imports -> Import Settings page."
|
644 |
+
msgstr "Não há elementos para importar com base no seu XPath.<br/><br/>Se você estiver no Passo 2, você provavelmente especificou opções de filtragem que não correspondem a nenhum elemento presente no arquivo.<br/>Se você estiver vendo esse erro em outro lugar, isso significa que enquanto a expressão XPath para sua importação inicial correspondia a alguns elementos em seu arquivo anteriormente, existem agora zero elementos no arquivo que correspondem a essa expressão.<br/>Você pode editar o XPath para sua importação na página Gerenciar Importações -> Configurações de Importação."
|
645 |
+
|
646 |
+
#: controllers/admin/import.php:151
|
647 |
+
msgid "The import associated with this export has been deleted."
|
648 |
+
msgstr "A importação associada a essa exportação foi excluída."
|
649 |
+
|
650 |
+
#: controllers/admin/import.php:151
|
651 |
+
msgid "Please re-run your export by clicking Run Export on the All Export -> Manage Exports page. Then try your import again."
|
652 |
+
msgstr "Execute novamente a exportação clicando em Exportar na página All Export -> Gerenciar Exportações. Em seguida, tente importar novamente."
|
653 |
+
|
654 |
+
#: controllers/admin/import.php:156
|
655 |
+
msgid "This import has been deleted."
|
656 |
+
msgstr "Esta importação foi excluída."
|
657 |
+
|
658 |
+
#: controllers/admin/import.php:177
|
659 |
+
msgid "Required PHP components are missing.<br/><br/>WP All Import requires DOMDocument, XMLReader, and XMLWriter PHP modules to be installed.<br/>These are standard features of PHP, and are necessary for WP All Import to read the files you are trying to import.<br/>Please contact your web hosting provider and ask them to install and activate the DOMDocument, XMLReader, and XMLWriter PHP modules."
|
660 |
+
msgstr "Os componentes PHP necessários estão faltando.<br/><br/>WP All Import requer módulos DOMDocument, XMLReader e XMLWriter PHP a serem instalados.<br/>Estes são recursos padrão do PHP, e são necessários para que o WP All Import possa ler os arquivos que você está tentando importar.<br/>Entre em contato com seu provedor de hospedagem e peça a instalação e ativação dos módulos DOMDocument, XMLReader e XMLWriter PHP."
|
661 |
+
|
662 |
+
#: controllers/admin/import.php:252
|
663 |
+
msgid "Select an item type to import the data"
|
664 |
+
msgstr "Selecione um tipo de item para importar os dados"
|
665 |
+
|
666 |
+
#: controllers/admin/import.php:256
|
667 |
+
msgid "Previous import for update must be selected to proceed with a new one"
|
668 |
+
msgstr "A importação anterior para atualização deve ser selecionada para continuar com uma nova"
|
669 |
+
|
670 |
+
#: controllers/admin/import.php:260
|
671 |
+
msgid "Select a taxonomy to import the data"
|
672 |
+
msgstr "Selecione uma taxonomia para importar os dados"
|
673 |
+
|
674 |
+
#: controllers/admin/import.php:303
|
675 |
+
msgid "File is no longer in the correct format"
|
676 |
+
msgstr "O arquivo não está no formato correto"
|
677 |
+
|
678 |
+
#: controllers/admin/import.php:306 controllers/admin/import.php:349
|
679 |
+
msgid "Certain columns are required to be present in your file to enable it to be re-imported with WP All Import. These columns are missing. Re-export your file using WP All Export, and don't delete any of the columns when editing it. Then, re-import will work correctly."
|
680 |
+
msgstr "Certas colunas são necessárias estar presente no arquivo para permitir que ele seja reimportado com WP All Import. Essas colunas estão faltando. Para reexportar o arquivo usando WP All Export, não exclua nenhuma das colunas quando editá-lo. Em seguida, a reimportação funcionará corretamente."
|
681 |
+
|
682 |
+
#: controllers/admin/import.php:309
|
683 |
+
msgid "The import template you are using requires User Import Add-On.<br/><a href=\"http://www.wpallimport.com/add-ons/user-import/?utm_source=wordpress.org&utm_medium=wpai-import-template&utm_campaign=free+wp+all+export+plugin\" target=\"_blank\">Purchase the User Import Add-On</a>"
|
684 |
+
msgstr "O modelo de importação que você está usando requer o User Import Add-On.<br/><a href=\"http://www.wpallimport.com/add-ons/user-import/?utm_source=wordpress.org&utm_medium=wpai-import-template&utm_campaign=free+wp+all+export+plugin\" target=\"_blank\">Comprar User Import Add-On</a>"
|
685 |
+
|
686 |
+
#: controllers/admin/import.php:384
|
687 |
+
msgid "Unable to download feed resource."
|
688 |
+
msgstr "Não é possível baixar o recurso de feed."
|
689 |
+
|
690 |
+
#: controllers/admin/import.php:461 controllers/admin/import.php:485
|
691 |
+
#: controllers/admin/settings.php:705
|
692 |
+
msgid "Please confirm you are importing a valid feed.<br/> Often, feed providers distribute feeds with invalid data, improperly wrapped HTML, line breaks where they should not be, faulty character encodings, syntax errors in the XML, and other issues.<br/><br/>WP All Import has checks in place to automatically fix some of the most common problems, but we can’t catch every single one.<br/><br/>It is also possible that there is a bug in WP All Import, and the problem is not with the feed.<br/><br/>If you need assistance, please contact support – <a href=\"mailto:support@wpallimport.com\">support@wpallimport.com</a> – with your XML/CSV file. We will identify the problem and release a bug fix if necessary."
|
693 |
+
msgstr "Confirme se você está importando um feed válido.<br/>Muitas vezes, os fornecedores de feed distribuem feeds com dados inválidos, HTML inválido, quebras de linha onde não devem estar, codificações de caracteres com defeito, erros de sintaxe no XML e outros problemas.<br/><br/>O WP All Import faz verificações e pode corrigir automaticamente alguns dos problemas mais comuns, mas não podemos resolver todos.<br/><br/>Também é possível que haja um Bug no WP All Import, e o problema não é com o feed.<br/><br/>Se precisar de ajuda, entre em contato com o suporte - <a href=\"mailto:support@wpallimport.com\">support@wpallimport.com</a> - com seu arquivo XML/CSV. Identificaremos o problema e lançaremos uma correção de bug, se necessário."
|
694 |
+
|
695 |
+
#: controllers/admin/import.php:480
|
696 |
+
msgid "WP All Import unable to detect file type.<br/><br/>WP All Import not able to determine what type of file you are importing. Make sure your file extension is correct for the file type you are importing.<br/> Please choose the correct file type from the dropdown below, or try adding &type=xml or &type=csv to the end of the URL, for example http://example.com/export-products.php?&type=xml"
|
697 |
+
msgstr "O WP All Import não conseguiu detectar o tipo de arquivo.<br/><br/>O WP All Import não é capaz de determinar que tipo de arquivo você está importando. Certifique-se de que a extensão do arquivo está correta.<br/>Escolha o tipo de arquivo correto no menu suspenso abaixo ou tente adicionar &type=xml ou &type=csv ao final do URL, por exemplo http://example.com/export-products.php?&type=xml"
|
698 |
+
|
699 |
+
#: controllers/admin/import.php:513
|
700 |
+
msgid "No elements selected"
|
701 |
+
msgstr "Nenhum elemento selecionado"
|
702 |
+
|
703 |
+
#: controllers/admin/import.php:518 controllers/admin/import.php:747
|
704 |
+
msgid "Your XPath is not valid.<br/><br/>Click \"get default XPath\" to get the default XPath."
|
705 |
+
msgstr "Seu XPath é inválido.<br/><br/>Clique em \"XPath padrão\" para obter o XPath."
|
706 |
+
|
707 |
+
#: controllers/admin/import.php:522 controllers/admin/import.php:753
|
708 |
+
msgid "XPath must match only elements"
|
709 |
+
msgstr "XPath deve corresponder apenas para elementos"
|
710 |
+
|
711 |
+
#: controllers/admin/import.php:552
|
712 |
+
msgid "Warning: No matching elements found for XPath expression from the import being updated. It probably means that new XML file has different format. Though you can update XPath, procceed only if you sure about update operation being valid."
|
713 |
+
msgstr "Atenção: Não há elementos correspondentes encontrados para a expressão XPath da importação atualizada. Provavelmente significa que o novo arquivo XML tem formato diferente. Embora você possa atualizar XPath, continue com o processo somente se você tem certeza que irá funcionar corretamente."
|
714 |
+
|
715 |
+
#: controllers/admin/import.php:594 controllers/admin/import.php:740
|
716 |
+
msgid "Your XPath is empty.<br/><br/>Please enter an XPath expression, or click \"get default XPath\" to get the default XPath."
|
717 |
+
msgstr "Seu XPath está vazio.<br/><br/>Digite uma expressão XPath, ou clique em \"XPath padrão\" para obter o XPath."
|
718 |
+
|
719 |
+
#: controllers/admin/import.php:749
|
720 |
+
msgid "No matching variations found for XPath specified"
|
721 |
+
msgstr "Nenhuma variação correspondente encontrada para o XPath especificado"
|
722 |
+
|
723 |
+
#: controllers/admin/import.php:990 controllers/admin/import.php:1006
|
724 |
+
#: controllers/admin/import.php:1137
|
725 |
+
msgid "WP All Import lost track of where you are.<br/><br/>Maybe you cleared your cookies or maybe it is just a temporary issue on your web host's end.<br/>If you can't do an import without seeing this error, change your session settings on the All Import -> Settings page."
|
726 |
+
msgstr "WP All Import perdeu o controle de onde a importação possa estar.<br/><br/>Talvez você tenha limpado seus cookies ou talvez seja apenas um problema temporário do seu host.<br/>Se você não consegue fazer uma importação e aparece esse erro, altere suas configurações de sessão na página All Import -> Configurações."
|
727 |
+
|
728 |
+
#: controllers/admin/import.php:992
|
729 |
+
msgid "<strong>Warning</strong>: your title is blank."
|
730 |
+
msgstr "<strong>Cuidado:</strong> seu título está vazio."
|
731 |
+
|
732 |
+
#: controllers/admin/import.php:997
|
733 |
+
msgid "<strong>Warning</strong>: resulting post title is empty"
|
734 |
+
msgstr "<strong>Cuidado:</strong> seu título está vazio."
|
735 |
+
|
736 |
+
#: controllers/admin/import.php:1002
|
737 |
+
msgid "Error parsing title: %s"
|
738 |
+
msgstr "Erro ao analisar o título: %s"
|
739 |
+
|
740 |
+
#: controllers/admin/import.php:1008
|
741 |
+
msgid "<strong>Warning</strong>: your content is blank."
|
742 |
+
msgstr "<strong>Cuidado:</strong> o conteúdo do post está vazio."
|
743 |
+
|
744 |
+
#: controllers/admin/import.php:1013
|
745 |
+
msgid "<strong>Warning</strong>: resulting post content is empty"
|
746 |
+
msgstr "<strong>Cuidado:</strong> o conteúdo do post está vazio."
|
747 |
+
|
748 |
+
#: controllers/admin/import.php:1018
|
749 |
+
msgid "Error parsing content: %s"
|
750 |
+
msgstr "Erro ao analisar o conteúdo: %s"
|
751 |
+
|
752 |
+
#: controllers/admin/import.php:1157 controllers/admin/import.php:1313
|
753 |
+
#: controllers/admin/import.php:1446
|
754 |
+
msgid "Error parsing: %s"
|
755 |
+
msgstr "Erro ao analisar: %s"
|
756 |
+
|
757 |
+
#: controllers/admin/import.php:1269 controllers/admin/import.php:1425
|
758 |
+
msgid "Error parsing: String could not be parsed as XML"
|
759 |
+
msgstr "Erro ao analisar: String não pôde ser analisada como XML"
|
760 |
+
|
761 |
+
#: controllers/admin/import.php:1310 controllers/admin/import.php:1443
|
762 |
+
msgid "There is no data to preview"
|
763 |
+
msgstr "Não há dados para visualizar"
|
764 |
+
|
765 |
+
#: controllers/admin/import.php:1506
|
766 |
+
msgid "You've reached your max_input_vars limit of %d. Please increase this."
|
767 |
+
msgstr "Você atingiu seu limite de max_input_vars do seu servidor %d. Favor aumentar isso."
|
768 |
+
|
769 |
+
#: controllers/admin/import.php:1563 views/admin/import/template.php:71
|
770 |
+
msgid "Excerpt"
|
771 |
+
msgstr "Resumo"
|
772 |
+
|
773 |
+
#: controllers/admin/import.php:1567 controllers/admin/import.php:1571
|
774 |
+
#: models/import/record.php:1340
|
775 |
+
#: views/admin/import/options/_reimport_options.php:143
|
776 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:106
|
777 |
+
#: views/admin/import/template.php:116
|
778 |
+
msgid "Images"
|
779 |
+
msgstr "Imagens"
|
780 |
+
|
781 |
+
#: controllers/admin/import.php:1577
|
782 |
+
msgid "Images meta "
|
783 |
+
msgstr "Meta imagens"
|
784 |
+
|
785 |
+
#: controllers/admin/import.php:1592
|
786 |
+
msgid "Custom Field Name"
|
787 |
+
msgstr "Nome do campo personalizado"
|
788 |
+
|
789 |
+
#: controllers/admin/import.php:1596
|
790 |
+
msgid "Custom Field Value"
|
791 |
+
msgstr "Valor do campo personalizado"
|
792 |
+
|
793 |
+
#: controllers/admin/import.php:1609
|
794 |
+
msgid "Both name and value must be set for all woocommerce attributes"
|
795 |
+
msgstr "Tanto o nome como o valor devem ser definidos para todos os atributos do woocommerce"
|
796 |
+
|
797 |
+
#: controllers/admin/import.php:1612
|
798 |
+
msgid "Attribute Field Name"
|
799 |
+
msgstr "Nome do campo Atributo"
|
800 |
+
|
801 |
+
#: controllers/admin/import.php:1615
|
802 |
+
msgid "Attribute Field Value"
|
803 |
+
msgstr "Valor do campo Atributo"
|
804 |
+
|
805 |
+
#: controllers/admin/import.php:1626
|
806 |
+
msgid "Tags"
|
807 |
+
msgstr "Tags"
|
808 |
+
|
809 |
+
#: controllers/admin/import.php:1629 views/admin/history/index.php:33
|
810 |
+
msgid "Date"
|
811 |
+
msgstr "Data"
|
812 |
+
|
813 |
+
#: controllers/admin/import.php:1631 controllers/admin/import.php:1632
|
814 |
+
msgid "Start Date"
|
815 |
+
msgstr "Data inicial"
|
816 |
+
|
817 |
+
#: controllers/admin/import.php:1666
|
818 |
+
msgid "Template updated"
|
819 |
+
msgstr "Modelo atualizado"
|
820 |
+
|
821 |
+
#: controllers/admin/import.php:1766
|
822 |
+
msgid "%s template is invalid: %s"
|
823 |
+
msgstr "%s modelo inválido: %s"
|
824 |
+
|
825 |
+
#: controllers/admin/import.php:1878
|
826 |
+
msgid "Records to import must be specified or uncheck `Import only specified records` option to process all records"
|
827 |
+
msgstr "Os registros de importação devem ser especificados ou então desmarque a opção `Importar apenas registros especificados` para processar todos os registros"
|
828 |
+
|
829 |
+
#: controllers/admin/import.php:1883
|
830 |
+
msgid "Wrong format of `Import only specified records` value"
|
831 |
+
msgstr "Formato incorreto do valor `Importar apenas registos especificados`"
|
832 |
+
|
833 |
+
#: controllers/admin/import.php:1886
|
834 |
+
msgid "One of the numbers in `Import only specified records` value exceeds record quantity in XML file"
|
835 |
+
msgstr "Um dos números do valor excede a quantidade de registro no arquivo XML `Importar somente registros especificados` "
|
836 |
+
|
837 |
+
#: controllers/admin/import.php:1893
|
838 |
+
msgid "Expression for `Post Unique Key` must be set, use the same expression as specified for post title if you are not sure what to put there"
|
839 |
+
msgstr "A expressão para `Post Chave Única` deve ser definida, use a mesma expressão como especificado para o título do post, se você não tem certeza do que colocar lá"
|
840 |
+
|
841 |
+
#: controllers/admin/import.php:1895
|
842 |
+
msgid "Post Unique Key"
|
843 |
+
msgstr "Post Chave Única"
|
844 |
+
|
845 |
+
#: controllers/admin/import.php:1899
|
846 |
+
msgid "Custom field name must be specified."
|
847 |
+
msgstr "O nome do campo personalizado deve ser especificado."
|
848 |
+
|
849 |
+
#: controllers/admin/import.php:1901
|
850 |
+
msgid "Custom field value must be specified."
|
851 |
+
msgstr "O valor do campo personalizado deve ser especificado."
|
852 |
+
|
853 |
+
#: controllers/admin/import.php:1905
|
854 |
+
msgid "Post ID must be specified."
|
855 |
+
msgstr "É necessário especificar o ID do post."
|
856 |
+
|
857 |
+
#: controllers/admin/import.php:1909
|
858 |
+
msgid "Term name must be specified."
|
859 |
+
msgstr "O nome do termo deve ser especificado."
|
860 |
+
|
861 |
+
#: controllers/admin/import.php:1912
|
862 |
+
msgid "Term slug must be specified."
|
863 |
+
msgstr "A slug do termo deve ser especificado."
|
864 |
+
|
865 |
+
#: controllers/admin/import.php:1991
|
866 |
+
msgid "WP All Import doesn't support this import type."
|
867 |
+
msgstr "WP All Import não suporta este tipo de importação."
|
868 |
+
|
869 |
+
#: controllers/admin/import.php:2039
|
870 |
+
msgid "<strong>Warning:</strong> this file does not have the same structure as the last file associated with this import. WP All Import won't be able to import this file with your current settings. Probably you'll need to adjust your XPath in the \"Configure Advanced Settings\" box below, and reconfigure your import by clicking \"Edit\" on the Manage Imports page."
|
871 |
+
msgstr "<strong>Aviso:</strong> este arquivo não tem a mesma estrutura do último arquivo associado a essa importação. WP All Import não será capaz de importar este arquivo com suas configurações atuais. Provavelmente você precisará ajustar seu XPath na caixa \"Configurações Avançadas\" abaixo e reconfigurar sua importação clicando em \"Editar\" na página Gerenciar Importações."
|
872 |
+
|
873 |
+
#: controllers/admin/import.php:2084
|
874 |
+
msgid "Root element not found for uploaded feed."
|
875 |
+
msgstr "O elemento raiz não foi encontrado para o feed enviado."
|
876 |
+
|
877 |
+
#: controllers/admin/import.php:2136
|
878 |
+
msgid "Import updated"
|
879 |
+
msgstr "Importação atualizada"
|
880 |
+
|
881 |
+
#: controllers/admin/import.php:2136
|
882 |
+
msgid "Import created"
|
883 |
+
msgstr "Importação criada"
|
884 |
+
|
885 |
+
#: controllers/admin/import.php:2238
|
886 |
+
msgid "Configuration updated"
|
887 |
+
msgstr "Configurações atualizadas"
|
888 |
+
|
889 |
+
#: controllers/admin/import.php:2417 controllers/admin/import.php:2737
|
890 |
+
#: controllers/admin/import.php:2876
|
891 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:7
|
892 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:6
|
893 |
+
#: views/admin/import/template/_custom_fields_template.php:6
|
894 |
+
#: views/admin/import/template/_term_meta_template.php:6
|
895 |
+
#: views/admin/import/template/_term_other_template.php:6
|
896 |
+
#: views/admin/manage/delete.php:45 views/admin/manage/index.php:284
|
897 |
+
msgid "Taxonomy Terms"
|
898 |
+
msgstr "Termos de Taxonomia"
|
899 |
+
|
900 |
+
#: controllers/admin/import.php:2443 controllers/admin/import.php:2745
|
901 |
+
#: controllers/admin/import.php:2883 models/import/record.php:650
|
902 |
+
msgid "%d %s created %d updated %d deleted %d skipped"
|
903 |
+
msgstr "%d %s criado %d atualizado %d excluído %d ignorado"
|
904 |
+
|
905 |
+
#: controllers/admin/import.php:2890
|
906 |
+
msgid "Canceled"
|
907 |
+
msgstr "Cancelado"
|
908 |
+
|
909 |
+
#: controllers/admin/import.php:2890
|
910 |
+
msgid "Complete"
|
911 |
+
msgstr "Completo"
|
912 |
+
|
913 |
+
#: controllers/admin/license.php:43
|
914 |
+
msgid "Licenses saved"
|
915 |
+
msgstr "Licenças salvas"
|
916 |
+
|
917 |
+
#: controllers/admin/manage.php:257
|
918 |
+
msgid "The other two files in this zip are the export file containing all of your data and the import template for WP All Import. \n"
|
919 |
+
"\n"
|
920 |
+
"To import this data, create a new import with WP All Import and upload this zip file."
|
921 |
+
msgstr "Os outros dois arquivos neste zip são o arquivo de exportação contendo todos os seus dados e o modelo de importação para WP All Import.\n"
|
922 |
+
"\n"
|
923 |
+
"\n"
|
924 |
+
"Para importar esses dados, crie uma nova importação com WP All Import e faça o upload desse arquivo zip."
|
925 |
+
|
926 |
+
#: controllers/admin/manage.php:312 views/admin/manage/index.php:272
|
927 |
+
msgid "Import canceled"
|
928 |
+
msgstr "Importação cancelada"
|
929 |
+
|
930 |
+
#: controllers/admin/manage.php:377
|
931 |
+
msgid "This import appears to be using FTP. Unfortunately WP All Import no longer supports the FTP protocol. Please contact <a href=\"mailto:support@wpallimport.com\">support@wpallimport.com</a> if you have any questions."
|
932 |
+
msgstr "Essa importação parece estar usando FTP. Infelizmente WP All Import não suporta mais o protocolo FTP. Entre em contato com <a href=\"mailto:support@wpallimport.com\">support@wpallimport.com</a> se tiver alguma dúvida."
|
933 |
+
|
934 |
+
#: controllers/admin/manage.php:477
|
935 |
+
msgid "No matching elements found for Root element and XPath expression specified"
|
936 |
+
msgstr "Nenhum elemento correspondente encontrado para o elemento raiz e expressão XPath especificado"
|
937 |
+
|
938 |
+
#: controllers/admin/manage.php:573
|
939 |
+
msgid "File does not exists."
|
940 |
+
msgstr "O arquivo não existe."
|
941 |
+
|
942 |
+
#: controllers/admin/manage.php:652 views/admin/manage/bulk.php:10
|
943 |
+
msgid "import"
|
944 |
+
msgid_plural "imports"
|
945 |
+
msgstr[0] "importação"
|
946 |
+
msgstr[1] "importações"
|
947 |
+
|
948 |
+
#: controllers/admin/settings.php:60
|
949 |
+
msgid "History File Count must be a non-negative integer"
|
950 |
+
msgstr "Contagem de arquivo no histórico deve ser um número inteiro não negativo"
|
951 |
+
|
952 |
+
#: controllers/admin/settings.php:63
|
953 |
+
msgid "History Age must be a non-negative integer"
|
954 |
+
msgstr "Idade do histórico deve ser um número inteiro não negativo"
|
955 |
+
|
956 |
+
#: controllers/admin/settings.php:83
|
957 |
+
msgid "Settings saved"
|
958 |
+
msgstr "Configurações salvas"
|
959 |
+
|
960 |
+
#: controllers/admin/settings.php:114
|
961 |
+
msgid "Unknown File extension. Only txt files are permitted"
|
962 |
+
msgstr "Extensão de arquivo desconhecido. Somente arquivos txt são permitidos"
|
963 |
+
|
964 |
+
#: controllers/admin/settings.php:127
|
965 |
+
msgid "%d template imported"
|
966 |
+
msgid_plural "%d templates imported"
|
967 |
+
msgstr[0] "%d modelo importado"
|
968 |
+
msgstr[1] "%d modelos importados"
|
969 |
+
|
970 |
+
#: controllers/admin/settings.php:129
|
971 |
+
msgid "Wrong imported data format"
|
972 |
+
msgstr "Formato de dados importados errado"
|
973 |
+
|
974 |
+
#: controllers/admin/settings.php:131
|
975 |
+
msgid "File is empty or doesn't exests"
|
976 |
+
msgstr "O arquivo está vazio ou não existe"
|
977 |
+
|
978 |
+
#: controllers/admin/settings.php:134
|
979 |
+
msgid "Undefined entry!"
|
980 |
+
msgstr "Entrada indefinida!"
|
981 |
+
|
982 |
+
#: controllers/admin/settings.php:136
|
983 |
+
msgid "Please select file."
|
984 |
+
msgstr "Por favor selecione o arquivo."
|
985 |
+
|
986 |
+
#: controllers/admin/settings.php:142
|
987 |
+
msgid "Templates must be selected"
|
988 |
+
msgstr "Os modelos devem ser selecionados"
|
989 |
+
|
990 |
+
#: controllers/admin/settings.php:151
|
991 |
+
msgid "%d template deleted"
|
992 |
+
msgid_plural "%d templates deleted"
|
993 |
+
msgstr[0] "%d modelo excluído"
|
994 |
+
msgstr[1] "%d modelos excluídos"
|
995 |
+
|
996 |
+
#: controllers/admin/settings.php:279
|
997 |
+
msgid "Files not found"
|
998 |
+
msgstr "Arquivos não encontrados"
|
999 |
+
|
1000 |
+
#: controllers/admin/settings.php:287
|
1001 |
+
msgid "Clean Up has been successfully completed."
|
1002 |
+
msgstr "A limpeza foi concluída com êxito."
|
1003 |
+
|
1004 |
+
#: controllers/admin/settings.php:445
|
1005 |
+
msgid "Uploads folder is not writable."
|
1006 |
+
msgstr "A pasta Uploads não pode ser gravada."
|
1007 |
+
|
1008 |
+
#: controllers/admin/settings.php:502
|
1009 |
+
msgid "Failed to open temp directory."
|
1010 |
+
msgstr "Falha ao abrir o diretório temp."
|
1011 |
+
|
1012 |
+
#: controllers/admin/settings.php:527 controllers/admin/settings.php:552
|
1013 |
+
msgid "Failed to open input stream."
|
1014 |
+
msgstr "Falha ao abrir fluxo de entrada."
|
1015 |
+
|
1016 |
+
#: controllers/admin/settings.php:534 controllers/admin/settings.php:559
|
1017 |
+
msgid "Failed to open output stream."
|
1018 |
+
msgstr "Falha ao abrir fluxo de saída."
|
1019 |
+
|
1020 |
+
#: controllers/admin/settings.php:538
|
1021 |
+
msgid "Failed to move uploaded file."
|
1022 |
+
msgstr "Falha ao mover o arquivo carregado."
|
1023 |
+
|
1024 |
+
#: controllers/admin/settings.php:713
|
1025 |
+
#: views/admin/import/options/_import_file.php:51
|
1026 |
+
msgid "This %s file has errors and is not valid."
|
1027 |
+
msgstr "Este arquivo %s tem erros e não é válido."
|
1028 |
+
|
1029 |
+
#: filters/pmxi_custom_types.php:8
|
1030 |
+
msgid "WooCommerce Products"
|
1031 |
+
msgstr "Produtos WooCommerce"
|
1032 |
+
|
1033 |
+
#: filters/pmxi_custom_types.php:9
|
1034 |
+
msgid "WooCommerce Orders"
|
1035 |
+
msgstr "Pedidos WooCommerce"
|
1036 |
+
|
1037 |
+
#: filters/pmxi_custom_types.php:10
|
1038 |
+
msgid "WooCommerce Coupons"
|
1039 |
+
msgstr "Cupons WooCommerce"
|
1040 |
+
|
1041 |
+
#: helpers/import_custom_meta_box.php:25
|
1042 |
+
msgid "Custom fields can be used to add extra metadata to a post that you can <a href=\"http://codex.wordpress.org/Using_Custom_Fields\" target=\"_blank\">use in your theme</a>."
|
1043 |
+
msgstr "Campos personalizados podem ser usados para adicionar metadados extras a uma postagem que você pode <a href=\"http://codex.wordpress.org/Using_Custom_Fields\" target=\"_blank\">usar em seu tema</a>."
|
1044 |
+
|
1045 |
+
#: helpers/reverse_taxonomies_html.php:18
|
1046 |
+
#: views/admin/import/template/_taxonomies_template.php:41
|
1047 |
+
#: views/admin/import/template/_taxonomies_template.php:63
|
1048 |
+
#: views/admin/import/template/_taxonomies_template.php:97
|
1049 |
+
#: views/admin/import/template/_taxonomies_template.php:107
|
1050 |
+
#: views/admin/import/template/_taxonomies_template.php:116
|
1051 |
+
#: views/admin/import/template/_taxonomies_template.php:164
|
1052 |
+
#: views/admin/import/template/_taxonomies_template.php:182
|
1053 |
+
#: views/admin/import/template/_taxonomies_template.php:189
|
1054 |
+
#: views/admin/import/template/_taxonomies_template.php:201
|
1055 |
+
msgid "Assign post to the taxonomy."
|
1056 |
+
msgstr "Atribuir postagem à taxonomia."
|
1057 |
+
|
1058 |
+
#: helpers/wp_all_import_addon_notifications.php:108
|
1059 |
+
msgid "Make imports easier with the <strong>Advanced Custom Fields Add-On</strong> for WP All Import: <a href=\"%s\" target=\"_blank\">Read More</a>"
|
1060 |
+
msgstr "Facilite a importação com o <strong>Complemento de campos personalizados avançados</strong> para o WP All Import: <a href=\"%s\" target=\"_blank\">Leia Mais</a>"
|
1061 |
+
|
1062 |
+
#: helpers/wp_all_import_addon_notifications.php:124
|
1063 |
+
msgid "WP All Export"
|
1064 |
+
msgstr "WP All Export"
|
1065 |
+
|
1066 |
+
#: helpers/wp_all_import_addon_notifications.php:125
|
1067 |
+
msgid "Export anything in WordPress to CSV, XML, or Excel."
|
1068 |
+
msgstr "Exportar qualquer coisa no WordPress para CSV, XML ou Excel."
|
1069 |
+
|
1070 |
+
#: helpers/wp_all_import_addon_notifications.php:128
|
1071 |
+
#: views/admin/import/confirm.php:53 views/admin/import/index.php:356
|
1072 |
+
#: views/admin/import/index.php:373 views/admin/import/options.php:70
|
1073 |
+
#: views/admin/import/options/_import_file.php:40
|
1074 |
+
#: views/admin/import/options/_import_file.php:57
|
1075 |
+
#: views/admin/import/process.php:86 views/admin/import/process.php:120
|
1076 |
+
msgid "Read More"
|
1077 |
+
msgstr "Leia Mais"
|
1078 |
+
|
1079 |
+
#: helpers/wp_all_import_addon_notifications.php:141
|
1080 |
+
msgid "Make imports easier with the <strong>free %s Add-On</strong> for WP All Import: <a href=\"%s\" target=\"_blank\">Get Add-On</a>"
|
1081 |
+
msgstr "Facilite as importações com o <strong>complemento gratuito %s</strong> para o WP All Import: <a href=\"%s\" target=\"_blank\">Obtenha Add-On</a>"
|
1082 |
+
|
1083 |
+
#: helpers/wp_all_import_is_json.php:13
|
1084 |
+
msgid "Maximum stack depth exceeded"
|
1085 |
+
msgstr "Nível máximo de processos excedido"
|
1086 |
+
|
1087 |
+
#: helpers/wp_all_import_is_json.php:16
|
1088 |
+
msgid "Underflow or the modes mismatch"
|
1089 |
+
msgstr "Subfluxo ou a incompatibilidade de modos"
|
1090 |
+
|
1091 |
+
#: helpers/wp_all_import_is_json.php:19
|
1092 |
+
msgid "Unexpected control character found"
|
1093 |
+
msgstr "Caractere inesperado encontrado"
|
1094 |
+
|
1095 |
+
#: helpers/wp_all_import_is_json.php:22
|
1096 |
+
msgid "Syntax error, malformed JSON"
|
1097 |
+
msgstr "Erro de sintaxe, JSON malformado"
|
1098 |
+
|
1099 |
+
#: helpers/wp_all_import_is_json.php:25
|
1100 |
+
msgid "Malformed UTF-8 characters, possibly incorrectly encoded"
|
1101 |
+
msgstr "Caracteres UTF-8 malformados, possivelmente codificados incorretamente"
|
1102 |
+
|
1103 |
+
#: helpers/wp_all_import_is_json.php:28
|
1104 |
+
msgid "Unknown json error"
|
1105 |
+
msgstr "Erro, json desconhecido"
|
1106 |
+
|
1107 |
+
#: helpers/wp_all_import_template_notifications.php:14
|
1108 |
+
msgid "The import template you are using requires the %s. If you continue without it your data may import incorrectly.<br/><br/><a href=\"%s\" target=\"_blank\">"
|
1109 |
+
msgstr "O modelo de importação que você está usando requer o %s. Se você continuar sem ele, seus dados podem ser importados incorretamente.<br/><br/><a href=\"%s\" target=\"_blank\">"
|
1110 |
+
|
1111 |
+
#: helpers/wp_all_import_template_notifications.php:23
|
1112 |
+
msgid "The import template you are using requires the User Import Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"http://www.wpallimport.com/add-ons/user-import/?utm_source=wordpress.org&utm_medium=wpai-import-template&utm_campaign=free+wp+all+export+plugin\" target=\"_blank\">Purchase the User Import Add-On</a>."
|
1113 |
+
msgstr "O modelo de importação que você está usando requer o User Import Add-On. Se você continuar sem ele, seus dados podem ser importados incorretamente.<br/><br/><a href=\"http://www.wpallimport.com/add-ons/user-import/?utm_source=wordpress.org&utm_medium=wpai-import-template&utm_campaign=free+wp+all+export+plugin\" target=\"_blank\">Comprar User Import Add-On</a>."
|
1114 |
+
|
1115 |
+
#: helpers/wp_all_import_template_notifications.php:27
|
1116 |
+
msgid "The import template you are using requires the WooCommerce Import Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"http://www.wpallimport.com/woocommerce-product-import/\" target=\"_blank\">Purchase the WooCommerce Import Add-On</a>."
|
1117 |
+
msgstr "O modelo de importação que você está usando requer o WooCommerce Import Add-On. Se você continuar sem ele, seus dados podem ser importados incorretamente.<br/><br/><a href=\"http://www.wpallimport.com/woocommerce-product-import/\" target=\"_blank\">Comprar WooCommerce Import Add-On</a>."
|
1118 |
+
|
1119 |
+
#: helpers/wp_all_import_template_notifications.php:32
|
1120 |
+
msgid "The import template you are using requires the Realia Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress.org/plugins/realia-xml-csv-property-listings-import/\" target=\"_blank\">Download the Realia Add-On</a>."
|
1121 |
+
msgstr "O modelo de importação que você está usando requer o Realia Add-On. Se você continuar sem ele, seus dados podem ser importados incorretamente.<br/><br/><a href=\"https://wordpress.org/plugins/realia-xml-csv-property-listings-import/\" target=\"_blank\">Download Realia Add-On</a>."
|
1122 |
+
|
1123 |
+
#: helpers/wp_all_import_template_notifications.php:39
|
1124 |
+
msgid "The import template you are using requires the WP Residence Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress.org/plugins/wp-residence-add-on-for-wp-all-import/\" target=\"_blank\">Download the WP Residence Add-On</a>."
|
1125 |
+
msgstr "O modelo de importação que você está usando requer o WP Residence Add-On. Se você continuar sem ele, seus dados podem ser importados incorretamente.<br/><br/><a href=\"https://wordpress.org/plugins/wp-residence-add-on-for-wp-all-import/\" target=\"_blank\">Download WP Residence Add-On</a>."
|
1126 |
+
|
1127 |
+
#: helpers/wp_all_import_template_notifications.php:46
|
1128 |
+
msgid "The import template you are using requires the RealHomes Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress.org/plugins/realhomes-xml-csv-property-listings-import/\" target=\"_blank\">Download the RealHomes Add-On</a>."
|
1129 |
+
msgstr "O modelo de importação que você está usando requer o RealHomes Add-On. Se você continuar sem ele, seus dados podem ser importados incorretamente.<br/><br/><a href=\"https://wordpress.org/plugins/realhomes-xml-csv-property-listings-import/\" target=\"_blank\">Download RealHomes Add-On</a>."
|
1130 |
+
|
1131 |
+
#: helpers/wp_all_import_template_notifications.php:52
|
1132 |
+
msgid "The import template you are using requires the Jobify Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress.org/plugins/jobify-xml-csv-listings-import/\" target=\"_blank\">Download the Jobify Add-On</a>."
|
1133 |
+
msgstr "O modelo de importação que você está usando requer o Jobify Add-On. Se você continuar sem ele, seus dados podem ser importados incorretamente.<br/><br/><a href=\"https://wordpress.org/plugins/jobify-xml-csv-listings-import/\" target=\"_blank\">Download Jobify Add-On</a>."
|
1134 |
+
|
1135 |
+
#: helpers/wp_all_import_template_notifications.php:58
|
1136 |
+
msgid "The import template you are using requires the Listify Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress.org/plugins/listify-xml-csv-listings-import/\" target=\"_blank\">Download the Listify Add-On</a>."
|
1137 |
+
msgstr "O modelo de importação que você está usando requer o Listify Add-On. Se você continuar sem ele, seus dados podem ser importados incorretamente.<br/><br/><a href=\"https://wordpress.org/plugins/listify-xml-csv-listings-import/\" target=\"_blank\">Download Listify Add-On</a>."
|
1138 |
+
|
1139 |
+
#: helpers/wp_all_import_template_notifications.php:64
|
1140 |
+
msgid "The import template you are using requires the Reales WP Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress.org/plugins/reales-wp-xml-csv-property-listings-import/\" target=\"_blank\">Download the Reales WP Add-On</a>."
|
1141 |
+
msgstr "O modelo de importação que você está usando requer o Reales WP Add-On. Se você continuar sem ele, seus dados podem ser importados incorretamente.<br/><br/><a href=\"https://wordpress.org/plugins/reales-wp-xml-csv-property-listings-import/\" target=\"_blank\">Download Reales WP Add-On</a>."
|
1142 |
+
|
1143 |
+
#: helpers/wp_all_import_template_notifications.php:74
|
1144 |
+
msgid "The import template you are using requires the WP Job Manager Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress.org/plugins/wp-job-manager-xml-csv-listings-import/\" target=\"_blank\">Download the WP Job Manager Add-On</a>."
|
1145 |
+
msgstr "O modelo de importação que você está usando requer o WP Job Manager Add-On. Se você continuar sem ele, seus dados podem ser importados incorretamente.<br/><br/><a href=\"https://wordpress.org/plugins/wp-job-manager-xml-csv-listings-import/\" target=\"_blank\">Download WP Job Manager Add-On</a>."
|
1146 |
+
|
1147 |
+
#: helpers/wp_all_import_template_notifications.php:80
|
1148 |
+
msgid "The import template you are using requires the Yoast SEO Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress.org/plugins/yoast-seo-settings-xml-csv-import/\" target=\"_blank\">Download the Yoast SEO Add-On</a>."
|
1149 |
+
msgstr "O modelo de importação que você está usando requer o Yoast SEO Add-On. Se você continuar sem ele, seus dados podem ser importados incorretamente.<br/><br/><a href=\"https://wordpress.org/plugins/yoast-seo-settings-xml-csv-import/\" target=\"_blank\">Download Yoast SEO Add-On</a>."
|
1150 |
+
|
1151 |
+
#: helpers/wp_all_import_template_notifications.php:86
|
1152 |
+
msgid "The import template you are using requires the Listable Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress.org/plugins/import-xml-csv-listings-to-listable-theme/\" target=\"_blank\">Download the Listable Add-On</a>."
|
1153 |
+
msgstr "O modelo de importação que você está usando requer o Listable Add-On. Se você continuar sem ele, seus dados podem ser importados incorretamente.<br/><br/><a href=\"https://wordpress.org/plugins/import-xml-csv-listings-to-listable-theme/\" target=\"_blank\">Download Listable Add-On</a>."
|
1154 |
+
|
1155 |
+
#: helpers/wp_all_import_template_notifications.php:91
|
1156 |
+
msgid "The import template you are using requires an Add-On for WP All Import. If you continue without using this Add-On your data may import incorrectly."
|
1157 |
+
msgstr "O modelo de importação que você está usando requer o Add-On para o WP All Import.. Se você continuar sem ele, seus dados podem ser importados incorretamente."
|
1158 |
+
|
1159 |
+
#: helpers/wp_all_import_template_notifications.php:103
|
1160 |
+
msgid "<strong>Warning:</strong>"
|
1161 |
+
msgstr "<strong>Atenção:</strong>"
|
1162 |
+
|
1163 |
+
#: models/import/record.php:44
|
1164 |
+
msgid "WP All Import can't read your file.<br/><br/>Probably, you are trying to import an invalid XML feed. Try opening the XML feed in a web browser (Google Chrome is recommended for opening XML files) to see if there is an error message.<br/>Alternatively, run the feed through a validator: http://validator.w3.org/<br/>99% of the time, the reason for this error is because your XML feed isn't valid.<br/>If you are 100% sure you are importing a valid XML feed, please contact WP All Import support."
|
1165 |
+
msgstr "O WP All Import não consegue ler o arquivo.<br/><br/>Provavelmente, você está tentando importar um feed XML inválido. Tente abrir o feed XML em um navegador da Web (o Google Chrome é recomendado para abrir arquivos XML) para ver se há uma mensagem de erro.<br/>Como alternativa, execute o feed através de um validador: http://validator.w3.org /<br/>99% das vezes, a razão para este erro é porque seu feed XML não é válido.<br/>Se você tem 100% de certeza que está importando um feed XML válido, entre em contato com o suporte do WP All Import ."
|
1166 |
+
|
1167 |
+
#: models/import/record.php:56
|
1168 |
+
msgid "Invalid XML"
|
1169 |
+
msgstr "XML inválido"
|
1170 |
+
|
1171 |
+
#: models/import/record.php:59
|
1172 |
+
msgid "Line"
|
1173 |
+
msgstr "Linha"
|
1174 |
+
|
1175 |
+
#: models/import/record.php:60
|
1176 |
+
msgid "Column"
|
1177 |
+
msgstr "Coluna"
|
1178 |
+
|
1179 |
+
#: models/import/record.php:61
|
1180 |
+
msgid "Code"
|
1181 |
+
msgstr "Código"
|
1182 |
+
|
1183 |
+
#: models/import/record.php:72
|
1184 |
+
msgid "Required PHP components are missing."
|
1185 |
+
msgstr "Os componentes PHP necessários estão faltando."
|
1186 |
+
|
1187 |
+
#: models/import/record.php:73
|
1188 |
+
msgid "WP All Import requires the SimpleXML PHP module to be installed. This is a standard feature of PHP, and is necessary for WP All Import to read the files you are trying to import.<br/>Please contact your web hosting provider and ask them to install and activate the SimpleXML PHP module."
|
1189 |
+
msgstr "O WP All Import requer que o módulo SimpleXML PHP seja instalado. Este é um recurso padrão do PHP e é necessário para que o WP All Import leia os arquivos que você está tentando importar.<br/>Entre em contato com o provedor de hospedagem e peça-lhes para instalar e ativar o módulo SimpleXML PHP."
|
1190 |
+
|
1191 |
+
#: models/import/record.php:117
|
1192 |
+
msgid "This import appears to be using FTP. Unfortunately WP All Import no longer supports the FTP protocol. Please contact <a href=\"mailto:support@wpallimport.com\">%s</a> if you have any questions."
|
1193 |
+
msgstr "Essa importação parece estar usando FTP. Infelizmente WP All Import não suporta mais o protocolo FTP. Entre em contato com <a href=\"mailto:support@wpallimport.com\">%s</a> se tiver alguma dúvida."
|
1194 |
+
|
1195 |
+
#: models/import/record.php:267
|
1196 |
+
msgid "#%s No matching elements found for Root element and XPath expression specified"
|
1197 |
+
msgstr "#%s Nenhum elemento correspondente encontrado para o elemento Raiz e expressão XPath especificado"
|
1198 |
+
|
1199 |
+
#: models/import/record.php:533
|
1200 |
+
msgid "Deleted missing records %s for import #%s"
|
1201 |
+
msgstr "Registros excluídos ausentes %s para a importação #%s"
|
1202 |
+
|
1203 |
+
#: models/import/record.php:596
|
1204 |
+
msgid "Updating stock status for missing records %s for import #%s"
|
1205 |
+
msgstr "Atualizando status de estoque para registros ausentes %s para importação #%s"
|
1206 |
+
|
1207 |
+
#: models/import/record.php:624
|
1208 |
+
msgid "import finished & cron un-triggered<br>%s %s created %s updated %s deleted %s skipped"
|
1209 |
+
msgstr "Importação concluída & cron desativado<br>%s %s criado %s atualizado %s excluído %s ignorado"
|
1210 |
+
|
1211 |
+
#: models/import/record.php:657
|
1212 |
+
msgid "Records Processed %s. Records imported %s of %s."
|
1213 |
+
msgstr "Registros Processados %s. Registros importados %s de %s."
|
1214 |
+
|
1215 |
+
#: models/import/record.php:676
|
1216 |
+
msgid "#%s source file not found"
|
1217 |
+
msgstr "#%s arquivo de origem não encontrado"
|
1218 |
+
|
1219 |
+
#: models/import/record.php:729
|
1220 |
+
msgid "Composing titles..."
|
1221 |
+
msgstr "Compondo títulos..."
|
1222 |
+
|
1223 |
+
#: models/import/record.php:739
|
1224 |
+
msgid "Composing parent terms..."
|
1225 |
+
msgstr "Compondo termos pai"
|
1226 |
+
|
1227 |
+
#: models/import/record.php:748
|
1228 |
+
msgid "Composing terms slug..."
|
1229 |
+
msgstr "Compondo termos slug"
|
1230 |
+
|
1231 |
+
#: models/import/record.php:758
|
1232 |
+
msgid "Composing excerpts..."
|
1233 |
+
msgstr "Compondo resumo..."
|
1234 |
+
|
1235 |
+
#: models/import/record.php:769
|
1236 |
+
msgid "Composing statuses..."
|
1237 |
+
msgstr "Compondo status..."
|
1238 |
+
|
1239 |
+
#: models/import/record.php:780
|
1240 |
+
msgid "Composing comment statuses..."
|
1241 |
+
msgstr "Compondo status de comentário..."
|
1242 |
+
|
1243 |
+
#: models/import/record.php:791
|
1244 |
+
msgid "Composing ping statuses..."
|
1245 |
+
msgstr "Compondo status de ping..."
|
1246 |
+
|
1247 |
+
#: models/import/record.php:802
|
1248 |
+
msgid "Composing post formats..."
|
1249 |
+
msgstr "Compondo formato de posts..."
|
1250 |
+
|
1251 |
+
#: models/import/record.php:814
|
1252 |
+
msgid "Composing duplicate indicators..."
|
1253 |
+
msgstr "Compondo indicadores duplicados..."
|
1254 |
+
|
1255 |
+
#: models/import/record.php:827
|
1256 |
+
msgid "Composing page templates..."
|
1257 |
+
msgstr "Compondo modelos de página..."
|
1258 |
+
|
1259 |
+
#: models/import/record.php:838
|
1260 |
+
msgid "Composing post types..."
|
1261 |
+
msgstr "Compondo tipos de posts..."
|
1262 |
+
|
1263 |
+
#: models/import/record.php:852
|
1264 |
+
msgid "Composing page parent..."
|
1265 |
+
msgstr "Compondo página pai..."
|
1266 |
+
|
1267 |
+
#: models/import/record.php:912
|
1268 |
+
msgid "Composing authors..."
|
1269 |
+
msgstr "Compondo autores..."
|
1270 |
+
|
1271 |
+
#: models/import/record.php:953
|
1272 |
+
msgid "Composing slugs..."
|
1273 |
+
msgstr "Compondo slugs..."
|
1274 |
+
|
1275 |
+
#: models/import/record.php:962
|
1276 |
+
msgid "Composing menu order..."
|
1277 |
+
msgstr "Compondo ordem de menu..."
|
1278 |
+
|
1279 |
+
#: models/import/record.php:971
|
1280 |
+
msgid "Composing contents..."
|
1281 |
+
msgstr "Compondo conteúdos..."
|
1282 |
+
|
1283 |
+
#: models/import/record.php:984
|
1284 |
+
msgid "Composing dates..."
|
1285 |
+
msgstr "Compondo datas..."
|
1286 |
+
|
1287 |
+
#: models/import/record.php:992 models/import/record.php:1005
|
1288 |
+
#: models/import/record.php:1011
|
1289 |
+
msgid "<b>WARNING</b>: unrecognized date format `%s`, assigning current date"
|
1290 |
+
msgstr "<b>AVISO:</b>formato de data não reconhecido `%s`, atribuindo data atual"
|
1291 |
+
|
1292 |
+
#: models/import/record.php:1027
|
1293 |
+
msgid "Composing terms for `%s` taxonomy..."
|
1294 |
+
msgstr "Compondo termos para `%s` taxonomia..."
|
1295 |
+
|
1296 |
+
#: models/import/record.php:1239
|
1297 |
+
msgid "Composing custom parameters..."
|
1298 |
+
msgstr "Compondo parâmetros personalizados..."
|
1299 |
+
|
1300 |
+
#: models/import/record.php:1346 models/import/record.php:1464
|
1301 |
+
msgid "<b>WARNING</b>"
|
1302 |
+
msgstr "<b>AVISO</b>"
|
1303 |
+
|
1304 |
+
#: models/import/record.php:1347
|
1305 |
+
msgid "<b>WARNING</b>: No featured images will be created. Uploads folder is not found."
|
1306 |
+
msgstr "<b>AVISO</b>: Nenhuma imagem em destaque será criada. A pasta Uploads não foi encontrada."
|
1307 |
+
|
1308 |
+
#: models/import/record.php:1358
|
1309 |
+
msgid "Composing URLs for "
|
1310 |
+
msgstr "Compondo URLs para"
|
1311 |
+
|
1312 |
+
#: models/import/record.php:1389 models/import/record.php:1401
|
1313 |
+
#: models/import/record.php:1413 models/import/record.php:1425
|
1314 |
+
#: models/import/record.php:1437 models/import/record.php:1448
|
1315 |
+
msgid "Composing "
|
1316 |
+
msgstr "Compondo"
|
1317 |
+
|
1318 |
+
#: models/import/record.php:1465
|
1319 |
+
msgid "<b>WARNING</b>: No attachments will be created"
|
1320 |
+
msgstr "<b>AVISO:</b> Nenhum anexo será criado"
|
1321 |
+
|
1322 |
+
#: models/import/record.php:1468
|
1323 |
+
msgid "Composing URLs for attachments files..."
|
1324 |
+
msgstr "Compondo URLs para arquivos de anexos ..."
|
1325 |
+
|
1326 |
+
#: models/import/record.php:1497
|
1327 |
+
msgid "Composing unique keys..."
|
1328 |
+
msgstr "Compondo chaves únicas..."
|
1329 |
+
|
1330 |
+
#: models/import/record.php:1505
|
1331 |
+
msgid "Processing posts..."
|
1332 |
+
msgstr "Processando posts..."
|
1333 |
+
|
1334 |
+
#: models/import/record.php:1511
|
1335 |
+
msgid "Data parsing via add-ons..."
|
1336 |
+
msgstr "Análise de dados via add-ons ..."
|
1337 |
+
|
1338 |
+
#: models/import/record.php:1554
|
1339 |
+
msgid "Calculate specified records to import..."
|
1340 |
+
msgstr "Calcular registros especificados para importar..."
|
1341 |
+
|
1342 |
+
#: models/import/record.php:1581
|
1343 |
+
msgid "---"
|
1344 |
+
msgstr "---"
|
1345 |
+
|
1346 |
+
#: models/import/record.php:1582
|
1347 |
+
msgid "Record #%s"
|
1348 |
+
msgstr "Registros #%s"
|
1349 |
+
|
1350 |
+
#: models/import/record.php:1589 models/import/record.php:1779
|
1351 |
+
msgid "<b>SKIPPED</b>: by specified records option"
|
1352 |
+
msgstr "<b>IGNORADO:</ b> por opção de registros especificados"
|
1353 |
+
|
1354 |
+
#: models/import/record.php:1598
|
1355 |
+
msgid "<b>ACTION</b>: pmxi_before_post_import ..."
|
1356 |
+
msgstr "<b>AÇÃO:</b> pmxi_before_post_import ..."
|
1357 |
+
|
1358 |
+
#: models/import/record.php:1606
|
1359 |
+
msgid "<b>WARNING</b>: title is empty."
|
1360 |
+
msgstr "<b>AVISO:</b>título em branco."
|
1361 |
+
|
1362 |
+
#: models/import/record.php:1627
|
1363 |
+
msgid "Combine all data for user %s..."
|
1364 |
+
msgstr "Combinar todos os dados para o usuário %s ..."
|
1365 |
+
|
1366 |
+
#: models/import/record.php:1647
|
1367 |
+
msgid "Combine all data for term %s..."
|
1368 |
+
msgstr "Combinar todos os dados para o termo %s ..."
|
1369 |
+
|
1370 |
+
#: models/import/record.php:1665
|
1371 |
+
msgid "Combine all data for post `%s`..."
|
1372 |
+
msgstr "Combinar todos os dados para o post %s ..."
|
1373 |
+
|
1374 |
+
#: models/import/record.php:1694
|
1375 |
+
msgid "Find corresponding article among previously imported for post `%s`..."
|
1376 |
+
msgstr "Encontre o artigo correspondente entre os importados anteriormente para o post `%s`..."
|
1377 |
+
|
1378 |
+
#: models/import/record.php:1702
|
1379 |
+
msgid "Duplicate post was found for post %s with unique key `%s`..."
|
1380 |
+
msgstr "Postagem duplicada foi encontrada para o post %s com a chave exclusiva `%s`..."
|
1381 |
+
|
1382 |
+
#: models/import/record.php:1716
|
1383 |
+
msgid "Duplicate post wasn't found with unique key `%s`..."
|
1384 |
+
msgstr "A postagem duplicada não foi encontrada com a chave exclusiva `%s`..."
|
1385 |
+
|
1386 |
+
#: models/import/record.php:1730
|
1387 |
+
msgid "Find corresponding article among database for post `%s`..."
|
1388 |
+
msgstr "Encontrar o artigo correspondente no banco de dados para postagem `%s`..."
|
1389 |
+
|
1390 |
+
#: models/import/record.php:1743
|
1391 |
+
msgid "Duplicate post was found for post `%s`..."
|
1392 |
+
msgstr "Postagem duplicada foi encontrada para o post `%s`..."
|
1393 |
+
|
1394 |
+
#: models/import/record.php:1757
|
1395 |
+
msgid "Duplicate post wasn't found for post `%s`..."
|
1396 |
+
msgstr "A postagem duplicada não foi encontrada para o post `%s`..."
|
1397 |
+
|
1398 |
+
#: models/import/record.php:1800
|
1399 |
+
msgid "<b>SKIPPED</b>: By filter wp_all_import_is_post_to_update `%s`"
|
1400 |
+
msgstr "<b>IGNORADO:</b> Por filtro wp_all_import_is_post_to_update `%s`"
|
1401 |
+
|
1402 |
+
#: models/import/record.php:1817
|
1403 |
+
msgid "<b>SKIPPED</b>: Previously imported record found for `%s`"
|
1404 |
+
msgstr "<b>IGNORADO:</b> Registro importado anteriormente encontrado para `%s`"
|
1405 |
+
|
1406 |
+
#: models/import/record.php:1846
|
1407 |
+
msgid "Preserve description of already existing taxonomy term for `%s`"
|
1408 |
+
msgstr "Preservar a descrição do termo de taxonomia já existente para `%s`"
|
1409 |
+
|
1410 |
+
#: models/import/record.php:1850
|
1411 |
+
msgid "Preserve name of already existing taxonomy term for `%s`"
|
1412 |
+
msgstr "Preservar o nome do termo de taxonomia já existente para `%s`"
|
1413 |
+
|
1414 |
+
#: models/import/record.php:1854
|
1415 |
+
msgid "Preserve slug of already existing taxonomy term for `%s`"
|
1416 |
+
msgstr "Preservar o slug do termo de taxonomia já existente para `%s`"
|
1417 |
+
|
1418 |
+
#: models/import/record.php:1862
|
1419 |
+
msgid "Preserve parent of already existing taxonomy term for `%s`"
|
1420 |
+
msgstr "Preservar pai termo de taxonomia já existente para `%s`"
|
1421 |
+
|
1422 |
+
#: models/import/record.php:1868
|
1423 |
+
msgid "Preserve taxonomies of already existing article for `%s`"
|
1424 |
+
msgstr "Preservar termos de taxonomia já existente para `%s`"
|
1425 |
+
|
1426 |
+
#: models/import/record.php:1873
|
1427 |
+
msgid "<b>WARNING</b>: Unable to get current taxonomies for article #%d, updating with those read from XML file"
|
1428 |
+
msgstr "<b>AVISO:</b> Não é possível obter as taxonomias atuais para o artigo #%d, atualizando com as lidas a partir do arquivo XML"
|
1429 |
+
|
1430 |
+
#: models/import/record.php:1890
|
1431 |
+
msgid "Preserve date of already existing article for `%s`"
|
1432 |
+
msgstr "Preserve a data do artigo já existente para `%s`"
|
1433 |
+
|
1434 |
+
#: models/import/record.php:1894
|
1435 |
+
msgid "Preserve status of already existing article for `%s`"
|
1436 |
+
msgstr "Preservar o status do artigo já existente para `%s`"
|
1437 |
+
|
1438 |
+
#: models/import/record.php:1898
|
1439 |
+
msgid "Preserve content of already existing article for `%s`"
|
1440 |
+
msgstr "Preservar o conteúdo do artigo já existente para `%s`"
|
1441 |
+
|
1442 |
+
#: models/import/record.php:1902
|
1443 |
+
msgid "Preserve title of already existing article for `%s`"
|
1444 |
+
msgstr "Preservar o título do artigo já existente para `%s`"
|
1445 |
+
|
1446 |
+
#: models/import/record.php:1906
|
1447 |
+
msgid "Preserve slug of already existing article for `%s`"
|
1448 |
+
msgstr "Preservar a slug do artigo já existente para `%s`"
|
1449 |
+
|
1450 |
+
#: models/import/record.php:1926
|
1451 |
+
msgid "Preserve excerpt of already existing article for `%s`"
|
1452 |
+
msgstr "Preservar o resumo do artigo já existente para `%s`"
|
1453 |
+
|
1454 |
+
#: models/import/record.php:1930
|
1455 |
+
msgid "Preserve menu order of already existing article for `%s`"
|
1456 |
+
msgstr "Preservar a ordem do menu do artigo já existente para `%s`"
|
1457 |
+
|
1458 |
+
#: models/import/record.php:1934
|
1459 |
+
msgid "Preserve post parent of already existing article for `%s`"
|
1460 |
+
msgstr "Preservar posts pai do artigo já existente para `%s`"
|
1461 |
+
|
1462 |
+
#: models/import/record.php:1938
|
1463 |
+
msgid "Preserve post type of already existing article for `%s`"
|
1464 |
+
msgstr "Preservar tipo de post do artigo já existente para `%s`"
|
1465 |
+
|
1466 |
+
#: models/import/record.php:1942
|
1467 |
+
msgid "Preserve comment status of already existing article for `%s`"
|
1468 |
+
msgstr "Preservar status de comentário do artigo já existente para `%s`"
|
1469 |
+
|
1470 |
+
#: models/import/record.php:1946
|
1471 |
+
msgid "Preserve post author of already existing article for `%s`"
|
1472 |
+
msgstr "Preservar autor post do artigo já existente para `%s`"
|
1473 |
+
|
1474 |
+
#: models/import/record.php:1962 models/import/record.php:1981
|
1475 |
+
msgid "Deleting images for `%s`"
|
1476 |
+
msgstr "Excluindo imagens para `%s`"
|
1477 |
+
|
1478 |
+
#: models/import/record.php:1976
|
1479 |
+
msgid "Deleting attachments for `%s`"
|
1480 |
+
msgstr "Excluindo anexos para `%s`"
|
1481 |
+
|
1482 |
+
#: models/import/record.php:2004
|
1483 |
+
msgid "Applying filter `pmxi_article_data` for `%s`"
|
1484 |
+
msgstr "Aplicando filtros `pmxi_article_data` para `%s`"
|
1485 |
+
|
1486 |
+
#: models/import/record.php:2012
|
1487 |
+
msgid "<b>SKIPPED</b>: by do not create new posts option."
|
1488 |
+
msgstr "<b>IGNORADO:</b> por não criar novas opções de posts."
|
1489 |
+
|
1490 |
+
#: models/import/record.php:2084
|
1491 |
+
msgid "<b>WARNING</b>: Unable to create cloaked link for %s"
|
1492 |
+
msgstr "<b>AVISO:</b> Não foi possível criar o link encapsulado para %s"
|
1493 |
+
|
1494 |
+
#: models/import/record.php:2111
|
1495 |
+
msgid "<b>SKIPPED</b>: By filter wp_all_import_is_post_to_create `%s`"
|
1496 |
+
msgstr "<b>IGNORADO:</b> Por filtro wp_all_import_is_post_to_create `%s`"
|
1497 |
+
|
1498 |
+
#: models/import/record.php:2122
|
1499 |
+
msgid "<b>ERROR</b> Sorry, that email address `%s` is already used!"
|
1500 |
+
msgstr "<b>ERRO</b> Desculpe, mas o endereço de e-mail `%s` já está sendo utilizado!"
|
1501 |
+
|
1502 |
+
#: models/import/record.php:2132 models/import/record.php:2162
|
1503 |
+
msgid "<b>CREATING</b> `%s` `%s`"
|
1504 |
+
msgstr "<b>CRIANDO</b> `%s` `%s`"
|
1505 |
+
|
1506 |
+
#: models/import/record.php:2135 models/import/record.php:2165
|
1507 |
+
msgid "<b>UPDATING</b> `%s` `%s`"
|
1508 |
+
msgstr "<b>ATUALIZANDO</b> `%s` `%s`"
|
1509 |
+
|
1510 |
+
#: models/import/record.php:2148 models/import/record.php:2173
|
1511 |
+
#: models/import/record.php:2178 models/import/record.php:3369
|
1512 |
+
msgid "<b>ERROR</b>"
|
1513 |
+
msgstr "<b>ERRO</b>"
|
1514 |
+
|
1515 |
+
#: models/import/record.php:2201
|
1516 |
+
msgid "Associate post `%s` with current import ..."
|
1517 |
+
msgstr "Postagem associada `%s` com a importação atual..."
|
1518 |
+
|
1519 |
+
#: models/import/record.php:2207
|
1520 |
+
msgid "Associate post `%s` with post format %s ..."
|
1521 |
+
msgstr "Postagem associada `%s` com formato de post %s ..."
|
1522 |
+
|
1523 |
+
#: models/import/record.php:2219
|
1524 |
+
msgid "<b>CUSTOM FIELDS:</b>"
|
1525 |
+
msgstr "<b>CAMPOS PERSONALIZADOS</b>"
|
1526 |
+
|
1527 |
+
#: models/import/record.php:2267
|
1528 |
+
msgid "- Custom field %s has been deleted for `%s` attempted to `update all custom fields` setting ..."
|
1529 |
+
msgstr "- O campo personalizado %s foi excluído `%s` tentativa de `atualizar todos os campos personalizados`..."
|
1530 |
+
|
1531 |
+
#: models/import/record.php:2285
|
1532 |
+
msgid "- Custom field %s has been deleted for `%s` attempted to `update only these custom fields: %s, leave rest alone` setting ..."
|
1533 |
+
msgstr "- O campo personalizado %s foi excluído `%s` tentativa de `atualizar todos os campos personalizados` deixar o resto separadamente`"
|
1534 |
+
|
1535 |
+
#: models/import/record.php:2304
|
1536 |
+
msgid "- Custom field %s has been deleted for `%s` attempted to `leave these fields alone: %s, update all other Custom Fields` setting ..."
|
1537 |
+
msgstr "- O campo personalizado %s foi excluído `%s` tentativa 'deixar esses campos separadamente: %s, atualizar todos os outros Campos Personalizados` configuração ..."
|
1538 |
+
|
1539 |
+
#: models/import/record.php:2374
|
1540 |
+
msgid "- Custom field `%s` has been skipped attempted to record matching options ..."
|
1541 |
+
msgstr "- O campo personalizado `%s` foi ignorado tentando gravar opções de correspondência..."
|
1542 |
+
|
1543 |
+
#: models/import/record.php:2382
|
1544 |
+
msgid "- <b>ACTION</b>: pmxi_custom_field"
|
1545 |
+
msgstr "- <b>AÇÃO:</b> pmxi_custom_field"
|
1546 |
+
|
1547 |
+
#: models/import/record.php:2421
|
1548 |
+
msgid "- Custom field `%s` has been updated with value `%s` for post `%s` ..."
|
1549 |
+
msgstr "- O campo personalizado `%s` foi atualizado com o valor `%s` para a postagem `%s` ..."
|
1550 |
+
|
1551 |
+
#: models/import/record.php:2422
|
1552 |
+
msgid "- <b>ACTION</b>: pmxi_update_post_meta"
|
1553 |
+
msgstr "- <b>AÇÃO:</b> pmxi_update_post_meta"
|
1554 |
+
|
1555 |
+
#: models/import/record.php:2462
|
1556 |
+
msgid "<b>IMAGES:</b>"
|
1557 |
+
msgstr "<b>IMAGENS:</b>"
|
1558 |
+
|
1559 |
+
#: models/import/record.php:2466
|
1560 |
+
msgid "<b>ERROR</b>: Target directory %s is not writable"
|
1561 |
+
msgstr "<b>ERRO</b>: Diretório de destino %s não pode ser gravado"
|
1562 |
+
|
1563 |
+
#: models/import/record.php:2495
|
1564 |
+
msgid "- Keep existing and add newest images ..."
|
1565 |
+
msgstr "- Mantenha as imagens existentes e adicione novas..."
|
1566 |
+
|
1567 |
+
#: models/import/record.php:2581
|
1568 |
+
msgid "- Importing image `%s` for `%s` ..."
|
1569 |
+
msgstr "- Importando a imagem `%s` for `%s` ..."
|
1570 |
+
|
1571 |
+
#: models/import/record.php:2610 models/import/record.php:2688
|
1572 |
+
msgid "- <b>WARNING</b>: Image %s not found in media gallery."
|
1573 |
+
msgstr "- <b>ATENÇÃO</b> Imagem %s não foi encontrada na galeria de mídia"
|
1574 |
+
|
1575 |
+
#: models/import/record.php:2614 models/import/record.php:2692
|
1576 |
+
msgid "- Using existing image `%s` for post `%s` ..."
|
1577 |
+
msgstr "- Usando a imagem existente `%s` para o post `%s` ..."
|
1578 |
+
|
1579 |
+
#: models/import/record.php:2625
|
1580 |
+
msgid "- found base64_encoded image"
|
1581 |
+
msgstr "Encontrado imagem base64_encoded"
|
1582 |
+
|
1583 |
+
#: models/import/record.php:2899
|
1584 |
+
msgid "- <b>ACTION</b>: "
|
1585 |
+
msgstr "- <b>AÇÃO: </b>"
|
1586 |
+
|
1587 |
+
#: models/import/record.php:2928
|
1588 |
+
msgid "- Attachment has been successfully updated for image `%s`"
|
1589 |
+
msgstr "- O anexo foi atualizado com sucesso para a imagem `%s`"
|
1590 |
+
|
1591 |
+
#: models/import/record.php:2946
|
1592 |
+
msgid "- Post `%s` saved as Draft, because no images are downloaded successfully"
|
1593 |
+
msgstr "- Post `%s` salvo como Rascunho, porque nenhuma imagem foi baixada com sucesso"
|
1594 |
+
|
1595 |
+
#: models/import/record.php:2955
|
1596 |
+
msgid "Post `%s` saved as Draft, because no images are downloaded successfully"
|
1597 |
+
msgstr "Post `%s` salvo como Rascunho, porque nenhuma imagem foi baixada com sucesso"
|
1598 |
+
|
1599 |
+
#: models/import/record.php:2994
|
1600 |
+
msgid "Images import skipped for post `%s` according to 'pmxi_is_images_to_update' filter..."
|
1601 |
+
msgstr "Importação de imagens ignorada para postagem `%s` de acordo com o filtro 'pmxi_is_images_to_update' ..."
|
1602 |
+
|
1603 |
+
#: models/import/record.php:3006
|
1604 |
+
msgid "<b>ATTACHMENTS:</b>"
|
1605 |
+
msgstr "<b>ANEXOS: </b>"
|
1606 |
+
|
1607 |
+
#: models/import/record.php:3009
|
1608 |
+
msgid "- <b>ERROR</b>: Target directory %s is not writable"
|
1609 |
+
msgstr "- <b>ERRO:</b> Diretório de destino %s não pode ser gravado"
|
1610 |
+
|
1611 |
+
#: models/import/record.php:3018
|
1612 |
+
msgid "- Importing attachments for `%s` ..."
|
1613 |
+
msgstr "- Importando anexos para `%s` ..."
|
1614 |
+
|
1615 |
+
#: models/import/record.php:3043
|
1616 |
+
msgid "- Using existing file `%s` for post `%s` ..."
|
1617 |
+
msgstr "- Usando o arquivo existente `%s` para o post `%s` ..."
|
1618 |
+
|
1619 |
+
#: models/import/record.php:3052
|
1620 |
+
msgid "- Filename for attachment was generated as %s"
|
1621 |
+
msgstr "- O nome do arquivo anexado foi gerado como %s"
|
1622 |
+
|
1623 |
+
#: models/import/record.php:3059
|
1624 |
+
msgid "- <b>WARNING</b>: Attachment file %s cannot be saved locally as %s"
|
1625 |
+
msgstr "- <b>AVISO:</b> O anexo %s não pode ser salvo localmente como %s"
|
1626 |
+
|
1627 |
+
#: models/import/record.php:3060
|
1628 |
+
msgid "- <b>WP Error</b>: %s"
|
1629 |
+
msgstr "- <b>WP Erro:</b> %s"
|
1630 |
+
|
1631 |
+
#: models/import/record.php:3074
|
1632 |
+
msgid "- File %s has been successfully downloaded"
|
1633 |
+
msgstr "- O arquivo %s foi baixado com sucesso"
|
1634 |
+
|
1635 |
+
#: models/import/record.php:3090
|
1636 |
+
msgid "- Attachment has been successfully created for post `%s`"
|
1637 |
+
msgstr "- O anexo foi criado com sucesso para o post `%s`"
|
1638 |
+
|
1639 |
+
#: models/import/record.php:3091 models/import/record.php:3116
|
1640 |
+
msgid "- <b>ACTION</b>: pmxi_attachment_uploaded"
|
1641 |
+
msgstr "- <b>ACTION:</b> pmxi_attachment_uploaded"
|
1642 |
+
|
1643 |
+
#: models/import/record.php:3110
|
1644 |
+
msgid "- Attachment has been successfully updated for file `%s`"
|
1645 |
+
msgstr "- O anexo foi atualizado com sucesso para o arquivo `%s`"
|
1646 |
+
|
1647 |
+
#: models/import/record.php:3114
|
1648 |
+
msgid "- Attachment has been successfully created for file `%s`"
|
1649 |
+
msgstr "- O anexo foi criado com sucesso para o arquivo `% s`"
|
1650 |
+
|
1651 |
+
#: models/import/record.php:3127
|
1652 |
+
msgid "Attachments import skipped for post `%s` according to 'pmxi_is_attachments_to_update' filter..."
|
1653 |
+
msgstr "Importação de anexos ignorada para o post `%s` de acordo com o filtro 'pmxi_is_attachments_to_update' ..."
|
1654 |
+
|
1655 |
+
#: models/import/record.php:3134
|
1656 |
+
msgid "<b>TAXONOMIES:</b>"
|
1657 |
+
msgstr "<b>TAXONOMIAS:</b>"
|
1658 |
+
|
1659 |
+
#: models/import/record.php:3143
|
1660 |
+
msgid "- Importing taxonomy `%s` ..."
|
1661 |
+
msgstr "- Importando taxonomia `%s` ..."
|
1662 |
+
|
1663 |
+
#: models/import/record.php:3146
|
1664 |
+
msgid "- Auto-nest enabled with separator `%s` ..."
|
1665 |
+
msgstr "- Auto-ninho habilitado com separador `%s` ..."
|
1666 |
+
|
1667 |
+
#: models/import/record.php:3152
|
1668 |
+
msgid "- %s %s `%s` has been skipped attempted to `Leave these taxonomies alone, update all others`..."
|
1669 |
+
msgstr "- %s %s `%s` Foi ignorado tentou 'deixar essas taxonomias sozinho, atualizar todos os outros `..."
|
1670 |
+
|
1671 |
+
#: models/import/record.php:3157
|
1672 |
+
msgid "- %s %s `%s` has been skipped attempted to `Update only these taxonomies, leave the rest alone`..."
|
1673 |
+
msgstr "- %s %s `%s` foi ignorado tentou 'Atualizar apenas estas taxonomias, deixar o resto separadamente' ..."
|
1674 |
+
|
1675 |
+
#: models/import/record.php:3196
|
1676 |
+
msgid "- Creating parent %s %s `%s` ..."
|
1677 |
+
msgstr "- Criando pai %s %s `%s` ..."
|
1678 |
+
|
1679 |
+
#: models/import/record.php:3199
|
1680 |
+
msgid "- Creating child %s %s for %s named `%s` ..."
|
1681 |
+
msgstr "- Criando filho %s %s para %s chamado `%s` ..."
|
1682 |
+
|
1683 |
+
#: models/import/record.php:3206
|
1684 |
+
msgid "- <b>WARNING</b>: `%s`"
|
1685 |
+
msgstr "- <b>AVISO</b>: `%s`"
|
1686 |
+
|
1687 |
+
#: models/import/record.php:3227
|
1688 |
+
msgid "- Attempted to create parent %s %s `%s`, duplicate detected. Importing %s to existing `%s` %s, ID %d, slug `%s` ..."
|
1689 |
+
msgstr "- Tentativa de criar o pai %s %s `%s`, duplicado detectado. Importando %s para `%s` existente, ID %d, slug `%s`..."
|
1690 |
+
|
1691 |
+
#: models/import/record.php:3230
|
1692 |
+
msgid "- Attempted to create child %s %s `%s`, duplicate detected. Importing %s to existing `%s` %s, ID %d, slug `%s` ..."
|
1693 |
+
msgstr "- Tentativa de criar o filho %s %s `%s`, duplicado detectado. Importando %s para `%s` existente, ID %d, slug `%s`..."
|
1694 |
+
|
1695 |
+
#: models/import/record.php:3245
|
1696 |
+
msgid "- %s %s `%s` has been skipped attempted to `Do not update Taxonomies (incl. Categories and Tags)`..."
|
1697 |
+
msgstr "- %s %s `%s` tentativa ignorada 'Não atualizar Taxonomias (incluindo Categorias e Tags)`..."
|
1698 |
+
|
1699 |
+
#: models/import/record.php:3264
|
1700 |
+
msgid "<b>CREATED</b> `%s` `%s` (ID: %s)"
|
1701 |
+
msgstr "<b>CRIADO</b> `%s` `%s` (ID: %s)"
|
1702 |
+
|
1703 |
+
#: models/import/record.php:3266
|
1704 |
+
msgid "<b>UPDATED</b> `%s` `%s` (ID: %s)"
|
1705 |
+
msgstr "<b>ATUALIZADO</b> `%s` `%s` (ID: %s)"
|
1706 |
+
|
1707 |
+
#: models/import/record.php:3309
|
1708 |
+
msgid "<b>ACTION</b>: pmxi_saved_post"
|
1709 |
+
msgstr "<b>AÇÃO:</b> pmxi_saved_post"
|
1710 |
+
|
1711 |
+
#: models/import/record.php:3316
|
1712 |
+
msgid "<span class=\"processing_info\"><span class=\"created_count\">%s</span><span class=\"updated_count\">%s</span><span class=\"percents_count\">%s</span></span>"
|
1713 |
+
msgstr "<span class=\"processing_info\"><span class=\"created_count\">%s</span><span class=\"updated_count\">%s</span><span class=\"percents_count\">%s</span></span>"
|
1714 |
+
|
1715 |
+
#: models/import/record.php:3320
|
1716 |
+
msgid "<b>ACTION</b>: pmxi_after_post_import"
|
1717 |
+
msgstr "<b>AÇÃO:</b> pmxi_after_post_import"
|
1718 |
+
|
1719 |
+
#: models/import/record.php:3349
|
1720 |
+
msgid "Update stock status previously imported posts which are no longer actual..."
|
1721 |
+
msgstr "Atualizar status de estoque de mensagens anteriormente importadas que não são mais atuais..."
|
1722 |
+
|
1723 |
+
#: models/import/record.php:3373
|
1724 |
+
msgid "Cleaning temporary data..."
|
1725 |
+
msgstr "Limpar dados temporários..."
|
1726 |
+
|
1727 |
+
#: models/import/record.php:3389
|
1728 |
+
msgid "Deleting source XML file..."
|
1729 |
+
msgstr "Excluindo arquivo XML de origem..."
|
1730 |
+
|
1731 |
+
#: models/import/record.php:3393
|
1732 |
+
msgid "Deleting chunks files..."
|
1733 |
+
msgstr "Excluindo arquivos em blocos..."
|
1734 |
+
|
1735 |
+
#: models/import/record.php:3400 models/import/record.php:3409
|
1736 |
+
msgid "<b>WARNING</b>: Unable to remove %s"
|
1737 |
+
msgstr "<b>AVISO: </b> Não é possível remover %s"
|
1738 |
+
|
1739 |
+
#: models/import/record.php:3421
|
1740 |
+
msgid "Removing previously imported posts which are no longer actual..."
|
1741 |
+
msgstr "Removendo postagens importadas anteriormente que não são mais atuais..."
|
1742 |
+
|
1743 |
+
#: models/import/record.php:3443
|
1744 |
+
msgid "<b>ACTION</b>: pmxi_delete_post"
|
1745 |
+
msgstr "<b>AÇÃO</b> pmxi_delete_post"
|
1746 |
+
|
1747 |
+
#: models/import/record.php:3445
|
1748 |
+
msgid "Deleting posts from database"
|
1749 |
+
msgstr "Excluindo posts do banco de dados"
|
1750 |
+
|
1751 |
+
#: models/import/record.php:3462
|
1752 |
+
msgid "Instead of deletion user with ID `%s`, set Custom Field `%s` to value `%s`"
|
1753 |
+
msgstr "Em vez de excluir o usuário com a ID `%s`, defina o campo personalizado `%s` para o valor `%s`"
|
1754 |
+
|
1755 |
+
#: models/import/record.php:3466
|
1756 |
+
msgid "Instead of deletion taxonomy term with ID `%s`, set Custom Field `%s` to value `%s`"
|
1757 |
+
msgstr "Em vez de excluir o termo de taxonomia com ID `%s`, defina o campo personalizado `%s` para o valor `%s`"
|
1758 |
+
|
1759 |
+
#: models/import/record.php:3470
|
1760 |
+
msgid "Instead of deletion post with ID `%s`, set Custom Field `%s` to value `%s`"
|
1761 |
+
msgstr "Em vez de excluir a postagem com a ID `%s`, defina o campo personalizado `%s` para o valor `%s`"
|
1762 |
+
|
1763 |
+
#: models/import/record.php:3482
|
1764 |
+
msgid "Instead of deletion, change post with ID `%s` status to Draft"
|
1765 |
+
msgstr "Em vez de excluir, altere o post com o status de ID `%s` para Rascunho"
|
1766 |
+
|
1767 |
+
#: models/import/record.php:3566
|
1768 |
+
msgid "%d Posts deleted from database. IDs (%s)"
|
1769 |
+
msgstr "%d Posts excluídos do banco de dados. IDs (%s)"
|
1770 |
+
|
1771 |
+
#: models/import/record.php:3658
|
1772 |
+
msgid "<b>ERROR</b> Could not insert term relationship into the database"
|
1773 |
+
msgstr "<b>ERROR</b> Não foi possível inserir relação de termo no banco de dados"
|
1774 |
+
|
1775 |
+
#: views/admin/addons/index.php:3
|
1776 |
+
msgid "WP All Import Add-ons"
|
1777 |
+
msgstr "WP All Import Add-ons"
|
1778 |
+
|
1779 |
+
#: views/admin/addons/index.php:8
|
1780 |
+
msgid "Premium Add-ons"
|
1781 |
+
msgstr "Premium Add-ons"
|
1782 |
+
|
1783 |
+
#: views/admin/addons/index.php:20 views/admin/addons/index.php:61
|
1784 |
+
msgid "Installed"
|
1785 |
+
msgstr "Instalado"
|
1786 |
+
|
1787 |
+
#: views/admin/addons/index.php:22
|
1788 |
+
msgid "Free Version Installed"
|
1789 |
+
msgstr "Versão Gratuita Instalada"
|
1790 |
+
|
1791 |
+
#: views/admin/addons/index.php:29 views/admin/addons/index.php:70
|
1792 |
+
msgid " required"
|
1793 |
+
msgstr "requer"
|
1794 |
+
|
1795 |
+
#: views/admin/addons/index.php:36 views/admin/addons/index.php:77
|
1796 |
+
#: views/admin/addons/index.php:82 views/admin/import/index.php:115
|
1797 |
+
msgid "Download"
|
1798 |
+
msgstr "Download"
|
1799 |
+
|
1800 |
+
#: views/admin/addons/index.php:41
|
1801 |
+
msgid "Purchase & Install"
|
1802 |
+
msgstr "Comprar & Instalar"
|
1803 |
+
|
1804 |
+
#: views/admin/addons/index.php:49
|
1805 |
+
msgid "Free Add-ons"
|
1806 |
+
msgstr "Add-ons Grátis"
|
1807 |
+
|
1808 |
+
#: views/admin/addons/index.php:63
|
1809 |
+
msgid "Paid Version Installed"
|
1810 |
+
msgstr "Versão Paga Instalada"
|
1811 |
+
|
1812 |
+
#: views/admin/help/index.php:1
|
1813 |
+
msgid "WP All Import Help"
|
1814 |
+
msgstr "WP All Import Ajuda"
|
1815 |
+
|
1816 |
+
#: views/admin/history/index.php:16 views/admin/history/index.php:18
|
1817 |
+
#: views/admin/history/index.php:20
|
1818 |
+
msgid "%s - Import History"
|
1819 |
+
msgstr "%s - Histórico de importação"
|
1820 |
+
|
1821 |
+
#: views/admin/history/index.php:32 views/admin/manage/index.php:27
|
1822 |
+
msgid "ID"
|
1823 |
+
msgstr "ID"
|
1824 |
+
|
1825 |
+
#: views/admin/history/index.php:34
|
1826 |
+
msgid "Run Time"
|
1827 |
+
msgstr "Tempo de execução"
|
1828 |
+
|
1829 |
+
#: views/admin/history/index.php:35
|
1830 |
+
msgid "Type"
|
1831 |
+
msgstr "Tipo"
|
1832 |
+
|
1833 |
+
#: views/admin/history/index.php:36 views/admin/manage/index.php:30
|
1834 |
+
msgid "Summary"
|
1835 |
+
msgstr "Sumário"
|
1836 |
+
|
1837 |
+
#: views/admin/history/index.php:42
|
1838 |
+
msgid "Scheduling Status"
|
1839 |
+
msgstr "Status do agendamento"
|
1840 |
+
|
1841 |
+
#: views/admin/history/index.php:42
|
1842 |
+
msgid "triggered"
|
1843 |
+
msgstr "Disparado"
|
1844 |
+
|
1845 |
+
#: views/admin/history/index.php:42
|
1846 |
+
msgid "and processing"
|
1847 |
+
msgstr "e processamento"
|
1848 |
+
|
1849 |
+
#: views/admin/history/index.php:52 views/admin/history/index.php:226
|
1850 |
+
#: views/admin/manage/index.php:44 views/admin/manage/index.php:359
|
1851 |
+
msgid "Bulk Actions"
|
1852 |
+
msgstr "Ações em massa"
|
1853 |
+
|
1854 |
+
#: views/admin/history/index.php:53 views/admin/history/index.php:228
|
1855 |
+
#: views/admin/manage/index.php:45 views/admin/manage/index.php:192
|
1856 |
+
#: views/admin/manage/index.php:361
|
1857 |
+
msgid "Delete"
|
1858 |
+
msgstr "Excluir"
|
1859 |
+
|
1860 |
+
#: views/admin/history/index.php:55 views/admin/history/index.php:234
|
1861 |
+
#: views/admin/import/element.php:97 views/admin/manage/index.php:47
|
1862 |
+
#: views/admin/manage/index.php:367
|
1863 |
+
msgid "Apply"
|
1864 |
+
msgstr "Aplicar"
|
1865 |
+
|
1866 |
+
#: views/admin/history/index.php:61 views/admin/manage/index.php:53
|
1867 |
+
msgid "Displaying %s–%s of %s"
|
1868 |
+
msgstr "Exibindo %s–%s de %s"
|
1869 |
+
|
1870 |
+
#: views/admin/history/index.php:108
|
1871 |
+
msgid "No previous history found."
|
1872 |
+
msgstr "Nenhum histórico anterior encontrado."
|
1873 |
+
|
1874 |
+
#: views/admin/history/index.php:161
|
1875 |
+
msgid "manual run"
|
1876 |
+
msgstr "Execução manual"
|
1877 |
+
|
1878 |
+
#: views/admin/history/index.php:164
|
1879 |
+
msgid "continue run"
|
1880 |
+
msgstr "continue exceução"
|
1881 |
+
|
1882 |
+
#: views/admin/history/index.php:189
|
1883 |
+
msgid "Download Log"
|
1884 |
+
msgstr "Download Log"
|
1885 |
+
|
1886 |
+
#: views/admin/history/index.php:193
|
1887 |
+
msgid "Log Unavailable"
|
1888 |
+
msgstr "Log indisponível"
|
1889 |
+
|
1890 |
+
#: views/admin/history/index.php:230 views/admin/manage/index.php:363
|
1891 |
+
msgid "Restore"
|
1892 |
+
msgstr "Restaurar"
|
1893 |
+
|
1894 |
+
#: views/admin/history/index.php:231 views/admin/manage/index.php:364
|
1895 |
+
msgid "Delete Permanently"
|
1896 |
+
msgstr "Excluir permanentemente"
|
1897 |
+
|
1898 |
+
#: views/admin/history/index.php:238 views/admin/import/confirm.php:359
|
1899 |
+
#: views/admin/import/element.php:224 views/admin/import/index.php:388
|
1900 |
+
#: views/admin/import/options.php:104 views/admin/import/process.php:124
|
1901 |
+
#: views/admin/import/template.php:234 views/admin/manage/index.php:372
|
1902 |
+
#: views/admin/manage/scheduling.php:62 views/admin/settings/index.php:230
|
1903 |
+
msgid "Created by"
|
1904 |
+
msgstr "Criado por"
|
1905 |
+
|
1906 |
+
#: views/admin/import/confirm.php:12 views/admin/import/element.php:9
|
1907 |
+
#: views/admin/import/index.php:44 views/admin/import/options.php:19
|
1908 |
+
#: views/admin/import/process.php:9 views/admin/import/template.php:10
|
1909 |
+
msgid "Import XML / CSV"
|
1910 |
+
msgstr "Importar XML /CSV"
|
1911 |
+
|
1912 |
+
#: views/admin/import/confirm.php:15 views/admin/import/element.php:12
|
1913 |
+
#: views/admin/import/index.php:47 views/admin/import/options.php:22
|
1914 |
+
#: views/admin/import/process.php:12 views/admin/import/template.php:13
|
1915 |
+
msgid "Support"
|
1916 |
+
msgstr "Suporte"
|
1917 |
+
|
1918 |
+
#: views/admin/import/confirm.php:15 views/admin/import/element.php:12
|
1919 |
+
#: views/admin/import/index.php:47 views/admin/import/options.php:22
|
1920 |
+
#: views/admin/import/process.php:12 views/admin/import/template.php:13
|
1921 |
+
msgid "Documentation"
|
1922 |
+
msgstr "Documentação"
|
1923 |
+
|
1924 |
+
#: views/admin/import/confirm.php:45 views/admin/import/options.php:62
|
1925 |
+
msgid "This URL no longer returns an import file"
|
1926 |
+
msgstr "Este URL não retorna mais um arquivo de importação"
|
1927 |
+
|
1928 |
+
#: views/admin/import/confirm.php:46 views/admin/import/options.php:63
|
1929 |
+
msgid "You must provide a URL that returns a valid import file."
|
1930 |
+
msgstr "Você deve fornecer um URL que retorna um arquivo de importação válido."
|
1931 |
+
|
1932 |
+
#: views/admin/import/confirm.php:48 views/admin/import/index.php:362
|
1933 |
+
#: views/admin/import/options.php:65
|
1934 |
+
#: views/admin/import/options/_import_file.php:46
|
1935 |
+
msgid "There's a problem with your import file"
|
1936 |
+
msgstr "Ocorreu um problema com o arquivo de importação"
|
1937 |
+
|
1938 |
+
#: views/admin/import/confirm.php:49 views/admin/import/options.php:66
|
1939 |
+
msgid "It has changed and is not compatible with this import template."
|
1940 |
+
msgstr "Ele foi alterado e não é compatível com este modelo de importação."
|
1941 |
+
|
1942 |
+
#: views/admin/import/confirm.php:72
|
1943 |
+
msgid "Your file is all set up!"
|
1944 |
+
msgstr "Seu arquivo está configurado!"
|
1945 |
+
|
1946 |
+
#: views/admin/import/confirm.php:74
|
1947 |
+
msgid "This import did not finish successfuly last time it was run."
|
1948 |
+
msgstr "Esta importação não foi concluída com êxito na última vez em que foi executada."
|
1949 |
+
|
1950 |
+
#: views/admin/import/confirm.php:78
|
1951 |
+
msgid "Check the settings below, then click the green button to run the import."
|
1952 |
+
msgstr "Verifique as configurações abaixo e clique no botão verde para executar a importação."
|
1953 |
+
|
1954 |
+
#: views/admin/import/confirm.php:80
|
1955 |
+
msgid "You can attempt to continue where it left off."
|
1956 |
+
msgstr "Você pode tentar continuar onde parou."
|
1957 |
+
|
1958 |
+
#: views/admin/import/confirm.php:88 views/admin/import/confirm.php:348
|
1959 |
+
msgid "Confirm & Run Import"
|
1960 |
+
msgstr "Confirmar e executar importação"
|
1961 |
+
|
1962 |
+
#: views/admin/import/confirm.php:98
|
1963 |
+
msgid "Continue from the last run"
|
1964 |
+
msgstr "Continuar da última execução"
|
1965 |
+
|
1966 |
+
#: views/admin/import/confirm.php:102
|
1967 |
+
msgid "Run from the beginning"
|
1968 |
+
msgstr "Executar desde o início"
|
1969 |
+
|
1970 |
+
#: views/admin/import/confirm.php:105 views/admin/import/process.php:99
|
1971 |
+
msgid "Continue Import"
|
1972 |
+
msgstr "Continue Importação"
|
1973 |
+
|
1974 |
+
#: views/admin/import/confirm.php:107
|
1975 |
+
msgid "Run entire import from the beginning"
|
1976 |
+
msgstr "Executar importação inteira desde o início"
|
1977 |
+
|
1978 |
+
#: views/admin/import/confirm.php:127
|
1979 |
+
msgid "Import Summary"
|
1980 |
+
msgstr "Sumário de Importação"
|
1981 |
+
|
1982 |
+
#: views/admin/import/confirm.php:133
|
1983 |
+
msgid "Your max_execution_time is %s seconds"
|
1984 |
+
msgstr "Seu max_execution_time é %s segundos"
|
1985 |
+
|
1986 |
+
#: views/admin/import/confirm.php:157
|
1987 |
+
msgid "WP All Import will import the file <span style=\"color:#40acad;\">%s</span>, which is <span style=\"color:#000; font-weight:bold;\">%s</span>"
|
1988 |
+
msgstr "O WP All Import importará o arquivo <span style=\"color:#40acad;\">%s</span>que é</span>"
|
1989 |
+
|
1990 |
+
#: views/admin/import/confirm.php:157
|
1991 |
+
msgid "undefined"
|
1992 |
+
msgstr "Indefinido"
|
1993 |
+
|
1994 |
+
#: views/admin/import/confirm.php:160
|
1995 |
+
msgid "WP All Import will process the records matching the XPath expression: <span style=\"color:#46ba69; font-weight:bold;\">%s</span>"
|
1996 |
+
msgstr "O WP All Import vai processar os registros correspondentes à expressão XPath: <span style=\"color:#46ba69; font-weight:bold;\">%s</span>"
|
1997 |
+
|
1998 |
+
#: views/admin/import/confirm.php:162
|
1999 |
+
msgid "WP All Import will process <span style=\"color:#46ba69; font-weight:bold;\">%s</span> rows in your file"
|
2000 |
+
msgstr "O WP All Import vai processar <span style=\"color:#46ba69; font-weight:bold;\">%s</span> linhas do seu arquivo"
|
2001 |
+
|
2002 |
+
#: views/admin/import/confirm.php:164
|
2003 |
+
msgid "WP All Import will process all %s <span style=\"color:#46ba69; font-weight:bold;\"><%s></span> records in your file"
|
2004 |
+
msgstr "O WP All Import vai processar %s <span style=\"color:#46ba69; font-weight:bold;\"><%s></span> registros em seu arquivo"
|
2005 |
+
|
2006 |
+
#: views/admin/import/confirm.php:168
|
2007 |
+
msgid "WP All Import will process only specified records: %s"
|
2008 |
+
msgstr "O WP All Import vai processar somente os registros especificados: %s"
|
2009 |
+
|
2010 |
+
#: views/admin/import/confirm.php:175
|
2011 |
+
msgid "Your unique key is <span style=\"color:#000; font-weight:bold;\">%s</span>"
|
2012 |
+
msgstr "Sua chave única é <span style=\"color:#000; font-weight:bold;\">%s</span>"
|
2013 |
+
|
2014 |
+
#: views/admin/import/confirm.php:179
|
2015 |
+
msgid "%ss previously imported by this import (ID: %s) with the same unique key will be updated."
|
2016 |
+
msgstr "%ss anteriormente importado (ID: %s) serão atualizados com a mesma chave única "
|
2017 |
+
|
2018 |
+
#: views/admin/import/confirm.php:182
|
2019 |
+
msgid "%ss previously imported by this import (ID: %s) that aren't present for this run of the import will be deleted."
|
2020 |
+
msgstr "%ss anteriormente importado (ID: %s) que não estão presentes para esta execução da importação serão excluídos."
|
2021 |
+
|
2022 |
+
#: views/admin/import/confirm.php:186
|
2023 |
+
msgid "%ss previously imported by this import (ID: %s) that aren't present for this run of the import will be set to draft."
|
2024 |
+
msgstr "%ss anteriormente importado (ID: %s) que não estão presentes para esta execução da importação será definido como rascunho."
|
2025 |
+
|
2026 |
+
#: views/admin/import/confirm.php:190
|
2027 |
+
msgid "Records with unique keys that don't match any unique keys from %ss created by previous runs of this import (ID: %s) will be created."
|
2028 |
+
msgstr "Os registros com chaves únicas que não correspondem a nenhuma chave única de %ss criada por execuções anteriores (ID: %s) serão criados."
|
2029 |
+
|
2030 |
+
#: views/admin/import/confirm.php:204
|
2031 |
+
msgid "WP All Import will merge data into existing %ss, matching the following criteria: %s"
|
2032 |
+
msgstr "O WP All Import irá mesclar dados em %ss existentes, correspondendo aos seguintes critérios: %s"
|
2033 |
+
|
2034 |
+
#: views/admin/import/confirm.php:207
|
2035 |
+
msgid "Existing data will be updated with the data specified in this import."
|
2036 |
+
msgstr "Os dados existentes serão atualizados com os dados especificados nesta importação."
|
2037 |
+
|
2038 |
+
#: views/admin/import/confirm.php:210
|
2039 |
+
msgid "Next %s data will be updated, <strong>all other data will be left alone</strong>"
|
2040 |
+
msgstr "Próximo %s dados serão atualizados, <strong> todos os outros dados serão deixados sozinhos</strong>"
|
2041 |
+
|
2042 |
+
#: views/admin/import/confirm.php:214
|
2043 |
+
msgid "status"
|
2044 |
+
msgstr "status"
|
2045 |
+
|
2046 |
+
#: views/admin/import/confirm.php:217
|
2047 |
+
msgid "title"
|
2048 |
+
msgstr "título"
|
2049 |
+
|
2050 |
+
#: views/admin/import/confirm.php:220
|
2051 |
+
msgid "slug"
|
2052 |
+
msgstr "slug"
|
2053 |
+
|
2054 |
+
#: views/admin/import/confirm.php:223
|
2055 |
+
msgid "content"
|
2056 |
+
msgstr "conteúdo"
|
2057 |
+
|
2058 |
+
#: views/admin/import/confirm.php:226
|
2059 |
+
msgid "excerpt"
|
2060 |
+
msgstr "resumo"
|
2061 |
+
|
2062 |
+
#: views/admin/import/confirm.php:229
|
2063 |
+
msgid "dates"
|
2064 |
+
msgstr "datas"
|
2065 |
+
|
2066 |
+
#: views/admin/import/confirm.php:232
|
2067 |
+
msgid "menu order"
|
2068 |
+
msgstr "ordem do menu"
|
2069 |
+
|
2070 |
+
#: views/admin/import/confirm.php:235
|
2071 |
+
msgid "parent post"
|
2072 |
+
msgstr "post pai"
|
2073 |
+
|
2074 |
+
#: views/admin/import/confirm.php:238
|
2075 |
+
msgid "post type"
|
2076 |
+
msgstr "tipo de post"
|
2077 |
+
|
2078 |
+
#: views/admin/import/confirm.php:241
|
2079 |
+
msgid "attachments"
|
2080 |
+
msgstr "anexos"
|
2081 |
+
|
2082 |
+
#: views/admin/import/confirm.php:248
|
2083 |
+
msgid "all advanced custom fields"
|
2084 |
+
msgstr "todos os campos personalizados avançados"
|
2085 |
+
|
2086 |
+
#: views/admin/import/confirm.php:251
|
2087 |
+
msgid "only ACF presented in import options"
|
2088 |
+
msgstr "somente ACF presente na sua importação"
|
2089 |
+
|
2090 |
+
#: views/admin/import/confirm.php:254
|
2091 |
+
msgid "only these ACF : %s"
|
2092 |
+
msgstr "somente este ACF: %s"
|
2093 |
+
|
2094 |
+
#: views/admin/import/confirm.php:257
|
2095 |
+
msgid "all ACF except these: %s"
|
2096 |
+
msgstr "todos os ACF exceto estes: %s"
|
2097 |
+
|
2098 |
+
#: views/admin/import/confirm.php:267
|
2099 |
+
msgid "old images will be updated with new"
|
2100 |
+
msgstr "Imagens antigas serão atualizadas como nova"
|
2101 |
+
|
2102 |
+
#: views/admin/import/confirm.php:270
|
2103 |
+
msgid "only new images will be added"
|
2104 |
+
msgstr "Apenas novas imagens serão adicionadas"
|
2105 |
+
|
2106 |
+
#: views/admin/import/confirm.php:280
|
2107 |
+
msgid "all custom fields"
|
2108 |
+
msgstr "Todos os Campos Personalizados"
|
2109 |
+
|
2110 |
+
#: views/admin/import/confirm.php:283
|
2111 |
+
msgid "only these custom fields : %s"
|
2112 |
+
msgstr "somente estes campos personalizados: %s"
|
2113 |
+
|
2114 |
+
#: views/admin/import/confirm.php:286
|
2115 |
+
msgid "all cusom fields except these: %s"
|
2116 |
+
msgstr "todos os campos personalizados, exceto estes: %s"
|
2117 |
+
|
2118 |
+
#: views/admin/import/confirm.php:296
|
2119 |
+
msgid "remove existing taxonomies, add new taxonomies"
|
2120 |
+
msgstr "Remover taxonomias existentes, adicionar novas taxonomias"
|
2121 |
+
|
2122 |
+
#: views/admin/import/confirm.php:299
|
2123 |
+
msgid "only add new"
|
2124 |
+
msgstr "Apenas adicionar novo"
|
2125 |
+
|
2126 |
+
#: views/admin/import/confirm.php:302
|
2127 |
+
msgid "update only these taxonomies: %s , leave the rest alone"
|
2128 |
+
msgstr "Atualize somente estas taxonomias: %s"
|
2129 |
+
|
2130 |
+
#: views/admin/import/confirm.php:305
|
2131 |
+
msgid "leave these taxonomies: %s alone, update all others"
|
2132 |
+
msgstr "Não atualize estas taxonomias: %s, atualize todos os outros"
|
2133 |
+
|
2134 |
+
#: views/admin/import/confirm.php:316
|
2135 |
+
msgid "New %ss will be created from records that don't match the above criteria."
|
2136 |
+
msgstr "Novos %ss serão criados a partir de registros que não correspondem aos critérios acima."
|
2137 |
+
|
2138 |
+
#: views/admin/import/confirm.php:322
|
2139 |
+
msgid "High-Speed, Small File Processing enabled. Your import will fail if it takes longer than your server's max_execution_time."
|
2140 |
+
msgstr "Alta velocidade de processamento de arquivos pequenos ativado. Sua importação falhará se demorar mais do que max_execution_time do seu servidor."
|
2141 |
+
|
2142 |
+
#: views/admin/import/confirm.php:324
|
2143 |
+
msgid "Piece By Piece Processing enabled. %s records will be processed each iteration. If it takes longer than your server's max_execution_time to process %s records, your import will fail."
|
2144 |
+
msgstr "Processar por Pedaço ativado. %s registros serão processados a cada repetição. Se demorar mais tempo do que max_execution_time do seu servidor para processar %s registros, a importação falhará."
|
2145 |
+
|
2146 |
+
#: views/admin/import/confirm.php:328
|
2147 |
+
msgid "Your file will be split into %s records chunks before processing."
|
2148 |
+
msgstr "Seu arquivo será dividido em %s pedaços de registros antes do processamento."
|
2149 |
+
|
2150 |
+
#: views/admin/import/confirm.php:332
|
2151 |
+
msgid "do_action calls will be disabled in wp_insert_post and wp_insert_attachment during the import."
|
2152 |
+
msgstr "As chamadas do_action serão desativadas em wp_insert_post e wp_insert_attachment durante a importação."
|
2153 |
+
|
2154 |
+
#: views/admin/import/confirm.php:351
|
2155 |
+
msgid "or go back to Step 4"
|
2156 |
+
msgstr "ou volte para a Etapa 4"
|
2157 |
+
|
2158 |
+
#: views/admin/import/confirm.php:353
|
2159 |
+
msgid "or go back to Manage Imports"
|
2160 |
+
msgstr "ou voltar para Gerenciar Importações"
|
2161 |
+
|
2162 |
+
#: views/admin/import/element.php:34 views/admin/import/element.php:221
|
2163 |
+
msgid "Continue to Step 3"
|
2164 |
+
msgstr "Continue para etapa 3"
|
2165 |
+
|
2166 |
+
#: views/admin/import/element.php:47
|
2167 |
+
msgid "What element are you looking for?"
|
2168 |
+
msgstr "Que elemento você está procurando?"
|
2169 |
+
|
2170 |
+
#: views/admin/import/element.php:76
|
2171 |
+
msgid "of <span class=\"wpallimport-elements-count-info\">%s</span>"
|
2172 |
+
msgstr "de <span class=\"wpallimport-elements-count-info\">%s</span>"
|
2173 |
+
|
2174 |
+
#: views/admin/import/element.php:94
|
2175 |
+
msgid "Set delimiter for CSV fields:"
|
2176 |
+
msgstr "Definir delimitador para campos CSV:"
|
2177 |
+
|
2178 |
+
#: views/admin/import/element.php:115
|
2179 |
+
msgid "Each <span><<span class=\"root_element\">%s</span>></span> element will be imported into a <span>New %s</span>"
|
2180 |
+
msgstr "Cada <span><<span class=\"root_element\">%s</span>></span> elemento será importado para um <span>Novo %s</span>"
|
2181 |
+
|
2182 |
+
#: views/admin/import/element.php:119
|
2183 |
+
msgid "Data in <span><<span class=\"root_element\">%s</span>></span> elements will be imported to <span>%s</span>"
|
2184 |
+
msgstr "Dados em <span><<span class=\"root_element\">%s</span>></span> os elementos serão importados para <span>%s</span>"
|
2185 |
+
|
2186 |
+
#: views/admin/import/element.php:124
|
2187 |
+
msgid "This doesn't look right, try manually selecting a different root element on the left."
|
2188 |
+
msgstr "Isso não parece certo, tente selecionar manualmente um elemento raiz diferente à esquerda."
|
2189 |
+
|
2190 |
+
#: views/admin/import/element.php:136
|
2191 |
+
msgid "Add Filtering Options"
|
2192 |
+
msgstr "Adicionar opções de filtragem"
|
2193 |
+
|
2194 |
+
#: views/admin/import/element.php:143 views/admin/import/element.php:195
|
2195 |
+
msgid "Element"
|
2196 |
+
msgstr "Elemento"
|
2197 |
+
|
2198 |
+
#: views/admin/import/element.php:144 views/admin/import/element.php:196
|
2199 |
+
msgid "Rule"
|
2200 |
+
msgstr "Regra"
|
2201 |
+
|
2202 |
+
#: views/admin/import/element.php:145 views/admin/import/element.php:197
|
2203 |
+
#: views/admin/import/options/_reimport_options.php:42
|
2204 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:46
|
2205 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:125
|
2206 |
+
#: views/admin/import/options/_reimport_template.php:107
|
2207 |
+
#: views/admin/import/template/_custom_fields_template.php:52
|
2208 |
+
#: views/admin/import/template/_custom_fields_template.php:86
|
2209 |
+
#: views/admin/import/template/_custom_fields_template.php:295
|
2210 |
+
#: views/admin/import/template/_custom_fields_template.php:429
|
2211 |
+
#: views/admin/import/template/_term_meta_template.php:52
|
2212 |
+
#: views/admin/import/template/_term_meta_template.php:86
|
2213 |
+
#: views/admin/import/template/_term_meta_template.php:295
|
2214 |
+
#: views/admin/import/template/_term_meta_template.php:429
|
2215 |
+
msgid "Value"
|
2216 |
+
msgstr "Valor"
|
2217 |
+
|
2218 |
+
#: views/admin/import/element.php:151
|
2219 |
+
msgid "Select Element"
|
2220 |
+
msgstr "Selecionar elemento"
|
2221 |
+
|
2222 |
+
#: views/admin/import/element.php:157
|
2223 |
+
msgid "Select Rule"
|
2224 |
+
msgstr "Selecionar Regra"
|
2225 |
+
|
2226 |
+
#: views/admin/import/element.php:158
|
2227 |
+
msgid "equals"
|
2228 |
+
msgstr "iguais"
|
2229 |
+
|
2230 |
+
#: views/admin/import/element.php:159
|
2231 |
+
msgid "not equals"
|
2232 |
+
msgstr "não é igual"
|
2233 |
+
|
2234 |
+
#: views/admin/import/element.php:160
|
2235 |
+
msgid "greater than"
|
2236 |
+
msgstr "maior que"
|
2237 |
+
|
2238 |
+
#: views/admin/import/element.php:161
|
2239 |
+
msgid "equals or greater than"
|
2240 |
+
msgstr "igual ou maior"
|
2241 |
+
|
2242 |
+
#: views/admin/import/element.php:162
|
2243 |
+
msgid "less than"
|
2244 |
+
msgstr "menor que"
|
2245 |
+
|
2246 |
+
#: views/admin/import/element.php:163
|
2247 |
+
msgid "equals or less than"
|
2248 |
+
msgstr "igual ou menor"
|
2249 |
+
|
2250 |
+
#: views/admin/import/element.php:164
|
2251 |
+
msgid "contains"
|
2252 |
+
msgstr "contém"
|
2253 |
+
|
2254 |
+
#: views/admin/import/element.php:165
|
2255 |
+
msgid "not contains"
|
2256 |
+
msgstr "não contém"
|
2257 |
+
|
2258 |
+
#: views/admin/import/element.php:166
|
2259 |
+
msgid "is empty"
|
2260 |
+
msgstr "é vazio"
|
2261 |
+
|
2262 |
+
#: views/admin/import/element.php:167
|
2263 |
+
msgid "is not empty"
|
2264 |
+
msgstr "não está vazio"
|
2265 |
+
|
2266 |
+
#: views/admin/import/element.php:174
|
2267 |
+
msgid "Add Rule"
|
2268 |
+
msgstr "Adicionar Regra"
|
2269 |
+
|
2270 |
+
#: views/admin/import/element.php:183
|
2271 |
+
#: views/admin/import/options/_settings_template.php:174
|
2272 |
+
msgid "XPath"
|
2273 |
+
msgstr "XPath"
|
2274 |
+
|
2275 |
+
#: views/admin/import/element.php:198
|
2276 |
+
msgid "Condition"
|
2277 |
+
msgstr "Condição"
|
2278 |
+
|
2279 |
+
#: views/admin/import/element.php:203
|
2280 |
+
msgid "No filtering options. Add filtering options to only import records matching some specified criteria."
|
2281 |
+
msgstr "Sem opções de filtragem. Adicione opções de filtragem para importar apenas registros que correspondam a alguns critérios especificados."
|
2282 |
+
|
2283 |
+
#: views/admin/import/element.php:208
|
2284 |
+
msgid "Apply Filters To XPath"
|
2285 |
+
msgstr "Aplicar Filtros para XPath"
|
2286 |
+
|
2287 |
+
#: views/admin/import/element.php:217
|
2288 |
+
msgid "Back to Step 1"
|
2289 |
+
msgstr "Volte para a Etapa 1"
|
2290 |
+
|
2291 |
+
#: views/admin/import/evaluate.php:3
|
2292 |
+
msgid "<span class=\"matches_count\">%s</span> <strong>%s</strong> will be imported"
|
2293 |
+
msgstr "<span class=\"matches_count\">%s</span> <strong>%s</strong> serão importados"
|
2294 |
+
|
2295 |
+
#: views/admin/import/evaluate.php:3
|
2296 |
+
msgid "row"
|
2297 |
+
msgid_plural "rows"
|
2298 |
+
msgstr[0] "linha"
|
2299 |
+
msgstr[1] "linhas"
|
2300 |
+
|
2301 |
+
#: views/admin/import/evaluate.php:5
|
2302 |
+
msgid "<span class=\"matches_count\">%s</span> <strong>%s</strong> %s will be imported"
|
2303 |
+
msgstr "<span class=\"matches_count\">%s</span> <strong>%s</strong> %s serão importados"
|
2304 |
+
|
2305 |
+
#: views/admin/import/evaluate.php:7
|
2306 |
+
msgid "Click an element to select it, or scroll down to add filtering options."
|
2307 |
+
msgstr "Clique em um elemento para selecioná-lo ou role para baixo para adicionar opções de filtragem."
|
2308 |
+
|
2309 |
+
#: views/admin/import/evaluate.php:9
|
2310 |
+
#: views/admin/import/evaluate_variations.php:5
|
2311 |
+
msgid "<strong>Note</strong>: Highlighting is turned off since can be very slow on large sets of elements."
|
2312 |
+
msgstr "<strong>Observação:</ strong> o destaque está desativado, pois pode ser muito lento em grandes conjuntos de elementos."
|
2313 |
+
|
2314 |
+
#: views/admin/import/evaluate_variations.php:3
|
2315 |
+
msgid "Current selection matches <span class=\"matches_count\">%s</span> %s."
|
2316 |
+
msgstr "A seleção atual corresponde a <span class=\"matches_count\">%s</span> %s."
|
2317 |
+
|
2318 |
+
#: views/admin/import/evaluate_variations.php:14
|
2319 |
+
msgid "#<strong>%s</strong> out of <strong>%s</strong>"
|
2320 |
+
msgstr "#<strong>%s</strong> fora de <strong>%s</strong>"
|
2321 |
+
|
2322 |
+
#: views/admin/import/index.php:69
|
2323 |
+
msgid "First, specify how you want to import your data"
|
2324 |
+
msgstr "Primeiro, especifique como deseja importar seus dados"
|
2325 |
+
|
2326 |
+
#: views/admin/import/index.php:71
|
2327 |
+
msgid "First, specify previously exported file"
|
2328 |
+
msgstr "Primeiro, especifique o arquivo exportado anteriormente"
|
2329 |
+
|
2330 |
+
#: views/admin/import/index.php:72
|
2331 |
+
msgid "The data in this file can be modified, but the structure of the file (column/element names) should not change."
|
2332 |
+
msgstr "Os dados neste arquivo podem ser modificados, mas a estrutura do arquivo (nomes de coluna/elemento) não deve ser alterada."
|
2333 |
+
|
2334 |
+
#: views/admin/import/index.php:76
|
2335 |
+
#: views/admin/import/options/_import_file.php:74
|
2336 |
+
msgid "Upload a file"
|
2337 |
+
msgstr "Upload de um arquivo"
|
2338 |
+
|
2339 |
+
#: views/admin/import/index.php:80
|
2340 |
+
#: views/admin/import/options/_import_file.php:78
|
2341 |
+
msgid "Download from URL"
|
2342 |
+
msgstr "Download pela URL"
|
2343 |
+
|
2344 |
+
#: views/admin/import/index.php:84
|
2345 |
+
#: views/admin/import/options/_import_file.php:82
|
2346 |
+
msgid "Use existing file"
|
2347 |
+
msgstr "Usar arquivo existente"
|
2348 |
+
|
2349 |
+
#: views/admin/import/index.php:94
|
2350 |
+
#: views/admin/import/options/_import_file.php:92
|
2351 |
+
msgid "Click here to select file from your computer..."
|
2352 |
+
msgstr "Clique aqui para selecionar um arquivo do seu computador..."
|
2353 |
+
|
2354 |
+
#: views/admin/import/index.php:97
|
2355 |
+
msgid "Upload Complete"
|
2356 |
+
msgstr "Upload Completo"
|
2357 |
+
|
2358 |
+
#: views/admin/import/index.php:119
|
2359 |
+
msgid "<strong>Hint:</strong> After you create this import, you can schedule it to run automatically, on a pre-defined schedule, with cron jobs. If anything in your file has changed, WP All Import can update your site with the changed data automatically."
|
2360 |
+
msgstr "<strong>Dica:</strong> Depois de criar essa importação, você pode agendá-la para ser executada automaticamente, em um cronograma predefinido, com trabalhos cron. Se qualquer coisa em seu arquivo mudou, WP All Import pode atualizar seu site com os dados alterados automaticamente."
|
2361 |
+
|
2362 |
+
#: views/admin/import/index.php:159
|
2363 |
+
#: views/admin/import/options/_import_file.php:144
|
2364 |
+
msgid "Select a previously uploaded file"
|
2365 |
+
msgstr "Selecione um arquivo carregado anteriormente"
|
2366 |
+
|
2367 |
+
#: views/admin/import/index.php:168
|
2368 |
+
#: views/admin/import/options/_import_file.php:156
|
2369 |
+
msgid "Upload files to <strong>%s</strong> and they will appear in this list"
|
2370 |
+
msgstr "Envie arquivos para <strong>%s</strong> e eles aparecerão nesta lista"
|
2371 |
+
|
2372 |
+
#: views/admin/import/index.php:183
|
2373 |
+
msgid "Import data from this file into..."
|
2374 |
+
msgstr "Importar dados deste arquivo para..."
|
2375 |
+
|
2376 |
+
#: views/admin/import/index.php:187
|
2377 |
+
msgid "New Items"
|
2378 |
+
msgstr "Novos Itens"
|
2379 |
+
|
2380 |
+
#: views/admin/import/index.php:191
|
2381 |
+
msgid "Existing Items"
|
2382 |
+
msgstr "Itens Existentes"
|
2383 |
+
|
2384 |
+
#: views/admin/import/index.php:214
|
2385 |
+
msgid "Taxonomies"
|
2386 |
+
msgstr "Taxonomias"
|
2387 |
+
|
2388 |
+
#: views/admin/import/index.php:218
|
2389 |
+
#: views/admin/import/options/_settings_template.php:81
|
2390 |
+
msgid "Users"
|
2391 |
+
msgstr "Usuários"
|
2392 |
+
|
2393 |
+
#: views/admin/import/index.php:244
|
2394 |
+
msgid "Create new"
|
2395 |
+
msgstr "Criar novo"
|
2396 |
+
|
2397 |
+
#: views/admin/import/index.php:245
|
2398 |
+
msgid "Import to existing"
|
2399 |
+
msgstr "Importar para existente"
|
2400 |
+
|
2401 |
+
#: views/admin/import/index.php:248
|
2402 |
+
msgid "for each record in my data file."
|
2403 |
+
msgstr "Para cada registro no meu arquivo de dados."
|
2404 |
+
|
2405 |
+
#: views/admin/import/index.php:249
|
2406 |
+
msgid "and update some or all of their data."
|
2407 |
+
msgstr "e atualizar alguns ou todos os seus dados."
|
2408 |
+
|
2409 |
+
#: views/admin/import/index.php:298
|
2410 |
+
msgid "Select taxonomy to import into..."
|
2411 |
+
msgstr "Selecione a taxonomia para importar para..."
|
2412 |
+
|
2413 |
+
#: views/admin/import/index.php:300
|
2414 |
+
#: views/admin/import/options/_settings_template.php:56
|
2415 |
+
msgid "Select Taxonomy"
|
2416 |
+
msgstr "Selecionar Taxonomia"
|
2417 |
+
|
2418 |
+
#: views/admin/import/index.php:309
|
2419 |
+
#: views/admin/import/options/_settings_template.php:151
|
2420 |
+
msgid "The User Import Add-On is Required to Import Users"
|
2421 |
+
msgstr "O User Import Add-On é requerido para importar usuários"
|
2422 |
+
|
2423 |
+
#: views/admin/import/index.php:310
|
2424 |
+
#: views/admin/import/options/_settings_template.php:152
|
2425 |
+
msgid "Purchase the User Import Add-On"
|
2426 |
+
msgstr "Comprar o User Import Add-On"
|
2427 |
+
|
2428 |
+
#: views/admin/import/index.php:315
|
2429 |
+
#: views/admin/import/options/_settings_template.php:157
|
2430 |
+
msgid "The WooCommerce Add-On is Required to Import Products"
|
2431 |
+
msgstr "O WooCommerce Add-On é requerido para importar produtos"
|
2432 |
+
|
2433 |
+
#: views/admin/import/index.php:316 views/admin/import/index.php:326
|
2434 |
+
#: views/admin/import/index.php:334
|
2435 |
+
#: views/admin/import/options/_settings_template.php:158
|
2436 |
+
#: views/admin/import/options/_settings_template.php:164
|
2437 |
+
#: views/admin/import/options/_settings_template.php:168
|
2438 |
+
msgid "Purchase the WooCommerce Add-On Pro"
|
2439 |
+
msgstr "Comprar o WooCommerce Add-On Pro"
|
2440 |
+
|
2441 |
+
#: views/admin/import/index.php:322
|
2442 |
+
msgid "The Pro version of the WooCommerce Add-On is required to Import Orders, but you have the free version installed"
|
2443 |
+
msgstr "A versão Pro do WooCommerce Add-On é necessária para importar os pedidos, e você tem a versão gratuita instalada"
|
2444 |
+
|
2445 |
+
#: views/admin/import/index.php:324
|
2446 |
+
#: views/admin/import/options/_settings_template.php:163
|
2447 |
+
msgid "The WooCommerce Add-On Pro is Required to Import Orders"
|
2448 |
+
msgstr "O WooCommerce Add-On Pro é requerido para importar pedidos"
|
2449 |
+
|
2450 |
+
#: views/admin/import/index.php:330
|
2451 |
+
msgid "The Pro version of the WooCommerce Add-On is required to Import Coupons, but you have the free version installed"
|
2452 |
+
msgstr "A versão Pro do WooCommerce Add-On é necessária para importar os cupons, e você tem a versão gratuita instalada"
|
2453 |
+
|
2454 |
+
#: views/admin/import/index.php:332
|
2455 |
+
#: views/admin/import/options/_settings_template.php:167
|
2456 |
+
msgid "The WooCommerce Add-On Pro is Required to Import Coupons"
|
2457 |
+
msgstr "O WooCommerce Add-On Pro é requerido para importar cupons"
|
2458 |
+
|
2459 |
+
#: views/admin/import/index.php:340
|
2460 |
+
msgid "In Step 4, you will map the records in your file to the existing items on your site and specify which data points will be updated and which will be left alone."
|
2461 |
+
msgstr "No Etapa 4, você mapeará os registros em seu arquivo para os itens existentes em seu site e especificará quais pontos de dados serão atualizados e quais serão ignorados."
|
2462 |
+
|
2463 |
+
#: views/admin/import/index.php:341
|
2464 |
+
msgid "The Existing Items option is commonly used to update existing products with new stock quantities while leaving all their other data alone, update properties on your site with new pricing, etc."
|
2465 |
+
msgstr "A opção Itens existentes é comumente usada para atualizar produtos existentes com novas quantidades de estoque, deixando todos os seus outros dados ignorados, atualizar propriedades em seu site com novos preços, etc."
|
2466 |
+
|
2467 |
+
#: views/admin/import/index.php:352
|
2468 |
+
#: views/admin/import/options/_import_file.php:36
|
2469 |
+
msgid "File upload rejected by server"
|
2470 |
+
msgstr "Upload de arquivos rejeitado pelo servidor"
|
2471 |
+
|
2472 |
+
#: views/admin/import/index.php:353
|
2473 |
+
#: views/admin/import/options/_import_file.php:37
|
2474 |
+
msgid "Contact your host and have them check your server's error log."
|
2475 |
+
msgstr "Entre em contato com o host e peça que verifiquem o log de erros do servidor."
|
2476 |
+
|
2477 |
+
#: views/admin/import/index.php:367
|
2478 |
+
msgid "Please verify that the file you using is a valid %s file."
|
2479 |
+
msgstr "Verifique se o arquivo usado é um arquivo %s válido."
|
2480 |
+
|
2481 |
+
#: views/admin/import/index.php:382
|
2482 |
+
msgid "Skip to Step 4"
|
2483 |
+
msgstr "Pular para a Etapa 4"
|
2484 |
+
|
2485 |
+
#: views/admin/import/index.php:383
|
2486 |
+
msgid "Continue to Step 2"
|
2487 |
+
msgstr "Continue na Etapa 2"
|
2488 |
+
|
2489 |
+
#: views/admin/import/options.php:119
|
2490 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:22
|
2491 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:89
|
2492 |
+
#: views/admin/import/options/_reimport_template.php:14
|
2493 |
+
#: views/admin/import/options/_reimport_template.php:81
|
2494 |
+
msgid "Record Matching"
|
2495 |
+
msgstr "Correspondência de Registros"
|
2496 |
+
|
2497 |
+
#: views/admin/import/options.php:122
|
2498 |
+
msgid "Record Matching is how WP All Import matches records in your file with posts that already exist WordPress."
|
2499 |
+
msgstr "Correspondência de Registros é como o WP All Import corresponde a registros em seu arquivo com posts que já existem no WordPress."
|
2500 |
+
|
2501 |
+
#: views/admin/import/options.php:126
|
2502 |
+
msgid "Record Matching is most commonly used to tell WP All Import how to match up records in your file with posts WP All Import has already created on your site, so that if your file is updated with new data, WP All Import can update your posts accordingly."
|
2503 |
+
msgstr "A correspondência de registros é mais comumente usada para dizer o WP All Import como comparar registros em seu arquivo com posts que o WP All Import já criou em seu site, de modo que se o arquivo for atualizado com novos dados, o WP All Import pode atualizar suas postagens em conformidade."
|
2504 |
+
|
2505 |
+
#: views/admin/import/options.php:131
|
2506 |
+
msgid "AUTOMATIC RECORD MATCHING"
|
2507 |
+
msgstr "CORRESPONDÊNCIA DE REGISTROS AUTOMÁTICA"
|
2508 |
+
|
2509 |
+
#: views/admin/import/options.php:134
|
2510 |
+
msgid "Automatic Record Matching allows WP All Import to update records that were imported or updated during the last run of this same import."
|
2511 |
+
msgstr "A Correspondência Automática permite que o WP All Import atualize registros que foram importados ou atualizados durante a última execução dessa mesma importação."
|
2512 |
+
|
2513 |
+
#: views/admin/import/options.php:138
|
2514 |
+
msgid "Your unique key must be UNIQUE for each record in your feed. Make sure you get it right - you can't change it later. You'll have to re-create your import."
|
2515 |
+
msgstr "Sua chave exclusiva deve ser ÚNICA para cada registro em seu feed. Certifique-se de obtê-lo direito - você não pode alterá-lo mais tarde. Você terá que recriar sua importação."
|
2516 |
+
|
2517 |
+
#: views/admin/import/options.php:143
|
2518 |
+
msgid "MANUAL RECORD MATCHING"
|
2519 |
+
msgstr "CORRESPONDÊNCIA DE REGISTROS MANUAL"
|
2520 |
+
|
2521 |
+
#: views/admin/import/options.php:146
|
2522 |
+
msgid "Manual record matching allows WP All Import to update any records, even records that were not imported with WP All Import, or are part of a different import."
|
2523 |
+
msgstr "A correspondência manual de registros permite que o WP All Import atualize todos os registros, mesmo os registros que não foram importados com o WP All Import, ou fazem parte de uma importação diferente."
|
2524 |
+
|
2525 |
+
#: views/admin/import/options/_buttons_template.php:2
|
2526 |
+
msgid "To run the import, click Run Import on the Manage Imports page."
|
2527 |
+
msgstr "Para executar a importação, clique em Executar Importação na página Gerenciar Importações."
|
2528 |
+
|
2529 |
+
#: views/admin/import/options/_buttons_template.php:11
|
2530 |
+
msgid "Back to Step 3"
|
2531 |
+
msgstr "Volte para a Etapa 3"
|
2532 |
+
|
2533 |
+
#: views/admin/import/options/_buttons_template.php:15
|
2534 |
+
msgid "Save Only"
|
2535 |
+
msgstr "Salvar Somente"
|
2536 |
+
|
2537 |
+
#: views/admin/import/options/_buttons_template.php:18
|
2538 |
+
msgid "Continue"
|
2539 |
+
msgstr "Continue"
|
2540 |
+
|
2541 |
+
#: views/admin/import/options/_buttons_template.php:21
|
2542 |
+
#: views/admin/import/template.php:227
|
2543 |
+
msgid "Back to Manage Imports"
|
2544 |
+
msgstr "Voltar para Gerenciar Importações"
|
2545 |
+
|
2546 |
+
#: views/admin/import/options/_buttons_template.php:22
|
2547 |
+
msgid "Save Import Configuration"
|
2548 |
+
msgstr "Salvar Configurações de Importação"
|
2549 |
+
|
2550 |
+
#: views/admin/import/options/_import_file.php:62
|
2551 |
+
msgid "Import File"
|
2552 |
+
msgstr "Importar Arquivo"
|
2553 |
+
|
2554 |
+
#: views/admin/import/options/_import_file.php:71
|
2555 |
+
msgid "Specify the location of the file to use for future runs of this import."
|
2556 |
+
msgstr "Especifique o local do arquivo a ser usado para execuções futuras dessa importação."
|
2557 |
+
|
2558 |
+
#: views/admin/import/options/_import_file.php:94
|
2559 |
+
msgid "<span>Upload Complete</span> - "
|
2560 |
+
msgstr "<span>Upload Completo</span> - "
|
2561 |
+
|
2562 |
+
#: views/admin/import/options/_import_file.php:106
|
2563 |
+
msgid "Upload"
|
2564 |
+
msgstr "Upload"
|
2565 |
+
|
2566 |
+
#: views/admin/import/options/_reimport_options.php:2
|
2567 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:11
|
2568 |
+
msgid "When WP All Import finds new or changed data..."
|
2569 |
+
msgstr "Quando o WP All Import localiza dados novos ou alterados..."
|
2570 |
+
|
2571 |
+
#: views/admin/import/options/_reimport_options.php:4
|
2572 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:13
|
2573 |
+
msgid "If this import is run again and WP All Import finds new or changed data..."
|
2574 |
+
msgstr "Se essa importação for executada novamente e o WP All Import localizar dados novos ou alterados ..."
|
2575 |
+
|
2576 |
+
#: views/admin/import/options/_reimport_options.php:9
|
2577 |
+
msgid "Create new posts from records newly present in your file"
|
2578 |
+
msgstr "Criar novas postagens de registros recém-presentes em seu arquivo"
|
2579 |
+
|
2580 |
+
#: views/admin/import/options/_reimport_options.php:11
|
2581 |
+
msgid "New posts will only be created when ID column is present and value in ID column is unique."
|
2582 |
+
msgstr "As novas mensagens só serão criadas quando a coluna ID estiver presente e se o valor na coluna ID for exclusivo."
|
2583 |
+
|
2584 |
+
#: views/admin/import/options/_reimport_options.php:18
|
2585 |
+
msgid "Delete posts that are no longer present in your file"
|
2586 |
+
msgstr "Excluir mensagens que não estão mais presentes em seu arquivo"
|
2587 |
+
|
2588 |
+
#: views/admin/import/options/_reimport_options.php:20
|
2589 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:29
|
2590 |
+
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."
|
2591 |
+
msgstr "Os registros removidos do arquivo de importação só podem ser excluídos ao importar para novos itens. Esse recurso não pode ser ativado ao importar itens existentes."
|
2592 |
+
|
2593 |
+
#: views/admin/import/options/_reimport_options.php:27
|
2594 |
+
msgid "Do not remove attachments"
|
2595 |
+
msgstr "Não remova anexos"
|
2596 |
+
|
2597 |
+
#: views/admin/import/options/_reimport_options.php:32
|
2598 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:36
|
2599 |
+
msgid "Do not remove images"
|
2600 |
+
msgstr "Não remova imagens"
|
2601 |
+
|
2602 |
+
#: views/admin/import/options/_reimport_options.php:37
|
2603 |
+
msgid "Instead of deletion, set Custom Field"
|
2604 |
+
msgstr "Em vez de excluir, defina o campo personalizado"
|
2605 |
+
|
2606 |
+
#: views/admin/import/options/_reimport_options.php:40
|
2607 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:44
|
2608 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:73
|
2609 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:106
|
2610 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:123
|
2611 |
+
#: views/admin/import/options/_reimport_template.php:105
|
2612 |
+
#: views/admin/import/template/_custom_fields_template.php:51
|
2613 |
+
#: views/admin/import/template/_term_meta_template.php:51
|
2614 |
+
msgid "Name"
|
2615 |
+
msgstr "Nome"
|
2616 |
+
|
2617 |
+
#: views/admin/import/options/_reimport_options.php:50
|
2618 |
+
msgid "Instead of deletion, change post status to Draft"
|
2619 |
+
msgstr "Em vez de excluir, altere o status do post para Rascunho"
|
2620 |
+
|
2621 |
+
#: views/admin/import/options/_reimport_options.php:57
|
2622 |
+
msgid "Update existing posts with changed data in your file"
|
2623 |
+
msgstr "Atualizar postagens existentes com dados alterados em seu arquivo"
|
2624 |
+
|
2625 |
+
#: views/admin/import/options/_reimport_options.php:59
|
2626 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:58
|
2627 |
+
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."
|
2628 |
+
msgstr "Essas opções só serão usadas se você executar essa importação novamente mais tarde. Todos os dados são importados na primeira vez que você executa uma importação."
|
2629 |
+
|
2630 |
+
#: views/admin/import/options/_reimport_options.php:63
|
2631 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:62
|
2632 |
+
msgid "Update all data"
|
2633 |
+
msgstr "Atualizar todos os dados"
|
2634 |
+
|
2635 |
+
#: views/admin/import/options/_reimport_options.php:66
|
2636 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:65
|
2637 |
+
msgid "Choose which data to update"
|
2638 |
+
msgstr "Escolha quais dados a atualizar"
|
2639 |
+
|
2640 |
+
#: views/admin/import/options/_reimport_options.php:69
|
2641 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:68
|
2642 |
+
msgid "Unselect All"
|
2643 |
+
msgstr "Desmarque Todos"
|
2644 |
+
|
2645 |
+
#: views/admin/import/options/_reimport_options.php:69
|
2646 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:68
|
2647 |
+
msgid "Select All"
|
2648 |
+
msgstr "Marcar Todos"
|
2649 |
+
|
2650 |
+
#: views/admin/import/options/_reimport_options.php:74
|
2651 |
+
msgid "Post status"
|
2652 |
+
msgstr "Status do Post"
|
2653 |
+
|
2654 |
+
#: views/admin/import/options/_reimport_options.php:75
|
2655 |
+
msgid "Hint: uncheck this box to keep trashed posts in the trash."
|
2656 |
+
msgstr "Dica: desmarque esta caixa para manter postagens na lixeira."
|
2657 |
+
|
2658 |
+
#: views/admin/import/options/_reimport_options.php:80
|
2659 |
+
#: views/admin/import/options/_reimport_template.php:98
|
2660 |
+
msgid "Title"
|
2661 |
+
msgstr "Título"
|
2662 |
+
|
2663 |
+
#: views/admin/import/options/_reimport_options.php:85
|
2664 |
+
msgid "Author"
|
2665 |
+
msgstr "Autor"
|
2666 |
+
|
2667 |
+
#: views/admin/import/options/_reimport_options.php:90
|
2668 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:78
|
2669 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:113
|
2670 |
+
#: views/admin/import/template/_other_template.php:290
|
2671 |
+
msgid "Slug"
|
2672 |
+
msgstr "Slug"
|
2673 |
+
|
2674 |
+
#: views/admin/import/options/_reimport_options.php:95
|
2675 |
+
#: views/admin/import/options/_reimport_template.php:100
|
2676 |
+
msgid "Content"
|
2677 |
+
msgstr "Conteúdo"
|
2678 |
+
|
2679 |
+
#: views/admin/import/options/_reimport_options.php:100
|
2680 |
+
msgid "Excerpt/Short Description"
|
2681 |
+
msgstr "Resumo/Breve Descrição"
|
2682 |
+
|
2683 |
+
#: views/admin/import/options/_reimport_options.php:105
|
2684 |
+
msgid "Dates"
|
2685 |
+
msgstr "Datas"
|
2686 |
+
|
2687 |
+
#: views/admin/import/options/_reimport_options.php:110
|
2688 |
+
msgid "Menu order"
|
2689 |
+
msgstr "Menu Pedidos"
|
2690 |
+
|
2691 |
+
#: views/admin/import/options/_reimport_options.php:115
|
2692 |
+
msgid "Parent post"
|
2693 |
+
msgstr "Post Pai"
|
2694 |
+
|
2695 |
+
#: views/admin/import/options/_reimport_options.php:120
|
2696 |
+
msgid "Post type"
|
2697 |
+
msgstr "Tipo de Post"
|
2698 |
+
|
2699 |
+
#: views/admin/import/options/_reimport_options.php:125
|
2700 |
+
msgid "Comment status"
|
2701 |
+
msgstr "Status de comentário"
|
2702 |
+
|
2703 |
+
#: views/admin/import/options/_reimport_options.php:130
|
2704 |
+
msgid "Attachments"
|
2705 |
+
msgstr "Anexos"
|
2706 |
+
|
2707 |
+
#: views/admin/import/options/_reimport_options.php:144
|
2708 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:107
|
2709 |
+
msgid "This will keep the featured image if it exists, so you could modify the post image manually, and then do a reimport, and it would not overwrite the manually modified post image."
|
2710 |
+
msgstr "Isso manterá a imagem em destacada se ela existir, portanto, você poderia modificar a imagem manualmente e, em seguida, fazer uma reimportação não substituiria a imagem destacada manualmente modificada."
|
2711 |
+
|
2712 |
+
#: views/admin/import/options/_reimport_options.php:148
|
2713 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:111
|
2714 |
+
msgid "Update all images"
|
2715 |
+
msgstr "Atualizar todas as imagens"
|
2716 |
+
|
2717 |
+
#: views/admin/import/options/_reimport_options.php:154
|
2718 |
+
msgid "Don't touch existing images, append new images"
|
2719 |
+
msgstr "Não altere as imagens existentes, anexe novas imagens"
|
2720 |
+
|
2721 |
+
#: views/admin/import/options/_reimport_options.php:163
|
2722 |
+
#: views/admin/import/template/_custom_fields_template.php:17
|
2723 |
+
msgid "Custom Fields"
|
2724 |
+
msgstr "Campos Personalizados"
|
2725 |
+
|
2726 |
+
#: views/admin/import/options/_reimport_options.php:164
|
2727 |
+
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."
|
2728 |
+
msgstr "Se manter a caixa campos personalizados marcada, ele irá manter todos os campos personalizados, e adicionar os novos campos personalizados especificados na seção Campos Personalizados, contanto que eles não vão substituir os campos existentes. Se 'Apenas manter os campos personalizados' for especificado, ele só manterá os campos especificados."
|
2729 |
+
|
2730 |
+
#: views/admin/import/options/_reimport_options.php:168
|
2731 |
+
msgid "Update all Custom Fields"
|
2732 |
+
msgstr "Atualizar todos os Campos Personalizados"
|
2733 |
+
|
2734 |
+
#: views/admin/import/options/_reimport_options.php:172
|
2735 |
+
msgid "Update only these Custom Fields, leave the rest alone"
|
2736 |
+
msgstr "Atualizar apenas estes Campos Personalizados"
|
2737 |
+
|
2738 |
+
#: views/admin/import/options/_reimport_options.php:180
|
2739 |
+
msgid "Leave these fields alone, update all other Custom Fields"
|
2740 |
+
msgstr "Deixe esses campos sem atualizar, atualize todos os outros campos personalizados"
|
2741 |
+
|
2742 |
+
#: views/admin/import/options/_reimport_options.php:192
|
2743 |
+
msgid "Taxonomies (incl. Categories and Tags)"
|
2744 |
+
msgstr "Taxonomias (incluindo Categorias e Tags)"
|
2745 |
+
|
2746 |
+
#: views/admin/import/options/_reimport_options.php:206
|
2747 |
+
msgid "Leave these taxonomies alone, update all others"
|
2748 |
+
msgstr "Não atualize estas taxonomias, atualize todas as outras"
|
2749 |
+
|
2750 |
+
#: views/admin/import/options/_reimport_options.php:214
|
2751 |
+
msgid "Update only these taxonomies, leave the rest alone"
|
2752 |
+
msgstr "Atualize apenas essas taxonomias, deixe o resto separado"
|
2753 |
+
|
2754 |
+
#: views/admin/import/options/_reimport_options.php:222
|
2755 |
+
msgid "Remove existing taxonomies, add new taxonomies"
|
2756 |
+
msgstr "Remover taxonomias existentes, adicionar novas taxonomias"
|
2757 |
+
|
2758 |
+
#: views/admin/import/options/_reimport_options.php:226
|
2759 |
+
msgid "Only add new"
|
2760 |
+
msgstr "Adicionar apenas novo"
|
2761 |
+
|
2762 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:18
|
2763 |
+
msgid "Create new %s from records newly present in your file"
|
2764 |
+
msgstr "Criar novo %s a partir de registros recém-presentes em seu arquivo"
|
2765 |
+
|
2766 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:20
|
2767 |
+
msgid "New %s will only be created when ID column is present and value in ID column is unique."
|
2768 |
+
msgstr "Novo %s será criado somente quando a coluna ID estiver presente e o valor na coluna ID for único."
|
2769 |
+
|
2770 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:27
|
2771 |
+
msgid "Delete %s that are no longer present in your file"
|
2772 |
+
msgstr "Excluir %s que não estão mais presentes em seu arquivo"
|
2773 |
+
|
2774 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:41
|
2775 |
+
msgid "Instead of deletion, set Term Meta"
|
2776 |
+
msgstr "Em vez de exclusão, defina o termo Meta"
|
2777 |
+
|
2778 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:56
|
2779 |
+
msgid "Update existing %s with changed data in your file"
|
2780 |
+
msgstr "Atualizar %s existente com dados alterados em seu arquivo"
|
2781 |
+
|
2782 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:83
|
2783 |
+
msgid "Description"
|
2784 |
+
msgstr "Descrição"
|
2785 |
+
|
2786 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:93
|
2787 |
+
#: views/admin/import/template/_term_other_template.php:23
|
2788 |
+
msgid "Parent term"
|
2789 |
+
msgstr "Termo Pai"
|
2790 |
+
|
2791 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:119
|
2792 |
+
#: views/admin/import/template/_term_meta_template.php:17
|
2793 |
+
msgid "Term Meta"
|
2794 |
+
msgstr "Termo Meta"
|
2795 |
+
|
2796 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:120
|
2797 |
+
msgid "If Keep Term Meta box is checked, it will keep all Term Meta, and add any new Term Meta specified in Term Meta section, as long as they do not overwrite existing fields. If 'Only keep this Term Meta' is specified, it will only keep the specified fields."
|
2798 |
+
msgstr "Se a caixa Manter termo de meta estiver marcada, ela manterá todos os termos Meta e adicione qualquer novo termo Meta especificado na seção Meta de termo, desde que não substituam campos existentes. Se a opção 'Apenas manter este termo meta' for especificada, ela manterá apenas os campos especificados."
|
2799 |
+
|
2800 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:124
|
2801 |
+
msgid "Update all Term Meta"
|
2802 |
+
msgstr "Atualizar todos os Termos Meta"
|
2803 |
+
|
2804 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:128
|
2805 |
+
msgid "Update only these Term Meta, leave the rest alone"
|
2806 |
+
msgstr "Atualize apenas estes termos Meta, deixe o resto separado"
|
2807 |
+
|
2808 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:136
|
2809 |
+
msgid "Leave these fields alone, update all other Term Meta"
|
2810 |
+
msgstr "Deixe esses campos separado, atualize todos os outros termos Meta"
|
2811 |
+
|
2812 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:30
|
2813 |
+
#: views/admin/import/options/_reimport_template.php:22
|
2814 |
+
msgid "Choose how exported data will be re-imported."
|
2815 |
+
msgstr "Escolha como os dados exportados serão reimportados."
|
2816 |
+
|
2817 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:36
|
2818 |
+
#: views/admin/import/options/_reimport_template.php:28
|
2819 |
+
msgid "WP All Import will create new %s for each unique record in your file."
|
2820 |
+
msgstr "WP All Import criará novos %s para cada registro único em seu arquivo."
|
2821 |
+
|
2822 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:49
|
2823 |
+
#: views/admin/import/options/_reimport_template.php:41
|
2824 |
+
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."
|
2825 |
+
msgstr "WP All Import associará registros em seu arquivo com %s que já criou a partir de execuções anteriores dessa importação com base no Identificador Único."
|
2826 |
+
|
2827 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:52
|
2828 |
+
#: views/admin/import/options/_reimport_template.php:44
|
2829 |
+
msgid "Unique Identifier"
|
2830 |
+
msgstr "Identificador Único"
|
2831 |
+
|
2832 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:58
|
2833 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:69
|
2834 |
+
#: views/admin/import/options/_reimport_template.php:50
|
2835 |
+
#: views/admin/import/options/_reimport_template.php:61
|
2836 |
+
msgid "Auto-detect"
|
2837 |
+
msgstr "Detecção automática"
|
2838 |
+
|
2839 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:61
|
2840 |
+
#: views/admin/import/options/_reimport_template.php:53
|
2841 |
+
#: views/admin/manage/index.php:327
|
2842 |
+
msgid "Edit"
|
2843 |
+
msgstr "Editar"
|
2844 |
+
|
2845 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:62
|
2846 |
+
#: views/admin/import/options/_reimport_template.php:54
|
2847 |
+
msgid "Warning: Are you sure you want to edit the Unique Identifier?"
|
2848 |
+
msgstr "Aviso: Tem certeza de que deseja editar o Identificador Único?"
|
2849 |
+
|
2850 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:63
|
2851 |
+
#: views/admin/import/options/_reimport_template.php:55
|
2852 |
+
msgid "It is recommended you delete all %s associated with this import before editing the unique identifier."
|
2853 |
+
msgstr "É recomendado que você exclua todos os %s associados a essa importação antes de editar o Identificador Único."
|
2854 |
+
|
2855 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:64
|
2856 |
+
#: views/admin/import/options/_reimport_template.php:56
|
2857 |
+
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."
|
2858 |
+
msgstr "A edição do Identificador Único dissociará todos os %s existentes ligados a essa importação. Futuras execuções da importação resultarão em duplicatas, já que WP All Import não poderá mais atualizar esses %s."
|
2859 |
+
|
2860 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:65
|
2861 |
+
#: views/admin/import/options/_reimport_template.php:57
|
2862 |
+
msgid "You really should just re-create your import, and pick the right unique identifier to start with."
|
2863 |
+
msgstr "Você realmente deve apenas recriar sua importação, e escolher o Identificador Único certo para começar."
|
2864 |
+
|
2865 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:75
|
2866 |
+
#: views/admin/import/options/_reimport_template.php:67
|
2867 |
+
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."
|
2868 |
+
msgstr "Arraste um elemento ou combinação de elementos para a caixa acima. O Identificador Único deve ser exclusivo para cada registro em seu arquivo e deve permanecer o mesmo se o arquivo é atualizado. Coisas como IDs de produto, títulos e SKUs são identificadores únicos bons porque eles provavelmente não mudarão. Não use uma descrição ou preço, pois isso pode ser alterado."
|
2869 |
+
|
2870 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:76
|
2871 |
+
#: views/admin/import/options/_reimport_template.php:68
|
2872 |
+
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."
|
2873 |
+
msgstr "Se você executar essa importação novamente com um arquivo atualizado, o Identificador Único permite que WP All Import ligue corretamente os registros em seu arquivo atualizado com o %s que ele criará agora. Se vários registros neste arquivo tiverem o mesmo Identificador Único, somente o primeiro será criado. Os outros serão detectados como duplicatas."
|
2874 |
+
|
2875 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:91
|
2876 |
+
#: views/admin/import/options/_reimport_template.php:83
|
2877 |
+
msgid "WP All Import will merge data into existing %s."
|
2878 |
+
msgstr "WP All Import irá mesclar dados em %s existente."
|
2879 |
+
|
2880 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:101
|
2881 |
+
msgid "Records in your file will be matched with %s on your site based on..."
|
2882 |
+
msgstr "Os registros em seu arquivo serão correspondidos com %s em seu site com base em..."
|
2883 |
+
|
2884 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:120
|
2885 |
+
#: views/admin/import/options/_reimport_template.php:103
|
2886 |
+
msgid "Custom field"
|
2887 |
+
msgstr "Campo personalizado"
|
2888 |
+
|
2889 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:130
|
2890 |
+
msgid "Term ID"
|
2891 |
+
msgstr "Termo ID"
|
2892 |
+
|
2893 |
+
#: views/admin/import/options/_reimport_template.php:93
|
2894 |
+
msgid "Records in your file will be matched with %ss on your site based on..."
|
2895 |
+
msgstr "Os registros em seu arquivo serão combinados com %ss em seu site baseado em..."
|
2896 |
+
|
2897 |
+
#: views/admin/import/options/_reimport_template.php:113
|
2898 |
+
msgid "Post ID"
|
2899 |
+
msgstr "Post ID"
|
2900 |
+
|
2901 |
+
#: views/admin/import/options/_settings_template.php:4
|
2902 |
+
msgid "Configure Advanced Settings"
|
2903 |
+
msgstr "Configurar Definições Avançadas"
|
2904 |
+
|
2905 |
+
#: views/admin/import/options/_settings_template.php:11
|
2906 |
+
msgid "Import Speed Optimization"
|
2907 |
+
msgstr "Importar com otimização da velocidade"
|
2908 |
+
|
2909 |
+
#: views/admin/import/options/_settings_template.php:15
|
2910 |
+
msgid "High Speed Small File Processing"
|
2911 |
+
msgstr "Processamento de Arquivos Pequenos de Alta Velocidade"
|
2912 |
+
|
2913 |
+
#: views/admin/import/options/_settings_template.php:15
|
2914 |
+
msgid "If the import takes longer than your server's timeout settings (max_execution_time, mod_fcgid read data timeout, etc.) it will fail."
|
2915 |
+
msgstr "Se a importação demorar mais do que as configurações de tempo limite do servidor (max_execution_time, mod_fcgid read data timeout, etc.) ele falhará."
|
2916 |
+
|
2917 |
+
#: views/admin/import/options/_settings_template.php:19
|
2918 |
+
msgid "Iterative, Piece-by-Piece Processing"
|
2919 |
+
msgstr "Processamento frequente, Piece-by-Piece "
|
2920 |
+
|
2921 |
+
#: views/admin/import/options/_settings_template.php:23
|
2922 |
+
msgid "In each iteration, process"
|
2923 |
+
msgstr "Processar em cada iteração"
|
2924 |
+
|
2925 |
+
#: views/admin/import/options/_settings_template.php:23
|
2926 |
+
#: views/admin/import/process.php:31
|
2927 |
+
msgid "records"
|
2928 |
+
msgstr "registros"
|
2929 |
+
|
2930 |
+
#: views/admin/import/options/_settings_template.php:24
|
2931 |
+
msgid "WP All Import must be able to process this many records in less than your server's timeout settings. If your import fails before completion, to troubleshoot you should lower this number. If you are importing images, especially high resolution images, high numbers here are probably a bad idea, since downloading the images can take lots of time - for example, 20 posts with 5 images each = 100 images. At 500Kb per image that's 50Mb that needs to be downloaded. Can your server download that before timing out? If not, the import will fail."
|
2932 |
+
msgstr "WP All Import deve ser capaz de processar muitos registros em menos tempo do limite do servidor. Se a importação falhar antes da conclusão, para solucionar problemas, você deve diminuir esse número. Se você está importando imagens, especialmente imagens de alta resolução, números altos aqui são provavelmente uma má ideia, uma vez que o download das imagens pode levar muito tempo - por exemplo, 20 posts com 5 imagens cada = 100 imagens. Em 500Kb por imagem que é 50Mb que precisa ser baixado. O download do seu servidor pode ser feito antes do tempo limite? Caso contrário, a importação falhará."
|
2933 |
+
|
2934 |
+
#: views/admin/import/options/_settings_template.php:29
|
2935 |
+
msgid "Split file up into <strong>"
|
2936 |
+
msgstr "Divida o arquivo em <strong>"
|
2937 |
+
|
2938 |
+
#: views/admin/import/options/_settings_template.php:30
|
2939 |
+
msgid "This option will decrease the amount of slowdown experienced at the end of large imports. The slowdown is partially caused by the need for WP All Import to read deeper and deeper into the file on each successive iteration. Splitting the file into pieces means that, for example, instead of having to read 19000 records into a 20000 record file when importing the last 1000 records, WP All Import will just split it into 20 chunks, and then read the last chunk from the beginning."
|
2940 |
+
msgstr "Esta opção irá diminuir a quantidade de desaceleração experimentada no final de grandes importações. A desaceleração é parcialmente causada pela necessidade de WP All Import ler mais e mais no arquivo em cada iteração sucessiva. Dividir o arquivo em pedaços significa que, por exemplo, em vez de ter que ler 19000 registros em um arquivo de registro 20000 ao importar os últimos 1000 registros, WP All Import apenas dividi-lo em 20 pedaços e, em seguida, ler o último pedaço do início ."
|
2941 |
+
|
2942 |
+
#: views/admin/import/options/_settings_template.php:37
|
2943 |
+
msgid "Increase speed by disabling do_action calls in wp_insert_post during import."
|
2944 |
+
msgstr "Aumente a velocidade desativando as chamadas do_action em wp_insert_post durante a importação."
|
2945 |
+
|
2946 |
+
#: views/admin/import/options/_settings_template.php:38
|
2947 |
+
msgid "This option is for advanced users with knowledge of WordPress development. Your theme or plugins may require these calls when posts are created. Next action will be disabled: 'transition_post_status', 'save_post', 'pre_post_update', 'add_attachment', 'edit_attachment', 'edit_post', 'post_updated', 'wp_insert_post'. Verify your created posts work properly if you check this box."
|
2948 |
+
msgstr "Esta opção é para usuários avançados com conhecimento do desenvolvimento do WordPress. Seu tema ou plugins podem exigir essas chamadas quando as postagens são criadas. A próxima ação será desativada: 'transition_post_status', 'save_post', 'pre_post_update', 'add_attachment', 'edit_attachment', 'edit_post', 'post_updated', 'wp_insert_post'. Verifique se as mensagens criadas funcionam corretamente se marcar esta caixa."
|
2949 |
+
|
2950 |
+
#: views/admin/import/options/_settings_template.php:43
|
2951 |
+
msgid "Taxonomy Type"
|
2952 |
+
msgstr "Tipo de Taxonomia"
|
2953 |
+
|
2954 |
+
#: views/admin/import/options/_settings_template.php:44
|
2955 |
+
msgid "Editing this will change the taxonomy type of the taxonomies processed by this import. Re-run the import for the changes to take effect."
|
2956 |
+
msgstr "Editar isto irá alterar o tipo de taxonomia das taxonomias processadas para esta importação. Execute novamente a importação para que as alterações entrem em vigor."
|
2957 |
+
|
2958 |
+
#: views/admin/import/options/_settings_template.php:46
|
2959 |
+
msgid "Post Type"
|
2960 |
+
msgstr "Tipo de Post"
|
2961 |
+
|
2962 |
+
#: views/admin/import/options/_settings_template.php:47
|
2963 |
+
msgid "Editing this will change the post type of the posts processed by this import. Re-run the import for the changes to take effect."
|
2964 |
+
msgstr "Editar isso alterará o tipo de postagem das mensagens processadas para essa importação. Execute novamente a importação para que as alterações entrem em vigor."
|
2965 |
+
|
2966 |
+
#: views/admin/import/options/_settings_template.php:175
|
2967 |
+
msgid "Editing this can break your entire import. You will have to re-create it from scratch."
|
2968 |
+
msgstr "Editar isso pode quebrar toda a importação. Você terá que recriá-lo do zero."
|
2969 |
+
|
2970 |
+
#: views/admin/import/options/_settings_template.php:180
|
2971 |
+
msgid "Downloads"
|
2972 |
+
msgstr "Downloads"
|
2973 |
+
|
2974 |
+
#: views/admin/import/options/_settings_template.php:183
|
2975 |
+
msgid "Import Template"
|
2976 |
+
msgstr "Importar Modelo"
|
2977 |
+
|
2978 |
+
#: views/admin/import/options/_settings_template.php:184
|
2979 |
+
msgid "Import Bundle"
|
2980 |
+
msgstr "Importar Pacote"
|
2981 |
+
|
2982 |
+
#: views/admin/import/options/_settings_template.php:187
|
2983 |
+
msgid "Other"
|
2984 |
+
msgstr "Outro"
|
2985 |
+
|
2986 |
+
#: views/admin/import/options/_settings_template.php:191
|
2987 |
+
msgid "Import only specified records"
|
2988 |
+
msgstr "Importar somente registros específicos"
|
2989 |
+
|
2990 |
+
#: views/admin/import/options/_settings_template.php:191
|
2991 |
+
msgid "Enter records or record ranges separated by commas, e.g. <b>1,5,7-10</b> would import the first, the fifth, and the seventh to tenth."
|
2992 |
+
msgstr "Insira registros ou intervalos de gravação separados por vírgulas, ex.: <b>1,5,7-10 </b> importaria o primeiro, o quinto e do sétimo ao décimo."
|
2993 |
+
|
2994 |
+
#: views/admin/import/options/_settings_template.php:202
|
2995 |
+
msgid "Delete source XML file after importing"
|
2996 |
+
msgstr "Excluir arquivo XML de origem após a importação"
|
2997 |
+
|
2998 |
+
#: views/admin/import/options/_settings_template.php:202
|
2999 |
+
msgid "This setting takes effect only when script has access rights to perform the action, e.g. file is not deleted when pulled via HTTP or delete permission is not granted to the user that script is executed under."
|
3000 |
+
msgstr "Essa configuração só terá efeito quando o script tiver direitos de acesso para executar a ação, ex.: Arquivo não é excluído quando puxado via HTTP ou a permissão de exclusão não é concedida ao usuário em que o script é executado."
|
3001 |
+
|
3002 |
+
#: views/admin/import/options/_settings_template.php:209
|
3003 |
+
msgid "Auto-Cloak Links"
|
3004 |
+
msgstr "Auto-Cloak Links"
|
3005 |
+
|
3006 |
+
#: views/admin/import/options/_settings_template.php:209
|
3007 |
+
msgid "Automatically process all links present in body of created post or page with <b>%s</b> plugin"
|
3008 |
+
msgstr "Processar automaticamente todos os links presentes no corpo da postagem ou página criada com o plugin <b>%s</b>"
|
3009 |
+
|
3010 |
+
#: views/admin/import/options/_settings_template.php:217
|
3011 |
+
#: views/admin/import/options/_settings_template.php:220
|
3012 |
+
msgid "Use StreamReader instead of XMLReader to parse import file"
|
3013 |
+
msgstr "Use StreamReader em vez de XMLReader para analisar o arquivo de importação"
|
3014 |
+
|
3015 |
+
#: views/admin/import/options/_settings_template.php:217
|
3016 |
+
msgid "WP All Import is being forced to use Stream Reader for all imports. Go to WP All Import ▸ Settings to modify this setting."
|
3017 |
+
msgstr "WP All Import está sendo forçado a usar o Stream Reader para todas as importações. Vá para WP All Import ▸ Configurações para modificar."
|
3018 |
+
|
3019 |
+
#: views/admin/import/options/_settings_template.php:220
|
3020 |
+
#: views/admin/settings/index.php:188
|
3021 |
+
msgid "XMLReader is much faster, but has a bug that sometimes prevents certain records from being imported with import files that contain special cases."
|
3022 |
+
msgstr "XMLReader é muito mais rápido, mas tem um bug que às vezes impede que certos registros sejam importados com arquivos de importação que contêm casos especiais."
|
3023 |
+
|
3024 |
+
#: views/admin/import/options/_settings_template.php:225
|
3025 |
+
msgid "Friendly Name"
|
3026 |
+
msgstr "Nome amigável"
|
3027 |
+
|
3028 |
+
#: views/admin/import/preview.php:6 views/admin/import/preview_images.php:6
|
3029 |
+
#: views/admin/import/preview_prices.php:6
|
3030 |
+
#: views/admin/import/preview_taxonomies.php:6 views/admin/import/tag.php:8
|
3031 |
+
msgid "<strong><input type=\"text\" value=\"%s\" name=\"tagno\" class=\"tagno\"/></strong><span class=\"out_of\"> of <strong class=\"pmxi_count\">%s</strong></span>"
|
3032 |
+
msgstr "<strong><input type=\"text\" value=\"%s\" name=\"tagno\" class=\"tagno\"/></strong><span class=\"out_of\"> do <strong class=\"pmxi_count\">%s</strong></span>"
|
3033 |
+
|
3034 |
+
#: views/admin/import/preview_images.php:17
|
3035 |
+
msgid "Test Images"
|
3036 |
+
msgstr "Testar Imagens"
|
3037 |
+
|
3038 |
+
#: views/admin/import/preview_images.php:24
|
3039 |
+
msgid "Click to test that your images are able to be accessed by WP All Import."
|
3040 |
+
msgstr "Clique para testar se as suas imagens podem ser acessadas pelo WP All Import."
|
3041 |
+
|
3042 |
+
#: views/admin/import/preview_images.php:26
|
3043 |
+
msgid "Run Test"
|
3044 |
+
msgstr "Executar Teste"
|
3045 |
+
|
3046 |
+
#: views/admin/import/preview_images.php:60
|
3047 |
+
msgid "Retrieving images..."
|
3048 |
+
msgstr "Recuperando imagens..."
|
3049 |
+
|
3050 |
+
#: views/admin/import/preview_images.php:64
|
3051 |
+
msgid "WP All Import will import images from the following file paths:"
|
3052 |
+
msgstr "WP All Import importará imagens dos seguintes caminhos de arquivo:"
|
3053 |
+
|
3054 |
+
#: views/admin/import/preview_images.php:65
|
3055 |
+
msgid "Please ensure the images exists at these file paths"
|
3056 |
+
msgstr "Certifique-se de que as imagens existem nesses caminhos de arquivo"
|
3057 |
+
|
3058 |
+
#: views/admin/import/preview_images.php:73
|
3059 |
+
#: views/admin/import/preview_images.php:115
|
3060 |
+
#: views/admin/import/preview_images.php:154
|
3061 |
+
msgid "Here are the above URLs, in <img> tags. "
|
3062 |
+
msgstr "Aqui estão os URLs acima, em <img> tags. "
|
3063 |
+
|
3064 |
+
#: views/admin/import/preview_images.php:92
|
3065 |
+
msgid "Searching images..."
|
3066 |
+
msgstr "Pesquisando imagens..."
|
3067 |
+
|
3068 |
+
#: views/admin/import/preview_images.php:96
|
3069 |
+
msgid "WP All Import will import images from the media library"
|
3070 |
+
msgstr "WP All Import importará imagens da biblioteca de mídia"
|
3071 |
+
|
3072 |
+
#: views/admin/import/preview_images.php:97
|
3073 |
+
msgid "Please ensure the images exists at media library"
|
3074 |
+
msgstr "Verifique se as imagens existem na biblioteca de mídia"
|
3075 |
+
|
3076 |
+
#: views/admin/import/preview_images.php:141
|
3077 |
+
msgid "Download in progress..."
|
3078 |
+
msgstr "Download em progresso..."
|
3079 |
+
|
3080 |
+
#: views/admin/import/preview_images.php:145
|
3081 |
+
msgid "WP All Import will attempt to import images from the following URLs:"
|
3082 |
+
msgstr "WP All Import tentará importar imagens a partir dos seguintes URLs:"
|
3083 |
+
|
3084 |
+
#: views/admin/import/preview_images.php:146
|
3085 |
+
msgid "Please check the URLs to ensure they point to valid images"
|
3086 |
+
msgstr "Verifique os URLs para garantir que eles apontem para imagens válidas"
|
3087 |
+
|
3088 |
+
#: views/admin/import/preview_images.php:169
|
3089 |
+
msgid "Images not found for current record."
|
3090 |
+
msgstr "Imagens não encontradas para o registro atual."
|
3091 |
+
|
3092 |
+
#: views/admin/import/preview_prices.php:16
|
3093 |
+
msgid "Preview Prices"
|
3094 |
+
msgstr "Visualizar Preços"
|
3095 |
+
|
3096 |
+
#: views/admin/import/preview_prices.php:18
|
3097 |
+
msgid "Regular Price"
|
3098 |
+
msgstr "Preço regular"
|
3099 |
+
|
3100 |
+
#: views/admin/import/preview_prices.php:19
|
3101 |
+
msgid "Sale Price"
|
3102 |
+
msgstr "Preço de venda"
|
3103 |
+
|
3104 |
+
#: views/admin/import/preview_taxonomies.php:16
|
3105 |
+
msgid "Test Taxonomies Hierarchy"
|
3106 |
+
msgstr "Hierarquia de Taxonomias de Teste"
|
3107 |
+
|
3108 |
+
#: views/admin/import/process.php:21
|
3109 |
+
msgid "Import <span id=\"status\">in Progress</span>"
|
3110 |
+
msgstr "Importação <span id=\"status\">em andamento</ span>"
|
3111 |
+
|
3112 |
+
#: views/admin/import/process.php:22
|
3113 |
+
msgid "Importing may take some time. Please do not close your browser or refresh the page until the process is complete."
|
3114 |
+
msgstr "A importação pode levar algum tempo. Não feche o navegador nem atualize a página até que o processo seja concluído."
|
3115 |
+
|
3116 |
+
#: views/admin/import/process.php:29
|
3117 |
+
msgid "Time Elapsed"
|
3118 |
+
msgstr "Tempo decorrido"
|
3119 |
+
|
3120 |
+
#: views/admin/import/process.php:31
|
3121 |
+
msgid "Created"
|
3122 |
+
msgstr "Criado"
|
3123 |
+
|
3124 |
+
#: views/admin/import/process.php:31
|
3125 |
+
msgid "Updated"
|
3126 |
+
msgstr "Atualizado"
|
3127 |
+
|
3128 |
+
#: views/admin/import/process.php:31
|
3129 |
+
msgid "of"
|
3130 |
+
msgstr "de"
|
3131 |
+
|
3132 |
+
#: views/admin/import/process.php:48
|
3133 |
+
msgid "Import Complete!"
|
3134 |
+
msgstr "Importação Completada!"
|
3135 |
+
|
3136 |
+
#: views/admin/import/process.php:50
|
3137 |
+
msgid "Duplicate records detected during import"
|
3138 |
+
msgstr "Duplicação de registros detectados durante a importação"
|
3139 |
+
|
3140 |
+
#: views/admin/import/process.php:50
|
3141 |
+
msgid "The unique identifier is how WP All Import tells two items in your import file apart. If it is the same for two items, then the first item will be overwritten when the second is imported."
|
3142 |
+
msgstr "O Identificador Único é como WP All Import separa dois itens no arquivo de importação. Se for o mesmo para dois itens, o primeiro item será substituído quando o segundo é importado."
|
3143 |
+
|
3144 |
+
#: views/admin/import/process.php:52
|
3145 |
+
msgid "The file you are importing has %s records, but WP All Import only created <span class=\"inserted_count\"></span> %s. It detected the other records in your file as duplicates. This could be because they actually are duplicates or it could be because your Unique Identifier is not unique for each record.<br><br>If your import file has no duplicates and you want to import all %s records, you should delete everything that was just imported and then edit your Unique Identifier so it's unique for each item."
|
3146 |
+
msgstr "O arquivo que você está importando tem %s registros, mas o WP All Import criou apenas <span class=\"inserted_count\"></span> %s. Ele detectou que os outros registros em seu arquivo como duplicadas. Isso pode ser porque eles realmente são duplicados ou pode ser porque seu Identificador Único não é exclusivo para cada registro. Se seu arquivo de importação não tiver duplicadas e você quiser importar todos os registros %s, você deve excluir tudo que foi importado e, em seguida, editar o seu Identificador Único para que seja exclusivo para cada item."
|
3147 |
+
|
3148 |
+
#: views/admin/import/process.php:54 views/admin/import/process.php:61
|
3149 |
+
msgid "Delete & Edit"
|
3150 |
+
msgstr "Excluir e Editar"
|
3151 |
+
|
3152 |
+
#: views/admin/import/process.php:57
|
3153 |
+
msgid "<span id=\"skipped_count\">%s</span> orders were skipped during this import"
|
3154 |
+
msgstr "<span id=\"skipped_count\">%s</span> encomendas foram ignoradas durante esta importação"
|
3155 |
+
|
3156 |
+
#: views/admin/import/process.php:59
|
3157 |
+
msgid "WP All Import is unable import an order when it cannot match the products or customer specified. <a href=\"%s\" style=\"margin: 0;\">See the import log</a> for a list of which orders were skipped and why."
|
3158 |
+
msgstr "O WP All Import não consegue importar uma encomenda quando não pode corresponder aos produtos ou ao cliente especificado. <a href=\"%s\" style=\"margin: 0;\">Consulte o registro de importação</a> para obter uma lista de quais pedidos foram omitidos e por quê."
|
3159 |
+
|
3160 |
+
#: views/admin/import/process.php:63
|
3161 |
+
msgid "WP All Import successfully imported your file <span>%s</span> into your WordPress installation!"
|
3162 |
+
msgstr "O WP All Import importou com sucesso o seu arquivo <span>%s</span> para sua instalação do WordPress!"
|
3163 |
+
|
3164 |
+
#: views/admin/import/process.php:65 views/admin/import/process.php:67
|
3165 |
+
msgid "There were <span class=\"wpallimport-errors-count\">%s</span> errors and <span class=\"wpallimport-warnings-count\">%s</span> warnings in this import. You can see these in the import log."
|
3166 |
+
msgstr "Houve erros <span class=\"wpallimport-errors-count\">%s</span> e <span class=\"wpallimport-warnings-count\">%s</span> nesta importação. Você pode vê-los no log de importação."
|
3167 |
+
|
3168 |
+
#: views/admin/import/process.php:70
|
3169 |
+
msgid "View Logs"
|
3170 |
+
msgstr "Ver Logs"
|
3171 |
+
|
3172 |
+
#: views/admin/import/process.php:78
|
3173 |
+
msgid "Hide this notice."
|
3174 |
+
msgstr "Ocultar este aviso."
|
3175 |
+
|
3176 |
+
#: views/admin/import/process.php:82
|
3177 |
+
msgid "Want to speed up your import?"
|
3178 |
+
msgstr "Quer acelerar a sua importação?"
|
3179 |
+
|
3180 |
+
#: views/admin/import/process.php:83
|
3181 |
+
msgid "Check out our guide on increasing import speed."
|
3182 |
+
msgstr "Confira nosso guia sobre aumento da velocidade de importação."
|
3183 |
+
|
3184 |
+
#: views/admin/import/process.php:87
|
3185 |
+
msgid "opens in new tab"
|
3186 |
+
msgstr "Abrir em nova guia"
|
3187 |
+
|
3188 |
+
#: views/admin/import/process.php:95 views/admin/import/process.php:116
|
3189 |
+
msgid "Your server terminated the import process"
|
3190 |
+
msgstr "Seu servidor encerrou o processo de importação"
|
3191 |
+
|
3192 |
+
#: views/admin/import/process.php:96
|
3193 |
+
msgid "<a href='%s' target='_blank'>Read more</a> about how to prevent this from happening again."
|
3194 |
+
msgstr "<a href='%s' target='_blank'>Leia mais</a> sobre como evitar que isso aconteça novamente."
|
3195 |
+
|
3196 |
+
#: views/admin/import/process.php:100
|
3197 |
+
msgid "with <span id='wpallimport-new-records-per-iteration'>%s</span> records per iteration"
|
3198 |
+
msgstr "Com registros <span id='wpallimport-new-records-per-iteration'>%s</span> por iteração"
|
3199 |
+
|
3200 |
+
#: views/admin/import/process.php:106
|
3201 |
+
msgid "Log"
|
3202 |
+
msgstr "Log"
|
3203 |
+
|
3204 |
+
#: views/admin/import/process.php:117
|
3205 |
+
msgid "Ask your host to check your server's error log. They will be able to determine why your server is terminating the import process."
|
3206 |
+
msgstr "Peça ao seu host para verificar o log de erros do seu servidor. Eles serão capazes de determinar por que seu servidor está terminando o processo de importação."
|
3207 |
+
|
3208 |
+
#: views/admin/import/tag.php:5
|
3209 |
+
msgid "Elements"
|
3210 |
+
msgstr "Elementos"
|
3211 |
+
|
3212 |
+
#: views/admin/import/tag.php:27
|
3213 |
+
msgid "History file not found. Probably you are using wrong encoding."
|
3214 |
+
msgstr "Arquivo de histórico não encontrado. Provavelmente você está usando a codificação errada."
|
3215 |
+
|
3216 |
+
#: views/admin/import/template.php:42
|
3217 |
+
msgid "Name & Description"
|
3218 |
+
msgstr "Nome e Descrição"
|
3219 |
+
|
3220 |
+
#: views/admin/import/template.php:44
|
3221 |
+
msgid "Title & Content"
|
3222 |
+
msgstr "Título e Conteúdo"
|
3223 |
+
|
3224 |
+
#: views/admin/import/template.php:52
|
3225 |
+
msgid "Drag & drop any element on the right to set the title."
|
3226 |
+
msgstr "Arraste e solte qualquer elemento à direita para definir o título."
|
3227 |
+
|
3228 |
+
#: views/admin/import/template.php:71
|
3229 |
+
msgid "WooCommerce Short Description"
|
3230 |
+
msgstr "WooCommerce Descrição Breve"
|
3231 |
+
|
3232 |
+
#: views/admin/import/template.php:75
|
3233 |
+
#: views/admin/import/template/_taxonomies_template.php:138
|
3234 |
+
msgid "Preview"
|
3235 |
+
msgstr "Visualizar"
|
3236 |
+
|
3237 |
+
#: views/admin/import/template.php:81
|
3238 |
+
msgid "Advanced Options"
|
3239 |
+
msgstr "Opções Avançadas"
|
3240 |
+
|
3241 |
+
#: views/admin/import/template.php:88
|
3242 |
+
msgid "Keep line breaks from file"
|
3243 |
+
msgstr "Manter quebras de linha do arquivo"
|
3244 |
+
|
3245 |
+
#: views/admin/import/template.php:93
|
3246 |
+
msgid "Decode HTML entities with <b>html_entity_decode</b>"
|
3247 |
+
msgstr "Decodificar entidades HTML com <b>html_entity_decode </b>"
|
3248 |
+
|
3249 |
+
#: views/admin/import/template.php:161 views/admin/settings/index.php:212
|
3250 |
+
msgid "Function Editor"
|
3251 |
+
msgstr "Editor de funções"
|
3252 |
+
|
3253 |
+
#: views/admin/import/template.php:171 views/admin/settings/index.php:220
|
3254 |
+
msgid "Save Functions"
|
3255 |
+
msgstr "Salvar Funções"
|
3256 |
+
|
3257 |
+
#: views/admin/import/template.php:172 views/admin/settings/index.php:221
|
3258 |
+
msgid "Add functions here for use during your import. You can access this file at %s"
|
3259 |
+
msgstr "Adicione funções aqui para usar durante a importação. Você pode acessar este arquivo em %s"
|
3260 |
+
|
3261 |
+
#: views/admin/import/template.php:197
|
3262 |
+
msgid "Save settings as a template"
|
3263 |
+
msgstr "Salvar configurações como modelo"
|
3264 |
+
|
3265 |
+
#: views/admin/import/template.php:200
|
3266 |
+
msgid "Template name..."
|
3267 |
+
msgstr "Nome do Modelo..."
|
3268 |
+
|
3269 |
+
#: views/admin/import/template.php:205
|
3270 |
+
msgid "Load Template..."
|
3271 |
+
msgstr "Carregar Modelo..."
|
3272 |
+
|
3273 |
+
#: views/admin/import/template.php:225
|
3274 |
+
msgid "Back to Step 2"
|
3275 |
+
msgstr "Volte para a Etapa 2"
|
3276 |
+
|
3277 |
+
#: views/admin/import/template.php:229
|
3278 |
+
msgid "Continue to Step 4"
|
3279 |
+
msgstr "Continue para a Etapa 4"
|
3280 |
+
|
3281 |
+
#: views/admin/import/template/_custom_fields_template.php:27
|
3282 |
+
msgid "Your website is using Custom Fields to store data for %s."
|
3283 |
+
msgstr "Seu site está usando Campos Personalizados para armazenar dados para %s."
|
3284 |
+
|
3285 |
+
#: views/admin/import/template/_custom_fields_template.php:28
|
3286 |
+
#: views/admin/import/template/_term_meta_template.php:28
|
3287 |
+
msgid "See Detected Fields"
|
3288 |
+
msgstr "Ver campos detectados"
|
3289 |
+
|
3290 |
+
#: views/admin/import/template/_custom_fields_template.php:30
|
3291 |
+
msgid "No Custom Fields are present in your database for %s."
|
3292 |
+
msgstr "Nenhum campo personalizado está presente em seu banco de dados para %s."
|
3293 |
+
|
3294 |
+
#: views/admin/import/template/_custom_fields_template.php:31
|
3295 |
+
#: views/admin/import/template/_term_meta_template.php:31
|
3296 |
+
msgid "Manually create a %s, and fill out each field you want to import data to. WP All Import will then display these fields as available for import below."
|
3297 |
+
msgstr "Crie manualmente um %s e preencha cada campo para o qual deseja importar dados. O WP All Import exibirá esses campos como disponíveis para importação abaixo."
|
3298 |
+
|
3299 |
+
#: views/admin/import/template/_custom_fields_template.php:33
|
3300 |
+
#: views/admin/import/template/_custom_fields_template.php:41
|
3301 |
+
#: views/admin/import/template/_term_meta_template.php:33
|
3302 |
+
#: views/admin/import/template/_term_meta_template.php:41
|
3303 |
+
msgid "Hide Notice"
|
3304 |
+
msgstr "Ocultar Aviso"
|
3305 |
+
|
3306 |
+
#: views/admin/import/template/_custom_fields_template.php:38
|
3307 |
+
#: views/admin/import/template/_term_meta_template.php:38
|
3308 |
+
msgid "Clear All Fields"
|
3309 |
+
msgstr "Limpar Todos os Campos"
|
3310 |
+
|
3311 |
+
#: views/admin/import/template/_custom_fields_template.php:40
|
3312 |
+
#: views/admin/import/template/_term_meta_template.php:40
|
3313 |
+
msgid "If not all fields were detected, manually create a %s, and fill out each field you want to import data to. Then create a new import, and WP All Import will display these fields as available for import below."
|
3314 |
+
msgstr "Se nem todos os campos foram detectados, crie manualmente um %s e preencha cada campo para o qual você deseja importar dados. Em seguida, crie uma nova importação e o WP All Import exibirá esses campos como disponíveis para importação abaixo."
|
3315 |
+
|
3316 |
+
#: views/admin/import/template/_custom_fields_template.php:67
|
3317 |
+
#: views/admin/import/template/_custom_fields_template.php:276
|
3318 |
+
#: views/admin/import/template/_custom_fields_template.php:410
|
3319 |
+
#: views/admin/import/template/_term_meta_template.php:67
|
3320 |
+
#: views/admin/import/template/_term_meta_template.php:276
|
3321 |
+
#: views/admin/import/template/_term_meta_template.php:410
|
3322 |
+
msgid "Click to specify"
|
3323 |
+
msgstr "Clique para especificar"
|
3324 |
+
|
3325 |
+
#: views/admin/import/template/_custom_fields_template.php:72
|
3326 |
+
#: views/admin/import/template/_custom_fields_template.php:281
|
3327 |
+
#: views/admin/import/template/_custom_fields_template.php:415
|
3328 |
+
#: views/admin/import/template/_term_meta_template.php:72
|
3329 |
+
#: views/admin/import/template/_term_meta_template.php:281
|
3330 |
+
#: views/admin/import/template/_term_meta_template.php:415
|
3331 |
+
msgid "Serialized"
|
3332 |
+
msgstr "Em Série"
|
3333 |
+
|
3334 |
+
#: views/admin/import/template/_custom_fields_template.php:85
|
3335 |
+
#: views/admin/import/template/_custom_fields_template.php:294
|
3336 |
+
#: views/admin/import/template/_custom_fields_template.php:428
|
3337 |
+
#: views/admin/import/template/_term_meta_template.php:85
|
3338 |
+
#: views/admin/import/template/_term_meta_template.php:294
|
3339 |
+
#: views/admin/import/template/_term_meta_template.php:428
|
3340 |
+
msgid "Key"
|
3341 |
+
msgstr "Chave"
|
3342 |
+
|
3343 |
+
#: views/admin/import/template/_custom_fields_template.php:156
|
3344 |
+
#: views/admin/import/template/_custom_fields_template.php:536
|
3345 |
+
msgid "Add Custom Field"
|
3346 |
+
msgstr "Adicionar Campo Personalizado"
|
3347 |
+
|
3348 |
+
#: views/admin/import/template/_custom_fields_template.php:162
|
3349 |
+
#: views/admin/import/template/_custom_fields_template.php:330
|
3350 |
+
#: views/admin/import/template/_custom_fields_template.php:464
|
3351 |
+
#: views/admin/import/template/_term_meta_template.php:162
|
3352 |
+
#: views/admin/import/template/_term_meta_template.php:330
|
3353 |
+
#: views/admin/import/template/_term_meta_template.php:464
|
3354 |
+
msgid "Auto-Detect"
|
3355 |
+
msgstr "Detecção automática"
|
3356 |
+
|
3357 |
+
#: views/admin/import/template/_custom_fields_template.php:167
|
3358 |
+
#: views/admin/import/template/_custom_fields_template.php:335
|
3359 |
+
#: views/admin/import/template/_custom_fields_template.php:469
|
3360 |
+
#: views/admin/import/template/_term_meta_template.php:167
|
3361 |
+
#: views/admin/import/template/_term_meta_template.php:335
|
3362 |
+
#: views/admin/import/template/_term_meta_template.php:469
|
3363 |
+
#: views/admin/license/index.php:40
|
3364 |
+
msgid "Save"
|
3365 |
+
msgstr "Salvar"
|
3366 |
+
|
3367 |
+
#: views/admin/import/template/_featured_template.php:8
|
3368 |
+
msgid "Show hints"
|
3369 |
+
msgstr "Mostrar sugestões"
|
3370 |
+
|
3371 |
+
#: views/admin/import/template/_featured_template.php:15
|
3372 |
+
msgid "Download images hosted elsewhere"
|
3373 |
+
msgstr "Fazer o download de imagens hospedadas em outro lugar"
|
3374 |
+
|
3375 |
+
#: views/admin/import/template/_featured_template.php:19
|
3376 |
+
msgid "Enter image URL one per line, or separate them with a "
|
3377 |
+
msgstr "Digite o URL da imagem um por linha ou separe-o com um"
|
3378 |
+
|
3379 |
+
#: views/admin/import/template/_featured_template.php:25
|
3380 |
+
msgid "Use images currently in Media Library"
|
3381 |
+
msgstr "Usar imagens atualmente na Biblioteca de Mídia"
|
3382 |
+
|
3383 |
+
#: views/admin/import/template/_featured_template.php:29
|
3384 |
+
#: views/admin/import/template/_featured_template.php:39
|
3385 |
+
msgid "Enter image filenames one per line, or separate them with a "
|
3386 |
+
msgstr "Digite nomes de arquivos de imagem um por linha ou separe-os com um"
|
3387 |
+
|
3388 |
+
#: views/admin/import/template/_featured_template.php:36
|
3389 |
+
msgid "Use images currently uploaded in %s"
|
3390 |
+
msgstr "Usar imagens carregadas atualmente em %s"
|
3391 |
+
|
3392 |
+
#: views/admin/import/template/_featured_template.php:44
|
3393 |
+
msgid "Image Options"
|
3394 |
+
msgstr "Opções de Imagem"
|
3395 |
+
|
3396 |
+
#: views/admin/import/template/_featured_template.php:49
|
3397 |
+
msgid "Search through the Media Library for existing images before importing new images"
|
3398 |
+
msgstr "Pesquise na Biblioteca de Mídia as imagens existentes antes de importar novas imagens"
|
3399 |
+
|
3400 |
+
#: views/admin/import/template/_featured_template.php:50
|
3401 |
+
msgid "If an image with the same file name is found in the Media Library then that image will be attached to this record instead of importing a new image. Disable this setting if your import has different images with the same file name."
|
3402 |
+
msgstr "Se uma imagem com o mesmo nome de arquivo for encontrada na Biblioteca de Mídia, essa imagem será anexada a este registro em vez de importar uma nova imagem. Desative essa configuração se a importação tiver imagens diferentes com o mesmo nome de arquivo."
|
3403 |
+
|
3404 |
+
#: views/admin/import/template/_featured_template.php:55
|
3405 |
+
msgid "Keep images currently in Media Library"
|
3406 |
+
msgstr "Manter imagens atualmente na Biblioteca de Mídia"
|
3407 |
+
|
3408 |
+
#: views/admin/import/template/_featured_template.php:56
|
3409 |
+
msgid "If disabled, images attached to imported posts will be deleted and then all images will be imported."
|
3410 |
+
msgstr "Se desabilitada, as imagens anexadas a posts importados serão excluídas e todas as imagens serão importadas."
|
3411 |
+
|
3412 |
+
#: views/admin/import/template/_featured_template.php:62
|
3413 |
+
msgid "Preview & Test"
|
3414 |
+
msgstr "Visualizar e Testar"
|
3415 |
+
|
3416 |
+
#: views/admin/import/template/_featured_template.php:67
|
3417 |
+
msgid "Set the first image to the Featured Image (_thumbnail_id)"
|
3418 |
+
msgstr "Definir a primeira imagem para a imagem destacada (_thumbnail_id)"
|
3419 |
+
|
3420 |
+
#: views/admin/import/template/_featured_template.php:72
|
3421 |
+
msgid "If no images are downloaded successfully, create entry as Draft."
|
3422 |
+
msgstr "Se nenhuma imagem for baixada com sucesso, crie a entrada como Rascunho."
|
3423 |
+
|
3424 |
+
#: views/admin/import/template/_featured_template.php:83
|
3425 |
+
msgid "SEO & Advanced Options"
|
3426 |
+
msgstr "SEO e Opções Avançadas"
|
3427 |
+
|
3428 |
+
#: views/admin/import/template/_featured_template.php:91
|
3429 |
+
msgid "Meta Data"
|
3430 |
+
msgstr "Meta Data"
|
3431 |
+
|
3432 |
+
#: views/admin/import/template/_featured_template.php:95
|
3433 |
+
msgid "Set Title(s)"
|
3434 |
+
msgstr "Definir Título(s)"
|
3435 |
+
|
3436 |
+
#: views/admin/import/template/_featured_template.php:97
|
3437 |
+
#: views/admin/import/template/_featured_template.php:108
|
3438 |
+
#: views/admin/import/template/_featured_template.php:119
|
3439 |
+
msgid "Enter one per line, or separate them with a "
|
3440 |
+
msgstr "Digite um por linha ou separe-os com um"
|
3441 |
+
|
3442 |
+
#: views/admin/import/template/_featured_template.php:99
|
3443 |
+
msgid "The first title will be linked to the first image, the second title will be linked to the second image, ..."
|
3444 |
+
msgstr "O primeiro título será ligado à primeira imagem, o segundo título será ligado à segunda imagem..."
|
3445 |
+
|
3446 |
+
#: views/admin/import/template/_featured_template.php:106
|
3447 |
+
msgid "Set Caption(s)"
|
3448 |
+
msgstr "Definir legenda(s)"
|
3449 |
+
|
3450 |
+
#: views/admin/import/template/_featured_template.php:110
|
3451 |
+
msgid "The first caption will be linked to the first image, the second caption will be linked to the second image, ..."
|
3452 |
+
msgstr "A primeira legenda será ligada à primeira imagem, a segunda legenda será ligada à segunda imagem..."
|
3453 |
+
|
3454 |
+
#: views/admin/import/template/_featured_template.php:117
|
3455 |
+
msgid "Set Alt Text(s)"
|
3456 |
+
msgstr "Definir texto(s) alternativo(s)"
|
3457 |
+
|
3458 |
+
#: views/admin/import/template/_featured_template.php:121
|
3459 |
+
msgid "The first alt text will be linked to the first image, the second alt text will be linked to the second image, ..."
|
3460 |
+
msgstr "O primeiro texto alternativo será ligado à primeira imagem, o segundo texto alternativo será ligado à segunda imagem..."
|
3461 |
+
|
3462 |
+
#: views/admin/import/template/_featured_template.php:128
|
3463 |
+
msgid "Set Description(s)"
|
3464 |
+
msgstr "Definir Descrição(s)"
|
3465 |
+
|
3466 |
+
#: views/admin/import/template/_featured_template.php:132
|
3467 |
+
msgid "Separate them with a"
|
3468 |
+
msgstr "Separe-os com um"
|
3469 |
+
|
3470 |
+
#: views/admin/import/template/_featured_template.php:137
|
3471 |
+
msgid "Enter them one per line"
|
3472 |
+
msgstr "Digite um por linha"
|
3473 |
+
|
3474 |
+
#: views/admin/import/template/_featured_template.php:139
|
3475 |
+
msgid "The first description will be linked to the first image, the second description will be linked to the second image, ..."
|
3476 |
+
msgstr "A primeira descrição será ligada à primeira imagem, a segunda descrição será ligada à segunda imagem..."
|
3477 |
+
|
3478 |
+
#: views/admin/import/template/_featured_template.php:143
|
3479 |
+
#: views/admin/settings/index.php:79
|
3480 |
+
msgid "Files"
|
3481 |
+
msgstr "Arquivos"
|
3482 |
+
|
3483 |
+
#: views/admin/import/template/_featured_template.php:145
|
3484 |
+
msgid "These options only available if Download images hosted elsewhere is selected above."
|
3485 |
+
msgstr "Essas opções somente estão disponíveis se o download de imagens hospedado em outro lugar estiver selecionado acima."
|
3486 |
+
|
3487 |
+
#: views/admin/import/template/_featured_template.php:149
|
3488 |
+
msgid "Change image file names to"
|
3489 |
+
msgstr "Alterar nomes de arquivos de imagem para"
|
3490 |
+
|
3491 |
+
#: views/admin/import/template/_featured_template.php:152
|
3492 |
+
msgid "Multiple image will have numbers appended, i.e. image-name-1.jpg, image-name-2.jpg "
|
3493 |
+
msgstr "A imagem múltipla terá números anexados, ou seja, image-name-1.jpg, image-name-2.jpg"
|
3494 |
+
|
3495 |
+
#: views/admin/import/template/_featured_template.php:158
|
3496 |
+
msgid "Change image file extensions"
|
3497 |
+
msgstr "Alterar extensões de arquivo de imagem"
|
3498 |
+
|
3499 |
+
#: views/admin/import/template/_featured_template.php:176
|
3500 |
+
msgid "WP All Import will automatically ignore elements with blank image URLs/filenames."
|
3501 |
+
msgstr "O WP All Import ignorará automaticamente elementos com URLs/nomes de arquivos em branco."
|
3502 |
+
|
3503 |
+
#: views/admin/import/template/_featured_template.php:177
|
3504 |
+
msgid "WP All Import must download the images to your server. You can't have images in a Gallery that are referenced by external URL. That's just how WordPress works."
|
3505 |
+
msgstr "O WP All Import deve fazer o download das imagens para o servidor. Você não pode ter imagens em uma Galeria que são referenciadas por URL externo. Isso é apenas como o WordPress funciona."
|
3506 |
+
|
3507 |
+
#: views/admin/import/template/_featured_template.php:178
|
3508 |
+
msgid "Importing a variable number of images can be done using a <a href=\"%s\" target=\"_blank\">FOREACH LOOP</a>"
|
3509 |
+
msgstr "Importar um número variável de imagens pode ser feito usando um <a href=\"%s\" target=\"_blank\">PARA CADA LOOP</a>"
|
3510 |
+
|
3511 |
+
#: views/admin/import/template/_featured_template.php:179
|
3512 |
+
msgid "For more information check out our <a href=\"%s\" target=\"_blank\">comprehensive documentation</a>"
|
3513 |
+
msgstr "Para mais informações, consulte a <a href=\"%s\" target=\"_blank\">documentação abrangente</a>."
|
3514 |
+
|
3515 |
+
#: views/admin/import/template/_nested_template.php:35
|
3516 |
+
msgid "Nested XML/CSV files"
|
3517 |
+
msgstr "Arquivos XML/CSV aninhados"
|
3518 |
+
|
3519 |
+
#: views/admin/import/template/_nested_template.php:48
|
3520 |
+
msgid "remove"
|
3521 |
+
msgstr "remover"
|
3522 |
+
|
3523 |
+
#: views/admin/import/template/_nested_template.php:69
|
3524 |
+
msgid "Specify the URL of the nested file to use."
|
3525 |
+
msgstr "Especifique a URL do arquivo aninhado a ser usado."
|
3526 |
+
|
3527 |
+
#: views/admin/import/template/_nested_template.php:73
|
3528 |
+
msgid "Add"
|
3529 |
+
msgstr "Adicionar"
|
3530 |
+
|
3531 |
+
#: views/admin/import/template/_other_template.php:16
|
3532 |
+
#: views/admin/import/template/_term_other_template.php:13
|
3533 |
+
msgid "Other %s Options"
|
3534 |
+
msgstr "Outras %s Opções"
|
3535 |
+
|
3536 |
+
#: views/admin/import/template/_other_template.php:28
|
3537 |
+
msgid "Post Status"
|
3538 |
+
msgstr "Status do Post"
|
3539 |
+
|
3540 |
+
#: views/admin/import/template/_other_template.php:31
|
3541 |
+
msgid "Published"
|
3542 |
+
msgstr "Publicado"
|
3543 |
+
|
3544 |
+
#: views/admin/import/template/_other_template.php:35
|
3545 |
+
msgid "Draft"
|
3546 |
+
msgstr "Lixeira"
|
3547 |
+
|
3548 |
+
#: views/admin/import/template/_other_template.php:43
|
3549 |
+
msgid "The value of presented XPath should be one of the following: ('publish', 'draft', 'trash')."
|
3550 |
+
msgstr "O valor do XPath apresentado deve ser um dos seguintes: ('publicar', 'rascunho', 'lixo')."
|
3551 |
+
|
3552 |
+
#: views/admin/import/template/_other_template.php:52
|
3553 |
+
msgid "Post Dates"
|
3554 |
+
msgstr "Data dos Posts"
|
3555 |
+
|
3556 |
+
#: views/admin/import/template/_other_template.php:52
|
3557 |
+
msgid "Use any format supported by the PHP <b>strtotime</b> function. That means pretty much any human-readable date will work."
|
3558 |
+
msgstr "Use qualquer formato suportado pela função PHP <b>strtotime</b>. Isso significa que praticamente qualquer data legível para humanos funcionará."
|
3559 |
+
|
3560 |
+
#: views/admin/import/template/_other_template.php:56
|
3561 |
+
msgid "As specified"
|
3562 |
+
msgstr "Como especificado"
|
3563 |
+
|
3564 |
+
#: views/admin/import/template/_other_template.php:65
|
3565 |
+
msgid "Random dates"
|
3566 |
+
msgstr "Datas aleatórias"
|
3567 |
+
|
3568 |
+
#: views/admin/import/template/_other_template.php:65
|
3569 |
+
msgid "Posts will be randomly assigned dates in this range. WordPress ensures posts with dates in the future will not appear until their date has been reached."
|
3570 |
+
msgstr "Mensagens serão atribuídas aleatoriamente às datas desse intervalo. O WordPress garante que as postagens com datas no futuro não aparecerão até que sua data seja atingida."
|
3571 |
+
|
3572 |
+
#: views/admin/import/template/_other_template.php:69
|
3573 |
+
#: views/admin/manage/delete.php:56
|
3574 |
+
msgid "and"
|
3575 |
+
msgstr "e"
|
3576 |
+
|
3577 |
+
#: views/admin/import/template/_other_template.php:77
|
3578 |
+
msgid "Comments"
|
3579 |
+
msgstr "Comentários"
|
3580 |
+
|
3581 |
+
#: views/admin/import/template/_other_template.php:80
|
3582 |
+
#: views/admin/import/template/_other_template.php:103
|
3583 |
+
msgid "Open"
|
3584 |
+
msgstr "Aberto"
|
3585 |
+
|
3586 |
+
#: views/admin/import/template/_other_template.php:84
|
3587 |
+
#: views/admin/import/template/_other_template.php:107
|
3588 |
+
msgid "Closed"
|
3589 |
+
msgstr "Fechado"
|
3590 |
+
|
3591 |
+
#: views/admin/import/template/_other_template.php:92
|
3592 |
+
#: views/admin/import/template/_other_template.php:115
|
3593 |
+
msgid "The value of presented XPath should be one of the following: ('open', 'closed')."
|
3594 |
+
msgstr "O valor do XPath apresentado deve ser um dos seguintes: ('aberto', 'fechado')."
|
3595 |
+
|
3596 |
+
#: views/admin/import/template/_other_template.php:100
|
3597 |
+
msgid "Trackbacks and Pingbacks"
|
3598 |
+
msgstr "Trackbacks e Pingbacks"
|
3599 |
+
|
3600 |
+
#: views/admin/import/template/_other_template.php:123
|
3601 |
+
msgid "Post Slug"
|
3602 |
+
msgstr "Slug do Post"
|
3603 |
+
|
3604 |
+
#: views/admin/import/template/_other_template.php:131
|
3605 |
+
msgid "Post Author"
|
3606 |
+
msgstr "Autor do Post"
|
3607 |
+
|
3608 |
+
#: views/admin/import/template/_other_template.php:133
|
3609 |
+
msgid "Assign the post to an existing user account by specifying the user ID, username, or e-mail address."
|
3610 |
+
msgstr "Atribua a postagem a uma conta de usuário existente especificando o ID do usuário, o nome de usuário ou o endereço de e-mail."
|
3611 |
+
|
3612 |
+
#: views/admin/import/template/_other_template.php:139
|
3613 |
+
msgid "Download & Import Attachments"
|
3614 |
+
msgstr "Transferir e importar anexos"
|
3615 |
+
|
3616 |
+
#: views/admin/import/template/_other_template.php:140
|
3617 |
+
#: views/admin/import/template/_taxonomies_template.php:65
|
3618 |
+
#: views/admin/import/template/_taxonomies_template.php:122
|
3619 |
+
#: views/admin/import/template/_taxonomies_template.php:134
|
3620 |
+
#: views/admin/import/template/_taxonomies_template.php:212
|
3621 |
+
msgid "Separated by"
|
3622 |
+
msgstr "Separado por"
|
3623 |
+
|
3624 |
+
#: views/admin/import/template/_other_template.php:148
|
3625 |
+
msgid "Search for existing attachments to prevent duplicates in media library"
|
3626 |
+
msgstr "Pesquisar anexos existentes para evitar duplicados na biblioteca de mídia"
|
3627 |
+
|
3628 |
+
#: views/admin/import/template/_other_template.php:155
|
3629 |
+
msgid "Post Format"
|
3630 |
+
msgstr "Formato do Post"
|
3631 |
+
|
3632 |
+
#: views/admin/import/template/_other_template.php:161
|
3633 |
+
msgid "Standard"
|
3634 |
+
msgstr "Padrão"
|
3635 |
+
|
3636 |
+
#: views/admin/import/template/_other_template.php:193
|
3637 |
+
msgid "Page Template"
|
3638 |
+
msgstr "Modelo da Página"
|
3639 |
+
|
3640 |
+
#: views/admin/import/template/_other_template.php:196
|
3641 |
+
msgid "Select a template"
|
3642 |
+
msgstr "Selecione um Modelo"
|
3643 |
+
|
3644 |
+
#: views/admin/import/template/_other_template.php:200
|
3645 |
+
msgid "Default"
|
3646 |
+
msgstr "Padrão"
|
3647 |
+
|
3648 |
+
#: views/admin/import/template/_other_template.php:222
|
3649 |
+
msgid "Page Parent"
|
3650 |
+
msgstr "Página Pai"
|
3651 |
+
|
3652 |
+
#: views/admin/import/template/_other_template.php:222
|
3653 |
+
msgid "Enter the ID, title, or slug of the desired page parent. If adding the child and parent pages in the same import, set 'Records per Iteration' to 1, run the import twice, or run separate imports for child and parent pages."
|
3654 |
+
msgstr "Digite o ID, título ou slug do pai da página desejada. Se adicionar a filha e as páginas pai na mesma importação, defina 'Registros por iteração' como 1, execute a importação duas vezes ou execute importações separadas para páginas filho e pai."
|
3655 |
+
|
3656 |
+
#: views/admin/import/template/_other_template.php:226
|
3657 |
+
msgid "Select page parent"
|
3658 |
+
msgstr "Selecionar página pai"
|
3659 |
+
|
3660 |
+
#: views/admin/import/template/_other_template.php:229
|
3661 |
+
msgid "(no parent)"
|
3662 |
+
msgstr "(Sem Pai)"
|
3663 |
+
|
3664 |
+
#: views/admin/import/template/_other_template.php:248
|
3665 |
+
msgid "Post Parent"
|
3666 |
+
msgstr "Post Pai"
|
3667 |
+
|
3668 |
+
#: views/admin/import/template/_other_template.php:248
|
3669 |
+
msgid "Enter the ID, title, or slug of the desired post parent. If adding the child and parent posts in the same import, set 'Records per Iteration' to 1, run the import twice, or run separate imports for child and parent posts."
|
3670 |
+
msgstr "Digite o ID, o título ou o slug do pai do post desejado. Se adicionar as mensagens filho e pai na mesma importação, defina 'Registros por Iteração' como 1, execute a importação duas vezes ou execute importações separadas para postagens de filho e pai."
|
3671 |
+
|
3672 |
+
#: views/admin/import/template/_other_template.php:252
|
3673 |
+
msgid "Set post parent"
|
3674 |
+
msgstr "Definir Post Pai"
|
3675 |
+
|
3676 |
+
#: views/admin/import/template/_other_template.php:276
|
3677 |
+
msgid "Menu Order"
|
3678 |
+
msgstr "Ordem do Menu"
|
3679 |
+
|
3680 |
+
#: views/admin/import/template/_other_template.php:285
|
3681 |
+
msgid "Dynamic Post Type"
|
3682 |
+
msgstr "Tipo de Post Dinâmico"
|
3683 |
+
|
3684 |
+
#: views/admin/import/template/_other_template.php:295
|
3685 |
+
msgid "If records in this import have different post types specify the slug of the desired post type here.\n"
|
3686 |
+
""
|
3687 |
+
msgstr "Se os registros nesta importação tiverem tipos de post diferentes, especifique o slug do tipo de postagem desejado aqui.\n"
|
3688 |
+
""
|
3689 |
+
|
3690 |
+
#: views/admin/import/template/_taxonomies_template.php:13
|
3691 |
+
msgid "Taxonomies, Categories, Tags"
|
3692 |
+
msgstr "Taxonomias, Categorias, Tags"
|
3693 |
+
|
3694 |
+
#: views/admin/import/template/_taxonomies_template.php:17
|
3695 |
+
msgid "Show Hints"
|
3696 |
+
msgstr "Mostrar sugestões"
|
3697 |
+
|
3698 |
+
#: views/admin/import/template/_taxonomies_template.php:38
|
3699 |
+
msgid "Each %s has just one %s"
|
3700 |
+
msgstr "Cada %s tem apenas um %s"
|
3701 |
+
|
3702 |
+
#: views/admin/import/template/_taxonomies_template.php:46
|
3703 |
+
#: views/admin/import/template/_taxonomies_template.php:70
|
3704 |
+
msgid "Try to match terms to existing child %s"
|
3705 |
+
msgstr "Tente corresponder termos filho existente %s"
|
3706 |
+
|
3707 |
+
#: views/admin/import/template/_taxonomies_template.php:51
|
3708 |
+
#: views/admin/import/template/_taxonomies_template.php:75
|
3709 |
+
msgid "Only assign %s to the imported %s, not the entire hierarchy"
|
3710 |
+
msgstr "Somente atribua %s ao %s importado, não a hierarquia inteira"
|
3711 |
+
|
3712 |
+
#: views/admin/import/template/_taxonomies_template.php:52
|
3713 |
+
#: views/admin/import/template/_taxonomies_template.php:76
|
3714 |
+
msgid "By default all categories above the matched category will also be assigned to the post. If enabled, only the imported category will be assigned to the post."
|
3715 |
+
msgstr "Por padrão, todas as categorias acima da categoria correspondente também serão atribuídas à postagem. Se ativado, somente a categoria importada será atribuída à postagem."
|
3716 |
+
|
3717 |
+
#: views/admin/import/template/_taxonomies_template.php:60
|
3718 |
+
msgid "Each %s has multiple %s"
|
3719 |
+
msgstr "Cada %s tem múltiplos %s"
|
3720 |
+
|
3721 |
+
#: views/admin/import/template/_taxonomies_template.php:85
|
3722 |
+
msgid "%ss have hierarchical (parent/child) %s (i.e. Sports > Golf > Clubs > Putters)"
|
3723 |
+
msgstr "%ss tem hierarquia (pai / filho) %s (isto é, Esportes> Golfe> Clubes> Jogadores)"
|
3724 |
+
|
3725 |
+
#: views/admin/import/template/_taxonomies_template.php:90
|
3726 |
+
msgid "An element in my file contains the entire hierarchy (i.e. you have an element with a value = Sports > Golf > Clubs > Putters)"
|
3727 |
+
msgstr "Um elemento no meu arquivo contém toda a hierarquia (ou seja, você tem um elemento com um valor = Esportes> Golfe> Clubes> Jogadores)"
|
3728 |
+
|
3729 |
+
#: views/admin/import/template/_taxonomies_template.php:127
|
3730 |
+
msgid "Only assign %s to the bottom level term in the hierarchy"
|
3731 |
+
msgstr "Somente atribua %s ao termo de nível inferior na hierarquia"
|
3732 |
+
|
3733 |
+
#: views/admin/import/template/_taxonomies_template.php:132
|
3734 |
+
msgid "Separate hierarchy groups via symbol"
|
3735 |
+
msgstr "Separar os grupos hierárquicos através do símbolo"
|
3736 |
+
|
3737 |
+
#: views/admin/import/template/_taxonomies_template.php:140
|
3738 |
+
msgid "Add Another Hierarchy Group"
|
3739 |
+
msgstr "Adicionar outro grupo de hierarquia"
|
3740 |
+
|
3741 |
+
#: views/admin/import/template/_taxonomies_template.php:147
|
3742 |
+
msgid "Manually design the hierarchy with drag & drop"
|
3743 |
+
msgstr "Criar manualmente a hierarquia com arrastar e soltar"
|
3744 |
+
|
3745 |
+
#: views/admin/import/template/_taxonomies_template.php:149
|
3746 |
+
msgid "Drag the <img src=\"%s\" class=\"wpallimport-drag-icon\"/> to the right to create a child, drag up and down to re-order."
|
3747 |
+
msgstr "Arraste o <img src=\"%s\" class=\"wpallimport-drag-icon\"/> para a direita para criar um filho, arraste para cima e para baixo para reordenar."
|
3748 |
+
|
3749 |
+
#: views/admin/import/template/_taxonomies_template.php:215
|
3750 |
+
msgid "Add Another Row"
|
3751 |
+
msgstr "Adicionar outra linha"
|
3752 |
+
|
3753 |
+
#: views/admin/import/template/_taxonomies_template.php:227
|
3754 |
+
msgid "Enable Mapping for %s"
|
3755 |
+
msgstr "Ativar mapeamento para %s"
|
3756 |
+
|
3757 |
+
#: views/admin/import/template/_taxonomies_template.php:296
|
3758 |
+
msgid "Add Another Rule"
|
3759 |
+
msgstr "Adicionar outra Regra"
|
3760 |
+
|
3761 |
+
#: views/admin/import/template/_taxonomies_template.php:306
|
3762 |
+
msgid "Apply mapping rules before splitting via separator symbol"
|
3763 |
+
msgstr "Aplicar regras de mapeamento antes da divisão via símbolo de separador"
|
3764 |
+
|
3765 |
+
#: views/admin/import/template/_taxonomies_template.php:321
|
3766 |
+
msgid "Show \"private\" taxonomies"
|
3767 |
+
msgstr "Mostrar taxonomias \"privadas\""
|
3768 |
+
|
3769 |
+
#: views/admin/import/template/_taxonomies_template.php:332
|
3770 |
+
msgid "Taxonomies that don't already exist on your site will be created."
|
3771 |
+
msgstr "As taxonomias que ainda não existem no seu site serão criadas."
|
3772 |
+
|
3773 |
+
#: views/admin/import/template/_taxonomies_template.php:333
|
3774 |
+
msgid "To import to existing parent taxonomies, use the existing taxonomy name or slug."
|
3775 |
+
msgstr "Para importar para as taxonomias de pai existentes, use o nome de taxonomia existente ou slug."
|
3776 |
+
|
3777 |
+
#: views/admin/import/template/_taxonomies_template.php:334
|
3778 |
+
msgid "To import to existing hierarchical taxonomies, create the entire hierarchy using the taxonomy names or slugs."
|
3779 |
+
msgstr "Para importar para as taxonomias hierárquicas existentes, crie a hierarquia inteira usando os nomes de taxonomia ou slugs."
|
3780 |
+
|
3781 |
+
#: views/admin/import/template/_term_meta_template.php:27
|
3782 |
+
msgid "Your website is using Term Meta to store data for %s."
|
3783 |
+
msgstr "Seu site está usando Termo Meta para armazenar dados para %s."
|
3784 |
+
|
3785 |
+
#: views/admin/import/template/_term_meta_template.php:30
|
3786 |
+
msgid "No Term Meta are present in your database for %s."
|
3787 |
+
msgstr "Nenhum Termo Meta está presente em seu banco de dados para %s."
|
3788 |
+
|
3789 |
+
#: views/admin/import/template/_term_meta_template.php:156
|
3790 |
+
#: views/admin/import/template/_term_meta_template.php:536
|
3791 |
+
msgid "Add Term Meta"
|
3792 |
+
msgstr "Adicionar Termo Meta"
|
3793 |
+
|
3794 |
+
#: views/admin/import/template/_term_other_template.php:21
|
3795 |
+
msgid "Parent Term"
|
3796 |
+
msgstr "Termo Pai"
|
3797 |
+
|
3798 |
+
#: views/admin/import/template/_term_other_template.php:33
|
3799 |
+
msgid "%s Slug"
|
3800 |
+
msgstr "%s Slug"
|
3801 |
+
|
3802 |
+
#: views/admin/import/template/_term_other_template.php:36
|
3803 |
+
msgid "Set slug automatically"
|
3804 |
+
msgstr "Definir slug automaticamente"
|
3805 |
+
|
3806 |
+
#: views/admin/import/template/_term_other_template.php:40
|
3807 |
+
msgid "Set slug manually"
|
3808 |
+
msgstr "Definir slug manualmente"
|
3809 |
+
|
3810 |
+
#: views/admin/import/template/_term_other_template.php:43
|
3811 |
+
msgid "Term Slug"
|
3812 |
+
msgstr "Termo Slug"
|
3813 |
+
|
3814 |
+
#: views/admin/import/template/_term_other_template.php:44
|
3815 |
+
msgid "The term slug must be unique. If the slug is already in use by another term, WP All Import will add a number to the end of the slug."
|
3816 |
+
msgstr "O slug do termo deve ser original. Se o slug já estiver em uso por outro termo, o WP All Import adicionará um número ao final do slug."
|
3817 |
+
|
3818 |
+
#: views/admin/license/index.php:3
|
3819 |
+
msgid "WP All Import Licenses"
|
3820 |
+
msgstr "WP All Import Licenças"
|
3821 |
+
|
3822 |
+
#: views/admin/license/index.php:23 views/admin/settings/index.php:163
|
3823 |
+
msgid "Active"
|
3824 |
+
msgstr "Ativar"
|
3825 |
+
|
3826 |
+
#: views/admin/license/index.php:24
|
3827 |
+
msgid "Deactivate License"
|
3828 |
+
msgstr "Desativar Licença"
|
3829 |
+
|
3830 |
+
#: views/admin/license/index.php:26 views/admin/settings/index.php:165
|
3831 |
+
msgid "Activate License"
|
3832 |
+
msgstr "Ativar Licença"
|
3833 |
+
|
3834 |
+
#: views/admin/manage/bulk.php:1
|
3835 |
+
msgid "Bulk Delete Imports"
|
3836 |
+
msgstr "Excluir Importações em massa"
|
3837 |
+
|
3838 |
+
#: views/admin/manage/bulk.php:10
|
3839 |
+
msgid "Are you sure you want to delete <strong>%s</strong> selected %s?"
|
3840 |
+
msgstr "Tem certeza de que deseja excluir <strong%s</strong> selecionado%s?"
|
3841 |
+
|
3842 |
+
#: views/admin/manage/bulk.php:12
|
3843 |
+
msgid "Delete associated posts as well"
|
3844 |
+
msgstr "Excluir posts associados também"
|
3845 |
+
|
3846 |
+
#: views/admin/manage/bulk.php:17 views/admin/manage/delete.php:19
|
3847 |
+
msgid "Delete associated images from media gallery"
|
3848 |
+
msgstr "Excluir imagens associadas da galeria de mídia"
|
3849 |
+
|
3850 |
+
#: views/admin/manage/bulk.php:22 views/admin/manage/delete.php:24
|
3851 |
+
msgid "Delete associated files from media gallery"
|
3852 |
+
msgstr "Excluir arquivos associados da galeria de mídia"
|
3853 |
+
|
3854 |
+
#: views/admin/manage/bulk.php:31 views/admin/manage/delete.php:32
|
3855 |
+
msgid "<p class=\"wpallimport-delete-posts-warning\"><strong>Important</strong>: this import was created automatically by WP All Export. All posts exported by the \"%s\" export job have been automatically associated with this import.</p>"
|
3856 |
+
msgstr "<p class=\"wpallimport-delete-posts-warning\"><strong>Importante:</strong> Esta importação foi criada automaticamente pelo WP All Export. Todas as mensagens exportadas pelo trabalho de exportação \"%s\" foram automaticamente associadas a essa importação.</p>"
|
3857 |
+
|
3858 |
+
#: views/admin/manage/delete.php:1
|
3859 |
+
msgid "Delete Import"
|
3860 |
+
msgstr "Excluir Importação"
|
3861 |
+
|
3862 |
+
#: views/admin/manage/delete.php:8
|
3863 |
+
msgid "Delete import"
|
3864 |
+
msgstr "Excluir importação"
|
3865 |
+
|
3866 |
+
#: views/admin/manage/delete.php:13
|
3867 |
+
msgid "Delete %s created by %s"
|
3868 |
+
msgstr "Excluir %s criado por %s"
|
3869 |
+
|
3870 |
+
#: views/admin/manage/delete.php:56
|
3871 |
+
msgid "Are you sure you want to delete "
|
3872 |
+
msgstr "Tem certeza de que deseja excluir"
|
3873 |
+
|
3874 |
+
#: views/admin/manage/delete.php:56
|
3875 |
+
msgid "the <strong>%s</strong> import"
|
3876 |
+
msgstr "A importação <strong%s</strong>"
|
3877 |
+
|
3878 |
+
#: views/admin/manage/index.php:18 views/admin/manage/index.php:20
|
3879 |
+
msgid "Search Imports"
|
3880 |
+
msgstr "Pesquisar Importações"
|
3881 |
+
|
3882 |
+
#: views/admin/manage/index.php:28
|
3883 |
+
msgid "File"
|
3884 |
+
msgstr "Arquivo"
|
3885 |
+
|
3886 |
+
#: views/admin/manage/index.php:31
|
3887 |
+
msgid "Info & Options"
|
3888 |
+
msgstr "Informações e Opções"
|
3889 |
+
|
3890 |
+
#: views/admin/manage/index.php:100
|
3891 |
+
msgid "No previous imports found. <a href=\"%s\">Start a new import...</a>"
|
3892 |
+
msgstr "Não foram encontradas importações anteriores. <a href=\"%s\">Iniciar uma nova importação ... </a>"
|
3893 |
+
|
3894 |
+
#: views/admin/manage/index.php:182
|
3895 |
+
msgid "Edit Import"
|
3896 |
+
msgstr "Editar importação"
|
3897 |
+
|
3898 |
+
#: views/admin/manage/index.php:187
|
3899 |
+
msgid "Import Settings"
|
3900 |
+
msgstr "Configurações de importação"
|
3901 |
+
|
3902 |
+
#: views/admin/manage/index.php:228
|
3903 |
+
msgid "triggered with cron"
|
3904 |
+
msgstr "acionado pelo cron"
|
3905 |
+
|
3906 |
+
#: views/admin/manage/index.php:235 views/admin/manage/index.php:250
|
3907 |
+
#: views/admin/manage/index.php:264
|
3908 |
+
msgid "last activity %s ago"
|
3909 |
+
msgstr "última vez ativo %s atrás"
|
3910 |
+
|
3911 |
+
#: views/admin/manage/index.php:242
|
3912 |
+
msgid "currently processing with cron"
|
3913 |
+
msgstr "atualmente processando com cron"
|
3914 |
+
|
3915 |
+
#: views/admin/manage/index.php:257
|
3916 |
+
msgid "Import currently in progress"
|
3917 |
+
msgstr "Importação atualmente em andamento"
|
3918 |
+
|
3919 |
+
#: views/admin/manage/index.php:271 views/admin/manage/index.php:275
|
3920 |
+
msgid "Import Attempt at %s"
|
3921 |
+
msgstr "Tentativa de importação em %s"
|
3922 |
+
|
3923 |
+
#: views/admin/manage/index.php:276
|
3924 |
+
msgid "Import failed, please check logs"
|
3925 |
+
msgstr "Falha na importação, verifique os logs"
|
3926 |
+
|
3927 |
+
#: views/admin/manage/index.php:295
|
3928 |
+
msgid "Last run: %s"
|
3929 |
+
msgstr "Última execução: %s"
|
3930 |
+
|
3931 |
+
#: views/admin/manage/index.php:295
|
3932 |
+
msgid "never"
|
3933 |
+
msgstr "nunca"
|
3934 |
+
|
3935 |
+
#: views/admin/manage/index.php:296
|
3936 |
+
msgid "%d %s created"
|
3937 |
+
msgstr "%d %s criado"
|
3938 |
+
|
3939 |
+
#: views/admin/manage/index.php:297
|
3940 |
+
msgid "%d updated, %d skipped, %d deleted"
|
3941 |
+
msgstr "%d atualizado, %d ignorado, %d excluído"
|
3942 |
+
|
3943 |
+
#: views/admin/manage/index.php:304
|
3944 |
+
msgid "settings edited since last run"
|
3945 |
+
msgstr "configurações editadas desde a última execução"
|
3946 |
+
|
3947 |
+
#: views/admin/manage/index.php:316 views/admin/manage/scheduling.php:2
|
3948 |
+
msgid "Cron Scheduling"
|
3949 |
+
msgstr "Agendamento Cron"
|
3950 |
+
|
3951 |
+
#: views/admin/manage/index.php:318
|
3952 |
+
msgid "History Logs"
|
3953 |
+
msgstr "Histórico de Logs"
|
3954 |
+
|
3955 |
+
#: views/admin/manage/index.php:328
|
3956 |
+
msgid "Run Import"
|
3957 |
+
msgstr "Executar importação"
|
3958 |
+
|
3959 |
+
#: views/admin/manage/index.php:330
|
3960 |
+
msgid "Cancel Cron"
|
3961 |
+
msgstr "Cancelar Cron"
|
3962 |
+
|
3963 |
+
#: views/admin/manage/index.php:332
|
3964 |
+
msgid "Cancel"
|
3965 |
+
msgstr "Cancelar"
|
3966 |
+
|
3967 |
+
#: views/admin/manage/scheduling.php:8
|
3968 |
+
msgid "To schedule an import, you must create two cron jobs in your web hosting control panel. One cron job will be used to run the Trigger script, the other to run the Execution script."
|
3969 |
+
msgstr "Para agendar uma importação, você deve criar dois trabalhos cron em seu painel de controle de hospedagem na web. Uma tarefa cron será usada para executar o Script de Acionamento, e a outra para executar o Script de Execução."
|
3970 |
+
|
3971 |
+
#: views/admin/manage/scheduling.php:19
|
3972 |
+
msgid "Trigger Script"
|
3973 |
+
msgstr "Script de Acionamento"
|
3974 |
+
|
3975 |
+
#: views/admin/manage/scheduling.php:21
|
3976 |
+
msgid "Every time you want to schedule the import, run the trigger script."
|
3977 |
+
msgstr "Sempre que você deseja agendar a importação, execute o Script de Acionamento."
|
3978 |
+
|
3979 |
+
#: views/admin/manage/scheduling.php:23
|
3980 |
+
msgid "To schedule the import to run once every 24 hours, run the trigger script every 24 hours. Most hosts require you to use “wget” to access a URL. Ask your host for details."
|
3981 |
+
msgstr "Para programar a importação para ser executada uma vez a cada 24 horas, execute o Trigger Script a cada 24 horas. A maioria dos hosts exige que você use o \"wget\" para acessar um URL. Entre em contato com seu host para obter detalhes."
|
3982 |
+
|
3983 |
+
#: views/admin/manage/scheduling.php:25 views/admin/manage/scheduling.php:37
|
3984 |
+
msgid "Example:"
|
3985 |
+
msgstr "Exemplo:"
|
3986 |
+
|
3987 |
+
#: views/admin/manage/scheduling.php:29
|
3988 |
+
msgid "Execution Script"
|
3989 |
+
msgstr "Script de Execução"
|
3990 |
+
|
3991 |
+
#: views/admin/manage/scheduling.php:31
|
3992 |
+
msgid "The Execution script actually executes the import, once it has been triggered with the Trigger script."
|
3993 |
+
msgstr "O Script de Execução realmente executa a importação, uma vez que tenha sido acionado pelo o Script Trigger."
|
3994 |
+
|
3995 |
+
#: views/admin/manage/scheduling.php:33
|
3996 |
+
msgid "It processes in iteration (only importing a few records each time it runs) to optimize server load. It is recommended you run the execution script every 2 minutes."
|
3997 |
+
msgstr "Processa na iteração (importando somente alguns registros cada vez) para que otimize a carga do usuário. Recomenda-se executar o script de execução a cada 2 minutos."
|
3998 |
+
|
3999 |
+
#: views/admin/manage/scheduling.php:35
|
4000 |
+
msgid "It also operates this way in case of unexpected crashes by your web host. If it crashes before the import is finished, the next run of the cron job two minutes later will continue it where it left off, ensuring reliability."
|
4001 |
+
msgstr "Ele também opera desta forma em caso de falhas inesperadas por seu host. Se ele falhar antes de concluir a importação, a próxima execução do trabalho cron dois minutos depois continuará onde ele parou, garantindo a confiabilidade."
|
4002 |
+
|
4003 |
+
#: views/admin/manage/scheduling.php:41
|
4004 |
+
msgid "Notes"
|
4005 |
+
msgstr "Notas"
|
4006 |
+
|
4007 |
+
#: views/admin/manage/scheduling.php:44
|
4008 |
+
msgid "Your web host may require you to use a command other than wget, although wget is most common. In this case, you must asking your web hosting provider for help."
|
4009 |
+
msgstr "Seu host pode exigir que você use um comando diferente do wget, embora o wget seja o mais comum. Neste caso, você deve pedir ajuda ao seu provedor de hospedagem."
|
4010 |
+
|
4011 |
+
#: views/admin/manage/scheduling.php:54
|
4012 |
+
msgid "To schedule this import with a cron job, you must use the \"Download from URL\" option on the Import Settings screen of WP All Import."
|
4013 |
+
msgstr "Para programar esta importação com uma tarefa cron, você deve usar a opção \"Download pela URL\" na tela Configurações de Importação do WP All Import."
|
4014 |
+
|
4015 |
+
#: views/admin/manage/scheduling.php:57
|
4016 |
+
msgid "Go to Import Settings now..."
|
4017 |
+
msgstr "Vá para configurações de importação agora..."
|
4018 |
+
|
4019 |
+
#: views/admin/manage/update.php:1
|
4020 |
+
msgid "Update Import"
|
4021 |
+
msgstr "Atualizar Importação"
|
4022 |
+
|
4023 |
+
#: views/admin/manage/update.php:9
|
4024 |
+
msgid "Are you sure you want to update <strong>%s</strong> import?"
|
4025 |
+
msgstr "Tem certeza de que deseja atualizar a importação do <strong>%s</strong>?"
|
4026 |
+
|
4027 |
+
#: views/admin/manage/update.php:10
|
4028 |
+
msgid "Source path is <strong>%s</strong>"
|
4029 |
+
msgstr "O caminho de origem é <strong>%s</strong>"
|
4030 |
+
|
4031 |
+
#: views/admin/manage/update.php:21
|
4032 |
+
msgid "Update feature is not available for this import since it has no external path linked."
|
4033 |
+
msgstr "A funcionalidade da atualização não está disponível para esta importação, uma vez que não tem um caminho externo ligado."
|
4034 |
+
|
4035 |
+
#: views/admin/settings/index.php:18
|
4036 |
+
msgid "Import/Export Templates"
|
4037 |
+
msgstr "Importar/Exportar Modelos"
|
4038 |
+
|
4039 |
+
#: views/admin/settings/index.php:32
|
4040 |
+
msgid "Delete Selected"
|
4041 |
+
msgstr "Excluir Seleção"
|
4042 |
+
|
4043 |
+
#: views/admin/settings/index.php:33
|
4044 |
+
msgid "Export Selected"
|
4045 |
+
msgstr "Exportar Seleção"
|
4046 |
+
|
4047 |
+
#: views/admin/settings/index.php:36
|
4048 |
+
msgid "There are no templates saved"
|
4049 |
+
msgstr "Não existem modelos salvos"
|
4050 |
+
|
4051 |
+
#: views/admin/settings/index.php:41
|
4052 |
+
msgid "Import Templates"
|
4053 |
+
msgstr "Importação de modelos"
|
4054 |
+
|
4055 |
+
#: views/admin/settings/index.php:49
|
4056 |
+
msgid "Cron Imports"
|
4057 |
+
msgstr "Importação Cron"
|
4058 |
+
|
4059 |
+
#: views/admin/settings/index.php:54
|
4060 |
+
msgid "Secret Key"
|
4061 |
+
msgstr "Chave Secreta"
|
4062 |
+
|
4063 |
+
#: views/admin/settings/index.php:57
|
4064 |
+
msgid "Changing this will require you to re-create your existing cron jobs."
|
4065 |
+
msgstr "Alterar isso exigirá que você recrie seus trabalhos cron existentes."
|
4066 |
+
|
4067 |
+
#: views/admin/settings/index.php:61
|
4068 |
+
msgid "Cron Processing Time Limit"
|
4069 |
+
msgstr "Limite de tempo de Processamento Cron"
|
4070 |
+
|
4071 |
+
#: views/admin/settings/index.php:64
|
4072 |
+
msgid "Leave blank to use your server's limit on script run times."
|
4073 |
+
msgstr "Deixe em branco para usar os tempos de limite do servidor na execução do script."
|
4074 |
+
|
4075 |
+
#: views/admin/settings/index.php:68
|
4076 |
+
msgid "Cron Sleep"
|
4077 |
+
msgstr "Pause Cron"
|
4078 |
+
|
4079 |
+
#: views/admin/settings/index.php:71
|
4080 |
+
msgid "Sleep the specified number of seconds between each post created, updated, or deleted with cron. Leave blank to not sleep. Only necessary on servers that are slowed down by the cron job because they have very minimal processing power and resources."
|
4081 |
+
msgstr "Defina o número especificado de segundos entre cada postagem criada, atualizada ou excluída com o cron. Deixe em branco para não pausar. Somente necessário em servidores que são retardados pelo trabalho cron porque eles têm poder de processamento e recursos mínimos."
|
4082 |
+
|
4083 |
+
#: views/admin/settings/index.php:84 views/admin/settings/index.php:87
|
4084 |
+
msgid "Secure Mode"
|
4085 |
+
msgstr "Modo de Segurança"
|
4086 |
+
|
4087 |
+
#: views/admin/settings/index.php:89
|
4088 |
+
msgid "Randomize folder names"
|
4089 |
+
msgstr "Nome de pastas aleatório"
|
4090 |
+
|
4091 |
+
#: views/admin/settings/index.php:95
|
4092 |
+
msgid "Imported files, chunks, logs and temporary files will be placed in a folder with a randomized name inside of %s."
|
4093 |
+
msgstr "Arquivos importados, pedaços, logs e arquivos temporários serão colocados em uma pasta com um nome aleatório dentro de %s."
|
4094 |
+
|
4095 |
+
#: views/admin/settings/index.php:100
|
4096 |
+
msgid "Log Storage"
|
4097 |
+
msgstr "Armazenamento de log"
|
4098 |
+
|
4099 |
+
#: views/admin/settings/index.php:103
|
4100 |
+
msgid "Number of logs to store for each import. Enter 0 to never store logs."
|
4101 |
+
msgstr "Número de registros a serem armazenados para cada importação. Digite 0 para nunca armazenar logs."
|
4102 |
+
|
4103 |
+
#: views/admin/settings/index.php:107
|
4104 |
+
msgid "Clean Up Temp Files"
|
4105 |
+
msgstr "Limpar arquivos temporários"
|
4106 |
+
|
4107 |
+
#: views/admin/settings/index.php:109
|
4108 |
+
msgid "Clean Up"
|
4109 |
+
msgstr "Limpar"
|
4110 |
+
|
4111 |
+
#: views/admin/settings/index.php:110
|
4112 |
+
msgid "Attempt to remove temp files left over by imports that were improperly terminated."
|
4113 |
+
msgstr "Tentativa de remover arquivos temporários extras por importações que foram encerradas incorretamente."
|
4114 |
+
|
4115 |
+
#: views/admin/settings/index.php:118
|
4116 |
+
msgid "Advanced Settings"
|
4117 |
+
msgstr "Configurações Avançadas"
|
4118 |
+
|
4119 |
+
#: views/admin/settings/index.php:123
|
4120 |
+
msgid "Chunk Size"
|
4121 |
+
msgstr "Tamanho do pedaço"
|
4122 |
+
|
4123 |
+
#: views/admin/settings/index.php:126
|
4124 |
+
msgid "Split file into chunks containing the specified number of records."
|
4125 |
+
msgstr "Dividir arquivo em pedaços contendo o número especificado de registros."
|
4126 |
+
|
4127 |
+
#: views/admin/settings/index.php:130
|
4128 |
+
msgid "WP_IMPORTING"
|
4129 |
+
msgstr "WP_IMPORTING"
|
4130 |
+
|
4131 |
+
#: views/admin/settings/index.php:134
|
4132 |
+
msgid "Enable WP_IMPORTING"
|
4133 |
+
msgstr "Habilitar WP_IMPORTING"
|
4134 |
+
|
4135 |
+
#: views/admin/settings/index.php:136
|
4136 |
+
msgid "Setting this constant avoids triggering pingback."
|
4137 |
+
msgstr "Definir esta constante evita o disparo do pingback."
|
4138 |
+
|
4139 |
+
#: views/admin/settings/index.php:140
|
4140 |
+
msgid "Add Port To URL"
|
4141 |
+
msgstr "Adicionar porta para URL"
|
4142 |
+
|
4143 |
+
#: views/admin/settings/index.php:143
|
4144 |
+
msgid "Specify the port number to add if you're having problems continuing to Step 2 and are running things on a custom port. Default is blank."
|
4145 |
+
msgstr "Especifique o número da porta a adicionar se você estiver tendo problemas para continuar com a Etapa 2 e estiver executando as coisas em uma porta personalizada. O padrão é em branco."
|
4146 |
+
|
4147 |
+
#: views/admin/settings/index.php:150
|
4148 |
+
msgid "Licenses"
|
4149 |
+
msgstr "Licenças"
|
4150 |
+
|
4151 |
+
#: views/admin/settings/index.php:157
|
4152 |
+
msgid "License Key"
|
4153 |
+
msgstr "Licença Chave"
|
4154 |
+
|
4155 |
+
#: views/admin/settings/index.php:170
|
4156 |
+
msgid "A license key is required to access plugin updates. You can use your license key on an unlimited number of websites. Do not distribute your license key to 3rd parties. You can get your license key in the <a target=\"_blank\" href=\"http://www.wpallimport.com/portal\">customer portal</a>."
|
4157 |
+
msgstr "Uma chave de licença é necessária para acessar atualizações de plug-ins. Você pode usar sua chave de licença em um número ilimitado de sites. Não distribua sua chave de licença para terceiros. Você pode obter sua chave de licença no <a target=\"_blank\" href=\"http://www.wpallimport.com/portal\">portal do cliente</a>."
|
4158 |
+
|
4159 |
+
#: views/admin/settings/index.php:177
|
4160 |
+
msgid "Force Stream Reader"
|
4161 |
+
msgstr "Forçar Stream Reader"
|
4162 |
+
|
4163 |
+
#: views/admin/settings/index.php:182
|
4164 |
+
msgid "Force WP All Import to use StreamReader instead of XMLReader to parse all import files"
|
4165 |
+
msgstr "Forçar o WP All Import para usar StreamReader em vez de XMLReader para analisar todos os arquivos de importação"
|
4166 |
+
|
4167 |
+
#: views/admin/settings/index.php:186
|
4168 |
+
msgid "Enable Stream Reader"
|
4169 |
+
msgstr "Habilitar Stream Reader"
|
4170 |
+
|
4171 |
+
#: wp-all-import-pro.php:20
|
4172 |
+
msgid "Please de-activate and remove the free version of WP All Import before activating the paid version."
|
4173 |
+
msgstr "Por favor, desative e remova a versão gratuita do WP All Import antes de ativar a versão paga."
|
4174 |
+
|
4175 |
+
#: wp-all-import-pro.php:332
|
4176 |
+
msgid "To enable updates, please enter your license key on the <a href=\"%s\">Licenses</a> page. If you don't have a licence key, please see <a href=\"%s\">details & pricing</a>"
|
4177 |
+
msgstr "Para ativar as atualizações, insira sua chave de licença na página <a href=\"%s\">Licenças</a. Se você não tem uma chave de licença, consulte <a href=\"%s\">detalhes e preços</a>"
|
4178 |
+
|
4179 |
+
#: wp-all-import-pro.php:819 wp-all-import-pro.php:823
|
4180 |
+
msgid "Uploads folder %s must be writable"
|
4181 |
+
msgstr "A pasta de uploads %s deve ser gravável"
|
4182 |
+
|
4183 |
+
#: wp-all-import-pro.php:960
|
4184 |
+
msgid "<b>%s Plugin</b>: Current sql user %s doesn't have ALTER privileges"
|
4185 |
+
msgstr "<b>%s Plugin:</b> O usuário atual do sql %s não tem privilégios ALTER"
|
4186 |
+
|
4187 |
+
#. Plugin Name of the plugin/theme
|
4188 |
+
#:
|
4189 |
+
msgid "WP All Import Pro"
|
4190 |
+
msgstr "WP All Import Pro"
|
4191 |
+
|
4192 |
+
#. Plugin URI of the plugin/theme
|
4193 |
+
#:
|
4194 |
+
msgid "http://www.wpallimport.com/"
|
4195 |
+
msgstr "http://www.wpallimport.com/"
|
4196 |
+
|
4197 |
+
#. Description of the plugin/theme
|
4198 |
+
#:
|
4199 |
+
msgid "The most powerful solution for importing XML and CSV files to WordPress. Import to Posts, Pages, and Custom Post Types. Support for imports that run on a schedule, ability to update existing imports, and much more."
|
4200 |
+
msgstr "A solução a mais poderosa para importar arquivos XML e CSV para o WordPress. Importar para postagens, páginas e tipos de postagem personalizados. Suporte para importações que executam em um cronograma, capaz de atualizar importações existentes e muito mais."
|
4201 |
+
|
4202 |
+
#. Author of the plugin/theme
|
4203 |
+
#:
|
4204 |
+
msgid "Soflyy"
|
4205 |
+
msgstr "Soflyy"
|
4206 |
+
|
libraries/XmlImportCsvParse.php
CHANGED
@@ -976,9 +976,17 @@ class PMXI_CsvParser
|
|
976 |
|
977 |
$create_new_headers = apply_filters('wp_all_import_auto_create_csv_headers', false, $import_id);
|
978 |
$replace_first_number = apply_filters('wp_all_import_replace_first_number_in_headers', true, $import_id);
|
979 |
-
$
|
|
|
980 |
while ($keys = fgetcsv($res, $l, $d, $e)) {
|
981 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
982 |
$empty_columns = 0;
|
983 |
foreach ($keys as $key) {
|
984 |
if ($key == '') $empty_columns++;
|
@@ -989,9 +997,9 @@ class PMXI_CsvParser
|
|
989 |
if ($c == 0) {
|
990 |
$buf_keys = $keys;
|
991 |
foreach ($keys as $key => $value) {
|
992 |
-
if (!$create_new_headers and (preg_match('%\W(http:|https:|ftp:)$%i', $value) or is_numeric($value))) $create_new_headers = true;
|
993 |
if ($replace_first_number){
|
994 |
-
|
995 |
}
|
996 |
else{
|
997 |
$value = preg_replace('/[^a-z0-9_]/i', '', $value);
|
@@ -1000,14 +1008,14 @@ class PMXI_CsvParser
|
|
1000 |
}
|
1001 |
}
|
1002 |
$value = (!empty($value)) ? $value : 'undefined' . $key;
|
1003 |
-
if (empty($headers[$value]))
|
1004 |
$headers[$value] = 1;
|
1005 |
else
|
1006 |
$headers[$value]++;
|
1007 |
|
1008 |
$keys[$key] = ($headers[$value] === 1) ? $value : $value . '_' . $headers[$value];
|
1009 |
}
|
1010 |
-
$this->headers = $keys;
|
1011 |
if ($create_new_headers){
|
1012 |
$this->createHeaders('column');
|
1013 |
$keys = $buf_keys;
|
976 |
|
977 |
$create_new_headers = apply_filters('wp_all_import_auto_create_csv_headers', false, $import_id);
|
978 |
$replace_first_number = apply_filters('wp_all_import_replace_first_number_in_headers', true, $import_id);
|
979 |
+
$skip_x_rows = apply_filters('wp_all_import_skip_x_csv_rows', false, $import_id);
|
980 |
+
$headers = array();
|
981 |
while ($keys = fgetcsv($res, $l, $d, $e)) {
|
982 |
+
if ($skip_x_rows !== false && $skip_x_rows > $c){
|
983 |
+
$c++;
|
984 |
+
continue;
|
985 |
+
}
|
986 |
+
if ($skip_x_rows !== false && $skip_x_rows <= $c){
|
987 |
+
$skip_x_rows = false;
|
988 |
+
$c = 0;
|
989 |
+
}
|
990 |
$empty_columns = 0;
|
991 |
foreach ($keys as $key) {
|
992 |
if ($key == '') $empty_columns++;
|
997 |
if ($c == 0) {
|
998 |
$buf_keys = $keys;
|
999 |
foreach ($keys as $key => $value) {
|
1000 |
+
if (!$create_new_headers and (preg_match('%\W(http:|https:|ftp:)$%i', $value) or is_numeric($value))) $create_new_headers = true;
|
1001 |
if ($replace_first_number){
|
1002 |
+
$value = trim(strtolower(preg_replace('/^[0-9]{1}/','el_', preg_replace('/[^a-z0-9_]/i', '', $value))));
|
1003 |
}
|
1004 |
else{
|
1005 |
$value = preg_replace('/[^a-z0-9_]/i', '', $value);
|
1008 |
}
|
1009 |
}
|
1010 |
$value = (!empty($value)) ? $value : 'undefined' . $key;
|
1011 |
+
if (empty($headers[$value]))
|
1012 |
$headers[$value] = 1;
|
1013 |
else
|
1014 |
$headers[$value]++;
|
1015 |
|
1016 |
$keys[$key] = ($headers[$value] === 1) ? $value : $value . '_' . $headers[$value];
|
1017 |
}
|
1018 |
+
$this->headers = $keys;
|
1019 |
if ($create_new_headers){
|
1020 |
$this->createHeaders('column');
|
1021 |
$keys = $buf_keys;
|
libraries/XmlImportTemplate.php
CHANGED
@@ -25,6 +25,8 @@ class XmlImportTemplate {
|
|
25 |
*/
|
26 |
protected $cachedTemplate;
|
27 |
|
|
|
|
|
28 |
/**
|
29 |
* Creates new instance
|
30 |
*
|
@@ -35,6 +37,7 @@ class XmlImportTemplate {
|
|
35 |
{
|
36 |
$this->xml = $xml;
|
37 |
$this->cachedTemplate = $cachedTemplate;
|
|
|
38 |
}
|
39 |
|
40 |
/**
|
@@ -64,10 +67,10 @@ class XmlImportTemplate {
|
|
64 |
|
65 |
if (is_array($xpath) && count($xpath) > 0) {
|
66 |
$result = array();
|
67 |
-
foreach ($xpath as $xp) { //
|
68 |
ob_start();
|
69 |
echo $xp;
|
70 |
-
$result[] = trim(ob_get_clean());
|
71 |
}
|
72 |
return implode(XmlImportConfig::getInstance()->getMultiGlue(), $result);
|
73 |
} else {
|
25 |
*/
|
26 |
protected $cachedTemplate;
|
27 |
|
28 |
+
protected $trimValues = TRUE;
|
29 |
+
|
30 |
/**
|
31 |
* Creates new instance
|
32 |
*
|
37 |
{
|
38 |
$this->xml = $xml;
|
39 |
$this->cachedTemplate = $cachedTemplate;
|
40 |
+
$this->trimValues = apply_filters('wp_all_import_is_trim_parsed_data', $this->trimValues);
|
41 |
}
|
42 |
|
43 |
/**
|
67 |
|
68 |
if (is_array($xpath) && count($xpath) > 0) {
|
69 |
$result = array();
|
70 |
+
foreach ($xpath as $xp) { // concatenate multiple elements into 1 string
|
71 |
ob_start();
|
72 |
echo $xp;
|
73 |
+
$result[] = $this->trimValues ? trim(ob_get_clean()) : ob_get_clean();
|
74 |
}
|
75 |
return implode(XmlImportConfig::getInstance()->getMultiGlue(), $result);
|
76 |
} else {
|
libraries/XmlImportXLSParse.php
CHANGED
@@ -34,19 +34,22 @@ class PMXI_XLSParser{
|
|
34 |
|
35 |
$objPHPExcel = PHPExcel_IOFactory::load($this->_filename);
|
36 |
|
37 |
-
|
38 |
|
39 |
-
|
|
|
|
|
|
|
40 |
->setEnclosure('"')
|
41 |
->setLineEnding("\r\n")
|
42 |
->setSheetIndex(0)
|
43 |
->save($this->csv_path);
|
44 |
|
45 |
-
include_once(PMXI_Plugin::ROOT_DIR . '/libraries/XmlImportCsvParse.php');
|
46 |
|
47 |
-
$this->xml = new PMXI_CsvParser( array( 'filename' => $this->csv_path, 'targetDir' => $this->targetDir ) );
|
48 |
|
49 |
-
@unlink($this->csv_path);
|
50 |
|
51 |
return $this->xml->xml_path;
|
52 |
|
34 |
|
35 |
$objPHPExcel = PHPExcel_IOFactory::load($this->_filename);
|
36 |
|
37 |
+
$objPHPExcel = apply_filters('wp_all_import_phpexcel_object', $objPHPExcel, $this->_filename);
|
38 |
|
39 |
+
$PHPExcelDelimiter = ",";
|
40 |
+
$PHPExcelDelimiter = apply_filters('wp_all_import_phpexcel_delimiter', $PHPExcelDelimiter, $this->_filename);
|
41 |
+
|
42 |
+
$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'CSV')->setDelimiter($PHPExcelDelimiter)
|
43 |
->setEnclosure('"')
|
44 |
->setLineEnding("\r\n")
|
45 |
->setSheetIndex(0)
|
46 |
->save($this->csv_path);
|
47 |
|
48 |
+
include_once(PMXI_Plugin::ROOT_DIR . '/libraries/XmlImportCsvParse.php');
|
49 |
|
50 |
+
$this->xml = new PMXI_CsvParser( array( 'filename' => $this->csv_path, 'targetDir' => $this->targetDir ) );
|
51 |
|
52 |
+
@unlink($this->csv_path);
|
53 |
|
54 |
return $this->xml->xml_path;
|
55 |
|
models/import/record.php
CHANGED
@@ -365,7 +365,7 @@ class PMXI_Import_Record extends PMXI_Model_Record {
|
|
365 |
require_once(ABSPATH . 'wp-admin/includes/taxonomy.php');
|
366 |
|
367 |
$taxonomies = array();
|
368 |
-
$exclude_taxonomies = apply_filters('pmxi_exclude_taxonomies', (class_exists('PMWI_Plugin')) ? array('post_format', 'product_type', 'product_shipping_class') : array('post_format'));
|
369 |
$post_taxonomies = array_diff_key(get_taxonomies_by_object_type(array($this->options['custom_type']), 'object'), array_flip($exclude_taxonomies));
|
370 |
if ( $this->is_parsing_required('is_update_categories') && ! empty($post_taxonomies) && ! in_array($this->options['custom_type'], array('import_users', 'taxonomies')) ):
|
371 |
foreach ($post_taxonomies as $ctx): if ("" == $ctx->labels->name or (class_exists('PMWI_Plugin') and strpos($ctx->name, "pa_") === 0 and $this->options['custom_type'] == "product")) continue;
|
@@ -2620,7 +2620,7 @@ class PMXI_Import_Record extends PMXI_Model_Record {
|
|
2620 |
}
|
2621 |
|
2622 |
protected function associate_terms($pid, $assign_taxes, $tx_name, $logger, $is_cron = false){
|
2623 |
-
|
2624 |
$terms = wp_get_object_terms( $pid, $tx_name );
|
2625 |
$term_ids = array();
|
2626 |
|
365 |
require_once(ABSPATH . 'wp-admin/includes/taxonomy.php');
|
366 |
|
367 |
$taxonomies = array();
|
368 |
+
$exclude_taxonomies = apply_filters('pmxi_exclude_taxonomies', (class_exists('PMWI_Plugin')) ? array('post_format', 'product_type', 'product_shipping_class', 'product_visibility') : array('post_format'));
|
369 |
$post_taxonomies = array_diff_key(get_taxonomies_by_object_type(array($this->options['custom_type']), 'object'), array_flip($exclude_taxonomies));
|
370 |
if ( $this->is_parsing_required('is_update_categories') && ! empty($post_taxonomies) && ! in_array($this->options['custom_type'], array('import_users', 'taxonomies')) ):
|
371 |
foreach ($post_taxonomies as $ctx): if ("" == $ctx->labels->name or (class_exists('PMWI_Plugin') and strpos($ctx->name, "pa_") === 0 and $this->options['custom_type'] == "product")) continue;
|
2620 |
}
|
2621 |
|
2622 |
protected function associate_terms($pid, $assign_taxes, $tx_name, $logger, $is_cron = false){
|
2623 |
+
wp_cache_flush();
|
2624 |
$terms = wp_get_object_terms( $pid, $tx_name );
|
2625 |
$term_ids = array();
|
2626 |
|
plugin.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WP All Import
|
4 |
Plugin URI: http://www.wpallimport.com/upgrade-to-pro?utm_source=wordpress.org&utm_medium=plugins-page&utm_campaign=free+plugin
|
5 |
Description: The most powerful solution for importing XML and CSV files to WordPress. Create Posts and Pages with content from any XML or CSV file. A paid upgrade to WP All Import Pro is available for support and additional features.
|
6 |
-
Version: 3.4.
|
7 |
Author: Soflyy
|
8 |
*/
|
9 |
|
@@ -25,7 +25,7 @@ define('WP_ALL_IMPORT_ROOT_URL', rtrim(plugin_dir_url(__FILE__), '/'));
|
|
25 |
*/
|
26 |
define('WP_ALL_IMPORT_PREFIX', 'pmxi_');
|
27 |
|
28 |
-
define('PMXI_VERSION', '3.4.
|
29 |
|
30 |
define('PMXI_EDITION', 'free');
|
31 |
|
@@ -242,7 +242,10 @@ final class PMXI_Plugin {
|
|
242 |
$option_name = get_class($this) . '_Options';
|
243 |
$options_default = PMXI_Config::createFromFile(self::ROOT_DIR . '/config/options.php')->toArray();
|
244 |
|
245 |
-
$
|
|
|
|
|
|
|
246 |
$this->options = array_intersect_key($options_default, array_flip(array('info_api_url'))) + $this->options; // make sure hidden options apply upon plugin reactivation
|
247 |
if ('' == $this->options['cron_job_key']) $this->options['cron_job_key'] = wp_all_import_url_title(wp_all_import_rand_char(12));
|
248 |
|
3 |
Plugin Name: WP All Import
|
4 |
Plugin URI: http://www.wpallimport.com/upgrade-to-pro?utm_source=wordpress.org&utm_medium=plugins-page&utm_campaign=free+plugin
|
5 |
Description: The most powerful solution for importing XML and CSV files to WordPress. Create Posts and Pages with content from any XML or CSV file. A paid upgrade to WP All Import Pro is available for support and additional features.
|
6 |
+
Version: 3.4.3
|
7 |
Author: Soflyy
|
8 |
*/
|
9 |
|
25 |
*/
|
26 |
define('WP_ALL_IMPORT_PREFIX', 'pmxi_');
|
27 |
|
28 |
+
define('PMXI_VERSION', '3.4.3');
|
29 |
|
30 |
define('PMXI_EDITION', 'free');
|
31 |
|
242 |
$option_name = get_class($this) . '_Options';
|
243 |
$options_default = PMXI_Config::createFromFile(self::ROOT_DIR . '/config/options.php')->toArray();
|
244 |
|
245 |
+
$current_options = get_option($option_name, array());
|
246 |
+
if (empty($current_options)) $current_options = array();
|
247 |
+
|
248 |
+
$this->options = array_intersect_key($current_options, $options_default) + $options_default;
|
249 |
$this->options = array_intersect_key($options_default, array_flip(array('info_api_url'))) + $this->options; // make sure hidden options apply upon plugin reactivation
|
250 |
if ('' == $this->options['cron_job_key']) $this->options['cron_job_key'] = wp_all_import_url_title(wp_all_import_rand_char(12));
|
251 |
|
readme.txt
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
=== Import any XML or CSV File to WordPress ===
|
2 |
Contributors: soflyy, wpallimport
|
3 |
Requires at least: 4.1
|
4 |
-
Tested up to: 4.7.
|
5 |
-
Stable tag: 3.4.
|
6 |
Tags: wordpress csv import, wordpress xml import, xml, csv, datafeed, import, migrate, import csv to wordpress, import xml to wordpress, advanced xml import, advanced csv import, bulk csv import, bulk xml import, bulk data import, xml to custom post type, csv to custom post type, woocommerce csv import, woocommerce xml import, csv import, import csv, xml import, import xml, csv importer
|
7 |
|
8 |
WP All Import is an extremely powerful importer that makes it easy to import any XML or CSV file to WordPress.
|
@@ -105,6 +105,13 @@ Does it work with special character encoding like Hebrew, Arabic, Chinese, etc?
|
|
105 |
|
106 |
== Changelog ==
|
107 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
108 |
= 3.4.2 =
|
109 |
* bug fix: conflict with the event calendar plugin
|
110 |
* bug fix: import images for newly created products
|
1 |
=== Import any XML or CSV File to WordPress ===
|
2 |
Contributors: soflyy, wpallimport
|
3 |
Requires at least: 4.1
|
4 |
+
Tested up to: 4.7.4
|
5 |
+
Stable tag: 3.4.3
|
6 |
Tags: wordpress csv import, wordpress xml import, xml, csv, datafeed, import, migrate, import csv to wordpress, import xml to wordpress, advanced xml import, advanced csv import, bulk csv import, bulk xml import, bulk data import, xml to custom post type, csv to custom post type, woocommerce csv import, woocommerce xml import, csv import, import csv, xml import, import xml, csv importer
|
7 |
|
8 |
WP All Import is an extremely powerful importer that makes it easy to import any XML or CSV file to WordPress.
|
105 |
|
106 |
== Changelog ==
|
107 |
|
108 |
+
= 3.4.3 =
|
109 |
+
* improvement: new filter 'wp_all_import_phpexcel_delimiter'
|
110 |
+
* improvement: new filter 'wp_all_import_is_trim_parsed_data'
|
111 |
+
* improvement: added new filter 'wp_all_import_skip_x_csv_rows'
|
112 |
+
* improvement: added csv delimiter setting to import options screen
|
113 |
+
* bug fix: import duplicate tags
|
114 |
+
|
115 |
= 3.4.2 =
|
116 |
* bug fix: conflict with the event calendar plugin
|
117 |
* bug fix: import images for newly created products
|
views/admin/import/confirm.php
CHANGED
@@ -138,7 +138,7 @@
|
|
138 |
}
|
139 |
if ( in_array($import_type, array('upload', 'file'))){ $path = preg_replace('%.*wp-content/%', 'wp-content/', $path); }
|
140 |
?>
|
141 |
-
<p><?php printf(__('WP All Import will import the file <span style="color:#40acad;">%s</span>, which is <span style="color:#000; font-weight:bold;">%s</span>', 'wp_all_import_plugin'), $path, (isset($locfilePath)) ?
|
142 |
|
143 |
<?php if ( strpos($xpath, '[') !== false){ ?>
|
144 |
<p><?php printf(__('WP All Import will process the records matching the XPath expression: <span style="color:#46ba69; font-weight:bold;">%s</span>', 'wp_all_import_plugin'), $xpath); ?></p>
|
138 |
}
|
139 |
if ( in_array($import_type, array('upload', 'file'))){ $path = preg_replace('%.*wp-content/%', 'wp-content/', $path); }
|
140 |
?>
|
141 |
+
<p><?php printf(__('WP All Import will import the file <span style="color:#40acad;">%s</span>, which is <span style="color:#000; font-weight:bold;">%s</span>', 'wp_all_import_plugin'), $path, (isset($locfilePath)) ? pmxi_human_filesize(filesize($locfilePath)) : __('undefined', 'wp_all_import_plugin')); ?></p>
|
142 |
|
143 |
<?php if ( strpos($xpath, '[') !== false){ ?>
|
144 |
<p><?php printf(__('WP All Import will process the records matching the XPath expression: <span style="color:#46ba69; font-weight:bold;">%s</span>', 'wp_all_import_plugin'), $xpath); ?></p>
|
views/admin/import/options/_settings_template.php
CHANGED
@@ -172,7 +172,12 @@
|
|
172 |
<div class="input">
|
173 |
<input type="text" name="xpath" value="<?php echo esc_attr($import->xpath) ?>" style="width: 50%; font-size: 18px; color: #555; height: 50px; padding: 10px;"/>
|
174 |
</div>
|
175 |
-
|
|
|
|
|
|
|
|
|
|
|
176 |
<h4><?php _e('Downloads', 'wp_all_import_plugin'); ?></h4>
|
177 |
|
178 |
<div class="input">
|
172 |
<div class="input">
|
173 |
<input type="text" name="xpath" value="<?php echo esc_attr($import->xpath) ?>" style="width: 50%; font-size: 18px; color: #555; height: 50px; padding: 10px;"/>
|
174 |
</div>
|
175 |
+
<?php if ( ! empty($post['delimiter']) ): ?>
|
176 |
+
<h4><?php _e('CSV Delimiter', 'wp_all_import_plugin'); ?></h4>
|
177 |
+
<div class="input">
|
178 |
+
<input type="text" name="delimiter" value="<?php echo $post['delimiter']; ?>" style="width: 50px !important; font-size: 18px; color: #555; height: 50px; padding: 10px;"/>
|
179 |
+
</div>
|
180 |
+
<?php endif; ?>
|
181 |
<h4><?php _e('Downloads', 'wp_all_import_plugin'); ?></h4>
|
182 |
|
183 |
<div class="input">
|