PluginProbe
Import WP – CSV & XML Import Export for WordPress / 2.15.0
Import WP – CSV & XML Import Export for WordPress v2.15.0
2.15.1 2.15.0 2.14.24 2.14.23 2.7.0 2.7.1 2.7.10 2.7.11 2.7.12 2.7.13 2.7.14 2.7.2 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 2.7.8 2.7.9 2.8.0 2.8.1 2.8.2 2.8.3 2.9.0 2.9.1 All 144 releases
← All changes | class/Common/Exporter/Mapper/CommentMapper.php +3 -3 2.9.0 → 2.15.0 View file →
@@ -52,15 +52,15 @@
52 52 global $wpdb;
53 53
54 54 $fields = [
55 55 'key' => 'main',
56 - 'label' => 'Comment',
56 + 'label' => __('Comment', 'jc-importer'),
57 57 'loop' => true,
58 58 'fields' => [],
59 59 'children' => [
60 60 'custom_fields' => [
61 61 'key' => 'custom_fields',
62 - 'label' => 'Custom Fields',
62 + 'label' => __('Custom Fields', 'jc-importer'),
63 63 'loop' => true,
64 64 'loop_fields' => ['meta_key', 'meta_value'],
65 65 'fields' => [],
66 66 'children' => []
@@ -88,9 +88,9 @@
88 88 }
89 89
90 90 $fields['children']['custom_fields']['fields'] = apply_filters('iwp/exporter/comment/custom_field_list', $fields['children']['custom_fields']['fields'], $this->post_type);
91 91
92 - return $fields;
92 + return $this->parse_fields($fields);
93 93 }
94 94
95 95 public function have_records($exporter_id)
96 96 {