Content Egg - Version 3.2.1

Version Description

Download this release

Release Info

Developer keywordrush
Plugin Icon 128x128 Content Egg
Version 3.2.1
Comparing to
See all releases

Code changes from version 3.2.0 to 3.2.1

application/BlockShortcode.php CHANGED
@@ -91,7 +91,7 @@ class BlockShortcode {
91
  return '';
92
 
93
  // Get supported modules for this tpl
94
- $headers = \get_file_data($template_file, array('module_ids' => 'Modules', 'module_types' => 'Module Types'));
95
  $supported_module_ids = array();
96
  if ($headers && !empty($headers['module_ids']))
97
  {
@@ -104,6 +104,12 @@ class BlockShortcode {
104
  $supported_module_ids = ModuleManager::getInstance()->getParserModuleIdsByTypes($module_types, true);
105
  }
106
 
 
 
 
 
 
 
107
  // Module IDs from shortcode param. Validated.
108
  if ($a['modules'])
109
  $module_ids = $a['modules'];
91
  return '';
92
 
93
  // Get supported modules for this tpl
94
+ $headers = \get_file_data($template_file, array('module_ids' => 'Modules', 'module_types' => 'Module Types', 'shortcoded' => 'Shortcoded'));
95
  $supported_module_ids = array();
96
  if ($headers && !empty($headers['module_ids']))
97
  {
104
  $supported_module_ids = ModuleManager::getInstance()->getParserModuleIdsByTypes($module_types, true);
105
  }
106
 
107
+ if ($headers && !empty($headers['shortcoded']))
108
+ {
109
+ // convert string to boolean
110
+ $a['shortcoded'] = filter_var($headers['shortcoded'], FILTER_VALIDATE_BOOLEAN);
111
+ }
112
+
113
  // Module IDs from shortcode param. Validated.
114
  if ($a['modules'])
115
  $module_ids = $a['modules'];
application/ModuleViewer.php CHANGED
@@ -154,7 +154,8 @@ class ModuleViewer {
154
  $data[$module_id] = $module_data;
155
 
156
  // shortcoded!
157
- Shortcoded::getInstance($post_id)->setShortcodedModule($module_id);
 
158
  }
159
  if (!$data)
160
  return;
154
  $data[$module_id] = $module_data;
155
 
156
  // shortcoded!
157
+ if (!isset($params['shortcoded']) || (bool) $params['shortcoded'])
158
+ Shortcoded::getInstance($post_id)->setShortcodedModule($module_id);
159
  }
160
  if (!$data)
161
  return;
application/Plugin.php CHANGED
@@ -14,8 +14,8 @@ use ContentEgg\application\helpers\CurrencyHelper;
14
  */
15
  class Plugin {
16
 
17
- const version = '3.0.5';
18
- const db_version = 26;
19
  const wp_requires = '4.2.2';
20
  const slug = 'content-egg';
21
  const api_base = 'http://www.keywordrush.com/api/v1';
@@ -42,6 +42,7 @@ class Plugin {
42
  if (!\is_admin())
43
  {
44
  \add_action('wp_enqueue_scripts', array($this, 'registerScripts'));
 
45
  EggShortcode::getInstance();
46
  BlockShortcode::getInstance();
47
  ModuleViewer::getInstance()->init();
@@ -164,4 +165,11 @@ class Plugin {
164
  return $url;
165
  }
166
 
 
 
 
 
 
 
167
  }
 
14
  */
15
  class Plugin {
16
 
17
+ const version = '3.2.1';
18
+ const db_version = 28;
19
  const wp_requires = '4.2.2';
20
  const slug = 'content-egg';
21
  const api_base = 'http://www.keywordrush.com/api/v1';
42
  if (!\is_admin())
43
  {
44
  \add_action('wp_enqueue_scripts', array($this, 'registerScripts'));
45
+ \add_action('amp_post_template_css', array($this, 'registerAmpStyles'));
46
  EggShortcode::getInstance();
47
  BlockShortcode::getInstance();
48
  ModuleViewer::getInstance()->init();
165
  return $url;
166
  }
167
 
168
+ public function registerAmpStyles()
169
+ {
170
+ echo '.egg-container .btn,.egg-container .cegg-price{white-space:nowrap;font-weight:700}.cegg-couponcode,.cegg-gridbox a{text-decoration:none}.egg-container .cegg-gridbox{box-shadow:0 8px 16px -6px #eee;border:1px solid #ddd;margin-bottom:25px;padding:20px}.egg-container .egg-listcontainer .row-products>div{margin-bottom:12px}.egg-container .btn{display:inline-block;padding:7px 14px;margin-bottom:0;font-size:14px;line-height:1.42857143;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.egg-container .btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c;text-decoration:none}.egg-container .panel-default{border:1px solid #ddd;padding:20px}.cegg-price-alert-wrap,.cegg-price-tracker-item div[id$=chart]{display:none}.cegg-price-tracker-panel .btn{margin-bottom:6px}.egg-container .cegg-no-top-margin{margin-top:0}.egg-container .cegg-mb5{margin-bottom:5px}.egg-container .cegg-mb10{margin-bottom:10px}.egg-container .cegg-mb15{margin-bottom:15px}.egg-container .cegg-mb20{margin-bottom:20px}.egg-container .cegg-mb25{margin-bottom:25px}.egg-container .cegg-mb30{margin-bottom:30px}.egg-container .cegg-mb35{margin-bottom:35px}.egg-container .cegg-lineh-20{line-height:20px}.egg-container .cegg-mr10{margin-right:10px}.egg-container .cegg-mr5{margin-right:5px}.egg-container .btn.cegg-btn-big{padding:13px 60px;line-height:1;font-size:20px;font-weight:700}.cegg-couponcode{text-align:center;background:#efffda;padding:8px;display:block;border:2px dashed #5cb85c;margin-bottom:12px}.cegg-bordered-box{border:2px solid #ededed;padding:25px}.cegg-price-tracker-item .cegg-price{font-size:22px;font-weight:700}.egg-list-coupons .btn{font-size:16px;font-weight:700;display:block}.cegg-listlogo-title{line-height:18px;font-size:15px}.cegg-list-withlogos .cegg-price,.egg-listcontainer .cegg-price{font-weight:700;font-size:20px;color:#5aaf0b}.egg-container .cegg-list-withlogos .btn{font-weight:700;font-size:15px;padding:8px 16px}.cegg-price-row strike{opacity:.42;font-size:90%}.cegg-list-logo-title{font-weight:700;font-size:17px}.egg-container .cegg-btn-grid .btn{display:block;margin-bottom:10px}#cegg_market .cegg-image-container img{max-height:350px}.cegg-review-block{padding:20px;border:1px solid #eee}.cegg-line-hr{clear:both;border-top:1px solid #eee;height:1px}.amp-wp-article-content .cegg-btn-row amp-img,.amp-wp-article-content .cegg-desc-cell amp-img,.amp-wp-article-content .cegg-price-tracker-panel .cegg-mb5 amp-img,.amp-wp-article-content .producttitle amp-img{display:inline-block;margin:0 4px 0 0;vertical-align:middle}.egg-container .cegg-promotion{top:25px;left:0;position:absolute;z-index:10}.egg-container .cegg-discount{background-color:#eb5e58;border-radius:0 4px 4px 0;color:#fff;display:inline-block;font-size:16px;padding:3px 5px}.cegg-thumb{position:relative}';
171
+ //echo '.egg-container .btn,.egg-container .cegg-price{white-space:nowrap;font-weight:700}.cegg-couponcode,.cegg-gridbox a{text-decoration:none}.egg-container .cegg-gridbox{box-shadow:0 8px 16px -6px #eee;border:1px solid #ddd;margin-bottom:25px;padding:20px}.egg-container .egg-listcontainer .row-products>div{margin-bottom:12px}.egg-container .btn{display:inline-block;padding:7px 14px;margin-bottom:0;font-size:14px;line-height:1.42857143;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.egg-container .btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c;text-decoration:none}.egg-container .panel-default{border:1px solid #ddd;padding:20px}.cegg-price-alert-wrap,.cegg-price-tracker-item div[id$=chart]{display:none}.cegg-price-tracker-panel .btn{margin-bottom:6px}.egg-container .cegg-no-top-margin{margin-top:0}.egg-container .cegg-mb5{margin-bottom:5px}.egg-container .cegg-mb10{margin-bottom:10px}.egg-container .cegg-mb15{margin-bottom:15px}.egg-container .cegg-mb20{margin-bottom:20px}.egg-container .cegg-mb25{margin-bottom:25px}.egg-container .cegg-mb30{margin-bottom:30px}.egg-container .cegg-mb35{margin-bottom:35px}.egg-container .cegg-lineh-20{line-height:20px}.egg-container .cegg-mr10{margin-right:10px}.egg-container .cegg-mr5{margin-right:5px}.egg-container .btn.cegg-btn-big{padding:13px 60px;line-height:1;font-size:20px;font-weight:700}.cegg-couponcode{text-align:center;background:#efffda;padding:8px;display:block;border:2px dashed #5cb85c;margin-bottom:12px}.cegg-bordered-box{border:2px solid #ededed;padding:25px}.cegg-price-tracker-item .cegg-price{font-size:22px;font-weight:700}.egg-list-coupons .btn{font-size:16px;font-weight:700;display:block}.cegg-listlogo-title{line-height:18px;font-size:15px}.cegg-list-withlogos .cegg-price,.egg-listcontainer .cegg-price{font-weight:700;font-size:20px;color:#5aaf0b}.egg-container .cegg-list-withlogos .btn{font-weight:700;font-size:15px;padding:8px 16px}.cegg-price-row strike{opacity:.42;font-size:90%}.cegg-list-logo-title{font-weight:700;font-size:17px}.egg-container .cegg-btn-grid .btn{display:block;margin-bottom:10px}#cegg_market .cegg-image-container img{max-height:350px}.cegg-review-block{padding:20px;border:1px solid #eee}.cegg-line-hr{clear:both;border-top:1px solid #eee;height:1px}.egg-container .cegg-promotion {top: 25px;left: 0;position: absolute;z-index: 10;}.egg-container .cegg-discount {background-color: #eb5e58;border-radius: 0 4px 4px 0;color: #fff;display: inline-block;font-size: 16px;padding: 3px 5px;}.cegg-thumb{position:relative}';
172
+ }
173
+
174
  }
175
+
application/admin/AutoblogController.php CHANGED
@@ -62,7 +62,7 @@ class AutoblogController {
62
 
63
  if ($GLOBALS['pagenow'] == 'admin.php' && !empty($_GET['page']) && $_GET['page'] == 'content-egg-autoblog-edit')
64
  {
65
- \wp_enqueue_script('contentegg-keywords', \ContentEgg\PLUGIN_RES . '/js/keywords.js', array('jquery'));
66
  // tabs
67
  \wp_enqueue_script('jquery-ui-tabs');
68
  \wp_enqueue_script('jquery-ui-button');
@@ -117,7 +117,7 @@ class AutoblogController {
117
  'post_type' => 'post',
118
  'custom_field_names' => array_fill(0, 5, ''),
119
  'custom_field_values' => array_fill(0, 5, ''),
120
- 'main_product' => 'min_price'
121
  );
122
 
123
  $message = '';
62
 
63
  if ($GLOBALS['pagenow'] == 'admin.php' && !empty($_GET['page']) && $_GET['page'] == 'content-egg-autoblog-edit')
64
  {
65
+ \wp_enqueue_script('contentegg-keywords', \ContentEgg\PLUGIN_RES . '/js/keywords.js', array('jquery'), Plugin::version());
66
  // tabs
67
  \wp_enqueue_script('jquery-ui-tabs');
68
  \wp_enqueue_script('jquery-ui-button');
117
  'post_type' => 'post',
118
  'custom_field_names' => array_fill(0, 5, ''),
119
  'custom_field_values' => array_fill(0, 5, ''),
120
+ 'main_product' => 'min_price',
121
  );
122
 
123
  $message = '';
application/admin/PluginAdmin.php CHANGED
@@ -35,7 +35,7 @@ class PluginAdmin {
35
 
36
  \add_action('admin_menu', array($this, 'add_admin_menu'));
37
  \add_action('admin_enqueue_scripts', array($this, 'admin_load_scripts'));
38
- \add_filter('parent_file', array($this, 'highlight_admin_menu'));
39
 
40
  if (isset($GLOBALS['pagenow']) && $GLOBALS['pagenow'] == 'plugins.php')
41
  {
@@ -110,26 +110,26 @@ class PluginAdmin {
110
 
111
  include \ContentEgg\PLUGIN_PATH . 'application/admin/views/' . TextHelper::clear($view_name) . '.php';
112
  }
113
-
114
  /**
115
  * Highlight menu for hidden submenu item
116
  */
117
  function highlight_admin_menu($file)
118
  {
119
  global $plugin_page;
120
-
121
  // options.php - hidden submenu items
122
  if ($file != 'options.php' || substr($plugin_page, 0, strlen(Plugin::slug())) !== Plugin::slug())
123
  return $file;
124
-
125
  $page_parts = explode('--', $plugin_page);
126
- if (count($page_parts) > 1){
127
- $plugin_page = $page_parts[0];}
128
- else
 
129
  $plugin_page = Plugin::slug();
130
-
131
  return $file;
132
  }
133
-
134
 
135
  }
35
 
36
  \add_action('admin_menu', array($this, 'add_admin_menu'));
37
  \add_action('admin_enqueue_scripts', array($this, 'admin_load_scripts'));
38
+ \add_filter('parent_file', array($this, 'highlight_admin_menu'));
39
 
40
  if (isset($GLOBALS['pagenow']) && $GLOBALS['pagenow'] == 'plugins.php')
41
  {
110
 
111
  include \ContentEgg\PLUGIN_PATH . 'application/admin/views/' . TextHelper::clear($view_name) . '.php';
112
  }
113
+
114
  /**
115
  * Highlight menu for hidden submenu item
116
  */
117
  function highlight_admin_menu($file)
118
  {
119
  global $plugin_page;
120
+
121
  // options.php - hidden submenu items
122
  if ($file != 'options.php' || substr($plugin_page, 0, strlen(Plugin::slug())) !== Plugin::slug())
123
  return $file;
124
+
125
  $page_parts = explode('--', $plugin_page);
126
+ if (count($page_parts) > 1)
127
+ {
128
+ $plugin_page = $page_parts[0];
129
+ } else
130
  $plugin_page = Plugin::slug();
131
+
132
  return $file;
133
  }
 
134
 
135
  }
application/admin/PrefillController.php CHANGED
@@ -78,6 +78,9 @@ class PrefillController {
78
  $keyword_source = InputHelper::get('keyword_source');
79
  $autoupdate = (bool) InputHelper::get('autoupdate', false);
80
  $keyword_count = (int) InputHelper::get('keyword_count');
 
 
 
81
 
82
  $parser = ModuleManager::getInstance()->parserFactory($module_id);
83
  if (!$parser->isActive())
@@ -98,6 +101,12 @@ class PrefillController {
98
 
99
  $keyword = $this->getKeyword($post_id, $keyword_source, $keyword_count);
100
 
 
 
 
 
 
 
101
  if (!$keyword)
102
  $this->printResult($log . ' - ' . __('Impossible to determine a keyword', 'content-egg'));
103
 
78
  $keyword_source = InputHelper::get('keyword_source');
79
  $autoupdate = (bool) InputHelper::get('autoupdate', false);
80
  $keyword_count = (int) InputHelper::get('keyword_count');
81
+ $minus_words = TextHelper::commaList(InputHelper::get('minus_words'));
82
+ if ($minus_words)
83
+ $minus_words = explode(',', $minus_words);
84
 
85
  $parser = ModuleManager::getInstance()->parserFactory($module_id);
86
  if (!$parser->isActive())
101
 
102
  $keyword = $this->getKeyword($post_id, $keyword_source, $keyword_count);
103
 
104
+ if ($minus_words)
105
+ {
106
+ $keyword = trim(str_replace($minus_words, '', $keyword));
107
+ $keyword = preg_replace("/\s+/ui", ' ', $keyword);
108
+ }
109
+
110
  if (!$keyword)
111
  $this->printResult($log . ' - ' . __('Impossible to determine a keyword', 'content-egg'));
112
 
application/admin/views/_promo_box.php CHANGED
@@ -6,59 +6,36 @@
6
  <a href="<?php echo ContentEgg\application\Plugin::pluginSiteUrl(); ?>">
7
  <img src="<?php echo ContentEgg\PLUGIN_RES; ?>/img/ce_pro_header.png" class="cegg-imgcenter" />
8
  </a>
 
 
9
  <a href="<?php echo ContentEgg\application\Plugin::pluginSiteUrl(); ?>">
10
  <img src="<?php echo ContentEgg\PLUGIN_RES; ?>/img/ce_pro_coupon.png" class="cegg-imgcenter" />
11
  </a>
12
- <h4><?php _e('Many additional modules and extended functions.', 'content-egg'); ?></h4>
13
-
14
- <?php /*
15
- <h3><?php _e('Монетизация:', 'content-egg'); ?></h3>
16
- <ul>
17
- <li>Aliexpress</li>
18
- <?php if (\ContentEgg\application\admin\GeneralConfig::getInstance()->option('lang') == 'ru'): ?>
19
- <li>Где Слон</li>
20
- <li>Cityads</li>
21
- <li>Ozon.ru</li>
22
- <?php endif; ?>
23
- <li>eBay</li>
24
- <li>CJ Products</li>
25
- <li>Affilinet</li>
26
- <li>Linkshare</li>
27
- <li>Shareasale</li>
28
- <li>Zanox</li>
29
- <li>ClickBank</li>
30
- <li>...</li>
31
- </ul>
32
-
33
- <h3><?php _e('Контент модули:', 'content-egg'); ?></h3>
34
- <ul>
35
- <li><?php _e('Bing картинки', 'content-egg'); ?></li>
36
- <li><?php _e('Flickr фотографии', 'content-egg'); ?></li>
37
- <li><?php _e('Google книги', 'content-egg'); ?></li>
38
- <li><?php _e('Google новости', 'content-egg'); ?></li>
39
- <li><?php _e('Яндекс.Маркет', 'content-egg'); ?></li>
40
- <li>Twitter</li>
41
- <li><?php _e('ВКонтакте новости', 'content-egg'); ?></li>
42
- <li>...</li>
43
- </ul>
44
- *
45
  */
46
  ?>
 
 
47
  <p>
48
  <a target="_blank" class="button-cegg-banner" href="<?php echo ContentEgg\application\Plugin::pluginSiteUrl(); ?>">Get it now!</a>
49
  </p>
50
  </div>
 
 
 
 
 
 
 
51
  <?php endif; ?>
52
  <?php if (\ContentEgg\application\Plugin::isEnvato()): ?>
53
  <div class="cegg-box" style="margin-top: 95px;">
54
  <h2><?php _e('Activate plugin', 'content-egg'); ?></h2>
55
- <p><?php _e('Activate plugin, to get urgent important updates of plugin inside admin panel and official support. ', 'content-egg'); ?></p>
56
-
57
  <p>
58
  <a class="button-cegg-banner" href="<?php echo get_admin_url(\get_current_blog_id(), 'admin.php?page=content-egg-lic'); ?>"><?php _e('Go to ', 'content-egg'); ?></a>
59
  </p>
60
-
61
-
62
  </div>
63
  <?php endif; ?>
64
  </div>
6
  <a href="<?php echo ContentEgg\application\Plugin::pluginSiteUrl(); ?>">
7
  <img src="<?php echo ContentEgg\PLUGIN_RES; ?>/img/ce_pro_header.png" class="cegg-imgcenter" />
8
  </a>
9
+ <?php
10
+ /*
11
  <a href="<?php echo ContentEgg\application\Plugin::pluginSiteUrl(); ?>">
12
  <img src="<?php echo ContentEgg\PLUGIN_RES; ?>/img/ce_pro_coupon.png" class="cegg-imgcenter" />
13
  </a>
14
+ *
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  */
16
  ?>
17
+ <h4><?php _e('Many additional modules and extended functions.', 'content-egg'); ?></h4>
18
+
19
  <p>
20
  <a target="_blank" class="button-cegg-banner" href="<?php echo ContentEgg\application\Plugin::pluginSiteUrl(); ?>">Get it now!</a>
21
  </p>
22
  </div>
23
+ <div class="cegg-box" style="margin-top: 15px;">
24
+ <?php _e('Thanks for use this plugin!', 'content-egg'); ?><br>
25
+ <?php _e('If you like it and want to thank, you can write a 5 star review on Wordpress.', 'content-egg'); ?>
26
+ <p>
27
+ <a class="button button-primary" href="https://wordpress.org/support/plugin/content-egg/reviews/#new-post"><?php _e('Rate', 'content-egg'); ?> &#x2605 &#x2605 &#x2605 &#x2605 &#x2605</a>
28
+ </p>
29
+ </div>
30
  <?php endif; ?>
31
  <?php if (\ContentEgg\application\Plugin::isEnvato()): ?>
32
  <div class="cegg-box" style="margin-top: 95px;">
33
  <h2><?php _e('Activate plugin', 'content-egg'); ?></h2>
34
+ <p><?php _e('In order to receive all benefits of Contennt Egg, you need to activate your copy of the plugin.', 'content-egg'); ?></p>
35
+ <p><?php _e('By activating Contennt Egg license you will unlock premium options - direct plugin updates, access to user panel and official support.', 'content-egg'); ?></p>
36
  <p>
37
  <a class="button-cegg-banner" href="<?php echo get_admin_url(\get_current_blog_id(), 'admin.php?page=content-egg-lic'); ?>"><?php _e('Go to ', 'content-egg'); ?></a>
38
  </p>
 
 
39
  </div>
40
  <?php endif; ?>
41
  </div>
application/admin/views/ae_integration.php CHANGED
@@ -11,6 +11,10 @@
11
  </p>
12
 
13
  <?php if (!ContentEgg\application\admin\AeIntegrationConfig::isAEIntegrationPosible()): ?>
 
 
 
 
14
  <p>
15
  <b><?php _e('For first step make next actions:', 'content-egg'); ?></b>
16
  <ul>
11
  </p>
12
 
13
  <?php if (!ContentEgg\application\admin\AeIntegrationConfig::isAEIntegrationPosible()): ?>
14
+ <p>
15
+ <?php _e('Here are the <a href="http://www.keywordrush.com/res/ae_supported_shops.txt">full list</a> of Affiliate Egg supported shops.', 'content-egg'); ?>
16
+ </p>
17
+
18
  <p>
19
  <b><?php _e('For first step make next actions:', 'content-egg'); ?></b>
20
  <ul>
application/admin/views/prefill.php CHANGED
@@ -10,15 +10,11 @@ use ContentEgg\application\components\ModuleManager;
10
  <h2>
11
  <?php _e('Fill', 'content-egg'); ?>
12
  </h2>
13
-
14
  <p>
15
  <?php _e('This extension will fill module\'s data for all existed posts.', 'content-egg'); ?>
16
  <?php _e('All existing data and keywords will not be erased or overwritten.', 'content-egg'); ?>
17
-
18
  </p>
19
-
20
  <table class="form-table">
21
-
22
  <tr>
23
  <th scope="row"><label for="module_id"><?php _e('Add data for module', 'content-egg'); ?></label></th>
24
  <td>
@@ -60,12 +56,19 @@ use ContentEgg\application\components\ModuleManager;
60
  <?php endfor; ?>
61
  </select>
62
  <p class="description"><?php _e('Maximum words for one search query.', 'content-egg'); ?></p>
63
-
64
  </td>
65
- </tr>
 
 
 
 
 
 
 
 
 
66
  </table>
67
 
68
-
69
  <div id="progressbar" name="progressbar"></div>
70
 
71
  <div>
10
  <h2>
11
  <?php _e('Fill', 'content-egg'); ?>
12
  </h2>
 
13
  <p>
14
  <?php _e('This extension will fill module\'s data for all existed posts.', 'content-egg'); ?>
15
  <?php _e('All existing data and keywords will not be erased or overwritten.', 'content-egg'); ?>
 
16
  </p>
 
17
  <table class="form-table">
 
18
  <tr>
19
  <th scope="row"><label for="module_id"><?php _e('Add data for module', 'content-egg'); ?></label></th>
20
  <td>
56
  <?php endfor; ?>
57
  </select>
58
  <p class="description"><?php _e('Maximum words for one search query.', 'content-egg'); ?></p>
 
59
  </td>
60
+ </tr>
61
+
62
+ <tr>
63
+ <th scope="row"><label for="minus_words"><?php _e('"Minus" words', 'content-egg'); ?></label></th>
64
+ <td>
65
+ <input id="minus_words" type="text" class="regular-text">
66
+ <p class="description"><?php _e('Remove these words from keyword. You can set several minus words/phrases with commas.', 'content-egg'); ?></p>
67
+ </td>
68
+ </tr>
69
+
70
  </table>
71
 
 
72
  <div id="progressbar" name="progressbar"></div>
73
 
74
  <div>
application/components/ContentManager.php CHANGED
@@ -56,10 +56,10 @@ class ContentManager {
56
  * we need force data update because title or description can be edited manually or items price update
57
  if (!$data_changed)
58
  return;
59
- *
60
  */
61
  }
62
- // Sanitize content for allowed HTML tags and more.
63
  array_walk_recursive($data, array('self', 'sanitizeData'));
64
  $module = ModuleManager::getInstance()->factory($module_id);
65
  $data = $module->presavePrepare($data, $post_id);
@@ -299,4 +299,150 @@ class ContentManager {
299
  return json_decode(json_encode($object), true);
300
  }
301
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
302
  }
56
  * we need force data update because title or description can be edited manually or items price update
57
  if (!$data_changed)
58
  return;
59
+ *
60
  */
61
  }
62
+ // Sanitize content for allowed HTML tags and more.
63
  array_walk_recursive($data, array('self', 'sanitizeData'));
64
  $module = ModuleManager::getInstance()->factory($module_id);
65
  $data = $module->presavePrepare($data, $post_id);
299
  return json_decode(json_encode($object), true);
300
  }
301
 
302
+ public static function getNormalizedReviews($data)
303
+ {
304
+ $struct = array(
305
+ 'summary' => '',
306
+ 'comment' => '',
307
+ 'rating' => '',
308
+ 'name' => '',
309
+ 'date' => '',
310
+ 'pros' => '',
311
+ 'cons' => '',
312
+ 'review' => '',
313
+ );
314
+
315
+ $reviews = array();
316
+ foreach ($data as $item)
317
+ {
318
+ // AE modules
319
+ if (!empty($item['extra']['comments']))
320
+ {
321
+ foreach ($item['extra']['comments'] as $r)
322
+ {
323
+ $review = $struct;
324
+ $review['comment'] = $r['comment'];
325
+ if (!empty($r['name']))
326
+ $review['name'] = $r['name'];
327
+ if (!empty($r['date']))
328
+ $review['date'] = $r['date'];
329
+ if (!empty($r['review']))
330
+ $review['review'] = $r['review'];
331
+ if (!empty($r['rating']))
332
+ $review['rating'] = $r['rating'];
333
+ if (!empty($r['pros']))
334
+ $review['pros'] = $r['pros'];
335
+ if (!empty($r['cons']))
336
+ $review['cons'] = $r['cons'];
337
+ $reviews[] = $review;
338
+ }
339
+ }
340
+ // Ozon
341
+ elseif (!empty($item['extra']['Reviews']))
342
+ {
343
+ foreach ($item['extra']['Reviews'] as $r)
344
+ {
345
+ $review = $struct;
346
+ $review['summary'] = $r->Title;
347
+ $review['date'] = $r->Date;
348
+ $review['rating'] = $r->Rate;
349
+ $review['comment'] = $r->Comment;
350
+ $review['name'] = $r->FIO;
351
+ $reviews[] = $review;
352
+ }
353
+ }
354
+ }
355
+
356
+ foreach ($reviews as $i => $review)
357
+ {
358
+ if (!$review['comment'])
359
+ {
360
+ if ($review['review'])
361
+ $review['comment'] = $review['review'];
362
+ if ($review['pros'])
363
+ $review['comment'] .= "\r\n" . __('Pros:', 'affegg-tpl') . $review['pros'];
364
+ if ($review['cons'])
365
+ $review['comment'] .= "\r\n" . __('Cons:', 'affegg-tpl') . $review['cons'];
366
+ $review['comment'] = trim($review['comment']);
367
+ $reviews[$i] = $review;
368
+ }
369
+ }
370
+ return $reviews;
371
+ }
372
+
373
+ public static function removeReviews($data)
374
+ {
375
+ foreach ($data as $i => $item)
376
+ {
377
+ if (!empty($item['extra']['comments']))
378
+ $data[$i]['extra']['comments'] = array();
379
+ elseif (!empty($item['extra']['Reviews']))
380
+ $data[$i]['extra']['Reviews'] = array();
381
+ }
382
+ return $data;
383
+ }
384
+
385
+ public static function saveReviewsAsComments($post_id, array $normalized_comments)
386
+ {
387
+ $comment_data = array(
388
+ 'comment_post_ID' => $post_id,
389
+ 'comment_author_email' => '',
390
+ 'comment_author_url' => '',
391
+ 'comment_type' => '',
392
+ 'comment_parent' => 0,
393
+ 'user_id' => 0,
394
+ 'comment_approved' => 1,
395
+ );
396
+
397
+ $is_rehub_theme = (basename(get_template_directory()) == 'rehub') ? true : false;
398
+ $rehub_post_type = get_post_meta($post_id, 'rehub_framework_post_type', true);
399
+ if ($rehub_post_type && $rehub_post_type == 'review')
400
+ $is_review_post_type = true;
401
+ else
402
+ $is_review_post_type = false;
403
+
404
+ foreach ($normalized_comments as $comment)
405
+ {
406
+ $comment_pros = '';
407
+ $comment_cons = '';
408
+ $comment_rating = 0;
409
+
410
+ // rehub comment meta
411
+ if ($is_rehub_theme && $is_review_post_type && !empty($comment['review']))
412
+ $comment_content = $comment['review'];
413
+ else
414
+ $comment_content = $comment['comment'];
415
+
416
+ $comment_data['comment_content'] = \wp_kses($comment_content, 'default');
417
+ if (!empty($comment['name']))
418
+ $comment_data['comment_author'] = $comment['name'];
419
+ else
420
+ $comment_data['comment_author'] = $comment['User'];
421
+
422
+ if (!empty($comment['date']))
423
+ $comment_data['comment_date'] = date('Y-m-d H:i:s', $comment['date']);
424
+
425
+ $comment_id = \wp_insert_comment($comment_data);
426
+ //$comment_id = \wp_new_comment($comment_data);
427
+
428
+ if ($is_rehub_theme && $is_review_post_type)
429
+ {
430
+ if (!empty($comment['pros']))
431
+ \add_comment_meta($comment_id, 'pros_review', $comment['pros']);
432
+ if (!empty($comment['cons']))
433
+ \add_comment_meta($comment_id, 'cons_review', $comment['cons']);
434
+ if (!empty($comment['rating']))
435
+ {
436
+ $rating_value = $comment['rating'] * 2;
437
+ \add_comment_meta($comment_id, 'user_average', $rating_value);
438
+ \add_comment_meta($comment_id, 'user_criteria', array(array('name' => __('Rating', 'content-egg-tpl'), 'value' => $rating_value)));
439
+ }
440
+ \add_comment_meta($comment_id, 'counted', 0);
441
+ // calculate rating
442
+ if (function_exists('add_comment_rates'))
443
+ \add_comment_rates($comment_id);
444
+ }
445
+ }
446
+ }
447
+
448
  }
application/components/ModuleManager.php CHANGED
@@ -54,6 +54,10 @@ class ModuleManager {
54
  public function highlightAdminMenu($parent_file)
55
  {
56
  global $plugin_page;
 
 
 
 
57
  if (!$parent_file)
58
  $plugin_page = Plugin::slug;
59
  return $parent_file;
54
  public function highlightAdminMenu($parent_file)
55
  {
56
  global $plugin_page;
57
+
58
+ if (substr($plugin_page, 0, strlen(Plugin::slug())) !== Plugin::slug())
59
+ return $parent_file;
60
+
61
  if (!$parent_file)
62
  $plugin_page = Plugin::slug;
63
  return $parent_file;
application/helpers/ArrayHelper.php CHANGED
@@ -72,7 +72,7 @@ class ArrayHelper {
72
  $max_key = key($array);
73
  foreach ($array as $k => $v)
74
  {
75
- if ($v[$key_name] > $max_value)
76
  {
77
  $max_value = $v[$key_name];
78
  $max_key = $k;
@@ -87,7 +87,7 @@ class ArrayHelper {
87
  $min_key = key($array);
88
  foreach ($array as $k => $v)
89
  {
90
- if ($v[$key_name] < $min_value)
91
  {
92
  $min_value = $v[$key_name];
93
  $min_key = $k;
72
  $max_key = key($array);
73
  foreach ($array as $k => $v)
74
  {
75
+ if ((float) $v[$key_name] > (float) $max_value)
76
  {
77
  $max_value = $v[$key_name];
78
  $max_key = $k;
87
  $min_key = key($array);
88
  foreach ($array as $k => $v)
89
  {
90
+ if ((float) $v[$key_name] < (float) $min_value)
91
  {
92
  $min_value = $v[$key_name];
93
  $min_key = $k;
application/helpers/CurrencyHelper.php CHANGED
@@ -84,6 +84,7 @@ class CurrencyHelper {
84
  'thousand_sep' => ',',
85
  'decimal_sep' => '.',
86
  'num_decimals' => 2,
 
87
  ),
88
  'EUR' => array(
89
  'currency_symbol' => '&euro;',
@@ -98,6 +99,7 @@ class CurrencyHelper {
98
  'thousand_sep' => '.',
99
  'decimal_sep' => ',',
100
  'num_decimals' => 2,
 
101
  ),
102
  'CAD' => array(
103
  'currency_symbol' => 'C $',
@@ -105,6 +107,7 @@ class CurrencyHelper {
105
  'thousand_sep' => ',',
106
  'decimal_sep' => '.',
107
  'num_decimals' => 2,
 
108
  ),
109
  'GBP' => array(
110
  'currency_symbol' => '&pound;',
@@ -112,6 +115,7 @@ class CurrencyHelper {
112
  'thousand_sep' => ',',
113
  'decimal_sep' => '.',
114
  'num_decimals' => 2,
 
115
  ),
116
  'JPY' => array(
117
  'currency_symbol' => '&yen;',
@@ -119,6 +123,7 @@ class CurrencyHelper {
119
  'thousand_sep' => ',',
120
  'decimal_sep' => '.',
121
  'num_decimals' => 2,
 
122
  ),
123
  'CNY' => array(
124
  'currency_symbol' => '&yen;',
@@ -126,6 +131,7 @@ class CurrencyHelper {
126
  'thousand_sep' => ',',
127
  'decimal_sep' => '.',
128
  'num_decimals' => 2,
 
129
  ),
130
  'RUB' => array(
131
  'currency_symbol' => 'руб.',
@@ -133,6 +139,7 @@ class CurrencyHelper {
133
  'thousand_sep' => ' ',
134
  'decimal_sep' => ',',
135
  'num_decimals' => 0,
 
136
  ),
137
  'RUR' => array(
138
  'currency_symbol' => 'руб.',
@@ -140,6 +147,7 @@ class CurrencyHelper {
140
  'thousand_sep' => ' ',
141
  'decimal_sep' => ',',
142
  'num_decimals' => 0,
 
143
  ),
144
  'UAH' => array(
145
  'currency_symbol' => 'грн.',
@@ -147,6 +155,7 @@ class CurrencyHelper {
147
  'thousand_sep' => ' ',
148
  'decimal_sep' => ',',
149
  'num_decimals' => 0,
 
150
  ),
151
  'INR' => array(
152
  'currency_symbol' => 'Rs.',
@@ -154,6 +163,7 @@ class CurrencyHelper {
154
  'thousand_sep' => ',',
155
  'decimal_sep' => '.',
156
  'num_decimals' => 0,
 
157
  ),
158
  'AUD' => array(
159
  'currency_symbol' => 'AU $',
@@ -161,6 +171,7 @@ class CurrencyHelper {
161
  'thousand_sep' => ',',
162
  'decimal_sep' => '.',
163
  'num_decimals' => 2,
 
164
  ),
165
  'VND' => array(
166
  'currency_symbol' => '&#8363;',
@@ -168,6 +179,23 @@ class CurrencyHelper {
168
  'thousand_sep' => '.',
169
  'decimal_sep' => ',',
170
  'num_decimals' => 0,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
171
  ),
172
  );
173
  }
@@ -232,6 +260,11 @@ class CurrencyHelper {
232
  return $this->getValue($currency, 'currency_symbol', $currency);
233
  }
234
 
 
 
 
 
 
235
  public function numberFormat($number, $currency, $thousand_sep = null, $decimal_sep = null, $num_decimals = null)
236
  {
237
  if (!$thousand_sep)
@@ -243,4 +276,9 @@ class CurrencyHelper {
243
  return number_format((float) $number, absint($num_decimals), $decimal_sep, $thousand_sep);
244
  }
245
 
 
 
 
 
 
246
  }
84
  'thousand_sep' => ',',
85
  'decimal_sep' => '.',
86
  'num_decimals' => 2,
87
+ 'name' => 'United States dollar',
88
  ),
89
  'EUR' => array(
90
  'currency_symbol' => '&euro;',
99
  'thousand_sep' => '.',
100
  'decimal_sep' => ',',
101
  'num_decimals' => 2,
102
+ 'name' => 'Euro',
103
  ),
104
  'CAD' => array(
105
  'currency_symbol' => 'C $',
107
  'thousand_sep' => ',',
108
  'decimal_sep' => '.',
109
  'num_decimals' => 2,
110
+ 'name' => 'Canadian dollar',
111
  ),
112
  'GBP' => array(
113
  'currency_symbol' => '&pound;',
115
  'thousand_sep' => ',',
116
  'decimal_sep' => '.',
117
  'num_decimals' => 2,
118
+ 'name' => 'British pound',
119
  ),
120
  'JPY' => array(
121
  'currency_symbol' => '&yen;',
123
  'thousand_sep' => ',',
124
  'decimal_sep' => '.',
125
  'num_decimals' => 2,
126
+ 'name' => 'Japanese yen',
127
  ),
128
  'CNY' => array(
129
  'currency_symbol' => '&yen;',
131
  'thousand_sep' => ',',
132
  'decimal_sep' => '.',
133
  'num_decimals' => 2,
134
+ 'name' => 'Chinese yuan',
135
  ),
136
  'RUB' => array(
137
  'currency_symbol' => 'руб.',
139
  'thousand_sep' => ' ',
140
  'decimal_sep' => ',',
141
  'num_decimals' => 0,
142
+ 'name' => 'Russian ruble',
143
  ),
144
  'RUR' => array(
145
  'currency_symbol' => 'руб.',
147
  'thousand_sep' => ' ',
148
  'decimal_sep' => ',',
149
  'num_decimals' => 0,
150
+ 'name' => 'Russian ruble',
151
  ),
152
  'UAH' => array(
153
  'currency_symbol' => 'грн.',
155
  'thousand_sep' => ' ',
156
  'decimal_sep' => ',',
157
  'num_decimals' => 0,
158
+ 'name' => 'Ukrainian hryvnia',
159
  ),
160
  'INR' => array(
161
  'currency_symbol' => 'Rs.',
163
  'thousand_sep' => ',',
164
  'decimal_sep' => '.',
165
  'num_decimals' => 0,
166
+ 'name' => 'Indian Rupee',
167
  ),
168
  'AUD' => array(
169
  'currency_symbol' => 'AU $',
171
  'thousand_sep' => ',',
172
  'decimal_sep' => '.',
173
  'num_decimals' => 2,
174
+ 'name' => 'Australian dollar',
175
  ),
176
  'VND' => array(
177
  'currency_symbol' => '&#8363;',
179
  'thousand_sep' => '.',
180
  'decimal_sep' => ',',
181
  'num_decimals' => 0,
182
+ 'name' => 'Vietnamese dong',
183
+ ),
184
+ 'BRL' => array(
185
+ 'currency_symbol' => 'R$',
186
+ 'currency_pos' => 'left',
187
+ 'thousand_sep' => '.',
188
+ 'decimal_sep' => ',',
189
+ 'num_decimals' => 2,
190
+ 'name' => 'Brazilian real',
191
+ ),
192
+ 'TND' => array(
193
+ 'currency_symbol' => 'DT',
194
+ 'currency_pos' => 'right',
195
+ 'thousand_sep' => ',',
196
+ 'decimal_sep' => '.',
197
+ 'num_decimals' => 2,
198
+ 'name' => 'Tunisian dinar',
199
  ),
200
  );
201
  }
260
  return $this->getValue($currency, 'currency_symbol', $currency);
261
  }
262
 
263
+ public function getName($currency)
264
+ {
265
+ return $this->getValue($currency, 'name', $currency);
266
+ }
267
+
268
  public function numberFormat($number, $currency, $thousand_sep = null, $decimal_sep = null, $num_decimals = null)
269
  {
270
  if (!$thousand_sep)
276
  return number_format((float) $number, absint($num_decimals), $decimal_sep, $thousand_sep);
277
  }
278
 
279
+ public static function getCurrenciesList()
280
+ {
281
+ return array_keys(self::currencies());
282
+ }
283
+
284
  }
application/helpers/TemplateHelper.php CHANGED
@@ -4,6 +4,7 @@ namespace ContentEgg\application\helpers;
4
 
5
  use ContentEgg\application\components\ContentManager;
6
  use ContentEgg\application\models\PriceHistoryModel;
 
7
 
8
  /**
9
  * TemplateHelper class file
@@ -349,6 +350,11 @@ class TemplateHelper {
349
  return CurrencyHelper::getInstance()->getSymbol($currency);
350
  }
351
 
 
 
 
 
 
352
  private static function getMerchantImageUrl(array $item, $prefix = '', $remote_url = null, $blank_on_error = false)
353
  {
354
  $default_ext = 'png'; // ???
@@ -431,4 +437,54 @@ class TemplateHelper {
431
  return \ContentEgg\PLUGIN_RES . '/img/blank.gif';
432
  }
433
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
434
  }
4
 
5
  use ContentEgg\application\components\ContentManager;
6
  use ContentEgg\application\models\PriceHistoryModel;
7
+ use ContentEgg\application\helpers\ArrayHelper;
8
 
9
  /**
10
  * TemplateHelper class file
350
  return CurrencyHelper::getInstance()->getSymbol($currency);
351
  }
352
 
353
+ public static function getCurrencyName($currency)
354
+ {
355
+ return CurrencyHelper::getInstance()->getName($currency);
356
+ }
357
+
358
  private static function getMerchantImageUrl(array $item, $prefix = '', $remote_url = null, $blank_on_error = false)
359
  {
360
  $default_ext = 'png'; // ???
437
  return \ContentEgg\PLUGIN_RES . '/img/blank.gif';
438
  }
439
 
440
+ public static function mergeData(array $data)
441
+ {
442
+ foreach ($data as $module_id => $items)
443
+ {
444
+ foreach ($items as $item_ar)
445
+ {
446
+ $item_ar['module_id'] = $module_id;
447
+ $all_items[] = $item_ar;
448
+ }
449
+ }
450
+ return $all_items;
451
+ }
452
+
453
+ public static function getMaxPriceItem(array $data)
454
+ {
455
+ return $data[ArrayHelper::getMaxKeyAssoc($data, 'price')];
456
+ }
457
+
458
+ public static function getMinPriceItem(array $data)
459
+ {
460
+ return $data[ArrayHelper::getMinKeyAssoc($data, 'price')];
461
+ }
462
+
463
+ public static function getCommonCurrencyCode($data)
464
+ {
465
+ $first = reset($data);
466
+ $currency = $first['currencyCode'];
467
+ foreach ($data as $d)
468
+ {
469
+ if (!empty($d['currencyCode']) && $d['currencyCode'] != $currency)
470
+ return false;
471
+ }
472
+ return $currency;
473
+ }
474
+
475
+ public static function getShopsList($data)
476
+ {
477
+ $list = array();
478
+ foreach ($data as $d)
479
+ {
480
+ if (!isset($list[$d['domain']]))
481
+ {
482
+ $parts = explode('.', $d['domain']);
483
+ $list[$d['domain']] = ucfirst($parts[0]);
484
+ }
485
+ }
486
+ return $list;
487
+ }
488
+
489
+
490
  }
application/helpers/TextHelper.php CHANGED
@@ -443,7 +443,7 @@ class TextHelper {
443
  // try to fix...
444
  if (!preg_match("/^[0-9]{13}$/", $barcode))
445
  $barcode = ltrim($barcode, '0');
446
-
447
  if (!preg_match("/^[0-9]{13}$/", $barcode))
448
  return false;
449
 
@@ -472,4 +472,13 @@ class TextHelper {
472
  return false;
473
  }
474
 
 
 
 
 
 
 
 
 
 
475
  }
443
  // try to fix...
444
  if (!preg_match("/^[0-9]{13}$/", $barcode))
445
  $barcode = ltrim($barcode, '0');
446
+
447
  if (!preg_match("/^[0-9]{13}$/", $barcode))
448
  return false;
449
 
472
  return false;
473
  }
474
 
475
+ public static function ratingPrepare($rating, $min_rating = 1, $max_rating = 5)
476
+ {
477
+ $rating = abs(round($rating));
478
+ if ($rating < $min_rating || $rating > $max_rating)
479
+ return null;
480
+ else
481
+ return $rating;
482
+ }
483
+
484
  }
application/models/AutoblogModel.php CHANGED
@@ -288,7 +288,13 @@ class AutoblogModel extends Model {
288
  {
289
  foreach ($autoblog['custom_field_names'] as $i => $custom_field)
290
  {
291
- $meta_input[$custom_field] = $this->buildTemplate($autoblog['custom_field_values'][$i], $modules_data, $keyword, $module_keywords, $main_product);
 
 
 
 
 
 
292
  }
293
  }
294
 
@@ -313,6 +319,7 @@ class AutoblogModel extends Model {
313
  throw new \Exception(sprintf(__('Post can\'t be created. Unknown error.', 'content-egg'), $autoblog['min_modules_count']));
314
 
315
  // save modules data & keyword for autoupdate
 
316
  foreach ($modules_data as $module_id => $data)
317
  {
318
  $autoupdate_keyword = \sanitize_text_field($module_keywords[$module_id]);
@@ -322,7 +329,8 @@ class AutoblogModel extends Model {
322
  \update_post_meta($post_id, ContentManager::META_PREFIX_KEYWORD . $module_id, $autoupdate_keyword);
323
  }
324
  }
325
- //\do_action('content_egg_autoblog_create_post', $post_id);
 
326
  // set featured image
327
  $fi = new FeaturedImage();
328
  $fi->setImage($post_id);
@@ -459,7 +467,7 @@ class AutoblogModel extends Model {
459
  $all_items[] = $item;
460
  }
461
  }
462
-
463
  if (!$all_items)
464
  return null;
465
 
288
  {
289
  foreach ($autoblog['custom_field_names'] as $i => $custom_field)
290
  {
291
+ $cf_value = $autoblog['custom_field_values'][$i];
292
+ if (\is_serialized($cf_value))
293
+ $cf_value = @unserialize($cf_value);
294
+ else
295
+ $cf_value = $this->buildTemplate($cf_value, $modules_data, $keyword, $module_keywords, $main_product);
296
+
297
+ $meta_input[$custom_field] = $cf_value;
298
  }
299
  }
300
 
319
  throw new \Exception(sprintf(__('Post can\'t be created. Unknown error.', 'content-egg'), $autoblog['min_modules_count']));
320
 
321
  // save modules data & keyword for autoupdate
322
+ $comments = array();
323
  foreach ($modules_data as $module_id => $data)
324
  {
325
  $autoupdate_keyword = \sanitize_text_field($module_keywords[$module_id]);
329
  \update_post_meta($post_id, ContentManager::META_PREFIX_KEYWORD . $module_id, $autoupdate_keyword);
330
  }
331
  }
332
+
333
+ // \do_action('content_egg_autoblog_create_post', $post_id);
334
  // set featured image
335
  $fi = new FeaturedImage();
336
  $fi->setImage($post_id);
467
  $all_items[] = $item;
468
  }
469
  }
470
+
471
  if (!$all_items)
472
  return null;
473
 
application/modules/AE/AEConfig.php CHANGED
@@ -58,6 +58,13 @@ class AEConfig extends AffiliateParserModuleConfig {
58
  ),
59
  'section' => 'default',
60
  ),
 
 
 
 
 
 
 
61
  'save_img' => array(
62
  'title' => __('Save images', 'content-egg'),
63
  'description' => __('Save images on server', 'content-egg'),
58
  ),
59
  'section' => 'default',
60
  ),
61
+ 'reviews_as_comments' => array(
62
+ 'title' => __('Reviews as post comments', 'content-egg'),
63
+ 'description' => __('Save user reviews as post comments.', 'content-egg'),
64
+ 'callback' => array($this, 'render_checkbox'),
65
+ 'default' => false,
66
+ 'section' => 'default',
67
+ ),
68
  'save_img' => array(
69
  'title' => __('Save images', 'content-egg'),
70
  'description' => __('Save images on server', 'content-egg'),
application/modules/AE/AEModule.php CHANGED
@@ -8,6 +8,7 @@ use ContentEgg\application\components\ContentProduct;
8
  use ContentEgg\application\admin\PluginAdmin;
9
  use ContentEgg\application\helpers\TextHelper;
10
  use ContentEgg\application\components\LinkHandler;
 
11
  use \Keywordrush\AffiliateEgg\ParserManager;
12
 
13
  /**
@@ -104,7 +105,7 @@ class AEModule extends AffiliateParserModule {
104
  $content->unique_id = md5($r['orig_url']);
105
  $content->url = LinkHandler::createAffUrl($r['orig_url'], $deeplink);
106
  $content->orig_url = $r['orig_url'];
107
- $content->domain = TextHelper::getHostName($r['orig_url']);
108
  $content->img = $r['img'];
109
  $content->title = $r['title'];
110
  $content->description = $r['description'];
@@ -169,6 +170,27 @@ class AEModule extends AffiliateParserModule {
169
  return $items;
170
  }
171
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
172
  public function renderResults()
173
  {
174
  PluginAdmin::render('_metabox_results', array('module_id' => $this->getId()));
8
  use ContentEgg\application\admin\PluginAdmin;
9
  use ContentEgg\application\helpers\TextHelper;
10
  use ContentEgg\application\components\LinkHandler;
11
+ use ContentEgg\application\components\ContentManager;
12
  use \Keywordrush\AffiliateEgg\ParserManager;
13
 
14
  /**
105
  $content->unique_id = md5($r['orig_url']);
106
  $content->url = LinkHandler::createAffUrl($r['orig_url'], $deeplink);
107
  $content->orig_url = $r['orig_url'];
108
+ $content->domain = TextHelper::getHostName($r['orig_url']);
109
  $content->img = $r['img'];
110
  $content->title = $r['title'];
111
  $content->description = $r['description'];
170
  return $items;
171
  }
172
 
173
+ public function presavePrepare($data, $post_id)
174
+ {
175
+ $data = parent::presavePrepare($data, $post_id);
176
+
177
+
178
+ if ($this->config('reviews_as_comments'))
179
+ {
180
+ // get reviews from module data
181
+ $comments = ContentManager::getNormalizedReviews($data);
182
+ if ($comments)
183
+ {
184
+ // save reviews as post comments
185
+ ContentManager::saveReviewsAsComments($post_id, $comments);
186
+
187
+ // remove reviews from module data
188
+ $data = ContentManager::removeReviews($data);
189
+ }
190
+ }
191
+ return $data;
192
+ }
193
+
194
  public function renderResults()
195
  {
196
  PluginAdmin::render('_metabox_results', array('module_id' => $this->getId()));
application/modules/Amazon/AmazonModule.php CHANGED
@@ -130,11 +130,11 @@ class AmazonModule extends AffiliateParserModule {
130
  $results = array();
131
 
132
  // EAN or ASIN search
133
- if (TextHelper::isEan($keyword) && $search_index != 'All')
134
  {
135
  $options['IdType'] = 'EAN';
136
  // All IdTypes except ASINx require a SearchIndex to be specified.
137
- $options['SearchIndex'] = $search_index;
138
  unset($options['Keywords']);
139
  $ItemLookup = true;
140
  } elseif (TextHelper::isAsin($keyword))
@@ -144,7 +144,7 @@ class AmazonModule extends AffiliateParserModule {
144
  $ItemLookup = true;
145
  } else
146
  $ItemLookup = false;
147
-
148
  for ($i = 0; $i < $pages_count; $i++)
149
  {
150
  $options['ItemPage'] = $i + 1;
@@ -152,7 +152,7 @@ class AmazonModule extends AffiliateParserModule {
152
  $data = $client->ItemLookup($keyword, $options); // EAN or ASIN search
153
  else
154
  $data = $client->ItemSearch($search_index, $options); // keyword search
155
-
156
  if (!is_array($data))
157
  break;
158
 
@@ -261,6 +261,24 @@ class AmazonModule extends AffiliateParserModule {
261
  $items[$key]['extra']['customerReviews'] = ExtraData::fillAttributes($items[$key]['extra']['customerReviews'], $results[$i]['CustomerReviews']);
262
  }
263
  $items[$key]['domain'] = AmazonConfig::getDomainByLocale($locale);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
264
  $return[$item['unique_id']] = $items[$key];
265
  $i++;
266
  }
@@ -501,8 +519,8 @@ class AmazonModule extends AffiliateParserModule {
501
  $content->currency = TextHelper::currencyTyping($content->currencyCode);
502
  } else
503
  $content->price = 0;
504
-
505
- $content->ean = $extra->itemAttributes->EAN;
506
 
507
  if ($return_array)
508
  {
@@ -521,34 +539,24 @@ class AmazonModule extends AffiliateParserModule {
521
  return 'http://www.amazon.co.uk';
522
  case 'de':
523
  return 'http://www.amazon.de';
524
- break;
525
  case 'fr':
526
  return 'http://www.amazon.fr';
527
- break;
528
  case 'jp':
529
  return 'http://www.amazon.co.jp';
530
- break;
531
  case 'cn':
532
  return 'http://www.amazon.cn';
533
- break;
534
  case 'it':
535
  return 'http://www.amazon.it';
536
- break;
537
  case 'es':
538
  return 'http://www.amazon.es';
539
- break;
540
  case 'ca':
541
  return 'http://www.amazon.ca';
542
- break;
543
  case 'br':
544
  return 'http://www.amazon.br';
545
- break;
546
  case 'in':
547
  return 'http://www.amazon.in';
548
- break;
549
  default: //'us'
550
  return 'http://www.amazon.com';
551
- break;
552
  }
553
  }
554
 
130
  $results = array();
131
 
132
  // EAN or ASIN search
133
+ if (TextHelper::isEan($keyword) && $search_index != 'All')
134
  {
135
  $options['IdType'] = 'EAN';
136
  // All IdTypes except ASINx require a SearchIndex to be specified.
137
+ $options['SearchIndex'] = $search_index;
138
  unset($options['Keywords']);
139
  $ItemLookup = true;
140
  } elseif (TextHelper::isAsin($keyword))
144
  $ItemLookup = true;
145
  } else
146
  $ItemLookup = false;
147
+
148
  for ($i = 0; $i < $pages_count; $i++)
149
  {
150
  $options['ItemPage'] = $i + 1;
152
  $data = $client->ItemLookup($keyword, $options); // EAN or ASIN search
153
  else
154
  $data = $client->ItemSearch($search_index, $options); // keyword search
155
+
156
  if (!is_array($data))
157
  break;
158
 
261
  $items[$key]['extra']['customerReviews'] = ExtraData::fillAttributes($items[$key]['extra']['customerReviews'], $results[$i]['CustomerReviews']);
262
  }
263
  $items[$key]['domain'] = AmazonConfig::getDomainByLocale($locale);
264
+
265
+ if (!$this->config('save_img'))
266
+ {
267
+ $items[$key]['img'] = $this->rewriteSslImageUrl($items[$key]['img']);
268
+ }
269
+
270
+ foreach ($items[$key]['extra']['imageSet'] as $set_key => $set)
271
+ {
272
+ if (!$set)
273
+ continue;
274
+ $items[$key]['extra']['imageSet'][$set_key]['SwatchImage'] = $this->rewriteSslImageUrl($set['SwatchImage']);
275
+ $items[$key]['extra']['imageSet'][$set_key]['SmallImage'] = $this->rewriteSslImageUrl($set['SmallImage']);
276
+ $items[$key]['extra']['imageSet'][$set_key]['ThumbnailImage'] = $this->rewriteSslImageUrl($set['ThumbnailImage']);
277
+ $items[$key]['extra']['imageSet'][$set_key]['TinyImage'] = $this->rewriteSslImageUrl($set['TinyImage']);
278
+ $items[$key]['extra']['imageSet'][$set_key]['MediumImage'] = $this->rewriteSslImageUrl($set['MediumImage']);
279
+ $items[$key]['extra']['imageSet'][$set_key]['LargeImage'] = $this->rewriteSslImageUrl($set['LargeImage']);
280
+ }
281
+
282
  $return[$item['unique_id']] = $items[$key];
283
  $i++;
284
  }
519
  $content->currency = TextHelper::currencyTyping($content->currencyCode);
520
  } else
521
  $content->price = 0;
522
+
523
+ $content->ean = $extra->itemAttributes->EAN;
524
 
525
  if ($return_array)
526
  {
539
  return 'http://www.amazon.co.uk';
540
  case 'de':
541
  return 'http://www.amazon.de';
 
542
  case 'fr':
543
  return 'http://www.amazon.fr';
 
544
  case 'jp':
545
  return 'http://www.amazon.co.jp';
 
546
  case 'cn':
547
  return 'http://www.amazon.cn';
 
548
  case 'it':
549
  return 'http://www.amazon.it';
 
550
  case 'es':
551
  return 'http://www.amazon.es';
 
552
  case 'ca':
553
  return 'http://www.amazon.ca';
 
554
  case 'br':
555
  return 'http://www.amazon.br';
 
556
  case 'in':
557
  return 'http://www.amazon.in';
 
558
  default: //'us'
559
  return 'http://www.amazon.com';
 
560
  }
561
  }
562
 
application/modules/Offer/OfferModule.php CHANGED
@@ -91,7 +91,7 @@ class OfferModule extends AffiliateParserModule {
91
  $item['img'] = trim($item['img']);
92
  $item['extra']['deeplink'] = trim($item['extra']['deeplink']);
93
  $item['price'] = (float) TextHelper::parsePriceAmount($item['price']);
94
-
95
 
96
  if (!$item['title'])
97
  continue;
91
  $item['img'] = trim($item['img']);
92
  $item['extra']['deeplink'] = trim($item['extra']['deeplink']);
93
  $item['price'] = (float) TextHelper::parsePriceAmount($item['price']);
94
+ $item['rating'] = TextHelper::ratingPrepare($item['rating']);
95
 
96
  if (!$item['title'])
97
  continue;
application/modules/Offer/views/metabox_module.php CHANGED
@@ -48,7 +48,21 @@
48
  <img ng-if="data.img" ng-src="{{data.img}}" class="img-responsive" style="max-height: 100px;" />
49
  </div>
50
  <div ng-class="data.img ? 'col-md-9' : 'col-md-10'">
51
- <input type="text" placeholder="<?php _e('Title', 'content-egg'); ?> (<?php _e('required', 'content-egg'); ?>)" ng-model="data.title" class="form-control" style="margin-bottom: 5px;">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
52
  <div class="row" style="margin:0px;">
53
  <div class="col-md-6" style="padding:0px;">
54
  <input type="text" placeholder="<?php _e('Offer URL', 'content-egg'); ?> (<?php _e('required', 'content-egg'); ?>)" ng-model="data.orig_url" class="form-control" style="margin-bottom: 5px;">
@@ -64,17 +78,9 @@
64
  </div>
65
  <div class="col-md-1" style="padding-right:0px;">
66
  <select class="form-control" ng-model="data.currencyCode">
67
- <option value="USD">USD</option>
68
- <option value="EUR">EUR</option>
69
- <option value="CAD">CAD</option>
70
- <option value="GBP">GBP</option>
71
- <option value="JPY">JPY</option>
72
- <option value="CNY">CNY</option>
73
- <option value="RUB">RUB</option>
74
- <option value="UAH">UAH</option>
75
- <option value="INR">INR</option>
76
- <option value="AUD">AUD</option>
77
- <option value="VND">VND</option>
78
  </select>
79
  </div>
80
  <div class="col-md-7" style="padding-right:0px;">
48
  <img ng-if="data.img" ng-src="{{data.img}}" class="img-responsive" style="max-height: 100px;" />
49
  </div>
50
  <div ng-class="data.img ? 'col-md-9' : 'col-md-10'">
51
+ <div class="row" style="margin:0px;">
52
+ <div class="col-md-10" style="padding:0px;">
53
+ <input type="text" placeholder="<?php _e('Title', 'content-egg'); ?> (<?php _e('required', 'content-egg'); ?>)" ng-model="data.title" class="form-control" style="margin-bottom: 5px;">
54
+ </div>
55
+ <div class="col-md-2" style="padding-right:0px;">
56
+ <select class="form-control" ng-model="data.rating" convert-to-number>
57
+ <option value="1"><?php _e('Rating', 'content-egg');?> - 1</option>
58
+ <option value="2"><?php _e('Rating', 'content-egg');?> - 2</option>
59
+ <option value="3"><?php _e('Rating', 'content-egg');?> - 3</option>
60
+ <option value="4"><?php _e('Rating', 'content-egg');?> - 4</option>
61
+ <option value="5"><?php _e('Rating', 'content-egg');?> - 5</option>
62
+ </select>
63
+ </div>
64
+ </div>
65
+
66
  <div class="row" style="margin:0px;">
67
  <div class="col-md-6" style="padding:0px;">
68
  <input type="text" placeholder="<?php _e('Offer URL', 'content-egg'); ?> (<?php _e('required', 'content-egg'); ?>)" ng-model="data.orig_url" class="form-control" style="margin-bottom: 5px;">
78
  </div>
79
  <div class="col-md-1" style="padding-right:0px;">
80
  <select class="form-control" ng-model="data.currencyCode">
81
+ <?php foreach (\ContentEgg\application\helpers\CurrencyHelper::getCurrenciesList() as $currency): ?>
82
+ <option value="<?php echo esc_attr($currency);?>"><?php echo esc_html($currency);?></option>
83
+ <?php endforeach; ?>
 
 
 
 
 
 
 
 
84
  </select>
85
  </div>
86
  <div class="col-md-7" style="padding-right:0px;">
content-egg.php CHANGED
@@ -5,8 +5,8 @@ namespace ContentEgg;
5
  /*
6
  Plugin Name: Content Egg
7
  Plugin URI: http://www.keywordrush.com/contentegg
8
- Description: Easily adding auto updating products from affiliate systems and additional content to posts.
9
- Version: 3.0.5
10
  Author: keywordrush.com
11
  Author URI: http://www.keywordrush.com
12
  Text Domain: content-egg
5
  /*
6
  Plugin Name: Content Egg
7
  Plugin URI: http://www.keywordrush.com/contentegg
8
+ Description: Easily adding auto updating products from affiliate systems and additional content to posts.
9
+ Version: 3.2.1
10
  Author: keywordrush.com
11
  Author URI: http://www.keywordrush.com
12
  Text Domain: content-egg
languages/content-egg-ru_RU.mo CHANGED
Binary file
languages/content-egg-ru_RU.po CHANGED
@@ -3,8 +3,8 @@ msgid ""
3
  msgstr ""
4
  "Project-Id-Version: Content Egg 1.1.1\n"
5
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/content-egg\n"
6
- "POT-Creation-Date: 2016-12-13 17:20+0200\n"
7
- "PO-Revision-Date: 2016-12-25 12:37+0200\n"
8
  "Last-Translator: Sizam themes <sizamtheme@gmail.com>\n"
9
  "Language-Team: \n"
10
  "Language: en_EN\n"
@@ -73,7 +73,7 @@ msgstr "Добавить автоблоггинг"
73
  msgid "Add autoblogging - bulk mode"
74
  msgstr "Добавить автоблоггинг - пакетный режим"
75
 
76
- #: application/admin/AutoblogController.php:199
77
  msgid "Autoblogging is not found"
78
  msgstr "Автоблоггинг не найден"
79
 
@@ -92,7 +92,7 @@ msgstr "Дублировать"
92
 
93
  #: application/admin/AutoblogTable.php:56 application/admin/MyListTable.php:165
94
  #: application/admin/views/_metabox_results.php:14
95
- #: application/modules/Offer/views/metabox_module.php:90
96
  msgid "Delete"
97
  msgstr "Удалить"
98
 
@@ -172,7 +172,7 @@ msgstr ""
172
  msgid "Error."
173
  msgstr "Error."
174
 
175
- #: application/admin/GeneralConfig.php:31 application/admin/PluginAdmin.php:91
176
  msgid "Settings"
177
  msgstr "Настройки"
178
 
@@ -252,11 +252,11 @@ msgid ""
252
  msgstr ""
253
  "Для работы этой опции \"История изменения цены\" также должна быть включена."
254
 
255
- #: application/admin/GeneralConfig.php:148
256
  msgid "Button color"
257
  msgstr "Цвет кнопок"
258
 
259
- #: application/admin/GeneralConfig.php:149
260
  msgid "Button color for standard templates."
261
  msgstr "Цвет кнопок для стандартных шаблонов."
262
 
@@ -336,7 +336,7 @@ msgstr ""
336
  msgid " back"
337
  msgstr " назад"
338
 
339
- #: application/admin/PluginAdmin.php:77
340
  msgid "Are you sure?"
341
  msgstr "Вы уверены?"
342
 
@@ -345,38 +345,38 @@ msgstr "Вы уверены?"
345
  msgid "Fill"
346
  msgstr "Заполнить"
347
 
348
- #: application/admin/PrefillController.php:95
349
  msgid "Data already exist."
350
  msgstr "Данные уже существуют."
351
 
352
- #: application/admin/PrefillController.php:102
353
  msgid "Impossible to determine a keyword"
354
  msgstr "Невозможно определить ключевое слово."
355
 
356
- #: application/admin/PrefillController.php:111
357
  msgid "Keyword for autoupdate already exists."
358
  msgstr "Ключевое слово для автоапдейта уже существует."
359
 
360
- #: application/admin/PrefillController.php:115
361
  msgid "Keyword for autoupdate was saved."
362
  msgstr "Ключевое слово для автоапдейта сохранено."
363
 
364
- #: application/admin/PrefillController.php:124
365
  #: application/admin/views/metabox_module.php:85
366
  msgid "Error:"
367
  msgstr "Ошибка: "
368
 
369
- #: application/admin/PrefillController.php:131
370
  #: application/admin/views/metabox_module.php:50
371
  msgid "No data found..."
372
  msgstr "Данные не найдены."
373
 
374
- #: application/admin/PrefillController.php:137
375
  msgid "Data saved:"
376
  msgstr "Данные сохранены:"
377
 
378
  #: application/admin/views/_metabox_autoblog.php:10
379
- #: application/models/AutoblogModel.php:68
380
  #: application/modules/Ozon/OzonConfig.php:82
381
  msgid "Name"
382
  msgstr "Название"
@@ -431,7 +431,7 @@ msgstr "Как часто запускать это задание автобл
431
 
432
  #: application/admin/views/_metabox_autoblog.php:51
433
  #: application/admin/views/_metabox_autoblog.php:140
434
- #: application/models/AutoblogModel.php:74
435
  msgid "Keywords"
436
  msgstr "Ключевые слова"
437
 
@@ -595,7 +595,7 @@ msgstr ""
595
  "постах, например: "
596
 
597
  #: application/admin/views/_metabox_autoblog.php:216
598
- #: application/admin/views/_metabox_autoblog.php:391
599
  msgid ""
600
  "\"Formulas\", and also all tags from title template, will also work here."
601
  msgstr ""
@@ -645,9 +645,10 @@ msgstr "От имени этого пользователя будут публ
645
  #: application/modules/CityadsProducts/CityadsProductsConfig.php:87
646
  #: application/modules/CjLinks/CjLinksConfig.php:123
647
  #: application/modules/Clickbank/ClickbankConfig.php:67
648
- #: application/modules/Ebay/EbayConfig.php:137
649
  #: application/modules/Linkshare/LinkshareConfig.php:104
650
  #: application/modules/Ozon/OzonConfig.php:91
 
651
  #: application/modules/Pixabay/PixabayConfig.php:108
652
  #: application/modules/TradedoublerProducts/TradedoublerProductsConfig.php:57
653
  msgid "Category "
@@ -704,41 +705,65 @@ msgstr ""
704
  "Пост опубликован не будет, если результаты для этих модулей не найдены."
705
 
706
  #: application/admin/views/_metabox_autoblog.php:373
707
- msgid "Add custom fields"
708
- msgstr "Добавить кастом поля"
709
 
710
  #: application/admin/views/_metabox_autoblog.php:377
 
 
 
711
  #: application/admin/views/_metabox_autoblog.php:378
 
 
 
712
  #: application/admin/views/_metabox_autoblog.php:379
713
- #: application/admin/views/_metabox_autoblog.php:380
714
- #: application/admin/views/_metabox_autoblog.php:381
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
715
  msgid "Custom Field"
716
  msgstr "Кастом поля"
717
 
718
- #: application/admin/views/_metabox_autoblog.php:384
719
- #: application/admin/views/_metabox_autoblog.php:385
720
- #: application/admin/views/_metabox_autoblog.php:386
721
- #: application/admin/views/_metabox_autoblog.php:387
722
- #: application/admin/views/_metabox_autoblog.php:388
723
  msgid "Value"
724
  msgstr "Значение"
725
 
726
  #: application/admin/views/_metabox_results.php:9
727
  #: application/components/ParserModuleConfig.php:57
728
- #: application/modules/Offer/views/metabox_module.php:51
729
  #: application/modules/Youtube/YoutubeConfig.php:64
730
  #: application/modules/Youtube/views/search_panel.php:11
731
  msgid "Title"
732
  msgstr "Заголовок"
733
 
734
  #: application/admin/views/_metabox_results.php:10
735
- #: application/modules/Offer/views/metabox_module.php:86
736
  msgid "Description"
737
  msgstr "Описание"
738
 
739
  #: application/admin/views/_metabox_results.php:13
740
- #: application/admin/views/_promo_box.php:58
741
- #: application/modules/Offer/views/metabox_module.php:89
742
  msgid "Go to "
743
  msgstr "Перейти"
744
 
@@ -760,22 +785,40 @@ msgstr "Код купона:"
760
  msgid "Maximum profit with minimum efforts"
761
  msgstr "Работай, как профи"
762
 
763
- #: application/admin/views/_promo_box.php:12
764
  msgid "Many additional modules and extended functions."
765
  msgstr "Все включено: контент + монетизация."
766
 
767
- #: application/admin/views/_promo_box.php:54
 
 
 
 
 
 
 
 
 
 
 
 
 
768
  msgid "Activate plugin"
769
  msgstr "Активируйте плагин"
770
 
771
- #: application/admin/views/_promo_box.php:55
 
 
 
 
 
 
 
772
  #: application/admin/views/envato_activation.php:5
773
  msgid ""
774
- "Activate plugin, to get urgent important updates of plugin inside admin "
775
- "panel and official support. "
776
  msgstr ""
777
- "Активируйте плагин, чтобы получить срочные автоматические апдейты в админ-"
778
- "панели Wordpress и официальную поддержку от авторов плагина."
779
 
780
  #: application/admin/views/ae_integration.php:5
781
  msgid "Integration with Affiliate Egg"
@@ -796,10 +839,16 @@ msgstr ""
796
  "магазина."
797
 
798
  #: application/admin/views/ae_integration.php:15
 
 
 
 
 
 
799
  msgid "For first step make next actions:"
800
  msgstr "Для начала работы выполните следующие действия:"
801
 
802
- #: application/admin/views/ae_integration.php:17
803
  msgid ""
804
  "Set and activate <a href=\"www.keywordrush.com/en/affiliateegg\">Affiliate "
805
  "Egg</a>"
@@ -807,7 +856,7 @@ msgstr ""
807
  "Установите и активируйте <a href=\"http://www.keywordrush.com/affiliateegg"
808
  "\">Affiliate Egg плагин</a>"
809
 
810
- #: application/admin/views/ae_integration.php:18
811
  msgid "Version of Affiliate Egg must be great than"
812
  msgstr "Версия Affiliate Egg должна быть не ниже"
813
 
@@ -968,67 +1017,79 @@ msgstr "Найти"
968
  msgid "Not found..."
969
  msgstr "Не найдено..."
970
 
971
- #: application/admin/views/prefill.php:15
972
  msgid "This extension will fill module's data for all existed posts."
973
  msgstr "Эта утилита заполняет данные модулей для всех существующих постов."
974
 
975
- #: application/admin/views/prefill.php:16
976
  msgid "All existing data and keywords will not be erased or overwritten."
977
  msgstr "Существующие данные и ключевые слова не будут перезаписаны."
978
 
979
- #: application/admin/views/prefill.php:23
980
  msgid "Add data for module"
981
  msgstr "Добавить данные для модуля"
982
 
983
- #: application/admin/views/prefill.php:33
984
  msgid "Keyword source"
985
  msgstr "Источник ключевого слова"
986
 
987
- #: application/admin/views/prefill.php:36
988
  msgid "Calculate as base of the density of keywords inside post"
989
  msgstr "Вычислить на основании плотности ключевых слов поста"
990
 
991
- #: application/admin/views/prefill.php:37
992
  msgid "Title for post"
993
  msgstr "Заголовк поста"
994
 
995
- #: application/admin/views/prefill.php:38
996
  msgid "Post tags"
997
  msgstr "Тэги поста"
998
 
999
- #: application/admin/views/prefill.php:40
1000
  msgid "Copy from"
1001
  msgstr "Копировать с"
1002
 
1003
- #: application/admin/views/prefill.php:47
1004
  msgid "Autoupdate"
1005
  msgstr "Автообновление"
1006
 
1007
- #: application/admin/views/prefill.php:49
1008
  msgid "Add Keyword for the automatic update"
1009
  msgstr "Добавить ключевое слово для автообновления"
1010
 
1011
- #: application/admin/views/prefill.php:50
1012
  msgid "Only for those modules, which have autoupdate function."
1013
  msgstr "Только для модулей, которые имеют функцию автообновления."
1014
 
1015
- #: application/admin/views/prefill.php:55
1016
  msgid "Number of words"
1017
  msgstr "Количество слов"
1018
 
1019
- #: application/admin/views/prefill.php:62
1020
  msgid "Maximum words for one search query."
1021
  msgstr "Максимум слов в поисковом запросе."
1022
 
1023
- #: application/admin/views/prefill.php:73
 
 
 
 
 
 
 
 
 
 
 
 
1024
  msgid "Start"
1025
  msgstr "Старт"
1026
 
1027
- #: application/admin/views/prefill.php:74
1028
  msgid "Run again"
1029
  msgstr "Начать сначала"
1030
 
1031
- #: application/admin/views/prefill.php:75
1032
  msgid "Stop"
1033
  msgstr "Стоп"
1034
 
@@ -1184,47 +1245,47 @@ msgstr "Редирект"
1184
  msgid "Make links with local 301 redirect"
1185
  msgstr "Ссылки через локальный 301 редирект."
1186
 
1187
- #: application/components/TemplateManager.php:83
1188
  msgid "[user]"
1189
  msgstr "[пользовательский]"
1190
 
1191
- #: application/models/AutoblogModel.php:69
1192
  msgid "Date of creation"
1193
  msgstr "Дата создания"
1194
 
1195
- #: application/models/AutoblogModel.php:70
1196
  msgid "Last work"
1197
  msgstr "Последний запуск"
1198
 
1199
- #: application/models/AutoblogModel.php:71
1200
  msgid "Status"
1201
  msgstr "Статус"
1202
 
1203
- #: application/models/AutoblogModel.php:72
1204
  msgid "Total posts"
1205
  msgstr "Всего постов"
1206
 
1207
- #: application/models/AutoblogModel.php:73
1208
  msgid "Last error"
1209
  msgstr "Последняя ошибка"
1210
 
1211
- #: application/models/AutoblogModel.php:198
1212
  msgid ""
1213
  "Required module %s will not run. The module is not configured or deleted."
1214
  msgstr ""
1215
  "Обязательный модуль %s не будет запущен. Модуль не настроен или исключен."
1216
 
1217
- #: application/models/AutoblogModel.php:259
1218
  msgid "Data was not found for required module %s."
1219
  msgstr "Не найдены данные для обязательного модуля %s."
1220
 
1221
- #: application/models/AutoblogModel.php:266
1222
  msgid ""
1223
  "It does not reach the desired amount of data. Minimum required modules: %d."
1224
  msgstr ""
1225
  "Не достигнуто требуемое количество данных. Минимум требуется модулей: %d."
1226
 
1227
- #: application/models/AutoblogModel.php:309
1228
  msgid "Post can't be created. Unknown error."
1229
  msgstr "Пост не может быть создан. Неизвестная ошибка."
1230
 
@@ -1263,7 +1324,7 @@ msgstr ""
1263
  #: application/modules/CjLinks/CjLinksConfig.php:50
1264
  #: application/modules/CjProducts/CjProductsConfig.php:50
1265
  #: application/modules/Clickbank/ClickbankConfig.php:35
1266
- #: application/modules/Ebay/EbayConfig.php:87
1267
  #: application/modules/Flickr/FlickrConfig.php:35
1268
  #: application/modules/Flipkart/FlipkartConfig.php:50
1269
  #: application/modules/Freebase/FreebaseConfig.php:35
@@ -1277,10 +1338,11 @@ msgstr ""
1277
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:94
1278
  #: application/modules/Ozon/OzonConfig.php:40
1279
  #: application/modules/PayTM/PayTMConfig.php:30
 
1280
  #: application/modules/Pixabay/PixabayConfig.php:35
1281
- #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:37
1282
- #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:47
1283
- #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:63
1284
  #: application/modules/RssFetcher/RssFetcherConfig.php:35
1285
  #: application/modules/Shareasale/ShareasaleConfig.php:65
1286
  #: application/modules/TradedoublerCoupons/TradedoublerCouponsConfig.php:35
@@ -1304,7 +1366,7 @@ msgstr "Результатов"
1304
  #: application/modules/CjLinks/CjLinksConfig.php:51
1305
  #: application/modules/CjProducts/CjProductsConfig.php:51
1306
  #: application/modules/Clickbank/ClickbankConfig.php:36
1307
- #: application/modules/Ebay/EbayConfig.php:88
1308
  #: application/modules/Flipkart/FlipkartConfig.php:51
1309
  #: application/modules/GdeSlon/GdeSlonConfig.php:46
1310
  #: application/modules/Impactradius/ImpactradiusConfig.php:49
@@ -1312,6 +1374,7 @@ msgstr "Результатов"
1312
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:95
1313
  #: application/modules/Ozon/OzonConfig.php:41
1314
  #: application/modules/PayTM/PayTMConfig.php:31
 
1315
  #: application/modules/Shareasale/ShareasaleConfig.php:66
1316
  #: application/modules/TradedoublerCoupons/TradedoublerCouponsConfig.php:36
1317
  #: application/modules/TradedoublerProducts/TradedoublerProductsConfig.php:36
@@ -1343,7 +1406,7 @@ msgstr "Поле \"Результатов\" не может быть больш
1343
  #: application/modules/CjLinks/CjLinksConfig.php:61
1344
  #: application/modules/CjProducts/CjProductsConfig.php:61
1345
  #: application/modules/Clickbank/ClickbankConfig.php:51
1346
- #: application/modules/Ebay/EbayConfig.php:103
1347
  #: application/modules/Flipkart/FlipkartConfig.php:66
1348
  #: application/modules/GdeSlon/GdeSlonConfig.php:61
1349
  #: application/modules/Impactradius/ImpactradiusConfig.php:63
@@ -1351,6 +1414,7 @@ msgstr "Поле \"Результатов\" не может быть больш
1351
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:110
1352
  #: application/modules/Ozon/OzonConfig.php:51
1353
  #: application/modules/PayTM/PayTMConfig.php:41
 
1354
  #: application/modules/Shareasale/ShareasaleConfig.php:76
1355
  #: application/modules/TradedoublerCoupons/TradedoublerCouponsConfig.php:46
1356
  #: application/modules/TradedoublerProducts/TradedoublerProductsConfig.php:46
@@ -1370,7 +1434,7 @@ msgstr "Результатов для обновления"
1370
  #: application/modules/CjLinks/CjLinksConfig.php:62
1371
  #: application/modules/CjProducts/CjProductsConfig.php:62
1372
  #: application/modules/Clickbank/ClickbankConfig.php:52
1373
- #: application/modules/Ebay/EbayConfig.php:104
1374
  #: application/modules/Flipkart/FlipkartConfig.php:67
1375
  #: application/modules/GdeSlon/GdeSlonConfig.php:62
1376
  #: application/modules/Impactradius/ImpactradiusConfig.php:64
@@ -1378,6 +1442,7 @@ msgstr "Результатов для обновления"
1378
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:111
1379
  #: application/modules/Ozon/OzonConfig.php:52
1380
  #: application/modules/PayTM/PayTMConfig.php:42
 
1381
  #: application/modules/Shareasale/ShareasaleConfig.php:77
1382
  #: application/modules/TradedoublerCoupons/TradedoublerCouponsConfig.php:47
1383
  #: application/modules/TradedoublerProducts/TradedoublerProductsConfig.php:47
@@ -1386,6 +1451,14 @@ msgid "Number of results for automatic updates and autoblogging."
1386
  msgstr "Количество результатов для автоматического обновления и автоблоггинга."
1387
 
1388
  #: application/modules/AE/AEConfig.php:62
 
 
 
 
 
 
 
 
1389
  #: application/modules/AdmitadProducts/AdmitadProductsConfig.php:115
1390
  #: application/modules/Affiliatewindow/AffiliatewindowConfig.php:128
1391
  #: application/modules/AffilinetProducts/AffilinetProductsConfig.php:165
@@ -1394,7 +1467,7 @@ msgstr "Количество результатов для автоматиче
1394
  #: application/modules/BingImages/BingImagesConfig.php:202
1395
  #: application/modules/CityadsProducts/CityadsProductsConfig.php:215
1396
  #: application/modules/CjProducts/CjProductsConfig.php:216
1397
- #: application/modules/Ebay/EbayConfig.php:334
1398
  #: application/modules/Flickr/FlickrConfig.php:104
1399
  #: application/modules/Flipkart/FlipkartConfig.php:82
1400
  #: application/modules/Freebase/FreebaseConfig.php:67
@@ -1409,6 +1482,7 @@ msgstr "Количество результатов для автоматиче
1409
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:163
1410
  #: application/modules/Ozon/OzonConfig.php:178
1411
  #: application/modules/PayTM/PayTMConfig.php:103
 
1412
  #: application/modules/Pixabay/PixabayConfig.php:165
1413
  #: application/modules/Shareasale/ShareasaleConfig.php:107
1414
  #: application/modules/TradedoublerProducts/TradedoublerProductsConfig.php:157
@@ -1418,7 +1492,7 @@ msgstr "Количество результатов для автоматиче
1418
  msgid "Save images"
1419
  msgstr "Сохранять картинки"
1420
 
1421
- #: application/modules/AE/AEConfig.php:63
1422
  #: application/modules/AdmitadProducts/AdmitadProductsConfig.php:116
1423
  #: application/modules/Affiliatewindow/AffiliatewindowConfig.php:129
1424
  #: application/modules/AffilinetProducts/AffilinetProductsConfig.php:166
@@ -1427,7 +1501,7 @@ msgstr "Сохранять картинки"
1427
  #: application/modules/BingImages/BingImagesConfig.php:203
1428
  #: application/modules/CityadsProducts/CityadsProductsConfig.php:216
1429
  #: application/modules/CjProducts/CjProductsConfig.php:217
1430
- #: application/modules/Ebay/EbayConfig.php:335
1431
  #: application/modules/Flickr/FlickrConfig.php:105
1432
  #: application/modules/Flipkart/FlipkartConfig.php:83
1433
  #: application/modules/Freebase/FreebaseConfig.php:68
@@ -1442,6 +1516,7 @@ msgstr "Сохранять картинки"
1442
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:164
1443
  #: application/modules/Ozon/OzonConfig.php:179
1444
  #: application/modules/PayTM/PayTMConfig.php:104
 
1445
  #: application/modules/Shareasale/ShareasaleConfig.php:108
1446
  #: application/modules/TradedoublerProducts/TradedoublerProductsConfig.php:158
1447
  #: application/modules/Twitter/TwitterConfig.php:126
@@ -1450,7 +1525,7 @@ msgstr "Сохранять картинки"
1450
  msgid "Save images on server"
1451
  msgstr "Сохранять картинки на сервер"
1452
 
1453
- #: application/modules/AE/AEModule.php:38
1454
  msgid "Affiliate Egg parser for %s"
1455
  msgstr "Affiliate Egg парсер для %s"
1456
 
@@ -1546,7 +1621,7 @@ msgstr "Только товары со скидкой."
1546
  #: application/modules/Amazon/AmazonConfig.php:165
1547
  #: application/modules/CityadsProducts/CityadsProductsConfig.php:118
1548
  #: application/modules/CjProducts/CjProductsConfig.php:96
1549
- #: application/modules/Ebay/EbayConfig.php:281
1550
  #: application/modules/Impactradius/ImpactradiusConfig.php:84
1551
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:136
1552
  #: application/modules/PayTM/PayTMConfig.php:69
@@ -1560,7 +1635,7 @@ msgstr "Минимальная цена"
1560
  #: application/modules/Amazon/AmazonConfig.php:175
1561
  #: application/modules/CityadsProducts/CityadsProductsConfig.php:128
1562
  #: application/modules/CjProducts/CjProductsConfig.php:106
1563
- #: application/modules/Ebay/EbayConfig.php:271
1564
  #: application/modules/Impactradius/ImpactradiusConfig.php:94
1565
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:146
1566
  #: application/modules/PayTM/PayTMConfig.php:79
@@ -1587,6 +1662,7 @@ msgstr "Максимальная цена"
1587
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:170
1588
  #: application/modules/Ozon/OzonConfig.php:185
1589
  #: application/modules/PayTM/PayTMConfig.php:110
 
1590
  #: application/modules/Shareasale/ShareasaleConfig.php:114
1591
  #: application/modules/TradedoublerProducts/TradedoublerProductsConfig.php:164
1592
  #: application/modules/VkNews/VkNewsConfig.php:49
@@ -1613,6 +1689,7 @@ msgstr "Обрезать описание"
1613
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:171
1614
  #: application/modules/Ozon/OzonConfig.php:186
1615
  #: application/modules/PayTM/PayTMConfig.php:111
 
1616
  #: application/modules/Shareasale/ShareasaleConfig.php:115
1617
  #: application/modules/TradedoublerProducts/TradedoublerProductsConfig.php:165
1618
  #: application/modules/VkNews/VkNewsConfig.php:50
@@ -1673,7 +1750,7 @@ msgstr "Поле \"API Key\" не может быть пустым."
1673
  #: application/modules/CityadsProducts/CityadsProductsConfig.php:178
1674
  #: application/modules/CjProducts/CjProductsConfig.php:156
1675
  #: application/modules/Clickbank/ClickbankConfig.php:100
1676
- #: application/modules/Ebay/EbayConfig.php:119
1677
  #: application/modules/Flickr/FlickrConfig.php:57
1678
  #: application/modules/GdeSlon/GdeSlonConfig.php:77
1679
  #: application/modules/GoogleBooks/GoogleBooksConfig.php:85
@@ -1805,6 +1882,7 @@ msgid "Limit the search of goods by this category."
1805
  msgstr "Ограничить поиск товаров этой категорией."
1806
 
1807
  #: application/modules/Aliexpress/AliexpressConfig.php:92
 
1808
  #: application/modules/TradedoublerProducts/TradedoublerProductsConfig.php:61
1809
  msgid "All categories"
1810
  msgstr "Все категории"
@@ -2142,12 +2220,12 @@ msgid "Text only"
2142
  msgstr "Только текст"
2143
 
2144
  #: application/modules/Amazon/AmazonConfig.php:272
2145
- #: application/modules/Ebay/EbayConfig.php:323
2146
  msgid "Size of description"
2147
  msgstr "Размер описания"
2148
 
2149
  #: application/modules/Amazon/AmazonConfig.php:273
2150
- #: application/modules/Ebay/EbayConfig.php:324
2151
  msgid "The maximum size of the item description. 0 - do not cut."
2152
  msgstr "Максимальный размер описания товара. 0 - не обрезать."
2153
 
@@ -2248,7 +2326,7 @@ msgstr ""
2248
  "microsoft.com/cognitive-services/en-us/subscriptions\">здесь</a>."
2249
 
2250
  #: application/modules/BingImages/BingImagesConfig.php:22
2251
- #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:23
2252
  msgid "You can set several Subscription Keys with commas."
2253
  msgstr "Вы можете задать несколько ключей через запятую."
2254
 
@@ -2258,14 +2336,20 @@ msgstr "Поле \"%\" не может быть пустым."
2258
 
2259
  #: application/modules/BingImages/BingImagesConfig.php:37
2260
  #: application/modules/Pixabay/PixabayConfig.php:36
2261
- #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:38
2262
  msgid "Number of results for a single query."
2263
  msgstr "Количество результатов для одного запроса."
2264
 
2265
  #: application/modules/BingImages/BingImagesConfig.php:46
2266
- #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:47
2267
- msgid "The field field \"%s\" can not be more than %d."
2268
- msgstr "The field field \"%s\" can not be more than %d."
 
 
 
 
 
 
2269
 
2270
  #: application/modules/BingImages/BingImagesConfig.php:52
2271
  #: application/modules/Flickr/FlickrConfig.php:46
@@ -2275,7 +2359,7 @@ msgstr "The field field \"%s\" can not be more than %d."
2275
  #: application/modules/GoogleNews/GoogleNewsConfig.php:36
2276
  #: application/modules/Market/MarketConfig.php:64
2277
  #: application/modules/Pixabay/PixabayConfig.php:51
2278
- #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:53
2279
  #: application/modules/RssFetcher/RssFetcherConfig.php:51
2280
  #: application/modules/Twitter/TwitterConfig.php:96
2281
  #: application/modules/VkNews/VkNewsConfig.php:31
@@ -2291,7 +2375,7 @@ msgstr "Результатов для автоблоггинга"
2291
  #: application/modules/GoogleNews/GoogleNewsConfig.php:37
2292
  #: application/modules/Market/MarketConfig.php:65
2293
  #: application/modules/Pixabay/PixabayConfig.php:52
2294
- #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:54
2295
  #: application/modules/RssFetcher/RssFetcherConfig.php:52
2296
  #: application/modules/Twitter/TwitterConfig.php:97
2297
  #: application/modules/VkNews/VkNewsConfig.php:32
@@ -2299,20 +2383,13 @@ msgstr "Результатов для автоблоггинга"
2299
  msgid "Number of results for autoblogging."
2300
  msgstr "Количество результатов для автоблоггинга."
2301
 
2302
- #: application/modules/BingImages/BingImagesConfig.php:62
2303
- #: application/modules/Impactradius/ImpactradiusConfig.php:58
2304
- #: application/modules/Impactradius/ImpactradiusConfig.php:73
2305
- #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:63
2306
- msgid "The field \"%s\" can not be more than %d."
2307
- msgstr "Поле \"%s\" не может быть больше %d."
2308
-
2309
  #: application/modules/BingImages/BingImagesConfig.php:68
2310
- #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:69
2311
  msgid "Market code"
2312
  msgstr "Код локали"
2313
 
2314
  #: application/modules/BingImages/BingImagesConfig.php:69
2315
- #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:70
2316
  msgid ""
2317
  "The market where the results come from. The market must be in the form "
2318
  "[language code]-[country code]."
@@ -2321,7 +2398,7 @@ msgstr ""
2321
  "[language code]-[country code]."
2322
 
2323
  #: application/modules/BingImages/BingImagesConfig.php:71
2324
- #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:72
2325
  msgid "(unspecified)"
2326
  msgstr "(не задано)"
2327
 
@@ -2624,13 +2701,13 @@ msgid "The field \"Remote_auth\" can not be empty."
2624
  msgstr "Поле \"Remote_auth\" не может быть пустым."
2625
 
2626
  #: application/modules/CityadsProducts/CityadsProductsConfig.php:45
2627
- #: application/modules/Ebay/EbayConfig.php:97
2628
  #: application/modules/GdeSlon/GdeSlonConfig.php:55
2629
  msgid "Field \"Results\" can not be more than 100."
2630
  msgstr "Поле \"Результатов\" не может быть больше 100."
2631
 
2632
  #: application/modules/CityadsProducts/CityadsProductsConfig.php:61
2633
- #: application/modules/Ebay/EbayConfig.php:113
2634
  #: application/modules/GdeSlon/GdeSlonConfig.php:71
2635
  msgid "Field \"Results for autoupdating\" can not be more than 100."
2636
  msgstr "Поле \"Результатов для обновления\" не может быть больше 100."
@@ -2907,10 +2984,26 @@ msgstr ""
2907
  "viglink.com/install\">здесь</a>, он одинаковый для всех доменов."
2908
 
2909
  #: application/modules/Ebay/EbayConfig.php:79
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2910
  msgid "Locale"
2911
  msgstr "Locale"
2912
 
2913
- #: application/modules/Ebay/EbayConfig.php:80
2914
  msgid ""
2915
  "Local site of Ebay. For each local site you must have separate registration "
2916
  "in affiliate program."
@@ -2918,11 +3011,11 @@ msgstr ""
2918
  "Локальный сайт eBay. Для каждого локального филиала необходима отдельная "
2919
  "регистрация в соответствующей партнерской программе."
2920
 
2921
- #: application/modules/Ebay/EbayConfig.php:127
2922
  msgid "Ending time"
2923
  msgstr "Время завершения"
2924
 
2925
- #: application/modules/Ebay/EbayConfig.php:128
2926
  msgid ""
2927
  "Lifetime of lots in seconds. Only lots which will be closed not later than "
2928
  "the specified time will be chosen."
@@ -2932,7 +3025,7 @@ msgstr ""
2932
 
2933
  # msgid "Category "
2934
  # msgstr "Категориия"
2935
- #: application/modules/Ebay/EbayConfig.php:138
2936
  msgid ""
2937
  "Id of category for searching. Id of categories you can find in URL of "
2938
  "category on <a href=\"http://www.ebay.com/sch/allcategories/all-categories"
@@ -2943,11 +3036,11 @@ msgstr ""
2943
  "\"http://www.ebay.com/sch/allcategories/all-categories\">этой странице</a>. "
2944
  "Можно задать до трех категорий через запятую, например, \"2195,2218,20094\"."
2945
 
2946
- #: application/modules/Ebay/EbayConfig.php:147
2947
  msgid "Search in description"
2948
  msgstr "Искать в описании"
2949
 
2950
- #: application/modules/Ebay/EbayConfig.php:148
2951
  msgid ""
2952
  "Include description of product in searching. This will take more time, than "
2953
  "searching only by title."
@@ -2955,20 +3048,20 @@ msgstr ""
2955
  "Включить поиск по описание товара в дополнение к названию товара. Это займет "
2956
  "больше времени, чем поиск только по названию."
2957
 
2958
- #: application/modules/Ebay/EbayConfig.php:154
2959
  #: application/modules/Linkshare/LinkshareConfig.php:67
2960
  msgid "Searching logic"
2961
  msgstr "Логика поиска"
2962
 
2963
- #: application/modules/Ebay/EbayConfig.php:162
2964
  msgid "Product condition"
2965
  msgstr "Состояние товара"
2966
 
2967
- #: application/modules/Ebay/EbayConfig.php:170
2968
  msgid "Exclude category"
2969
  msgstr "Исключить категорию"
2970
 
2971
- #: application/modules/Ebay/EbayConfig.php:171
2972
  msgid ""
2973
  "Id of category, which must be excluded while searching. Id of categories you "
2974
  "can find in URL of category on <a href=\"http://www.ebay.com/sch/"
@@ -2980,103 +3073,103 @@ msgstr ""
2980
  "categories\">этой странице</a>. Можно задать до 25 категорий через запятую, "
2981
  "например, \"2195,2218,20094\"."
2982
 
2983
- #: application/modules/Ebay/EbayConfig.php:180
2984
  msgid "Minimal seller rating"
2985
  msgstr "Минимальный ретинг продавца"
2986
 
2987
- #: application/modules/Ebay/EbayConfig.php:188
2988
  msgid "Best Offer"
2989
  msgstr "Best Offer"
2990
 
2991
- #: application/modules/Ebay/EbayConfig.php:189
2992
  msgid "Only \"Best Offer\" lots."
2993
  msgstr "Только \"Best Offer\" лоты."
2994
 
2995
- #: application/modules/Ebay/EbayConfig.php:195
2996
  msgid "Featured"
2997
  msgstr "Featured"
2998
 
2999
- #: application/modules/Ebay/EbayConfig.php:196
3000
  msgid "Only \"Featured\" lots."
3001
  msgstr "Только \"Featured\" лоты."
3002
 
3003
- #: application/modules/Ebay/EbayConfig.php:202
3004
  msgid "Free Shipping"
3005
  msgstr "Free Shipping"
3006
 
3007
- #: application/modules/Ebay/EbayConfig.php:203
3008
  msgid "Only lots with free delivery"
3009
  msgstr "Только лоты с бесплатной доставкой."
3010
 
3011
- #: application/modules/Ebay/EbayConfig.php:209
3012
  msgid "Local Pickup"
3013
  msgstr "Local Pickup"
3014
 
3015
- #: application/modules/Ebay/EbayConfig.php:210
3016
  msgid "Only lots with \"local pickup\" option."
3017
  msgstr "Только лоты с опцией \"local pickup\"."
3018
 
3019
- #: application/modules/Ebay/EbayConfig.php:216
3020
  msgid "Get It Fast"
3021
  msgstr "Get It Fast"
3022
 
3023
- #: application/modules/Ebay/EbayConfig.php:217
3024
  msgid "Only \"Get It Fast\" lots."
3025
  msgstr "Только \"Get It Fast\" лоты."
3026
 
3027
- #: application/modules/Ebay/EbayConfig.php:223
3028
  msgid "Top-rated seller"
3029
  msgstr "Top-rated seller"
3030
 
3031
- #: application/modules/Ebay/EbayConfig.php:224
3032
  msgid "Only products from Top-rated \"Top-rated\" vendors."
3033
  msgstr "Только товары от \"Top-rated\" продавцов."
3034
 
3035
- #: application/modules/Ebay/EbayConfig.php:230
3036
  msgid "Hide dublicates"
3037
  msgstr "Спрятать дубли"
3038
 
3039
- #: application/modules/Ebay/EbayConfig.php:231
3040
  msgid "Filter similar lots"
3041
  msgstr "Отфильтровать похожие лоты."
3042
 
3043
- #: application/modules/Ebay/EbayConfig.php:237
3044
  msgid "Type of auction"
3045
  msgstr "Тип аукциона"
3046
 
3047
- #: application/modules/Ebay/EbayConfig.php:251
3048
  msgid "Maximum bids"
3049
  msgstr "Максимум ставок"
3050
 
3051
- #: application/modules/Ebay/EbayConfig.php:252
3052
  msgid "Example, 10"
3053
  msgstr "Например, 10"
3054
 
3055
- #: application/modules/Ebay/EbayConfig.php:261
3056
  msgid "Minimum bids"
3057
  msgstr "Минимум ставок"
3058
 
3059
- #: application/modules/Ebay/EbayConfig.php:262
3060
  msgid "Example, 3"
3061
  msgstr "Например, 3"
3062
 
3063
- #: application/modules/Ebay/EbayConfig.php:272
3064
  msgid "Example, 300.50"
3065
  msgstr "Например, 300.50"
3066
 
3067
- #: application/modules/Ebay/EbayConfig.php:282
3068
  msgid "Example, 10.98"
3069
  msgstr "Например, 10.98"
3070
 
3071
- #: application/modules/Ebay/EbayConfig.php:291
3072
  msgid "Payment options"
3073
  msgstr "Варианты оплаты"
3074
 
3075
- #: application/modules/Ebay/EbayConfig.php:316
3076
  msgid "Get description"
3077
  msgstr "Получить описание"
3078
 
3079
- #: application/modules/Ebay/EbayConfig.php:317
3080
  msgid ""
3081
  "Get description of product. This takes more requests for Ebay API and slow "
3082
  "down searching. Description will be requested only for 20 first products for "
@@ -3086,7 +3179,7 @@ msgstr ""
3086
  "замедляет работу поиска. Описание будет запрошено не более чем для 20 первых "
3087
  "товаров за один поиск."
3088
 
3089
- #: application/modules/Ebay/EbayModule.php:30
3090
  msgid ""
3091
  "Adds Ebay products. Supports different local sites. Several ways of "
3092
  "moneymaking."
@@ -3309,7 +3402,7 @@ msgstr ""
3309
  "Буквенный или цифровой идентификатор, чтобы сегментировать данные о трафике."
3310
 
3311
  #: application/modules/GdeSlon/GdeSlonConfig.php:82
3312
- #: application/modules/Offer/views/metabox_module.php:63
3313
  msgid "Price"
3314
  msgstr "Цена"
3315
 
@@ -3485,6 +3578,7 @@ msgstr ""
3485
 
3486
  #: application/modules/Impactradius/ImpactradiusConfig.php:29
3487
  #: application/modules/Impactradius/ImpactradiusConfig.php:43
 
3488
  msgid "The field \"%s\" can not be empty."
3489
  msgstr ""
3490
 
@@ -3518,6 +3612,7 @@ msgid ""
3518
  msgstr ""
3519
 
3520
  #: application/modules/Impactradius/ImpactradiusModule.php:27
 
3521
  msgid "Adds products from %s."
3522
  msgstr "Добавляет товары %s."
3523
 
@@ -3667,24 +3762,35 @@ msgstr ""
3667
  msgid "Add offer"
3668
  msgstr "Добавить товар"
3669
 
3670
- #: application/modules/Offer/views/metabox_module.php:54
3671
- msgid "Offer URL"
3672
- msgstr "URL товара"
 
3673
 
3674
  #: application/modules/Offer/views/metabox_module.php:57
3675
- #: application/modules/Ozon/OzonConfig.php:30
3676
- msgid "Deeplink"
3677
- msgstr "Deeplink"
3678
-
3679
  #: application/modules/Offer/views/metabox_module.php:60
 
 
 
 
 
 
 
 
 
 
 
 
3680
  msgid "Image URL"
3681
  msgstr "URL картинки"
3682
 
3683
- #: application/modules/Offer/views/metabox_module.php:81
3684
  msgid "XPath Price Selector"
3685
  msgstr ""
3686
 
3687
- #: application/modules/Offer/views/metabox_module.php:91
3688
  msgid "Last update: "
3689
  msgstr "Обновление:"
3690
 
@@ -3883,12 +3989,6 @@ msgstr "Полезность"
3883
  msgid "Date of publication"
3884
  msgstr "Дата публикации"
3885
 
3886
- #: application/modules/Ozon/OzonConfig.php:172
3887
- #: application/modules/Youtube/YoutubeConfig.php:62
3888
- #: application/modules/Youtube/views/search_panel.php:9
3889
- msgid "Rating"
3890
- msgstr "Рейтинг"
3891
-
3892
  #: application/modules/Ozon/OzonModule.php:26
3893
  msgid "Adds goods from OZON.ru."
3894
  msgstr "Добавляет товары OZON.ru"
@@ -3917,6 +4017,32 @@ msgstr "Только товары в наличии."
3917
  msgid "Adds items from paytm.com"
3918
  msgstr "Добавляет товары paytm.com"
3919
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3920
  #: application/modules/Pixabay/PixabayConfig.php:21
3921
  msgid ""
3922
  "Key access to Pixabay API. You can get <a href=\"https://pixabay.com/api/"
@@ -3968,7 +4094,7 @@ msgstr ""
3968
  "Поиск фотографий и иллюстраций со свободной лицензией CC0 Public Domain на "
3969
  "pixabay.com."
3970
 
3971
- #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:22
3972
  msgid ""
3973
  "Key access to Bing Autosuggest API. You can get <a href=\"https://www."
3974
  "microsoft.com/cognitive-services/en-us/subscriptions\">here</a>."
@@ -3976,7 +4102,7 @@ msgstr ""
3976
  "Ключ доступа к Bing Autosuggest API. Получить можно <a href=\"https://www."
3977
  "microsoft.com/cognitive-services/en-us/subscriptions\">здесь</a>."
3978
 
3979
- #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:31
3980
  msgid "The \"%\" can not be empty."
3981
  msgstr "\"%\" не может быть пустым."
3982
 
@@ -4270,10 +4396,9 @@ msgstr "http://www.keywordrush.com/contentegg"
4270
  #. Description of the plugin/theme
4271
  msgid ""
4272
  "Easily adding auto updating products from affiliate systems and additional "
4273
- "content to posts."
 
4274
  msgstr ""
4275
- "Easily adding auto updating products from affiliate systems and additional "
4276
- "content to posts."
4277
 
4278
  #. Author of the plugin/theme
4279
  msgid "keywordrush.com"
@@ -4284,6 +4409,23 @@ msgstr "keywordrush.com"
4284
  msgid "http://www.keywordrush.com"
4285
  msgstr "http://www.keywordrush.com"
4286
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4287
  #~ msgid "Each keyword from separate line"
4288
  #~ msgstr "Каждое слово - с новой строки."
4289
 
3
  msgstr ""
4
  "Project-Id-Version: Content Egg 1.1.1\n"
5
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/content-egg\n"
6
+ "POT-Creation-Date: 2017-01-24 21:09+0200\n"
7
+ "PO-Revision-Date: 2017-01-24 21:11+0200\n"
8
  "Last-Translator: Sizam themes <sizamtheme@gmail.com>\n"
9
  "Language-Team: \n"
10
  "Language: en_EN\n"
73
  msgid "Add autoblogging - bulk mode"
74
  msgstr "Добавить автоблоггинг - пакетный режим"
75
 
76
+ #: application/admin/AutoblogController.php:201
77
  msgid "Autoblogging is not found"
78
  msgstr "Автоблоггинг не найден"
79
 
92
 
93
  #: application/admin/AutoblogTable.php:56 application/admin/MyListTable.php:165
94
  #: application/admin/views/_metabox_results.php:14
95
+ #: application/modules/Offer/views/metabox_module.php:96
96
  msgid "Delete"
97
  msgstr "Удалить"
98
 
172
  msgid "Error."
173
  msgstr "Error."
174
 
175
+ #: application/admin/GeneralConfig.php:31 application/admin/PluginAdmin.php:92
176
  msgid "Settings"
177
  msgstr "Настройки"
178
 
252
  msgstr ""
253
  "Для работы этой опции \"История изменения цены\" также должна быть включена."
254
 
255
+ #: application/admin/GeneralConfig.php:147
256
  msgid "Button color"
257
  msgstr "Цвет кнопок"
258
 
259
+ #: application/admin/GeneralConfig.php:148
260
  msgid "Button color for standard templates."
261
  msgstr "Цвет кнопок для стандартных шаблонов."
262
 
336
  msgid " back"
337
  msgstr " назад"
338
 
339
+ #: application/admin/PluginAdmin.php:78
340
  msgid "Are you sure?"
341
  msgstr "Вы уверены?"
342
 
345
  msgid "Fill"
346
  msgstr "Заполнить"
347
 
348
+ #: application/admin/PrefillController.php:98
349
  msgid "Data already exist."
350
  msgstr "Данные уже существуют."
351
 
352
+ #: application/admin/PrefillController.php:111
353
  msgid "Impossible to determine a keyword"
354
  msgstr "Невозможно определить ключевое слово."
355
 
356
+ #: application/admin/PrefillController.php:120
357
  msgid "Keyword for autoupdate already exists."
358
  msgstr "Ключевое слово для автоапдейта уже существует."
359
 
360
+ #: application/admin/PrefillController.php:124
361
  msgid "Keyword for autoupdate was saved."
362
  msgstr "Ключевое слово для автоапдейта сохранено."
363
 
364
+ #: application/admin/PrefillController.php:133
365
  #: application/admin/views/metabox_module.php:85
366
  msgid "Error:"
367
  msgstr "Ошибка: "
368
 
369
+ #: application/admin/PrefillController.php:140
370
  #: application/admin/views/metabox_module.php:50
371
  msgid "No data found..."
372
  msgstr "Данные не найдены."
373
 
374
+ #: application/admin/PrefillController.php:146
375
  msgid "Data saved:"
376
  msgstr "Данные сохранены:"
377
 
378
  #: application/admin/views/_metabox_autoblog.php:10
379
+ #: application/models/AutoblogModel.php:70
380
  #: application/modules/Ozon/OzonConfig.php:82
381
  msgid "Name"
382
  msgstr "Название"
431
 
432
  #: application/admin/views/_metabox_autoblog.php:51
433
  #: application/admin/views/_metabox_autoblog.php:140
434
+ #: application/models/AutoblogModel.php:76
435
  msgid "Keywords"
436
  msgstr "Ключевые слова"
437
 
595
  "постах, например: "
596
 
597
  #: application/admin/views/_metabox_autoblog.php:216
598
+ #: application/admin/views/_metabox_autoblog.php:408
599
  msgid ""
600
  "\"Formulas\", and also all tags from title template, will also work here."
601
  msgstr ""
645
  #: application/modules/CityadsProducts/CityadsProductsConfig.php:87
646
  #: application/modules/CjLinks/CjLinksConfig.php:123
647
  #: application/modules/Clickbank/ClickbankConfig.php:67
648
+ #: application/modules/Ebay/EbayConfig.php:147
649
  #: application/modules/Linkshare/LinkshareConfig.php:104
650
  #: application/modules/Ozon/OzonConfig.php:91
651
+ #: application/modules/Pepperjam/PepperjamConfig.php:96
652
  #: application/modules/Pixabay/PixabayConfig.php:108
653
  #: application/modules/TradedoublerProducts/TradedoublerProductsConfig.php:57
654
  msgid "Category "
705
  "Пост опубликован не будет, если результаты для этих модулей не найдены."
706
 
707
  #: application/admin/views/_metabox_autoblog.php:373
708
+ msgid "Main product"
709
+ msgstr "Главный товар"
710
 
711
  #: application/admin/views/_metabox_autoblog.php:377
712
+ msgid "Minimum price"
713
+ msgstr "Минимальная цена"
714
+
715
  #: application/admin/views/_metabox_autoblog.php:378
716
+ msgid "Maximum price"
717
+ msgstr "Максимальная цена"
718
+
719
  #: application/admin/views/_metabox_autoblog.php:379
720
+ msgid "Random"
721
+ msgstr "Случайный"
722
+
723
+ #: application/admin/views/_metabox_autoblog.php:382
724
+ msgid "How to choose \"main\" product?"
725
+ msgstr "Как выбрать \"главный\" товар?"
726
+
727
+ #: application/admin/views/_metabox_autoblog.php:383
728
+ msgid "Then you can use tags:"
729
+ msgstr "Вы также можете использовать теги:"
730
+
731
+ #: application/admin/views/_metabox_autoblog.php:390
732
+ msgid "Add custom fields"
733
+ msgstr "Добавить кастом поля"
734
+
735
+ #: application/admin/views/_metabox_autoblog.php:394
736
+ #: application/admin/views/_metabox_autoblog.php:395
737
+ #: application/admin/views/_metabox_autoblog.php:396
738
+ #: application/admin/views/_metabox_autoblog.php:397
739
+ #: application/admin/views/_metabox_autoblog.php:398
740
  msgid "Custom Field"
741
  msgstr "Кастом поля"
742
 
743
+ #: application/admin/views/_metabox_autoblog.php:401
744
+ #: application/admin/views/_metabox_autoblog.php:402
745
+ #: application/admin/views/_metabox_autoblog.php:403
746
+ #: application/admin/views/_metabox_autoblog.php:404
747
+ #: application/admin/views/_metabox_autoblog.php:405
748
  msgid "Value"
749
  msgstr "Значение"
750
 
751
  #: application/admin/views/_metabox_results.php:9
752
  #: application/components/ParserModuleConfig.php:57
753
+ #: application/modules/Offer/views/metabox_module.php:53
754
  #: application/modules/Youtube/YoutubeConfig.php:64
755
  #: application/modules/Youtube/views/search_panel.php:11
756
  msgid "Title"
757
  msgstr "Заголовок"
758
 
759
  #: application/admin/views/_metabox_results.php:10
760
+ #: application/modules/Offer/views/metabox_module.php:92
761
  msgid "Description"
762
  msgstr "Описание"
763
 
764
  #: application/admin/views/_metabox_results.php:13
765
+ #: application/admin/views/_promo_box.php:37
766
+ #: application/modules/Offer/views/metabox_module.php:95
767
  msgid "Go to "
768
  msgstr "Перейти"
769
 
785
  msgid "Maximum profit with minimum efforts"
786
  msgstr "Работай, как профи"
787
 
788
+ #: application/admin/views/_promo_box.php:17
789
  msgid "Many additional modules and extended functions."
790
  msgstr "Все включено: контент + монетизация."
791
 
792
+ #: application/admin/views/_promo_box.php:24
793
+ msgid "Thanks for use this plugin!"
794
+ msgstr ""
795
+
796
+ #: application/admin/views/_promo_box.php:25
797
+ msgid ""
798
+ "If you like it and want to thank, you can write a 5 star review on Wordpress."
799
+ msgstr ""
800
+
801
+ #: application/admin/views/_promo_box.php:27
802
+ msgid "Rate"
803
+ msgstr ""
804
+
805
+ #: application/admin/views/_promo_box.php:33
806
  msgid "Activate plugin"
807
  msgstr "Активируйте плагин"
808
 
809
+ #: application/admin/views/_promo_box.php:34
810
+ #: application/admin/views/envato_activation.php:4
811
+ msgid ""
812
+ "In order to receive all benefits of Contennt Egg, you need to activate your "
813
+ "copy of the plugin."
814
+ msgstr ""
815
+
816
+ #: application/admin/views/_promo_box.php:35
817
  #: application/admin/views/envato_activation.php:5
818
  msgid ""
819
+ "By activating Contennt Egg license you will unlock premium options - direct "
820
+ "plugin updates, access to user panel and official support."
821
  msgstr ""
 
 
822
 
823
  #: application/admin/views/ae_integration.php:5
824
  msgid "Integration with Affiliate Egg"
839
  "магазина."
840
 
841
  #: application/admin/views/ae_integration.php:15
842
+ msgid ""
843
+ "Here are the <a href=\"http://www.keywordrush.com/res/ae_supported_shops.txt"
844
+ "\">full list</a> of Affiliate Egg supported shops."
845
+ msgstr ""
846
+
847
+ #: application/admin/views/ae_integration.php:19
848
  msgid "For first step make next actions:"
849
  msgstr "Для начала работы выполните следующие действия:"
850
 
851
+ #: application/admin/views/ae_integration.php:21
852
  msgid ""
853
  "Set and activate <a href=\"www.keywordrush.com/en/affiliateegg\">Affiliate "
854
  "Egg</a>"
856
  "Установите и активируйте <a href=\"http://www.keywordrush.com/affiliateegg"
857
  "\">Affiliate Egg плагин</a>"
858
 
859
+ #: application/admin/views/ae_integration.php:22
860
  msgid "Version of Affiliate Egg must be great than"
861
  msgstr "Версия Affiliate Egg должна быть не ниже"
862
 
1017
  msgid "Not found..."
1018
  msgstr "Не найдено..."
1019
 
1020
+ #: application/admin/views/prefill.php:14
1021
  msgid "This extension will fill module's data for all existed posts."
1022
  msgstr "Эта утилита заполняет данные модулей для всех существующих постов."
1023
 
1024
+ #: application/admin/views/prefill.php:15
1025
  msgid "All existing data and keywords will not be erased or overwritten."
1026
  msgstr "Существующие данные и ключевые слова не будут перезаписаны."
1027
 
1028
+ #: application/admin/views/prefill.php:19
1029
  msgid "Add data for module"
1030
  msgstr "Добавить данные для модуля"
1031
 
1032
+ #: application/admin/views/prefill.php:29
1033
  msgid "Keyword source"
1034
  msgstr "Источник ключевого слова"
1035
 
1036
+ #: application/admin/views/prefill.php:32
1037
  msgid "Calculate as base of the density of keywords inside post"
1038
  msgstr "Вычислить на основании плотности ключевых слов поста"
1039
 
1040
+ #: application/admin/views/prefill.php:33
1041
  msgid "Title for post"
1042
  msgstr "Заголовк поста"
1043
 
1044
+ #: application/admin/views/prefill.php:34
1045
  msgid "Post tags"
1046
  msgstr "Тэги поста"
1047
 
1048
+ #: application/admin/views/prefill.php:36
1049
  msgid "Copy from"
1050
  msgstr "Копировать с"
1051
 
1052
+ #: application/admin/views/prefill.php:43
1053
  msgid "Autoupdate"
1054
  msgstr "Автообновление"
1055
 
1056
+ #: application/admin/views/prefill.php:45
1057
  msgid "Add Keyword for the automatic update"
1058
  msgstr "Добавить ключевое слово для автообновления"
1059
 
1060
+ #: application/admin/views/prefill.php:46
1061
  msgid "Only for those modules, which have autoupdate function."
1062
  msgstr "Только для модулей, которые имеют функцию автообновления."
1063
 
1064
+ #: application/admin/views/prefill.php:51
1065
  msgid "Number of words"
1066
  msgstr "Количество слов"
1067
 
1068
+ #: application/admin/views/prefill.php:58
1069
  msgid "Maximum words for one search query."
1070
  msgstr "Максимум слов в поисковом запросе."
1071
 
1072
+ #: application/admin/views/prefill.php:63
1073
+ msgid "\"Minus\" words"
1074
+ msgstr "\"Минус\" слова"
1075
+
1076
+ #: application/admin/views/prefill.php:66
1077
+ msgid ""
1078
+ "Remove these words from keyword. You can set several minus words/phrases "
1079
+ "with commas."
1080
+ msgstr ""
1081
+ "Удалить эти слова из запроса. Вы можете задать несколько слов/фраз через "
1082
+ "запятую."
1083
+
1084
+ #: application/admin/views/prefill.php:76
1085
  msgid "Start"
1086
  msgstr "Старт"
1087
 
1088
+ #: application/admin/views/prefill.php:77
1089
  msgid "Run again"
1090
  msgstr "Начать сначала"
1091
 
1092
+ #: application/admin/views/prefill.php:78
1093
  msgid "Stop"
1094
  msgstr "Стоп"
1095
 
1245
  msgid "Make links with local 301 redirect"
1246
  msgstr "Ссылки через локальный 301 редирект."
1247
 
1248
+ #: application/components/TemplateManager.php:84
1249
  msgid "[user]"
1250
  msgstr "[пользовательский]"
1251
 
1252
+ #: application/models/AutoblogModel.php:71
1253
  msgid "Date of creation"
1254
  msgstr "Дата создания"
1255
 
1256
+ #: application/models/AutoblogModel.php:72
1257
  msgid "Last work"
1258
  msgstr "Последний запуск"
1259
 
1260
+ #: application/models/AutoblogModel.php:73
1261
  msgid "Status"
1262
  msgstr "Статус"
1263
 
1264
+ #: application/models/AutoblogModel.php:74
1265
  msgid "Total posts"
1266
  msgstr "Всего постов"
1267
 
1268
+ #: application/models/AutoblogModel.php:75
1269
  msgid "Last error"
1270
  msgstr "Последняя ошибка"
1271
 
1272
+ #: application/models/AutoblogModel.php:200
1273
  msgid ""
1274
  "Required module %s will not run. The module is not configured or deleted."
1275
  msgstr ""
1276
  "Обязательный модуль %s не будет запущен. Модуль не настроен или исключен."
1277
 
1278
+ #: application/models/AutoblogModel.php:260
1279
  msgid "Data was not found for required module %s."
1280
  msgstr "Не найдены данные для обязательного модуля %s."
1281
 
1282
+ #: application/models/AutoblogModel.php:267
1283
  msgid ""
1284
  "It does not reach the desired amount of data. Minimum required modules: %d."
1285
  msgstr ""
1286
  "Не достигнуто требуемое количество данных. Минимум требуется модулей: %d."
1287
 
1288
+ #: application/models/AutoblogModel.php:319
1289
  msgid "Post can't be created. Unknown error."
1290
  msgstr "Пост не может быть создан. Неизвестная ошибка."
1291
 
1324
  #: application/modules/CjLinks/CjLinksConfig.php:50
1325
  #: application/modules/CjProducts/CjProductsConfig.php:50
1326
  #: application/modules/Clickbank/ClickbankConfig.php:35
1327
+ #: application/modules/Ebay/EbayConfig.php:97
1328
  #: application/modules/Flickr/FlickrConfig.php:35
1329
  #: application/modules/Flipkart/FlipkartConfig.php:50
1330
  #: application/modules/Freebase/FreebaseConfig.php:35
1338
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:94
1339
  #: application/modules/Ozon/OzonConfig.php:40
1340
  #: application/modules/PayTM/PayTMConfig.php:30
1341
+ #: application/modules/Pepperjam/PepperjamConfig.php:56
1342
  #: application/modules/Pixabay/PixabayConfig.php:35
1343
+ #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:36
1344
+ #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:46
1345
+ #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:62
1346
  #: application/modules/RssFetcher/RssFetcherConfig.php:35
1347
  #: application/modules/Shareasale/ShareasaleConfig.php:65
1348
  #: application/modules/TradedoublerCoupons/TradedoublerCouponsConfig.php:35
1366
  #: application/modules/CjLinks/CjLinksConfig.php:51
1367
  #: application/modules/CjProducts/CjProductsConfig.php:51
1368
  #: application/modules/Clickbank/ClickbankConfig.php:36
1369
+ #: application/modules/Ebay/EbayConfig.php:98
1370
  #: application/modules/Flipkart/FlipkartConfig.php:51
1371
  #: application/modules/GdeSlon/GdeSlonConfig.php:46
1372
  #: application/modules/Impactradius/ImpactradiusConfig.php:49
1374
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:95
1375
  #: application/modules/Ozon/OzonConfig.php:41
1376
  #: application/modules/PayTM/PayTMConfig.php:31
1377
+ #: application/modules/Pepperjam/PepperjamConfig.php:57
1378
  #: application/modules/Shareasale/ShareasaleConfig.php:66
1379
  #: application/modules/TradedoublerCoupons/TradedoublerCouponsConfig.php:36
1380
  #: application/modules/TradedoublerProducts/TradedoublerProductsConfig.php:36
1406
  #: application/modules/CjLinks/CjLinksConfig.php:61
1407
  #: application/modules/CjProducts/CjProductsConfig.php:61
1408
  #: application/modules/Clickbank/ClickbankConfig.php:51
1409
+ #: application/modules/Ebay/EbayConfig.php:113
1410
  #: application/modules/Flipkart/FlipkartConfig.php:66
1411
  #: application/modules/GdeSlon/GdeSlonConfig.php:61
1412
  #: application/modules/Impactradius/ImpactradiusConfig.php:63
1414
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:110
1415
  #: application/modules/Ozon/OzonConfig.php:51
1416
  #: application/modules/PayTM/PayTMConfig.php:41
1417
+ #: application/modules/Pepperjam/PepperjamConfig.php:71
1418
  #: application/modules/Shareasale/ShareasaleConfig.php:76
1419
  #: application/modules/TradedoublerCoupons/TradedoublerCouponsConfig.php:46
1420
  #: application/modules/TradedoublerProducts/TradedoublerProductsConfig.php:46
1434
  #: application/modules/CjLinks/CjLinksConfig.php:62
1435
  #: application/modules/CjProducts/CjProductsConfig.php:62
1436
  #: application/modules/Clickbank/ClickbankConfig.php:52
1437
+ #: application/modules/Ebay/EbayConfig.php:114
1438
  #: application/modules/Flipkart/FlipkartConfig.php:67
1439
  #: application/modules/GdeSlon/GdeSlonConfig.php:62
1440
  #: application/modules/Impactradius/ImpactradiusConfig.php:64
1442
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:111
1443
  #: application/modules/Ozon/OzonConfig.php:52
1444
  #: application/modules/PayTM/PayTMConfig.php:42
1445
+ #: application/modules/Pepperjam/PepperjamConfig.php:72
1446
  #: application/modules/Shareasale/ShareasaleConfig.php:77
1447
  #: application/modules/TradedoublerCoupons/TradedoublerCouponsConfig.php:47
1448
  #: application/modules/TradedoublerProducts/TradedoublerProductsConfig.php:47
1451
  msgstr "Количество результатов для автоматического обновления и автоблоггинга."
1452
 
1453
  #: application/modules/AE/AEConfig.php:62
1454
+ msgid "Reviews as post comments"
1455
+ msgstr "Отзывы как комментарии"
1456
+
1457
+ #: application/modules/AE/AEConfig.php:63
1458
+ msgid "Save user reviews as post comments."
1459
+ msgstr "Сохранять отзывы пользователей как комментарии к посту."
1460
+
1461
+ #: application/modules/AE/AEConfig.php:69
1462
  #: application/modules/AdmitadProducts/AdmitadProductsConfig.php:115
1463
  #: application/modules/Affiliatewindow/AffiliatewindowConfig.php:128
1464
  #: application/modules/AffilinetProducts/AffilinetProductsConfig.php:165
1467
  #: application/modules/BingImages/BingImagesConfig.php:202
1468
  #: application/modules/CityadsProducts/CityadsProductsConfig.php:215
1469
  #: application/modules/CjProducts/CjProductsConfig.php:216
1470
+ #: application/modules/Ebay/EbayConfig.php:344
1471
  #: application/modules/Flickr/FlickrConfig.php:104
1472
  #: application/modules/Flipkart/FlipkartConfig.php:82
1473
  #: application/modules/Freebase/FreebaseConfig.php:67
1482
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:163
1483
  #: application/modules/Ozon/OzonConfig.php:178
1484
  #: application/modules/PayTM/PayTMConfig.php:103
1485
+ #: application/modules/Pepperjam/PepperjamConfig.php:140
1486
  #: application/modules/Pixabay/PixabayConfig.php:165
1487
  #: application/modules/Shareasale/ShareasaleConfig.php:107
1488
  #: application/modules/TradedoublerProducts/TradedoublerProductsConfig.php:157
1492
  msgid "Save images"
1493
  msgstr "Сохранять картинки"
1494
 
1495
+ #: application/modules/AE/AEConfig.php:70
1496
  #: application/modules/AdmitadProducts/AdmitadProductsConfig.php:116
1497
  #: application/modules/Affiliatewindow/AffiliatewindowConfig.php:129
1498
  #: application/modules/AffilinetProducts/AffilinetProductsConfig.php:166
1501
  #: application/modules/BingImages/BingImagesConfig.php:203
1502
  #: application/modules/CityadsProducts/CityadsProductsConfig.php:216
1503
  #: application/modules/CjProducts/CjProductsConfig.php:217
1504
+ #: application/modules/Ebay/EbayConfig.php:345
1505
  #: application/modules/Flickr/FlickrConfig.php:105
1506
  #: application/modules/Flipkart/FlipkartConfig.php:83
1507
  #: application/modules/Freebase/FreebaseConfig.php:68
1516
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:164
1517
  #: application/modules/Ozon/OzonConfig.php:179
1518
  #: application/modules/PayTM/PayTMConfig.php:104
1519
+ #: application/modules/Pepperjam/PepperjamConfig.php:141
1520
  #: application/modules/Shareasale/ShareasaleConfig.php:108
1521
  #: application/modules/TradedoublerProducts/TradedoublerProductsConfig.php:158
1522
  #: application/modules/Twitter/TwitterConfig.php:126
1525
  msgid "Save images on server"
1526
  msgstr "Сохранять картинки на сервер"
1527
 
1528
+ #: application/modules/AE/AEModule.php:39
1529
  msgid "Affiliate Egg parser for %s"
1530
  msgstr "Affiliate Egg парсер для %s"
1531
 
1621
  #: application/modules/Amazon/AmazonConfig.php:165
1622
  #: application/modules/CityadsProducts/CityadsProductsConfig.php:118
1623
  #: application/modules/CjProducts/CjProductsConfig.php:96
1624
+ #: application/modules/Ebay/EbayConfig.php:291
1625
  #: application/modules/Impactradius/ImpactradiusConfig.php:84
1626
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:136
1627
  #: application/modules/PayTM/PayTMConfig.php:69
1635
  #: application/modules/Amazon/AmazonConfig.php:175
1636
  #: application/modules/CityadsProducts/CityadsProductsConfig.php:128
1637
  #: application/modules/CjProducts/CjProductsConfig.php:106
1638
+ #: application/modules/Ebay/EbayConfig.php:281
1639
  #: application/modules/Impactradius/ImpactradiusConfig.php:94
1640
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:146
1641
  #: application/modules/PayTM/PayTMConfig.php:79
1662
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:170
1663
  #: application/modules/Ozon/OzonConfig.php:185
1664
  #: application/modules/PayTM/PayTMConfig.php:110
1665
+ #: application/modules/Pepperjam/PepperjamConfig.php:147
1666
  #: application/modules/Shareasale/ShareasaleConfig.php:114
1667
  #: application/modules/TradedoublerProducts/TradedoublerProductsConfig.php:164
1668
  #: application/modules/VkNews/VkNewsConfig.php:49
1689
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:171
1690
  #: application/modules/Ozon/OzonConfig.php:186
1691
  #: application/modules/PayTM/PayTMConfig.php:111
1692
+ #: application/modules/Pepperjam/PepperjamConfig.php:148
1693
  #: application/modules/Shareasale/ShareasaleConfig.php:115
1694
  #: application/modules/TradedoublerProducts/TradedoublerProductsConfig.php:165
1695
  #: application/modules/VkNews/VkNewsConfig.php:50
1750
  #: application/modules/CityadsProducts/CityadsProductsConfig.php:178
1751
  #: application/modules/CjProducts/CjProductsConfig.php:156
1752
  #: application/modules/Clickbank/ClickbankConfig.php:100
1753
+ #: application/modules/Ebay/EbayConfig.php:129
1754
  #: application/modules/Flickr/FlickrConfig.php:57
1755
  #: application/modules/GdeSlon/GdeSlonConfig.php:77
1756
  #: application/modules/GoogleBooks/GoogleBooksConfig.php:85
1882
  msgstr "Ограничить поиск товаров этой категорией."
1883
 
1884
  #: application/modules/Aliexpress/AliexpressConfig.php:92
1885
+ #: application/modules/Pepperjam/PepperjamConfig.php:100
1886
  #: application/modules/TradedoublerProducts/TradedoublerProductsConfig.php:61
1887
  msgid "All categories"
1888
  msgstr "Все категории"
2220
  msgstr "Только текст"
2221
 
2222
  #: application/modules/Amazon/AmazonConfig.php:272
2223
+ #: application/modules/Ebay/EbayConfig.php:333
2224
  msgid "Size of description"
2225
  msgstr "Размер описания"
2226
 
2227
  #: application/modules/Amazon/AmazonConfig.php:273
2228
+ #: application/modules/Ebay/EbayConfig.php:334
2229
  msgid "The maximum size of the item description. 0 - do not cut."
2230
  msgstr "Максимальный размер описания товара. 0 - не обрезать."
2231
 
2326
  "microsoft.com/cognitive-services/en-us/subscriptions\">здесь</a>."
2327
 
2328
  #: application/modules/BingImages/BingImagesConfig.php:22
2329
+ #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:22
2330
  msgid "You can set several Subscription Keys with commas."
2331
  msgstr "Вы можете задать несколько ключей через запятую."
2332
 
2336
 
2337
  #: application/modules/BingImages/BingImagesConfig.php:37
2338
  #: application/modules/Pixabay/PixabayConfig.php:36
2339
+ #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:37
2340
  msgid "Number of results for a single query."
2341
  msgstr "Количество результатов для одного запроса."
2342
 
2343
  #: application/modules/BingImages/BingImagesConfig.php:46
2344
+ #: application/modules/BingImages/BingImagesConfig.php:62
2345
+ #: application/modules/Impactradius/ImpactradiusConfig.php:58
2346
+ #: application/modules/Impactradius/ImpactradiusConfig.php:73
2347
+ #: application/modules/Pepperjam/PepperjamConfig.php:66
2348
+ #: application/modules/Pepperjam/PepperjamConfig.php:81
2349
+ #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:46
2350
+ #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:62
2351
+ msgid "The field \"%s\" can not be more than %d."
2352
+ msgstr "Поле \"%s\" не может быть больше %d."
2353
 
2354
  #: application/modules/BingImages/BingImagesConfig.php:52
2355
  #: application/modules/Flickr/FlickrConfig.php:46
2359
  #: application/modules/GoogleNews/GoogleNewsConfig.php:36
2360
  #: application/modules/Market/MarketConfig.php:64
2361
  #: application/modules/Pixabay/PixabayConfig.php:51
2362
+ #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:52
2363
  #: application/modules/RssFetcher/RssFetcherConfig.php:51
2364
  #: application/modules/Twitter/TwitterConfig.php:96
2365
  #: application/modules/VkNews/VkNewsConfig.php:31
2375
  #: application/modules/GoogleNews/GoogleNewsConfig.php:37
2376
  #: application/modules/Market/MarketConfig.php:65
2377
  #: application/modules/Pixabay/PixabayConfig.php:52
2378
+ #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:53
2379
  #: application/modules/RssFetcher/RssFetcherConfig.php:52
2380
  #: application/modules/Twitter/TwitterConfig.php:97
2381
  #: application/modules/VkNews/VkNewsConfig.php:32
2383
  msgid "Number of results for autoblogging."
2384
  msgstr "Количество результатов для автоблоггинга."
2385
 
 
 
 
 
 
 
 
2386
  #: application/modules/BingImages/BingImagesConfig.php:68
2387
+ #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:68
2388
  msgid "Market code"
2389
  msgstr "Код локали"
2390
 
2391
  #: application/modules/BingImages/BingImagesConfig.php:69
2392
+ #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:69
2393
  msgid ""
2394
  "The market where the results come from. The market must be in the form "
2395
  "[language code]-[country code]."
2398
  "[language code]-[country code]."
2399
 
2400
  #: application/modules/BingImages/BingImagesConfig.php:71
2401
+ #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:71
2402
  msgid "(unspecified)"
2403
  msgstr "(не задано)"
2404
 
2701
  msgstr "Поле \"Remote_auth\" не может быть пустым."
2702
 
2703
  #: application/modules/CityadsProducts/CityadsProductsConfig.php:45
2704
+ #: application/modules/Ebay/EbayConfig.php:107
2705
  #: application/modules/GdeSlon/GdeSlonConfig.php:55
2706
  msgid "Field \"Results\" can not be more than 100."
2707
  msgstr "Поле \"Результатов\" не может быть больше 100."
2708
 
2709
  #: application/modules/CityadsProducts/CityadsProductsConfig.php:61
2710
+ #: application/modules/Ebay/EbayConfig.php:123
2711
  #: application/modules/GdeSlon/GdeSlonConfig.php:71
2712
  msgid "Field \"Results for autoupdating\" can not be more than 100."
2713
  msgstr "Поле \"Результатов для обновления\" не может быть больше 100."
2984
  "viglink.com/install\">здесь</a>, он одинаковый для всех доменов."
2985
 
2986
  #: application/modules/Ebay/EbayConfig.php:79
2987
+ #: application/modules/Offer/views/metabox_module.php:71
2988
+ #: application/modules/Ozon/OzonConfig.php:30
2989
+ msgid "Deeplink"
2990
+ msgstr "Deeplink"
2991
+
2992
+ #: application/modules/Ebay/EbayConfig.php:80
2993
+ msgid ""
2994
+ "Set Deeplink for one of CPA-networks. You can use parameter as "
2995
+ "<em>partner_id=12345</em>, or make link as template, for example, "
2996
+ "<em>{{url}}/partner_id-12345/</em>. Another example is https://ad.admitad."
2997
+ "com/g/g8f0qmlavfa/?ulp={{url_encoded}}. {{url}} and {{url_encoded}} - will "
2998
+ "be replaced by product url. If product url is after affiliate url - use "
2999
+ "{{url_encoded}}"
3000
+ msgstr ""
3001
+
3002
+ #: application/modules/Ebay/EbayConfig.php:89
3003
  msgid "Locale"
3004
  msgstr "Locale"
3005
 
3006
+ #: application/modules/Ebay/EbayConfig.php:90
3007
  msgid ""
3008
  "Local site of Ebay. For each local site you must have separate registration "
3009
  "in affiliate program."
3011
  "Локальный сайт eBay. Для каждого локального филиала необходима отдельная "
3012
  "регистрация в соответствующей партнерской программе."
3013
 
3014
+ #: application/modules/Ebay/EbayConfig.php:137
3015
  msgid "Ending time"
3016
  msgstr "Время завершения"
3017
 
3018
+ #: application/modules/Ebay/EbayConfig.php:138
3019
  msgid ""
3020
  "Lifetime of lots in seconds. Only lots which will be closed not later than "
3021
  "the specified time will be chosen."
3025
 
3026
  # msgid "Category "
3027
  # msgstr "Категориия"
3028
+ #: application/modules/Ebay/EbayConfig.php:148
3029
  msgid ""
3030
  "Id of category for searching. Id of categories you can find in URL of "
3031
  "category on <a href=\"http://www.ebay.com/sch/allcategories/all-categories"
3036
  "\"http://www.ebay.com/sch/allcategories/all-categories\">этой странице</a>. "
3037
  "Можно задать до трех категорий через запятую, например, \"2195,2218,20094\"."
3038
 
3039
+ #: application/modules/Ebay/EbayConfig.php:157
3040
  msgid "Search in description"
3041
  msgstr "Искать в описании"
3042
 
3043
+ #: application/modules/Ebay/EbayConfig.php:158
3044
  msgid ""
3045
  "Include description of product in searching. This will take more time, than "
3046
  "searching only by title."
3048
  "Включить поиск по описание товара в дополнение к названию товара. Это займет "
3049
  "больше времени, чем поиск только по названию."
3050
 
3051
+ #: application/modules/Ebay/EbayConfig.php:164
3052
  #: application/modules/Linkshare/LinkshareConfig.php:67
3053
  msgid "Searching logic"
3054
  msgstr "Логика поиска"
3055
 
3056
+ #: application/modules/Ebay/EbayConfig.php:172
3057
  msgid "Product condition"
3058
  msgstr "Состояние товара"
3059
 
3060
+ #: application/modules/Ebay/EbayConfig.php:180
3061
  msgid "Exclude category"
3062
  msgstr "Исключить категорию"
3063
 
3064
+ #: application/modules/Ebay/EbayConfig.php:181
3065
  msgid ""
3066
  "Id of category, which must be excluded while searching. Id of categories you "
3067
  "can find in URL of category on <a href=\"http://www.ebay.com/sch/"
3073
  "categories\">этой странице</a>. Можно задать до 25 категорий через запятую, "
3074
  "например, \"2195,2218,20094\"."
3075
 
3076
+ #: application/modules/Ebay/EbayConfig.php:190
3077
  msgid "Minimal seller rating"
3078
  msgstr "Минимальный ретинг продавца"
3079
 
3080
+ #: application/modules/Ebay/EbayConfig.php:198
3081
  msgid "Best Offer"
3082
  msgstr "Best Offer"
3083
 
3084
+ #: application/modules/Ebay/EbayConfig.php:199
3085
  msgid "Only \"Best Offer\" lots."
3086
  msgstr "Только \"Best Offer\" лоты."
3087
 
3088
+ #: application/modules/Ebay/EbayConfig.php:205
3089
  msgid "Featured"
3090
  msgstr "Featured"
3091
 
3092
+ #: application/modules/Ebay/EbayConfig.php:206
3093
  msgid "Only \"Featured\" lots."
3094
  msgstr "Только \"Featured\" лоты."
3095
 
3096
+ #: application/modules/Ebay/EbayConfig.php:212
3097
  msgid "Free Shipping"
3098
  msgstr "Free Shipping"
3099
 
3100
+ #: application/modules/Ebay/EbayConfig.php:213
3101
  msgid "Only lots with free delivery"
3102
  msgstr "Только лоты с бесплатной доставкой."
3103
 
3104
+ #: application/modules/Ebay/EbayConfig.php:219
3105
  msgid "Local Pickup"
3106
  msgstr "Local Pickup"
3107
 
3108
+ #: application/modules/Ebay/EbayConfig.php:220
3109
  msgid "Only lots with \"local pickup\" option."
3110
  msgstr "Только лоты с опцией \"local pickup\"."
3111
 
3112
+ #: application/modules/Ebay/EbayConfig.php:226
3113
  msgid "Get It Fast"
3114
  msgstr "Get It Fast"
3115
 
3116
+ #: application/modules/Ebay/EbayConfig.php:227
3117
  msgid "Only \"Get It Fast\" lots."
3118
  msgstr "Только \"Get It Fast\" лоты."
3119
 
3120
+ #: application/modules/Ebay/EbayConfig.php:233
3121
  msgid "Top-rated seller"
3122
  msgstr "Top-rated seller"
3123
 
3124
+ #: application/modules/Ebay/EbayConfig.php:234
3125
  msgid "Only products from Top-rated \"Top-rated\" vendors."
3126
  msgstr "Только товары от \"Top-rated\" продавцов."
3127
 
3128
+ #: application/modules/Ebay/EbayConfig.php:240
3129
  msgid "Hide dublicates"
3130
  msgstr "Спрятать дубли"
3131
 
3132
+ #: application/modules/Ebay/EbayConfig.php:241
3133
  msgid "Filter similar lots"
3134
  msgstr "Отфильтровать похожие лоты."
3135
 
3136
+ #: application/modules/Ebay/EbayConfig.php:247
3137
  msgid "Type of auction"
3138
  msgstr "Тип аукциона"
3139
 
3140
+ #: application/modules/Ebay/EbayConfig.php:261
3141
  msgid "Maximum bids"
3142
  msgstr "Максимум ставок"
3143
 
3144
+ #: application/modules/Ebay/EbayConfig.php:262
3145
  msgid "Example, 10"
3146
  msgstr "Например, 10"
3147
 
3148
+ #: application/modules/Ebay/EbayConfig.php:271
3149
  msgid "Minimum bids"
3150
  msgstr "Минимум ставок"
3151
 
3152
+ #: application/modules/Ebay/EbayConfig.php:272
3153
  msgid "Example, 3"
3154
  msgstr "Например, 3"
3155
 
3156
+ #: application/modules/Ebay/EbayConfig.php:282
3157
  msgid "Example, 300.50"
3158
  msgstr "Например, 300.50"
3159
 
3160
+ #: application/modules/Ebay/EbayConfig.php:292
3161
  msgid "Example, 10.98"
3162
  msgstr "Например, 10.98"
3163
 
3164
+ #: application/modules/Ebay/EbayConfig.php:301
3165
  msgid "Payment options"
3166
  msgstr "Варианты оплаты"
3167
 
3168
+ #: application/modules/Ebay/EbayConfig.php:326
3169
  msgid "Get description"
3170
  msgstr "Получить описание"
3171
 
3172
+ #: application/modules/Ebay/EbayConfig.php:327
3173
  msgid ""
3174
  "Get description of product. This takes more requests for Ebay API and slow "
3175
  "down searching. Description will be requested only for 20 first products for "
3179
  "замедляет работу поиска. Описание будет запрошено не более чем для 20 первых "
3180
  "товаров за один поиск."
3181
 
3182
+ #: application/modules/Ebay/EbayModule.php:31
3183
  msgid ""
3184
  "Adds Ebay products. Supports different local sites. Several ways of "
3185
  "moneymaking."
3402
  "Буквенный или цифровой идентификатор, чтобы сегментировать данные о трафике."
3403
 
3404
  #: application/modules/GdeSlon/GdeSlonConfig.php:82
3405
+ #: application/modules/Offer/views/metabox_module.php:77
3406
  msgid "Price"
3407
  msgstr "Цена"
3408
 
3578
 
3579
  #: application/modules/Impactradius/ImpactradiusConfig.php:29
3580
  #: application/modules/Impactradius/ImpactradiusConfig.php:43
3581
+ #: application/modules/Pepperjam/PepperjamConfig.php:30
3582
  msgid "The field \"%s\" can not be empty."
3583
  msgstr ""
3584
 
3612
  msgstr ""
3613
 
3614
  #: application/modules/Impactradius/ImpactradiusModule.php:27
3615
+ #: application/modules/Pepperjam/PepperjamModule.php:27
3616
  msgid "Adds products from %s."
3617
  msgstr "Добавляет товары %s."
3618
 
3762
  msgid "Add offer"
3763
  msgstr "Добавить товар"
3764
 
3765
+ #: application/modules/Offer/views/metabox_module.php:53
3766
+ #: application/modules/Offer/views/metabox_module.php:68
3767
+ msgid "required"
3768
+ msgstr "обязательно"
3769
 
3770
  #: application/modules/Offer/views/metabox_module.php:57
3771
+ #: application/modules/Offer/views/metabox_module.php:58
3772
+ #: application/modules/Offer/views/metabox_module.php:59
 
 
3773
  #: application/modules/Offer/views/metabox_module.php:60
3774
+ #: application/modules/Offer/views/metabox_module.php:61
3775
+ #: application/modules/Ozon/OzonConfig.php:172
3776
+ #: application/modules/Youtube/YoutubeConfig.php:62
3777
+ #: application/modules/Youtube/views/search_panel.php:9
3778
+ msgid "Rating"
3779
+ msgstr "Рейтинг"
3780
+
3781
+ #: application/modules/Offer/views/metabox_module.php:68
3782
+ msgid "Offer URL"
3783
+ msgstr "URL товара"
3784
+
3785
+ #: application/modules/Offer/views/metabox_module.php:74
3786
  msgid "Image URL"
3787
  msgstr "URL картинки"
3788
 
3789
+ #: application/modules/Offer/views/metabox_module.php:87
3790
  msgid "XPath Price Selector"
3791
  msgstr ""
3792
 
3793
+ #: application/modules/Offer/views/metabox_module.php:97
3794
  msgid "Last update: "
3795
  msgstr "Обновление:"
3796
 
3989
  msgid "Date of publication"
3990
  msgstr "Дата публикации"
3991
 
 
 
 
 
 
 
3992
  #: application/modules/Ozon/OzonModule.php:26
3993
  msgid "Adds goods from OZON.ru."
3994
  msgstr "Добавляет товары OZON.ru"
4017
  msgid "Adds items from paytm.com"
4018
  msgstr "Добавляет товары paytm.com"
4019
 
4020
+ #: application/modules/Pepperjam/PepperjamConfig.php:22
4021
+ msgid ""
4022
+ "You can generate publisher API Key <a href=\"http://www.pepperjamnetwork.com/"
4023
+ "affiliate/api/\">here</a>."
4024
+ msgstr ""
4025
+
4026
+ #: application/modules/Pepperjam/PepperjamConfig.php:37
4027
+ msgid ""
4028
+ "A single website id used for website tracking. Adding this will add this "
4029
+ "parameter to your tracking link."
4030
+ msgstr ""
4031
+
4032
+ #: application/modules/Pepperjam/PepperjamConfig.php:47
4033
+ msgid ""
4034
+ "A single SID parameter used for publisher tracking. Adding this will add "
4035
+ "this parameter to your tracking link."
4036
+ msgstr ""
4037
+
4038
+ #: application/modules/Pepperjam/PepperjamConfig.php:86
4039
+ msgid "Program ID"
4040
+ msgstr ""
4041
+
4042
+ #: application/modules/Pepperjam/PepperjamConfig.php:87
4043
+ msgid "A comma-separated list of program ids to filter by."
4044
+ msgstr ""
4045
+
4046
  #: application/modules/Pixabay/PixabayConfig.php:21
4047
  msgid ""
4048
  "Key access to Pixabay API. You can get <a href=\"https://pixabay.com/api/"
4094
  "Поиск фотографий и иллюстраций со свободной лицензией CC0 Public Domain на "
4095
  "pixabay.com."
4096
 
4097
+ #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:21
4098
  msgid ""
4099
  "Key access to Bing Autosuggest API. You can get <a href=\"https://www."
4100
  "microsoft.com/cognitive-services/en-us/subscriptions\">here</a>."
4102
  "Ключ доступа к Bing Autosuggest API. Получить можно <a href=\"https://www."
4103
  "microsoft.com/cognitive-services/en-us/subscriptions\">здесь</a>."
4104
 
4105
+ #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:30
4106
  msgid "The \"%\" can not be empty."
4107
  msgstr "\"%\" не может быть пустым."
4108
 
4396
  #. Description of the plugin/theme
4397
  msgid ""
4398
  "Easily adding auto updating products from affiliate systems and additional "
4399
+ "content to posts. [ATTENTION: before update PRO version of plugin, activate "
4400
+ "plugin!]"
4401
  msgstr ""
 
 
4402
 
4403
  #. Author of the plugin/theme
4404
  msgid "keywordrush.com"
4409
  msgid "http://www.keywordrush.com"
4410
  msgstr "http://www.keywordrush.com"
4411
 
4412
+ #~ msgid ""
4413
+ #~ "Activate plugin, to get urgent important updates of plugin inside admin "
4414
+ #~ "panel and official support. "
4415
+ #~ msgstr ""
4416
+ #~ "Активируйте плагин, чтобы получить срочные автоматические апдейты в админ-"
4417
+ #~ "панели Wordpress и официальную поддержку от авторов плагина."
4418
+
4419
+ #~ msgid ""
4420
+ #~ "Easily adding auto updating products from affiliate systems and "
4421
+ #~ "additional content to posts."
4422
+ #~ msgstr ""
4423
+ #~ "Easily adding auto updating products from affiliate systems and "
4424
+ #~ "additional content to posts."
4425
+
4426
+ #~ msgid "The field field \"%s\" can not be more than %d."
4427
+ #~ msgstr "The field field \"%s\" can not be more than %d."
4428
+
4429
  #~ msgid "Each keyword from separate line"
4430
  #~ msgstr "Каждое слово - с новой строки."
4431
 
languages/content-egg.pot CHANGED
@@ -1,14 +1,14 @@
1
- # Copyright (C) 2016 Content Egg
2
  # This file is distributed under the same license as the Content Egg package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Content Egg 3.0.0\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/content-egg\n"
7
- "POT-Creation-Date: 2016-12-13 15:19:50+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2016-MO-DA HO:MI+ZONE\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
@@ -67,7 +67,7 @@ msgstr ""
67
  msgid "Add autoblogging - bulk mode"
68
  msgstr ""
69
 
70
- #: application/admin/AutoblogController.php:199
71
  msgid "Autoblogging is not found"
72
  msgstr ""
73
 
@@ -86,7 +86,7 @@ msgstr ""
86
 
87
  #: application/admin/AutoblogTable.php:56 application/admin/MyListTable.php:165
88
  #: application/admin/views/_metabox_results.php:14
89
- #: application/modules/Offer/views/metabox_module.php:90
90
  msgid "Delete"
91
  msgstr ""
92
 
@@ -148,7 +148,7 @@ msgstr ""
148
  msgid "Error."
149
  msgstr ""
150
 
151
- #: application/admin/GeneralConfig.php:31 application/admin/PluginAdmin.php:91
152
  msgid "Settings"
153
  msgstr ""
154
 
@@ -209,11 +209,11 @@ msgstr ""
209
  msgid "This option requires \"Price history\" option (must be enabled) to work."
210
  msgstr ""
211
 
212
- #: application/admin/GeneralConfig.php:148
213
  msgid "Button color"
214
  msgstr ""
215
 
216
- #: application/admin/GeneralConfig.php:149
217
  msgid "Button color for standard templates."
218
  msgstr ""
219
 
@@ -275,7 +275,7 @@ msgstr ""
275
  msgid " back"
276
  msgstr ""
277
 
278
- #: application/admin/PluginAdmin.php:77
279
  msgid "Are you sure?"
280
  msgstr ""
281
 
@@ -284,38 +284,38 @@ msgstr ""
284
  msgid "Fill"
285
  msgstr ""
286
 
287
- #: application/admin/PrefillController.php:95
288
  msgid "Data already exist."
289
  msgstr ""
290
 
291
- #: application/admin/PrefillController.php:102
292
  msgid "Impossible to determine a keyword"
293
  msgstr ""
294
 
295
- #: application/admin/PrefillController.php:111
296
  msgid "Keyword for autoupdate already exists."
297
  msgstr ""
298
 
299
- #: application/admin/PrefillController.php:115
300
  msgid "Keyword for autoupdate was saved."
301
  msgstr ""
302
 
303
- #: application/admin/PrefillController.php:124
304
  #: application/admin/views/metabox_module.php:85
305
  msgid "Error:"
306
  msgstr ""
307
 
308
- #: application/admin/PrefillController.php:131
309
  #: application/admin/views/metabox_module.php:50
310
  msgid "No data found..."
311
  msgstr ""
312
 
313
- #: application/admin/PrefillController.php:137
314
  msgid "Data saved:"
315
  msgstr ""
316
 
317
  #: application/admin/views/_metabox_autoblog.php:10
318
- #: application/models/AutoblogModel.php:68
319
  #: application/modules/Ozon/OzonConfig.php:82
320
  msgid "Name"
321
  msgstr ""
@@ -370,7 +370,7 @@ msgstr ""
370
 
371
  #: application/admin/views/_metabox_autoblog.php:51
372
  #: application/admin/views/_metabox_autoblog.php:140
373
- #: application/models/AutoblogModel.php:74
374
  msgid "Keywords"
375
  msgstr ""
376
 
@@ -524,7 +524,7 @@ msgid "You can use shortcodes, for example:"
524
  msgstr ""
525
 
526
  #: application/admin/views/_metabox_autoblog.php:216
527
- #: application/admin/views/_metabox_autoblog.php:391
528
  msgid "\"Formulas\", and also all tags from title template, will also work here."
529
  msgstr ""
530
 
@@ -569,9 +569,10 @@ msgstr ""
569
  #: application/modules/CityadsProducts/CityadsProductsConfig.php:87
570
  #: application/modules/CjLinks/CjLinksConfig.php:123
571
  #: application/modules/Clickbank/ClickbankConfig.php:67
572
- #: application/modules/Ebay/EbayConfig.php:137
573
  #: application/modules/Linkshare/LinkshareConfig.php:104
574
  #: application/modules/Ozon/OzonConfig.php:91
 
575
  #: application/modules/Pixabay/PixabayConfig.php:108
576
  #: application/modules/TradedoublerProducts/TradedoublerProductsConfig.php:57
577
  msgid "Category "
@@ -615,41 +616,65 @@ msgid "Post will not be publicized if no results for these modules."
615
  msgstr ""
616
 
617
  #: application/admin/views/_metabox_autoblog.php:373
618
- msgid "Add custom fields"
619
  msgstr ""
620
 
621
  #: application/admin/views/_metabox_autoblog.php:377
 
 
 
622
  #: application/admin/views/_metabox_autoblog.php:378
 
 
 
623
  #: application/admin/views/_metabox_autoblog.php:379
624
- #: application/admin/views/_metabox_autoblog.php:380
625
- #: application/admin/views/_metabox_autoblog.php:381
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
626
  msgid "Custom Field"
627
  msgstr ""
628
 
629
- #: application/admin/views/_metabox_autoblog.php:384
630
- #: application/admin/views/_metabox_autoblog.php:385
631
- #: application/admin/views/_metabox_autoblog.php:386
632
- #: application/admin/views/_metabox_autoblog.php:387
633
- #: application/admin/views/_metabox_autoblog.php:388
634
  msgid "Value"
635
  msgstr ""
636
 
637
  #: application/admin/views/_metabox_results.php:9
638
  #: application/components/ParserModuleConfig.php:57
639
- #: application/modules/Offer/views/metabox_module.php:51
640
  #: application/modules/Youtube/YoutubeConfig.php:64
641
  #: application/modules/Youtube/views/search_panel.php:11
642
  msgid "Title"
643
  msgstr ""
644
 
645
  #: application/admin/views/_metabox_results.php:10
646
- #: application/modules/Offer/views/metabox_module.php:86
647
  msgid "Description"
648
  msgstr ""
649
 
650
  #: application/admin/views/_metabox_results.php:13
651
- #: application/admin/views/_promo_box.php:58
652
- #: application/modules/Offer/views/metabox_module.php:89
653
  msgid "Go to "
654
  msgstr ""
655
 
@@ -671,17 +696,34 @@ msgstr ""
671
  msgid "Maximum profit with minimum efforts"
672
  msgstr ""
673
 
674
- #: application/admin/views/_promo_box.php:12
675
  msgid "Many additional modules and extended functions."
676
  msgstr ""
677
 
678
- #: application/admin/views/_promo_box.php:54
 
 
 
 
 
 
 
 
 
 
 
 
679
  msgid "Activate plugin"
680
  msgstr ""
681
 
682
- #: application/admin/views/_promo_box.php:55
 
 
 
 
 
683
  #: application/admin/views/envato_activation.php:5
684
- msgid "Activate plugin, to get urgent important updates of plugin inside admin panel and official support. "
685
  msgstr ""
686
 
687
  #: application/admin/views/ae_integration.php:5
@@ -697,14 +739,18 @@ msgid "For search by keyword, plugin will use search of original site."
697
  msgstr ""
698
 
699
  #: application/admin/views/ae_integration.php:15
 
 
 
 
700
  msgid "For first step make next actions:"
701
  msgstr ""
702
 
703
- #: application/admin/views/ae_integration.php:17
704
  msgid "Set and activate <a href=\"www.keywordrush.com/en/affiliateegg\">Affiliate Egg</a>"
705
  msgstr ""
706
 
707
- #: application/admin/views/ae_integration.php:18
708
  msgid "Version of Affiliate Egg must be great than"
709
  msgstr ""
710
 
@@ -851,67 +897,75 @@ msgstr ""
851
  msgid "Not found..."
852
  msgstr ""
853
 
854
- #: application/admin/views/prefill.php:15
855
  msgid "This extension will fill module's data for all existed posts."
856
  msgstr ""
857
 
858
- #: application/admin/views/prefill.php:16
859
  msgid "All existing data and keywords will not be erased or overwritten."
860
  msgstr ""
861
 
862
- #: application/admin/views/prefill.php:23
863
  msgid "Add data for module"
864
  msgstr ""
865
 
866
- #: application/admin/views/prefill.php:33
867
  msgid "Keyword source"
868
  msgstr ""
869
 
870
- #: application/admin/views/prefill.php:36
871
  msgid "Calculate as base of the density of keywords inside post"
872
  msgstr ""
873
 
874
- #: application/admin/views/prefill.php:37
875
  msgid "Title for post"
876
  msgstr ""
877
 
878
- #: application/admin/views/prefill.php:38
879
  msgid "Post tags"
880
  msgstr ""
881
 
882
- #: application/admin/views/prefill.php:40
883
  msgid "Copy from"
884
  msgstr ""
885
 
886
- #: application/admin/views/prefill.php:47
887
  msgid "Autoupdate"
888
  msgstr ""
889
 
890
- #: application/admin/views/prefill.php:49
891
  msgid "Add Keyword for the automatic update"
892
  msgstr ""
893
 
894
- #: application/admin/views/prefill.php:50
895
  msgid "Only for those modules, which have autoupdate function."
896
  msgstr ""
897
 
898
- #: application/admin/views/prefill.php:55
899
  msgid "Number of words"
900
  msgstr ""
901
 
902
- #: application/admin/views/prefill.php:62
903
  msgid "Maximum words for one search query."
904
  msgstr ""
905
 
906
- #: application/admin/views/prefill.php:73
 
 
 
 
 
 
 
 
907
  msgid "Start"
908
  msgstr ""
909
 
910
- #: application/admin/views/prefill.php:74
911
  msgid "Run again"
912
  msgstr ""
913
 
914
- #: application/admin/views/prefill.php:75
915
  msgid "Stop"
916
  msgstr ""
917
 
@@ -1049,43 +1103,43 @@ msgstr ""
1049
  msgid "Make links with local 301 redirect"
1050
  msgstr ""
1051
 
1052
- #: application/components/TemplateManager.php:83
1053
  msgid "[user]"
1054
  msgstr ""
1055
 
1056
- #: application/models/AutoblogModel.php:69
1057
  msgid "Date of creation"
1058
  msgstr ""
1059
 
1060
- #: application/models/AutoblogModel.php:70
1061
  msgid "Last work"
1062
  msgstr ""
1063
 
1064
- #: application/models/AutoblogModel.php:71
1065
  msgid "Status"
1066
  msgstr ""
1067
 
1068
- #: application/models/AutoblogModel.php:72
1069
  msgid "Total posts"
1070
  msgstr ""
1071
 
1072
- #: application/models/AutoblogModel.php:73
1073
  msgid "Last error"
1074
  msgstr ""
1075
 
1076
- #: application/models/AutoblogModel.php:198
1077
  msgid "Required module %s will not run. The module is not configured or deleted."
1078
  msgstr ""
1079
 
1080
- #: application/models/AutoblogModel.php:259
1081
  msgid "Data was not found for required module %s."
1082
  msgstr ""
1083
 
1084
- #: application/models/AutoblogModel.php:266
1085
  msgid "It does not reach the desired amount of data. Minimum required modules: %d."
1086
  msgstr ""
1087
 
1088
- #: application/models/AutoblogModel.php:309
1089
  msgid "Post can't be created. Unknown error."
1090
  msgstr ""
1091
 
@@ -1112,7 +1166,7 @@ msgstr ""
1112
  #: application/modules/CjLinks/CjLinksConfig.php:50
1113
  #: application/modules/CjProducts/CjProductsConfig.php:50
1114
  #: application/modules/Clickbank/ClickbankConfig.php:35
1115
- #: application/modules/Ebay/EbayConfig.php:87
1116
  #: application/modules/Flickr/FlickrConfig.php:35
1117
  #: application/modules/Flipkart/FlipkartConfig.php:50
1118
  #: application/modules/Freebase/FreebaseConfig.php:35
@@ -1126,10 +1180,11 @@ msgstr ""
1126
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:94
1127
  #: application/modules/Ozon/OzonConfig.php:40
1128
  #: application/modules/PayTM/PayTMConfig.php:30
 
1129
  #: application/modules/Pixabay/PixabayConfig.php:35
1130
- #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:37
1131
- #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:47
1132
- #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:63
1133
  #: application/modules/RssFetcher/RssFetcherConfig.php:35
1134
  #: application/modules/Shareasale/ShareasaleConfig.php:65
1135
  #: application/modules/TradedoublerCoupons/TradedoublerCouponsConfig.php:35
@@ -1153,7 +1208,7 @@ msgstr ""
1153
  #: application/modules/CjLinks/CjLinksConfig.php:51
1154
  #: application/modules/CjProducts/CjProductsConfig.php:51
1155
  #: application/modules/Clickbank/ClickbankConfig.php:36
1156
- #: application/modules/Ebay/EbayConfig.php:88
1157
  #: application/modules/Flipkart/FlipkartConfig.php:51
1158
  #: application/modules/GdeSlon/GdeSlonConfig.php:46
1159
  #: application/modules/Impactradius/ImpactradiusConfig.php:49
@@ -1161,6 +1216,7 @@ msgstr ""
1161
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:95
1162
  #: application/modules/Ozon/OzonConfig.php:41
1163
  #: application/modules/PayTM/PayTMConfig.php:31
 
1164
  #: application/modules/Shareasale/ShareasaleConfig.php:66
1165
  #: application/modules/TradedoublerCoupons/TradedoublerCouponsConfig.php:36
1166
  #: application/modules/TradedoublerProducts/TradedoublerProductsConfig.php:36
@@ -1192,7 +1248,7 @@ msgstr ""
1192
  #: application/modules/CjLinks/CjLinksConfig.php:61
1193
  #: application/modules/CjProducts/CjProductsConfig.php:61
1194
  #: application/modules/Clickbank/ClickbankConfig.php:51
1195
- #: application/modules/Ebay/EbayConfig.php:103
1196
  #: application/modules/Flipkart/FlipkartConfig.php:66
1197
  #: application/modules/GdeSlon/GdeSlonConfig.php:61
1198
  #: application/modules/Impactradius/ImpactradiusConfig.php:63
@@ -1200,6 +1256,7 @@ msgstr ""
1200
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:110
1201
  #: application/modules/Ozon/OzonConfig.php:51
1202
  #: application/modules/PayTM/PayTMConfig.php:41
 
1203
  #: application/modules/Shareasale/ShareasaleConfig.php:76
1204
  #: application/modules/TradedoublerCoupons/TradedoublerCouponsConfig.php:46
1205
  #: application/modules/TradedoublerProducts/TradedoublerProductsConfig.php:46
@@ -1219,7 +1276,7 @@ msgstr ""
1219
  #: application/modules/CjLinks/CjLinksConfig.php:62
1220
  #: application/modules/CjProducts/CjProductsConfig.php:62
1221
  #: application/modules/Clickbank/ClickbankConfig.php:52
1222
- #: application/modules/Ebay/EbayConfig.php:104
1223
  #: application/modules/Flipkart/FlipkartConfig.php:67
1224
  #: application/modules/GdeSlon/GdeSlonConfig.php:62
1225
  #: application/modules/Impactradius/ImpactradiusConfig.php:64
@@ -1227,6 +1284,7 @@ msgstr ""
1227
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:111
1228
  #: application/modules/Ozon/OzonConfig.php:52
1229
  #: application/modules/PayTM/PayTMConfig.php:42
 
1230
  #: application/modules/Shareasale/ShareasaleConfig.php:77
1231
  #: application/modules/TradedoublerCoupons/TradedoublerCouponsConfig.php:47
1232
  #: application/modules/TradedoublerProducts/TradedoublerProductsConfig.php:47
@@ -1235,6 +1293,14 @@ msgid "Number of results for automatic updates and autoblogging."
1235
  msgstr ""
1236
 
1237
  #: application/modules/AE/AEConfig.php:62
 
 
 
 
 
 
 
 
1238
  #: application/modules/AdmitadProducts/AdmitadProductsConfig.php:115
1239
  #: application/modules/Affiliatewindow/AffiliatewindowConfig.php:128
1240
  #: application/modules/AffilinetProducts/AffilinetProductsConfig.php:165
@@ -1243,7 +1309,7 @@ msgstr ""
1243
  #: application/modules/BingImages/BingImagesConfig.php:202
1244
  #: application/modules/CityadsProducts/CityadsProductsConfig.php:215
1245
  #: application/modules/CjProducts/CjProductsConfig.php:216
1246
- #: application/modules/Ebay/EbayConfig.php:334
1247
  #: application/modules/Flickr/FlickrConfig.php:104
1248
  #: application/modules/Flipkart/FlipkartConfig.php:82
1249
  #: application/modules/Freebase/FreebaseConfig.php:67
@@ -1258,6 +1324,7 @@ msgstr ""
1258
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:163
1259
  #: application/modules/Ozon/OzonConfig.php:178
1260
  #: application/modules/PayTM/PayTMConfig.php:103
 
1261
  #: application/modules/Pixabay/PixabayConfig.php:165
1262
  #: application/modules/Shareasale/ShareasaleConfig.php:107
1263
  #: application/modules/TradedoublerProducts/TradedoublerProductsConfig.php:157
@@ -1267,7 +1334,7 @@ msgstr ""
1267
  msgid "Save images"
1268
  msgstr ""
1269
 
1270
- #: application/modules/AE/AEConfig.php:63
1271
  #: application/modules/AdmitadProducts/AdmitadProductsConfig.php:116
1272
  #: application/modules/Affiliatewindow/AffiliatewindowConfig.php:129
1273
  #: application/modules/AffilinetProducts/AffilinetProductsConfig.php:166
@@ -1276,7 +1343,7 @@ msgstr ""
1276
  #: application/modules/BingImages/BingImagesConfig.php:203
1277
  #: application/modules/CityadsProducts/CityadsProductsConfig.php:216
1278
  #: application/modules/CjProducts/CjProductsConfig.php:217
1279
- #: application/modules/Ebay/EbayConfig.php:335
1280
  #: application/modules/Flickr/FlickrConfig.php:105
1281
  #: application/modules/Flipkart/FlipkartConfig.php:83
1282
  #: application/modules/Freebase/FreebaseConfig.php:68
@@ -1291,6 +1358,7 @@ msgstr ""
1291
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:164
1292
  #: application/modules/Ozon/OzonConfig.php:179
1293
  #: application/modules/PayTM/PayTMConfig.php:104
 
1294
  #: application/modules/Shareasale/ShareasaleConfig.php:108
1295
  #: application/modules/TradedoublerProducts/TradedoublerProductsConfig.php:158
1296
  #: application/modules/Twitter/TwitterConfig.php:126
@@ -1299,7 +1367,7 @@ msgstr ""
1299
  msgid "Save images on server"
1300
  msgstr ""
1301
 
1302
- #: application/modules/AE/AEModule.php:38
1303
  msgid "Affiliate Egg parser for %s"
1304
  msgstr ""
1305
 
@@ -1378,7 +1446,7 @@ msgstr ""
1378
  #: application/modules/Amazon/AmazonConfig.php:165
1379
  #: application/modules/CityadsProducts/CityadsProductsConfig.php:118
1380
  #: application/modules/CjProducts/CjProductsConfig.php:96
1381
- #: application/modules/Ebay/EbayConfig.php:281
1382
  #: application/modules/Impactradius/ImpactradiusConfig.php:84
1383
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:136
1384
  #: application/modules/PayTM/PayTMConfig.php:69
@@ -1392,7 +1460,7 @@ msgstr ""
1392
  #: application/modules/Amazon/AmazonConfig.php:175
1393
  #: application/modules/CityadsProducts/CityadsProductsConfig.php:128
1394
  #: application/modules/CjProducts/CjProductsConfig.php:106
1395
- #: application/modules/Ebay/EbayConfig.php:271
1396
  #: application/modules/Impactradius/ImpactradiusConfig.php:94
1397
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:146
1398
  #: application/modules/PayTM/PayTMConfig.php:79
@@ -1419,6 +1487,7 @@ msgstr ""
1419
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:170
1420
  #: application/modules/Ozon/OzonConfig.php:185
1421
  #: application/modules/PayTM/PayTMConfig.php:110
 
1422
  #: application/modules/Shareasale/ShareasaleConfig.php:114
1423
  #: application/modules/TradedoublerProducts/TradedoublerProductsConfig.php:164
1424
  #: application/modules/VkNews/VkNewsConfig.php:49
@@ -1445,6 +1514,7 @@ msgstr ""
1445
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:171
1446
  #: application/modules/Ozon/OzonConfig.php:186
1447
  #: application/modules/PayTM/PayTMConfig.php:111
 
1448
  #: application/modules/Shareasale/ShareasaleConfig.php:115
1449
  #: application/modules/TradedoublerProducts/TradedoublerProductsConfig.php:165
1450
  #: application/modules/VkNews/VkNewsConfig.php:50
@@ -1491,7 +1561,7 @@ msgstr ""
1491
  #: application/modules/CityadsProducts/CityadsProductsConfig.php:178
1492
  #: application/modules/CjProducts/CjProductsConfig.php:156
1493
  #: application/modules/Clickbank/ClickbankConfig.php:100
1494
- #: application/modules/Ebay/EbayConfig.php:119
1495
  #: application/modules/Flickr/FlickrConfig.php:57
1496
  #: application/modules/GdeSlon/GdeSlonConfig.php:77
1497
  #: application/modules/GoogleBooks/GoogleBooksConfig.php:85
@@ -1584,6 +1654,7 @@ msgid "Limit the search of goods by this category."
1584
  msgstr ""
1585
 
1586
  #: application/modules/Aliexpress/AliexpressConfig.php:92
 
1587
  #: application/modules/TradedoublerProducts/TradedoublerProductsConfig.php:61
1588
  msgid "All categories"
1589
  msgstr ""
@@ -1860,12 +1931,12 @@ msgid "Text only"
1860
  msgstr ""
1861
 
1862
  #: application/modules/Amazon/AmazonConfig.php:272
1863
- #: application/modules/Ebay/EbayConfig.php:323
1864
  msgid "Size of description"
1865
  msgstr ""
1866
 
1867
  #: application/modules/Amazon/AmazonConfig.php:273
1868
- #: application/modules/Ebay/EbayConfig.php:324
1869
  msgid "The maximum size of the item description. 0 - do not cut."
1870
  msgstr ""
1871
 
@@ -1954,7 +2025,7 @@ msgid "Key access to Bing Search API. You can get <a href=\"https://www.microsof
1954
  msgstr ""
1955
 
1956
  #: application/modules/BingImages/BingImagesConfig.php:22
1957
- #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:23
1958
  msgid "You can set several Subscription Keys with commas."
1959
  msgstr ""
1960
 
@@ -1964,13 +2035,19 @@ msgstr ""
1964
 
1965
  #: application/modules/BingImages/BingImagesConfig.php:37
1966
  #: application/modules/Pixabay/PixabayConfig.php:36
1967
- #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:38
1968
  msgid "Number of results for a single query."
1969
  msgstr ""
1970
 
1971
  #: application/modules/BingImages/BingImagesConfig.php:46
1972
- #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:47
1973
- msgid "The field field \"%s\" can not be more than %d."
 
 
 
 
 
 
1974
  msgstr ""
1975
 
1976
  #: application/modules/BingImages/BingImagesConfig.php:52
@@ -1981,7 +2058,7 @@ msgstr ""
1981
  #: application/modules/GoogleNews/GoogleNewsConfig.php:36
1982
  #: application/modules/Market/MarketConfig.php:64
1983
  #: application/modules/Pixabay/PixabayConfig.php:51
1984
- #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:53
1985
  #: application/modules/RssFetcher/RssFetcherConfig.php:51
1986
  #: application/modules/Twitter/TwitterConfig.php:96
1987
  #: application/modules/VkNews/VkNewsConfig.php:31
@@ -1997,7 +2074,7 @@ msgstr ""
1997
  #: application/modules/GoogleNews/GoogleNewsConfig.php:37
1998
  #: application/modules/Market/MarketConfig.php:65
1999
  #: application/modules/Pixabay/PixabayConfig.php:52
2000
- #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:54
2001
  #: application/modules/RssFetcher/RssFetcherConfig.php:52
2002
  #: application/modules/Twitter/TwitterConfig.php:97
2003
  #: application/modules/VkNews/VkNewsConfig.php:32
@@ -2005,25 +2082,18 @@ msgstr ""
2005
  msgid "Number of results for autoblogging."
2006
  msgstr ""
2007
 
2008
- #: application/modules/BingImages/BingImagesConfig.php:62
2009
- #: application/modules/Impactradius/ImpactradiusConfig.php:58
2010
- #: application/modules/Impactradius/ImpactradiusConfig.php:73
2011
- #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:63
2012
- msgid "The field \"%s\" can not be more than %d."
2013
- msgstr ""
2014
-
2015
  #: application/modules/BingImages/BingImagesConfig.php:68
2016
- #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:69
2017
  msgid "Market code"
2018
  msgstr ""
2019
 
2020
  #: application/modules/BingImages/BingImagesConfig.php:69
2021
- #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:70
2022
  msgid "The market where the results come from. The market must be in the form [language code]-[country code]."
2023
  msgstr ""
2024
 
2025
  #: application/modules/BingImages/BingImagesConfig.php:71
2026
- #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:72
2027
  msgid "(unspecified)"
2028
  msgstr ""
2029
 
@@ -2322,13 +2392,13 @@ msgid "The field \"Remote_auth\" can not be empty."
2322
  msgstr ""
2323
 
2324
  #: application/modules/CityadsProducts/CityadsProductsConfig.php:45
2325
- #: application/modules/Ebay/EbayConfig.php:97
2326
  #: application/modules/GdeSlon/GdeSlonConfig.php:55
2327
  msgid "Field \"Results\" can not be more than 100."
2328
  msgstr ""
2329
 
2330
  #: application/modules/CityadsProducts/CityadsProductsConfig.php:61
2331
- #: application/modules/Ebay/EbayConfig.php:113
2332
  #: application/modules/GdeSlon/GdeSlonConfig.php:71
2333
  msgid "Field \"Results for autoupdating\" can not be more than 100."
2334
  msgstr ""
@@ -2554,151 +2624,161 @@ msgid "Set this if you want to direct traffic over <a href=\"http://www.keywordr
2554
  msgstr ""
2555
 
2556
  #: application/modules/Ebay/EbayConfig.php:79
2557
- msgid "Locale"
 
 
2558
  msgstr ""
2559
 
2560
  #: application/modules/Ebay/EbayConfig.php:80
 
 
 
 
 
 
 
 
2561
  msgid "Local site of Ebay. For each local site you must have separate registration in affiliate program."
2562
  msgstr ""
2563
 
2564
- #: application/modules/Ebay/EbayConfig.php:127
2565
  msgid "Ending time"
2566
  msgstr ""
2567
 
2568
- #: application/modules/Ebay/EbayConfig.php:128
2569
  msgid "Lifetime of lots in seconds. Only lots which will be closed not later than the specified time will be chosen."
2570
  msgstr ""
2571
 
2572
- #: application/modules/Ebay/EbayConfig.php:138
2573
  msgid "Id of category for searching. Id of categories you can find in URL of category on <a href=\"http://www.ebay.com/sch/allcategories/all-categories\">this page</a>. You can set maximum 3 categories separated with comma. Example, \"2195,2218,20094\"."
2574
  msgstr ""
2575
 
2576
- #: application/modules/Ebay/EbayConfig.php:147
2577
  msgid "Search in description"
2578
  msgstr ""
2579
 
2580
- #: application/modules/Ebay/EbayConfig.php:148
2581
  msgid "Include description of product in searching. This will take more time, than searching only by title."
2582
  msgstr ""
2583
 
2584
- #: application/modules/Ebay/EbayConfig.php:154
2585
  #: application/modules/Linkshare/LinkshareConfig.php:67
2586
  msgid "Searching logic"
2587
  msgstr ""
2588
 
2589
- #: application/modules/Ebay/EbayConfig.php:162
2590
  msgid "Product condition"
2591
  msgstr ""
2592
 
2593
- #: application/modules/Ebay/EbayConfig.php:170
2594
  msgid "Exclude category"
2595
  msgstr ""
2596
 
2597
- #: application/modules/Ebay/EbayConfig.php:171
2598
  msgid "Id of category, which must be excluded while searching. Id of categories you can find in URL of category on <a href=\"http://www.ebay.com/sch/allcategories/all-categories\">this page</a>. You can set maximum 25 categories separated with comma. Example, \"2195,2218,20094\"."
2599
  msgstr ""
2600
 
2601
- #: application/modules/Ebay/EbayConfig.php:180
2602
  msgid "Minimal seller rating"
2603
  msgstr ""
2604
 
2605
- #: application/modules/Ebay/EbayConfig.php:188
2606
  msgid "Best Offer"
2607
  msgstr ""
2608
 
2609
- #: application/modules/Ebay/EbayConfig.php:189
2610
  msgid "Only \"Best Offer\" lots."
2611
  msgstr ""
2612
 
2613
- #: application/modules/Ebay/EbayConfig.php:195
2614
  msgid "Featured"
2615
  msgstr ""
2616
 
2617
- #: application/modules/Ebay/EbayConfig.php:196
2618
  msgid "Only \"Featured\" lots."
2619
  msgstr ""
2620
 
2621
- #: application/modules/Ebay/EbayConfig.php:202
2622
  msgid "Free Shipping"
2623
  msgstr ""
2624
 
2625
- #: application/modules/Ebay/EbayConfig.php:203
2626
  msgid "Only lots with free delivery"
2627
  msgstr ""
2628
 
2629
- #: application/modules/Ebay/EbayConfig.php:209
2630
  msgid "Local Pickup"
2631
  msgstr ""
2632
 
2633
- #: application/modules/Ebay/EbayConfig.php:210
2634
  msgid "Only lots with \"local pickup\" option."
2635
  msgstr ""
2636
 
2637
- #: application/modules/Ebay/EbayConfig.php:216
2638
  msgid "Get It Fast"
2639
  msgstr ""
2640
 
2641
- #: application/modules/Ebay/EbayConfig.php:217
2642
  msgid "Only \"Get It Fast\" lots."
2643
  msgstr ""
2644
 
2645
- #: application/modules/Ebay/EbayConfig.php:223
2646
  msgid "Top-rated seller"
2647
  msgstr ""
2648
 
2649
- #: application/modules/Ebay/EbayConfig.php:224
2650
  msgid "Only products from Top-rated \"Top-rated\" vendors."
2651
  msgstr ""
2652
 
2653
- #: application/modules/Ebay/EbayConfig.php:230
2654
  msgid "Hide dublicates"
2655
  msgstr ""
2656
 
2657
- #: application/modules/Ebay/EbayConfig.php:231
2658
  msgid "Filter similar lots"
2659
  msgstr ""
2660
 
2661
- #: application/modules/Ebay/EbayConfig.php:237
2662
  msgid "Type of auction"
2663
  msgstr ""
2664
 
2665
- #: application/modules/Ebay/EbayConfig.php:251
2666
  msgid "Maximum bids"
2667
  msgstr ""
2668
 
2669
- #: application/modules/Ebay/EbayConfig.php:252
2670
  msgid "Example, 10"
2671
  msgstr ""
2672
 
2673
- #: application/modules/Ebay/EbayConfig.php:261
2674
  msgid "Minimum bids"
2675
  msgstr ""
2676
 
2677
- #: application/modules/Ebay/EbayConfig.php:262
2678
  msgid "Example, 3"
2679
  msgstr ""
2680
 
2681
- #: application/modules/Ebay/EbayConfig.php:272
2682
  msgid "Example, 300.50"
2683
  msgstr ""
2684
 
2685
- #: application/modules/Ebay/EbayConfig.php:282
2686
  msgid "Example, 10.98"
2687
  msgstr ""
2688
 
2689
- #: application/modules/Ebay/EbayConfig.php:291
2690
  msgid "Payment options"
2691
  msgstr ""
2692
 
2693
- #: application/modules/Ebay/EbayConfig.php:316
2694
  msgid "Get description"
2695
  msgstr ""
2696
 
2697
- #: application/modules/Ebay/EbayConfig.php:317
2698
  msgid "Get description of product. This takes more requests for Ebay API and slow down searching. Description will be requested only for 20 first products for one searching"
2699
  msgstr ""
2700
 
2701
- #: application/modules/Ebay/EbayModule.php:30
2702
  msgid "Adds Ebay products. Supports different local sites. Several ways of moneymaking."
2703
  msgstr ""
2704
 
@@ -2892,7 +2972,7 @@ msgid "Numeric or alphabet identificator for segment data about traffic. "
2892
  msgstr ""
2893
 
2894
  #: application/modules/GdeSlon/GdeSlonConfig.php:82
2895
- #: application/modules/Offer/views/metabox_module.php:63
2896
  msgid "Price"
2897
  msgstr ""
2898
 
@@ -3038,6 +3118,7 @@ msgstr ""
3038
 
3039
  #: application/modules/Impactradius/ImpactradiusConfig.php:29
3040
  #: application/modules/Impactradius/ImpactradiusConfig.php:43
 
3041
  msgid "The field \"%s\" can not be empty."
3042
  msgstr ""
3043
 
@@ -3062,6 +3143,7 @@ msgid "The product category. A list of valid categories can be found here <a hre
3062
  msgstr ""
3063
 
3064
  #: application/modules/Impactradius/ImpactradiusModule.php:27
 
3065
  msgid "Adds products from %s."
3066
  msgstr ""
3067
 
@@ -3189,24 +3271,35 @@ msgstr ""
3189
  msgid "Add offer"
3190
  msgstr ""
3191
 
3192
- #: application/modules/Offer/views/metabox_module.php:54
3193
- msgid "Offer URL"
 
3194
  msgstr ""
3195
 
3196
  #: application/modules/Offer/views/metabox_module.php:57
3197
- #: application/modules/Ozon/OzonConfig.php:30
3198
- msgid "Deeplink"
 
 
 
 
 
 
3199
  msgstr ""
3200
 
3201
- #: application/modules/Offer/views/metabox_module.php:60
 
 
 
 
3202
  msgid "Image URL"
3203
  msgstr ""
3204
 
3205
- #: application/modules/Offer/views/metabox_module.php:81
3206
  msgid "XPath Price Selector"
3207
  msgstr ""
3208
 
3209
- #: application/modules/Offer/views/metabox_module.php:91
3210
  msgid "Last update: "
3211
  msgstr ""
3212
 
@@ -3389,12 +3482,6 @@ msgstr ""
3389
  msgid "Date of publication"
3390
  msgstr ""
3391
 
3392
- #: application/modules/Ozon/OzonConfig.php:172
3393
- #: application/modules/Youtube/YoutubeConfig.php:62
3394
- #: application/modules/Youtube/views/search_panel.php:9
3395
- msgid "Rating"
3396
- msgstr ""
3397
-
3398
  #: application/modules/Ozon/OzonModule.php:26
3399
  msgid "Adds goods from OZON.ru."
3400
  msgstr ""
@@ -3415,6 +3502,26 @@ msgstr ""
3415
  msgid "Adds items from paytm.com"
3416
  msgstr ""
3417
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3418
  #: application/modules/Pixabay/PixabayConfig.php:21
3419
  msgid "Key access to Pixabay API. You can get <a href=\"https://pixabay.com/api/docs/\">here</a> (you need to have account)."
3420
  msgstr ""
@@ -3455,11 +3562,11 @@ msgstr ""
3455
  msgid "Search photo with free license CC0 Public Domain on pixabay.com"
3456
  msgstr ""
3457
 
3458
- #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:22
3459
  msgid "Key access to Bing Autosuggest API. You can get <a href=\"https://www.microsoft.com/cognitive-services/en-us/subscriptions\">here</a>."
3460
  msgstr ""
3461
 
3462
- #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:31
3463
  msgid "The \"%\" can not be empty."
3464
  msgstr ""
3465
 
@@ -3683,7 +3790,7 @@ msgid "http://www.keywordrush.com/contentegg"
3683
  msgstr ""
3684
 
3685
  #. Description of the plugin/theme
3686
- msgid "Easily adding auto updating products from affiliate systems and additional content to posts."
3687
  msgstr ""
3688
 
3689
  #. Author of the plugin/theme
1
+ # Copyright (C) 2017 Content Egg
2
  # This file is distributed under the same license as the Content Egg package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Content Egg 3.2.0\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/content-egg\n"
7
+ "POT-Creation-Date: 2017-01-24 19:09:19+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: 2017-MO-DA HO:MI+ZONE\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
67
  msgid "Add autoblogging - bulk mode"
68
  msgstr ""
69
 
70
+ #: application/admin/AutoblogController.php:201
71
  msgid "Autoblogging is not found"
72
  msgstr ""
73
 
86
 
87
  #: application/admin/AutoblogTable.php:56 application/admin/MyListTable.php:165
88
  #: application/admin/views/_metabox_results.php:14
89
+ #: application/modules/Offer/views/metabox_module.php:96
90
  msgid "Delete"
91
  msgstr ""
92
 
148
  msgid "Error."
149
  msgstr ""
150
 
151
+ #: application/admin/GeneralConfig.php:31 application/admin/PluginAdmin.php:92
152
  msgid "Settings"
153
  msgstr ""
154
 
209
  msgid "This option requires \"Price history\" option (must be enabled) to work."
210
  msgstr ""
211
 
212
+ #: application/admin/GeneralConfig.php:147
213
  msgid "Button color"
214
  msgstr ""
215
 
216
+ #: application/admin/GeneralConfig.php:148
217
  msgid "Button color for standard templates."
218
  msgstr ""
219
 
275
  msgid " back"
276
  msgstr ""
277
 
278
+ #: application/admin/PluginAdmin.php:78
279
  msgid "Are you sure?"
280
  msgstr ""
281
 
284
  msgid "Fill"
285
  msgstr ""
286
 
287
+ #: application/admin/PrefillController.php:98
288
  msgid "Data already exist."
289
  msgstr ""
290
 
291
+ #: application/admin/PrefillController.php:111
292
  msgid "Impossible to determine a keyword"
293
  msgstr ""
294
 
295
+ #: application/admin/PrefillController.php:120
296
  msgid "Keyword for autoupdate already exists."
297
  msgstr ""
298
 
299
+ #: application/admin/PrefillController.php:124
300
  msgid "Keyword for autoupdate was saved."
301
  msgstr ""
302
 
303
+ #: application/admin/PrefillController.php:133
304
  #: application/admin/views/metabox_module.php:85
305
  msgid "Error:"
306
  msgstr ""
307
 
308
+ #: application/admin/PrefillController.php:140
309
  #: application/admin/views/metabox_module.php:50
310
  msgid "No data found..."
311
  msgstr ""
312
 
313
+ #: application/admin/PrefillController.php:146
314
  msgid "Data saved:"
315
  msgstr ""
316
 
317
  #: application/admin/views/_metabox_autoblog.php:10
318
+ #: application/models/AutoblogModel.php:70
319
  #: application/modules/Ozon/OzonConfig.php:82
320
  msgid "Name"
321
  msgstr ""
370
 
371
  #: application/admin/views/_metabox_autoblog.php:51
372
  #: application/admin/views/_metabox_autoblog.php:140
373
+ #: application/models/AutoblogModel.php:76
374
  msgid "Keywords"
375
  msgstr ""
376
 
524
  msgstr ""
525
 
526
  #: application/admin/views/_metabox_autoblog.php:216
527
+ #: application/admin/views/_metabox_autoblog.php:408
528
  msgid "\"Formulas\", and also all tags from title template, will also work here."
529
  msgstr ""
530
 
569
  #: application/modules/CityadsProducts/CityadsProductsConfig.php:87
570
  #: application/modules/CjLinks/CjLinksConfig.php:123
571
  #: application/modules/Clickbank/ClickbankConfig.php:67
572
+ #: application/modules/Ebay/EbayConfig.php:147
573
  #: application/modules/Linkshare/LinkshareConfig.php:104
574
  #: application/modules/Ozon/OzonConfig.php:91
575
+ #: application/modules/Pepperjam/PepperjamConfig.php:96
576
  #: application/modules/Pixabay/PixabayConfig.php:108
577
  #: application/modules/TradedoublerProducts/TradedoublerProductsConfig.php:57
578
  msgid "Category "
616
  msgstr ""
617
 
618
  #: application/admin/views/_metabox_autoblog.php:373
619
+ msgid "Main product"
620
  msgstr ""
621
 
622
  #: application/admin/views/_metabox_autoblog.php:377
623
+ msgid "Minimum price"
624
+ msgstr ""
625
+
626
  #: application/admin/views/_metabox_autoblog.php:378
627
+ msgid "Maximum price"
628
+ msgstr ""
629
+
630
  #: application/admin/views/_metabox_autoblog.php:379
631
+ msgid "Random"
632
+ msgstr ""
633
+
634
+ #: application/admin/views/_metabox_autoblog.php:382
635
+ msgid "How to choose \"main\" product?"
636
+ msgstr ""
637
+
638
+ #: application/admin/views/_metabox_autoblog.php:383
639
+ msgid "Then you can use tags:"
640
+ msgstr ""
641
+
642
+ #: application/admin/views/_metabox_autoblog.php:390
643
+ msgid "Add custom fields"
644
+ msgstr ""
645
+
646
+ #: application/admin/views/_metabox_autoblog.php:394
647
+ #: application/admin/views/_metabox_autoblog.php:395
648
+ #: application/admin/views/_metabox_autoblog.php:396
649
+ #: application/admin/views/_metabox_autoblog.php:397
650
+ #: application/admin/views/_metabox_autoblog.php:398
651
  msgid "Custom Field"
652
  msgstr ""
653
 
654
+ #: application/admin/views/_metabox_autoblog.php:401
655
+ #: application/admin/views/_metabox_autoblog.php:402
656
+ #: application/admin/views/_metabox_autoblog.php:403
657
+ #: application/admin/views/_metabox_autoblog.php:404
658
+ #: application/admin/views/_metabox_autoblog.php:405
659
  msgid "Value"
660
  msgstr ""
661
 
662
  #: application/admin/views/_metabox_results.php:9
663
  #: application/components/ParserModuleConfig.php:57
664
+ #: application/modules/Offer/views/metabox_module.php:53
665
  #: application/modules/Youtube/YoutubeConfig.php:64
666
  #: application/modules/Youtube/views/search_panel.php:11
667
  msgid "Title"
668
  msgstr ""
669
 
670
  #: application/admin/views/_metabox_results.php:10
671
+ #: application/modules/Offer/views/metabox_module.php:92
672
  msgid "Description"
673
  msgstr ""
674
 
675
  #: application/admin/views/_metabox_results.php:13
676
+ #: application/admin/views/_promo_box.php:37
677
+ #: application/modules/Offer/views/metabox_module.php:95
678
  msgid "Go to "
679
  msgstr ""
680
 
696
  msgid "Maximum profit with minimum efforts"
697
  msgstr ""
698
 
699
+ #: application/admin/views/_promo_box.php:17
700
  msgid "Many additional modules and extended functions."
701
  msgstr ""
702
 
703
+ #: application/admin/views/_promo_box.php:24
704
+ msgid "Thanks for use this plugin!"
705
+ msgstr ""
706
+
707
+ #: application/admin/views/_promo_box.php:25
708
+ msgid "If you like it and want to thank, you can write a 5 star review on Wordpress."
709
+ msgstr ""
710
+
711
+ #: application/admin/views/_promo_box.php:27
712
+ msgid "Rate"
713
+ msgstr ""
714
+
715
+ #: application/admin/views/_promo_box.php:33
716
  msgid "Activate plugin"
717
  msgstr ""
718
 
719
+ #: application/admin/views/_promo_box.php:34
720
+ #: application/admin/views/envato_activation.php:4
721
+ msgid "In order to receive all benefits of Contennt Egg, you need to activate your copy of the plugin."
722
+ msgstr ""
723
+
724
+ #: application/admin/views/_promo_box.php:35
725
  #: application/admin/views/envato_activation.php:5
726
+ msgid "By activating Contennt Egg license you will unlock premium options - direct plugin updates, access to user panel and official support."
727
  msgstr ""
728
 
729
  #: application/admin/views/ae_integration.php:5
739
  msgstr ""
740
 
741
  #: application/admin/views/ae_integration.php:15
742
+ msgid "Here are the <a href=\"http://www.keywordrush.com/res/ae_supported_shops.txt\">full list</a> of Affiliate Egg supported shops."
743
+ msgstr ""
744
+
745
+ #: application/admin/views/ae_integration.php:19
746
  msgid "For first step make next actions:"
747
  msgstr ""
748
 
749
+ #: application/admin/views/ae_integration.php:21
750
  msgid "Set and activate <a href=\"www.keywordrush.com/en/affiliateegg\">Affiliate Egg</a>"
751
  msgstr ""
752
 
753
+ #: application/admin/views/ae_integration.php:22
754
  msgid "Version of Affiliate Egg must be great than"
755
  msgstr ""
756
 
897
  msgid "Not found..."
898
  msgstr ""
899
 
900
+ #: application/admin/views/prefill.php:14
901
  msgid "This extension will fill module's data for all existed posts."
902
  msgstr ""
903
 
904
+ #: application/admin/views/prefill.php:15
905
  msgid "All existing data and keywords will not be erased or overwritten."
906
  msgstr ""
907
 
908
+ #: application/admin/views/prefill.php:19
909
  msgid "Add data for module"
910
  msgstr ""
911
 
912
+ #: application/admin/views/prefill.php:29
913
  msgid "Keyword source"
914
  msgstr ""
915
 
916
+ #: application/admin/views/prefill.php:32
917
  msgid "Calculate as base of the density of keywords inside post"
918
  msgstr ""
919
 
920
+ #: application/admin/views/prefill.php:33
921
  msgid "Title for post"
922
  msgstr ""
923
 
924
+ #: application/admin/views/prefill.php:34
925
  msgid "Post tags"
926
  msgstr ""
927
 
928
+ #: application/admin/views/prefill.php:36
929
  msgid "Copy from"
930
  msgstr ""
931
 
932
+ #: application/admin/views/prefill.php:43
933
  msgid "Autoupdate"
934
  msgstr ""
935
 
936
+ #: application/admin/views/prefill.php:45
937
  msgid "Add Keyword for the automatic update"
938
  msgstr ""
939
 
940
+ #: application/admin/views/prefill.php:46
941
  msgid "Only for those modules, which have autoupdate function."
942
  msgstr ""
943
 
944
+ #: application/admin/views/prefill.php:51
945
  msgid "Number of words"
946
  msgstr ""
947
 
948
+ #: application/admin/views/prefill.php:58
949
  msgid "Maximum words for one search query."
950
  msgstr ""
951
 
952
+ #: application/admin/views/prefill.php:63
953
+ msgid "\"Minus\" words"
954
+ msgstr ""
955
+
956
+ #: application/admin/views/prefill.php:66
957
+ msgid "Remove these words from keyword. You can set several minus words/phrases with commas."
958
+ msgstr ""
959
+
960
+ #: application/admin/views/prefill.php:76
961
  msgid "Start"
962
  msgstr ""
963
 
964
+ #: application/admin/views/prefill.php:77
965
  msgid "Run again"
966
  msgstr ""
967
 
968
+ #: application/admin/views/prefill.php:78
969
  msgid "Stop"
970
  msgstr ""
971
 
1103
  msgid "Make links with local 301 redirect"
1104
  msgstr ""
1105
 
1106
+ #: application/components/TemplateManager.php:84
1107
  msgid "[user]"
1108
  msgstr ""
1109
 
1110
+ #: application/models/AutoblogModel.php:71
1111
  msgid "Date of creation"
1112
  msgstr ""
1113
 
1114
+ #: application/models/AutoblogModel.php:72
1115
  msgid "Last work"
1116
  msgstr ""
1117
 
1118
+ #: application/models/AutoblogModel.php:73
1119
  msgid "Status"
1120
  msgstr ""
1121
 
1122
+ #: application/models/AutoblogModel.php:74
1123
  msgid "Total posts"
1124
  msgstr ""
1125
 
1126
+ #: application/models/AutoblogModel.php:75
1127
  msgid "Last error"
1128
  msgstr ""
1129
 
1130
+ #: application/models/AutoblogModel.php:200
1131
  msgid "Required module %s will not run. The module is not configured or deleted."
1132
  msgstr ""
1133
 
1134
+ #: application/models/AutoblogModel.php:260
1135
  msgid "Data was not found for required module %s."
1136
  msgstr ""
1137
 
1138
+ #: application/models/AutoblogModel.php:267
1139
  msgid "It does not reach the desired amount of data. Minimum required modules: %d."
1140
  msgstr ""
1141
 
1142
+ #: application/models/AutoblogModel.php:319
1143
  msgid "Post can't be created. Unknown error."
1144
  msgstr ""
1145
 
1166
  #: application/modules/CjLinks/CjLinksConfig.php:50
1167
  #: application/modules/CjProducts/CjProductsConfig.php:50
1168
  #: application/modules/Clickbank/ClickbankConfig.php:35
1169
+ #: application/modules/Ebay/EbayConfig.php:97
1170
  #: application/modules/Flickr/FlickrConfig.php:35
1171
  #: application/modules/Flipkart/FlipkartConfig.php:50
1172
  #: application/modules/Freebase/FreebaseConfig.php:35
1180
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:94
1181
  #: application/modules/Ozon/OzonConfig.php:40
1182
  #: application/modules/PayTM/PayTMConfig.php:30
1183
+ #: application/modules/Pepperjam/PepperjamConfig.php:56
1184
  #: application/modules/Pixabay/PixabayConfig.php:35
1185
+ #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:36
1186
+ #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:46
1187
+ #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:62
1188
  #: application/modules/RssFetcher/RssFetcherConfig.php:35
1189
  #: application/modules/Shareasale/ShareasaleConfig.php:65
1190
  #: application/modules/TradedoublerCoupons/TradedoublerCouponsConfig.php:35
1208
  #: application/modules/CjLinks/CjLinksConfig.php:51
1209
  #: application/modules/CjProducts/CjProductsConfig.php:51
1210
  #: application/modules/Clickbank/ClickbankConfig.php:36
1211
+ #: application/modules/Ebay/EbayConfig.php:98
1212
  #: application/modules/Flipkart/FlipkartConfig.php:51
1213
  #: application/modules/GdeSlon/GdeSlonConfig.php:46
1214
  #: application/modules/Impactradius/ImpactradiusConfig.php:49
1216
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:95
1217
  #: application/modules/Ozon/OzonConfig.php:41
1218
  #: application/modules/PayTM/PayTMConfig.php:31
1219
+ #: application/modules/Pepperjam/PepperjamConfig.php:57
1220
  #: application/modules/Shareasale/ShareasaleConfig.php:66
1221
  #: application/modules/TradedoublerCoupons/TradedoublerCouponsConfig.php:36
1222
  #: application/modules/TradedoublerProducts/TradedoublerProductsConfig.php:36
1248
  #: application/modules/CjLinks/CjLinksConfig.php:61
1249
  #: application/modules/CjProducts/CjProductsConfig.php:61
1250
  #: application/modules/Clickbank/ClickbankConfig.php:51
1251
+ #: application/modules/Ebay/EbayConfig.php:113
1252
  #: application/modules/Flipkart/FlipkartConfig.php:66
1253
  #: application/modules/GdeSlon/GdeSlonConfig.php:61
1254
  #: application/modules/Impactradius/ImpactradiusConfig.php:63
1256
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:110
1257
  #: application/modules/Ozon/OzonConfig.php:51
1258
  #: application/modules/PayTM/PayTMConfig.php:41
1259
+ #: application/modules/Pepperjam/PepperjamConfig.php:71
1260
  #: application/modules/Shareasale/ShareasaleConfig.php:76
1261
  #: application/modules/TradedoublerCoupons/TradedoublerCouponsConfig.php:46
1262
  #: application/modules/TradedoublerProducts/TradedoublerProductsConfig.php:46
1276
  #: application/modules/CjLinks/CjLinksConfig.php:62
1277
  #: application/modules/CjProducts/CjProductsConfig.php:62
1278
  #: application/modules/Clickbank/ClickbankConfig.php:52
1279
+ #: application/modules/Ebay/EbayConfig.php:114
1280
  #: application/modules/Flipkart/FlipkartConfig.php:67
1281
  #: application/modules/GdeSlon/GdeSlonConfig.php:62
1282
  #: application/modules/Impactradius/ImpactradiusConfig.php:64
1284
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:111
1285
  #: application/modules/Ozon/OzonConfig.php:52
1286
  #: application/modules/PayTM/PayTMConfig.php:42
1287
+ #: application/modules/Pepperjam/PepperjamConfig.php:72
1288
  #: application/modules/Shareasale/ShareasaleConfig.php:77
1289
  #: application/modules/TradedoublerCoupons/TradedoublerCouponsConfig.php:47
1290
  #: application/modules/TradedoublerProducts/TradedoublerProductsConfig.php:47
1293
  msgstr ""
1294
 
1295
  #: application/modules/AE/AEConfig.php:62
1296
+ msgid "Reviews as post comments"
1297
+ msgstr ""
1298
+
1299
+ #: application/modules/AE/AEConfig.php:63
1300
+ msgid "Save user reviews as post comments."
1301
+ msgstr ""
1302
+
1303
+ #: application/modules/AE/AEConfig.php:69
1304
  #: application/modules/AdmitadProducts/AdmitadProductsConfig.php:115
1305
  #: application/modules/Affiliatewindow/AffiliatewindowConfig.php:128
1306
  #: application/modules/AffilinetProducts/AffilinetProductsConfig.php:165
1309
  #: application/modules/BingImages/BingImagesConfig.php:202
1310
  #: application/modules/CityadsProducts/CityadsProductsConfig.php:215
1311
  #: application/modules/CjProducts/CjProductsConfig.php:216
1312
+ #: application/modules/Ebay/EbayConfig.php:344
1313
  #: application/modules/Flickr/FlickrConfig.php:104
1314
  #: application/modules/Flipkart/FlipkartConfig.php:82
1315
  #: application/modules/Freebase/FreebaseConfig.php:67
1324
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:163
1325
  #: application/modules/Ozon/OzonConfig.php:178
1326
  #: application/modules/PayTM/PayTMConfig.php:103
1327
+ #: application/modules/Pepperjam/PepperjamConfig.php:140
1328
  #: application/modules/Pixabay/PixabayConfig.php:165
1329
  #: application/modules/Shareasale/ShareasaleConfig.php:107
1330
  #: application/modules/TradedoublerProducts/TradedoublerProductsConfig.php:157
1334
  msgid "Save images"
1335
  msgstr ""
1336
 
1337
+ #: application/modules/AE/AEConfig.php:70
1338
  #: application/modules/AdmitadProducts/AdmitadProductsConfig.php:116
1339
  #: application/modules/Affiliatewindow/AffiliatewindowConfig.php:129
1340
  #: application/modules/AffilinetProducts/AffilinetProductsConfig.php:166
1343
  #: application/modules/BingImages/BingImagesConfig.php:203
1344
  #: application/modules/CityadsProducts/CityadsProductsConfig.php:216
1345
  #: application/modules/CjProducts/CjProductsConfig.php:217
1346
+ #: application/modules/Ebay/EbayConfig.php:345
1347
  #: application/modules/Flickr/FlickrConfig.php:105
1348
  #: application/modules/Flipkart/FlipkartConfig.php:83
1349
  #: application/modules/Freebase/FreebaseConfig.php:68
1358
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:164
1359
  #: application/modules/Ozon/OzonConfig.php:179
1360
  #: application/modules/PayTM/PayTMConfig.php:104
1361
+ #: application/modules/Pepperjam/PepperjamConfig.php:141
1362
  #: application/modules/Shareasale/ShareasaleConfig.php:108
1363
  #: application/modules/TradedoublerProducts/TradedoublerProductsConfig.php:158
1364
  #: application/modules/Twitter/TwitterConfig.php:126
1367
  msgid "Save images on server"
1368
  msgstr ""
1369
 
1370
+ #: application/modules/AE/AEModule.php:39
1371
  msgid "Affiliate Egg parser for %s"
1372
  msgstr ""
1373
 
1446
  #: application/modules/Amazon/AmazonConfig.php:165
1447
  #: application/modules/CityadsProducts/CityadsProductsConfig.php:118
1448
  #: application/modules/CjProducts/CjProductsConfig.php:96
1449
+ #: application/modules/Ebay/EbayConfig.php:291
1450
  #: application/modules/Impactradius/ImpactradiusConfig.php:84
1451
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:136
1452
  #: application/modules/PayTM/PayTMConfig.php:69
1460
  #: application/modules/Amazon/AmazonConfig.php:175
1461
  #: application/modules/CityadsProducts/CityadsProductsConfig.php:128
1462
  #: application/modules/CjProducts/CjProductsConfig.php:106
1463
+ #: application/modules/Ebay/EbayConfig.php:281
1464
  #: application/modules/Impactradius/ImpactradiusConfig.php:94
1465
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:146
1466
  #: application/modules/PayTM/PayTMConfig.php:79
1487
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:170
1488
  #: application/modules/Ozon/OzonConfig.php:185
1489
  #: application/modules/PayTM/PayTMConfig.php:110
1490
+ #: application/modules/Pepperjam/PepperjamConfig.php:147
1491
  #: application/modules/Shareasale/ShareasaleConfig.php:114
1492
  #: application/modules/TradedoublerProducts/TradedoublerProductsConfig.php:164
1493
  #: application/modules/VkNews/VkNewsConfig.php:49
1514
  #: application/modules/Optimisemedia/OptimisemediaConfig.php:171
1515
  #: application/modules/Ozon/OzonConfig.php:186
1516
  #: application/modules/PayTM/PayTMConfig.php:111
1517
+ #: application/modules/Pepperjam/PepperjamConfig.php:148
1518
  #: application/modules/Shareasale/ShareasaleConfig.php:115
1519
  #: application/modules/TradedoublerProducts/TradedoublerProductsConfig.php:165
1520
  #: application/modules/VkNews/VkNewsConfig.php:50
1561
  #: application/modules/CityadsProducts/CityadsProductsConfig.php:178
1562
  #: application/modules/CjProducts/CjProductsConfig.php:156
1563
  #: application/modules/Clickbank/ClickbankConfig.php:100
1564
+ #: application/modules/Ebay/EbayConfig.php:129
1565
  #: application/modules/Flickr/FlickrConfig.php:57
1566
  #: application/modules/GdeSlon/GdeSlonConfig.php:77
1567
  #: application/modules/GoogleBooks/GoogleBooksConfig.php:85
1654
  msgstr ""
1655
 
1656
  #: application/modules/Aliexpress/AliexpressConfig.php:92
1657
+ #: application/modules/Pepperjam/PepperjamConfig.php:100
1658
  #: application/modules/TradedoublerProducts/TradedoublerProductsConfig.php:61
1659
  msgid "All categories"
1660
  msgstr ""
1931
  msgstr ""
1932
 
1933
  #: application/modules/Amazon/AmazonConfig.php:272
1934
+ #: application/modules/Ebay/EbayConfig.php:333
1935
  msgid "Size of description"
1936
  msgstr ""
1937
 
1938
  #: application/modules/Amazon/AmazonConfig.php:273
1939
+ #: application/modules/Ebay/EbayConfig.php:334
1940
  msgid "The maximum size of the item description. 0 - do not cut."
1941
  msgstr ""
1942
 
2025
  msgstr ""
2026
 
2027
  #: application/modules/BingImages/BingImagesConfig.php:22
2028
+ #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:22
2029
  msgid "You can set several Subscription Keys with commas."
2030
  msgstr ""
2031
 
2035
 
2036
  #: application/modules/BingImages/BingImagesConfig.php:37
2037
  #: application/modules/Pixabay/PixabayConfig.php:36
2038
+ #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:37
2039
  msgid "Number of results for a single query."
2040
  msgstr ""
2041
 
2042
  #: application/modules/BingImages/BingImagesConfig.php:46
2043
+ #: application/modules/BingImages/BingImagesConfig.php:62
2044
+ #: application/modules/Impactradius/ImpactradiusConfig.php:58
2045
+ #: application/modules/Impactradius/ImpactradiusConfig.php:73
2046
+ #: application/modules/Pepperjam/PepperjamConfig.php:66
2047
+ #: application/modules/Pepperjam/PepperjamConfig.php:81
2048
+ #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:46
2049
+ #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:62
2050
+ msgid "The field \"%s\" can not be more than %d."
2051
  msgstr ""
2052
 
2053
  #: application/modules/BingImages/BingImagesConfig.php:52
2058
  #: application/modules/GoogleNews/GoogleNewsConfig.php:36
2059
  #: application/modules/Market/MarketConfig.php:64
2060
  #: application/modules/Pixabay/PixabayConfig.php:51
2061
+ #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:52
2062
  #: application/modules/RssFetcher/RssFetcherConfig.php:51
2063
  #: application/modules/Twitter/TwitterConfig.php:96
2064
  #: application/modules/VkNews/VkNewsConfig.php:31
2074
  #: application/modules/GoogleNews/GoogleNewsConfig.php:37
2075
  #: application/modules/Market/MarketConfig.php:65
2076
  #: application/modules/Pixabay/PixabayConfig.php:52
2077
+ #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:53
2078
  #: application/modules/RssFetcher/RssFetcherConfig.php:52
2079
  #: application/modules/Twitter/TwitterConfig.php:97
2080
  #: application/modules/VkNews/VkNewsConfig.php:32
2082
  msgid "Number of results for autoblogging."
2083
  msgstr ""
2084
 
 
 
 
 
 
 
 
2085
  #: application/modules/BingImages/BingImagesConfig.php:68
2086
+ #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:68
2087
  msgid "Market code"
2088
  msgstr ""
2089
 
2090
  #: application/modules/BingImages/BingImagesConfig.php:69
2091
+ #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:69
2092
  msgid "The market where the results come from. The market must be in the form [language code]-[country code]."
2093
  msgstr ""
2094
 
2095
  #: application/modules/BingImages/BingImagesConfig.php:71
2096
+ #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:71
2097
  msgid "(unspecified)"
2098
  msgstr ""
2099
 
2392
  msgstr ""
2393
 
2394
  #: application/modules/CityadsProducts/CityadsProductsConfig.php:45
2395
+ #: application/modules/Ebay/EbayConfig.php:107
2396
  #: application/modules/GdeSlon/GdeSlonConfig.php:55
2397
  msgid "Field \"Results\" can not be more than 100."
2398
  msgstr ""
2399
 
2400
  #: application/modules/CityadsProducts/CityadsProductsConfig.php:61
2401
+ #: application/modules/Ebay/EbayConfig.php:123
2402
  #: application/modules/GdeSlon/GdeSlonConfig.php:71
2403
  msgid "Field \"Results for autoupdating\" can not be more than 100."
2404
  msgstr ""
2624
  msgstr ""
2625
 
2626
  #: application/modules/Ebay/EbayConfig.php:79
2627
+ #: application/modules/Offer/views/metabox_module.php:71
2628
+ #: application/modules/Ozon/OzonConfig.php:30
2629
+ msgid "Deeplink"
2630
  msgstr ""
2631
 
2632
  #: application/modules/Ebay/EbayConfig.php:80
2633
+ msgid "Set Deeplink for one of CPA-networks. You can use parameter as <em>partner_id=12345</em>, or make link as template, for example, <em>{{url}}/partner_id-12345/</em>. Another example is https://ad.admitad.com/g/g8f0qmlavfa/?ulp={{url_encoded}}. {{url}} and {{url_encoded}} - will be replaced by product url. If product url is after affiliate url - use {{url_encoded}}"
2634
+ msgstr ""
2635
+
2636
+ #: application/modules/Ebay/EbayConfig.php:89
2637
+ msgid "Locale"
2638
+ msgstr ""
2639
+
2640
+ #: application/modules/Ebay/EbayConfig.php:90
2641
  msgid "Local site of Ebay. For each local site you must have separate registration in affiliate program."
2642
  msgstr ""
2643
 
2644
+ #: application/modules/Ebay/EbayConfig.php:137
2645
  msgid "Ending time"
2646
  msgstr ""
2647
 
2648
+ #: application/modules/Ebay/EbayConfig.php:138
2649
  msgid "Lifetime of lots in seconds. Only lots which will be closed not later than the specified time will be chosen."
2650
  msgstr ""
2651
 
2652
+ #: application/modules/Ebay/EbayConfig.php:148
2653
  msgid "Id of category for searching. Id of categories you can find in URL of category on <a href=\"http://www.ebay.com/sch/allcategories/all-categories\">this page</a>. You can set maximum 3 categories separated with comma. Example, \"2195,2218,20094\"."
2654
  msgstr ""
2655
 
2656
+ #: application/modules/Ebay/EbayConfig.php:157
2657
  msgid "Search in description"
2658
  msgstr ""
2659
 
2660
+ #: application/modules/Ebay/EbayConfig.php:158
2661
  msgid "Include description of product in searching. This will take more time, than searching only by title."
2662
  msgstr ""
2663
 
2664
+ #: application/modules/Ebay/EbayConfig.php:164
2665
  #: application/modules/Linkshare/LinkshareConfig.php:67
2666
  msgid "Searching logic"
2667
  msgstr ""
2668
 
2669
+ #: application/modules/Ebay/EbayConfig.php:172
2670
  msgid "Product condition"
2671
  msgstr ""
2672
 
2673
+ #: application/modules/Ebay/EbayConfig.php:180
2674
  msgid "Exclude category"
2675
  msgstr ""
2676
 
2677
+ #: application/modules/Ebay/EbayConfig.php:181
2678
  msgid "Id of category, which must be excluded while searching. Id of categories you can find in URL of category on <a href=\"http://www.ebay.com/sch/allcategories/all-categories\">this page</a>. You can set maximum 25 categories separated with comma. Example, \"2195,2218,20094\"."
2679
  msgstr ""
2680
 
2681
+ #: application/modules/Ebay/EbayConfig.php:190
2682
  msgid "Minimal seller rating"
2683
  msgstr ""
2684
 
2685
+ #: application/modules/Ebay/EbayConfig.php:198
2686
  msgid "Best Offer"
2687
  msgstr ""
2688
 
2689
+ #: application/modules/Ebay/EbayConfig.php:199
2690
  msgid "Only \"Best Offer\" lots."
2691
  msgstr ""
2692
 
2693
+ #: application/modules/Ebay/EbayConfig.php:205
2694
  msgid "Featured"
2695
  msgstr ""
2696
 
2697
+ #: application/modules/Ebay/EbayConfig.php:206
2698
  msgid "Only \"Featured\" lots."
2699
  msgstr ""
2700
 
2701
+ #: application/modules/Ebay/EbayConfig.php:212
2702
  msgid "Free Shipping"
2703
  msgstr ""
2704
 
2705
+ #: application/modules/Ebay/EbayConfig.php:213
2706
  msgid "Only lots with free delivery"
2707
  msgstr ""
2708
 
2709
+ #: application/modules/Ebay/EbayConfig.php:219
2710
  msgid "Local Pickup"
2711
  msgstr ""
2712
 
2713
+ #: application/modules/Ebay/EbayConfig.php:220
2714
  msgid "Only lots with \"local pickup\" option."
2715
  msgstr ""
2716
 
2717
+ #: application/modules/Ebay/EbayConfig.php:226
2718
  msgid "Get It Fast"
2719
  msgstr ""
2720
 
2721
+ #: application/modules/Ebay/EbayConfig.php:227
2722
  msgid "Only \"Get It Fast\" lots."
2723
  msgstr ""
2724
 
2725
+ #: application/modules/Ebay/EbayConfig.php:233
2726
  msgid "Top-rated seller"
2727
  msgstr ""
2728
 
2729
+ #: application/modules/Ebay/EbayConfig.php:234
2730
  msgid "Only products from Top-rated \"Top-rated\" vendors."
2731
  msgstr ""
2732
 
2733
+ #: application/modules/Ebay/EbayConfig.php:240
2734
  msgid "Hide dublicates"
2735
  msgstr ""
2736
 
2737
+ #: application/modules/Ebay/EbayConfig.php:241
2738
  msgid "Filter similar lots"
2739
  msgstr ""
2740
 
2741
+ #: application/modules/Ebay/EbayConfig.php:247
2742
  msgid "Type of auction"
2743
  msgstr ""
2744
 
2745
+ #: application/modules/Ebay/EbayConfig.php:261
2746
  msgid "Maximum bids"
2747
  msgstr ""
2748
 
2749
+ #: application/modules/Ebay/EbayConfig.php:262
2750
  msgid "Example, 10"
2751
  msgstr ""
2752
 
2753
+ #: application/modules/Ebay/EbayConfig.php:271
2754
  msgid "Minimum bids"
2755
  msgstr ""
2756
 
2757
+ #: application/modules/Ebay/EbayConfig.php:272
2758
  msgid "Example, 3"
2759
  msgstr ""
2760
 
2761
+ #: application/modules/Ebay/EbayConfig.php:282
2762
  msgid "Example, 300.50"
2763
  msgstr ""
2764
 
2765
+ #: application/modules/Ebay/EbayConfig.php:292
2766
  msgid "Example, 10.98"
2767
  msgstr ""
2768
 
2769
+ #: application/modules/Ebay/EbayConfig.php:301
2770
  msgid "Payment options"
2771
  msgstr ""
2772
 
2773
+ #: application/modules/Ebay/EbayConfig.php:326
2774
  msgid "Get description"
2775
  msgstr ""
2776
 
2777
+ #: application/modules/Ebay/EbayConfig.php:327
2778
  msgid "Get description of product. This takes more requests for Ebay API and slow down searching. Description will be requested only for 20 first products for one searching"
2779
  msgstr ""
2780
 
2781
+ #: application/modules/Ebay/EbayModule.php:31
2782
  msgid "Adds Ebay products. Supports different local sites. Several ways of moneymaking."
2783
  msgstr ""
2784
 
2972
  msgstr ""
2973
 
2974
  #: application/modules/GdeSlon/GdeSlonConfig.php:82
2975
+ #: application/modules/Offer/views/metabox_module.php:77
2976
  msgid "Price"
2977
  msgstr ""
2978
 
3118
 
3119
  #: application/modules/Impactradius/ImpactradiusConfig.php:29
3120
  #: application/modules/Impactradius/ImpactradiusConfig.php:43
3121
+ #: application/modules/Pepperjam/PepperjamConfig.php:30
3122
  msgid "The field \"%s\" can not be empty."
3123
  msgstr ""
3124
 
3143
  msgstr ""
3144
 
3145
  #: application/modules/Impactradius/ImpactradiusModule.php:27
3146
+ #: application/modules/Pepperjam/PepperjamModule.php:27
3147
  msgid "Adds products from %s."
3148
  msgstr ""
3149
 
3271
  msgid "Add offer"
3272
  msgstr ""
3273
 
3274
+ #: application/modules/Offer/views/metabox_module.php:53
3275
+ #: application/modules/Offer/views/metabox_module.php:68
3276
+ msgid "required"
3277
  msgstr ""
3278
 
3279
  #: application/modules/Offer/views/metabox_module.php:57
3280
+ #: application/modules/Offer/views/metabox_module.php:58
3281
+ #: application/modules/Offer/views/metabox_module.php:59
3282
+ #: application/modules/Offer/views/metabox_module.php:60
3283
+ #: application/modules/Offer/views/metabox_module.php:61
3284
+ #: application/modules/Ozon/OzonConfig.php:172
3285
+ #: application/modules/Youtube/YoutubeConfig.php:62
3286
+ #: application/modules/Youtube/views/search_panel.php:9
3287
+ msgid "Rating"
3288
  msgstr ""
3289
 
3290
+ #: application/modules/Offer/views/metabox_module.php:68
3291
+ msgid "Offer URL"
3292
+ msgstr ""
3293
+
3294
+ #: application/modules/Offer/views/metabox_module.php:74
3295
  msgid "Image URL"
3296
  msgstr ""
3297
 
3298
+ #: application/modules/Offer/views/metabox_module.php:87
3299
  msgid "XPath Price Selector"
3300
  msgstr ""
3301
 
3302
+ #: application/modules/Offer/views/metabox_module.php:97
3303
  msgid "Last update: "
3304
  msgstr ""
3305
 
3482
  msgid "Date of publication"
3483
  msgstr ""
3484
 
 
 
 
 
 
 
3485
  #: application/modules/Ozon/OzonModule.php:26
3486
  msgid "Adds goods from OZON.ru."
3487
  msgstr ""
3502
  msgid "Adds items from paytm.com"
3503
  msgstr ""
3504
 
3505
+ #: application/modules/Pepperjam/PepperjamConfig.php:22
3506
+ msgid "You can generate publisher API Key <a href=\"http://www.pepperjamnetwork.com/affiliate/api/\">here</a>."
3507
+ msgstr ""
3508
+
3509
+ #: application/modules/Pepperjam/PepperjamConfig.php:37
3510
+ msgid "A single website id used for website tracking. Adding this will add this parameter to your tracking link."
3511
+ msgstr ""
3512
+
3513
+ #: application/modules/Pepperjam/PepperjamConfig.php:47
3514
+ msgid "A single SID parameter used for publisher tracking. Adding this will add this parameter to your tracking link."
3515
+ msgstr ""
3516
+
3517
+ #: application/modules/Pepperjam/PepperjamConfig.php:86
3518
+ msgid "Program ID"
3519
+ msgstr ""
3520
+
3521
+ #: application/modules/Pepperjam/PepperjamConfig.php:87
3522
+ msgid "A comma-separated list of program ids to filter by."
3523
+ msgstr ""
3524
+
3525
  #: application/modules/Pixabay/PixabayConfig.php:21
3526
  msgid "Key access to Pixabay API. You can get <a href=\"https://pixabay.com/api/docs/\">here</a> (you need to have account)."
3527
  msgstr ""
3562
  msgid "Search photo with free license CC0 Public Domain on pixabay.com"
3563
  msgstr ""
3564
 
3565
+ #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:21
3566
  msgid "Key access to Bing Autosuggest API. You can get <a href=\"https://www.microsoft.com/cognitive-services/en-us/subscriptions\">here</a>."
3567
  msgstr ""
3568
 
3569
+ #: application/modules/RelatedKeywords/RelatedKeywordsConfig.php:30
3570
  msgid "The \"%\" can not be empty."
3571
  msgstr ""
3572
 
3790
  msgstr ""
3791
 
3792
  #. Description of the plugin/theme
3793
+ msgid "Easily adding auto updating products from affiliate systems and additional content to posts. [ATTENTION: before update PRO version of plugin, activate plugin!]"
3794
  msgstr ""
3795
 
3796
  #. Author of the plugin/theme
languages/tpl/content-egg-tpl-RU.mo CHANGED
Binary file
languages/tpl/content-egg-tpl-RU.po CHANGED
@@ -4,8 +4,8 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Content Egg 1.1.1\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/content-egg-tpl\n"
7
- "POT-Creation-Date: 2016-12-13 17:36+0200\n"
8
- "PO-Revision-Date: 2016-12-13 17:37+0200\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: ru\n"
@@ -159,31 +159,35 @@ msgstr "EAN:"
159
  msgid "Last update:"
160
  msgstr "Обновлено:"
161
 
162
- #: application/helpers/TemplateHelper.php:22
163
- #: application/helpers/TemplateHelper.php:43
164
- msgid "number_format_decimal_point"
165
- msgstr ","
166
 
167
  #: application/helpers/TemplateHelper.php:23
168
  #: application/helpers/TemplateHelper.php:44
 
 
 
 
 
169
  msgid "number_format_thousands_sep"
170
  msgstr " "
171
 
172
- #: application/helpers/TemplateHelper.php:115
173
  msgid "d"
174
  msgstr "д"
175
 
176
- #: application/helpers/TemplateHelper.php:117
177
  msgid "h"
178
  msgstr "ч"
179
 
180
- #: application/helpers/TemplateHelper.php:119
181
- #: application/helpers/TemplateHelper.php:121
182
  #: application/modules/Ebay/templates/data_item.php:71
183
  msgid "m"
184
  msgstr "м"
185
 
186
- #: application/helpers/TemplateHelper.php:302
187
  #: application/modules/Amazon/templates/data_compare.php:81
188
  #: application/modules/Ozon/templates/data_compare.php:67
189
  #: application/templates/data_price_tracker_alert.php:37
@@ -206,6 +210,7 @@ msgstr "Цена"
206
  #: application/modules/Offer/templates/data_grid.php:7
207
  #: application/modules/Optimisemedia/templates/data_grid.php:7
208
  #: application/modules/PayTM/templates/data_grid.php:7
 
209
  #: application/modules/Shareasale/templates/data_grid.php:7
210
  #: application/modules/TradedoublerProducts/templates/data_grid.php:7
211
  #: application/modules/Zanox/templates/data_grid.php:7
@@ -230,6 +235,7 @@ msgstr "Сетка"
230
  #: application/modules/Optimisemedia/templates/data_item.php:7
231
  #: application/modules/Ozon/templates/data_item.php:7
232
  #: application/modules/PayTM/templates/data_item.php:7
 
233
  #: application/modules/Shareasale/templates/data_item.php:7
234
  #: application/modules/TradedoublerProducts/templates/data_item.php:7
235
  #: application/modules/Zanox/templates/data_item.php:7
@@ -254,6 +260,7 @@ msgstr "Карточка товара"
254
  #: application/modules/Ozon/templates/data_grid.php:7
255
  #: application/modules/Ozon/templates/data_list.php:6
256
  #: application/modules/PayTM/templates/data_list.php:6
 
257
  #: application/modules/Shareasale/templates/data_list.php:6
258
  #: application/modules/TradedoublerProducts/templates/data_list.php:6
259
  #: application/modules/Zanox/templates/data_list.php:6
@@ -267,6 +274,7 @@ msgstr "Список"
267
  #: application/modules/Aliexpress/templates/data_price_tracker_alert.php:7
268
  #: application/modules/Amazon/templates/data_price_tracker_alert.php:7
269
  #: application/modules/CjProducts/templates/data_price_tracker_alert.php:7
 
270
  #: application/modules/GdeSlon/templates/data_price_tracker_alert.php:7
271
  #: application/modules/Impactradius/templates/data_price_tracker_alert.php:7
272
  #: application/modules/Linkshare/templates/data_price_tracker_alert.php:7
@@ -274,6 +282,7 @@ msgstr "Список"
274
  #: application/modules/Optimisemedia/templates/data_price_tracker_alert.php:7
275
  #: application/modules/Ozon/templates/data_price_tracker_alert.php:7
276
  #: application/modules/PayTM/templates/data_price_tracker_alert.php:7
 
277
  #: application/modules/Shareasale/templates/data_price_tracker_alert.php:7
278
  #: application/modules/TradedoublerProducts/templates/data_price_tracker_alert.php:7
279
  #: application/modules/Zanox/templates/data_price_tracker_alert.php:7
@@ -310,16 +319,16 @@ msgstr "Все отзывы"
310
 
311
  #: application/modules/Amazon/templates/data_compare.php:93
312
  #: application/templates/data_item.php:49
313
- #: application/templates/data_list.php:59 templates/block_offers_list.php:72
314
- #: templates/block_offers_logo.php:51
315
  msgid "Too low to display"
316
  msgstr "Уточните на сайте"
317
 
318
  #: application/modules/Amazon/templates/data_compare.php:96
319
  #: application/modules/Ebay/templates/data_item.php:81
320
  #: application/templates/blocks/item_after_price_row.php:20
321
- #: application/templates/data_list.php:66 templates/block_offers_list.php:80
322
- #: templates/block_offers_logo.php:60
323
  msgid "Free shipping"
324
  msgstr "Бесплатная доставка"
325
 
@@ -521,7 +530,7 @@ msgstr "Комментарий:"
521
  msgid "All reviews on Yandex.Market"
522
  msgstr "Все отзывы на Яндекс.Маркет"
523
 
524
- #: application/modules/Offer/views/metabox_module.php:91
525
  msgid "Last update: "
526
  msgstr "Обновлено:"
527
 
@@ -614,8 +623,8 @@ msgstr "скидка"
614
 
615
  #: application/templates/data_grid.php:71
616
  #: application/templates/data_item.php:56
617
- #: application/templates/data_list.php:63 templates/block_offers_list.php:77
618
- #: templates/block_offers_logo.php:57
619
  msgid "Buy This Item"
620
  msgstr "Купить сейчас"
621
 
@@ -632,6 +641,30 @@ msgstr "Все предложения"
632
  msgid "All offers list with logos"
633
  msgstr "Все предложения с логотипами"
634
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
635
  #. Plugin Name of the plugin/theme
636
  msgid "Content Egg"
637
  msgstr ""
@@ -643,7 +676,8 @@ msgstr "http://www.keywordrush.com/contentegg"
643
  #. Description of the plugin/theme
644
  msgid ""
645
  "Easily adding auto updating products from affiliate systems and additional "
646
- "content to posts."
 
647
  msgstr ""
648
 
649
  #. Author of the plugin/theme
4
  msgstr ""
5
  "Project-Id-Version: Content Egg 1.1.1\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/content-egg-tpl\n"
7
+ "POT-Creation-Date: 2017-01-24 21:12+0200\n"
8
+ "PO-Revision-Date: 2017-01-24 21:16+0200\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: ru\n"
159
  msgid "Last update:"
160
  msgstr "Обновлено:"
161
 
162
+ #: application/components/ContentManager.php:438
163
+ msgid "Rating"
164
+ msgstr "Рейтинг"
 
165
 
166
  #: application/helpers/TemplateHelper.php:23
167
  #: application/helpers/TemplateHelper.php:44
168
+ msgid "number_format_decimal_point"
169
+ msgstr ","
170
+
171
+ #: application/helpers/TemplateHelper.php:24
172
+ #: application/helpers/TemplateHelper.php:45
173
  msgid "number_format_thousands_sep"
174
  msgstr " "
175
 
176
+ #: application/helpers/TemplateHelper.php:116
177
  msgid "d"
178
  msgstr "д"
179
 
180
+ #: application/helpers/TemplateHelper.php:118
181
  msgid "h"
182
  msgstr "ч"
183
 
184
+ #: application/helpers/TemplateHelper.php:120
185
+ #: application/helpers/TemplateHelper.php:122
186
  #: application/modules/Ebay/templates/data_item.php:71
187
  msgid "m"
188
  msgstr "м"
189
 
190
+ #: application/helpers/TemplateHelper.php:303
191
  #: application/modules/Amazon/templates/data_compare.php:81
192
  #: application/modules/Ozon/templates/data_compare.php:67
193
  #: application/templates/data_price_tracker_alert.php:37
210
  #: application/modules/Offer/templates/data_grid.php:7
211
  #: application/modules/Optimisemedia/templates/data_grid.php:7
212
  #: application/modules/PayTM/templates/data_grid.php:7
213
+ #: application/modules/Pepperjam/templates/data_grid.php:7
214
  #: application/modules/Shareasale/templates/data_grid.php:7
215
  #: application/modules/TradedoublerProducts/templates/data_grid.php:7
216
  #: application/modules/Zanox/templates/data_grid.php:7
235
  #: application/modules/Optimisemedia/templates/data_item.php:7
236
  #: application/modules/Ozon/templates/data_item.php:7
237
  #: application/modules/PayTM/templates/data_item.php:7
238
+ #: application/modules/Pepperjam/templates/data_item.php:7
239
  #: application/modules/Shareasale/templates/data_item.php:7
240
  #: application/modules/TradedoublerProducts/templates/data_item.php:7
241
  #: application/modules/Zanox/templates/data_item.php:7
260
  #: application/modules/Ozon/templates/data_grid.php:7
261
  #: application/modules/Ozon/templates/data_list.php:6
262
  #: application/modules/PayTM/templates/data_list.php:6
263
+ #: application/modules/Pepperjam/templates/data_list.php:6
264
  #: application/modules/Shareasale/templates/data_list.php:6
265
  #: application/modules/TradedoublerProducts/templates/data_list.php:6
266
  #: application/modules/Zanox/templates/data_list.php:6
274
  #: application/modules/Aliexpress/templates/data_price_tracker_alert.php:7
275
  #: application/modules/Amazon/templates/data_price_tracker_alert.php:7
276
  #: application/modules/CjProducts/templates/data_price_tracker_alert.php:7
277
+ #: application/modules/Flipkart/templates/data_price_tracker_alert.php:7
278
  #: application/modules/GdeSlon/templates/data_price_tracker_alert.php:7
279
  #: application/modules/Impactradius/templates/data_price_tracker_alert.php:7
280
  #: application/modules/Linkshare/templates/data_price_tracker_alert.php:7
282
  #: application/modules/Optimisemedia/templates/data_price_tracker_alert.php:7
283
  #: application/modules/Ozon/templates/data_price_tracker_alert.php:7
284
  #: application/modules/PayTM/templates/data_price_tracker_alert.php:7
285
+ #: application/modules/Pepperjam/templates/data_price_tracker_alert.php:7
286
  #: application/modules/Shareasale/templates/data_price_tracker_alert.php:7
287
  #: application/modules/TradedoublerProducts/templates/data_price_tracker_alert.php:7
288
  #: application/modules/Zanox/templates/data_price_tracker_alert.php:7
319
 
320
  #: application/modules/Amazon/templates/data_compare.php:93
321
  #: application/templates/data_item.php:49
322
+ #: application/templates/data_list.php:59 templates/block_offers_list.php:69
323
+ #: templates/block_offers_logo.php:47
324
  msgid "Too low to display"
325
  msgstr "Уточните на сайте"
326
 
327
  #: application/modules/Amazon/templates/data_compare.php:96
328
  #: application/modules/Ebay/templates/data_item.php:81
329
  #: application/templates/blocks/item_after_price_row.php:20
330
+ #: application/templates/data_list.php:66 templates/block_offers_list.php:77
331
+ #: templates/block_offers_logo.php:56
332
  msgid "Free shipping"
333
  msgstr "Бесплатная доставка"
334
 
530
  msgid "All reviews on Yandex.Market"
531
  msgstr "Все отзывы на Яндекс.Маркет"
532
 
533
+ #: application/modules/Offer/views/metabox_module.php:97
534
  msgid "Last update: "
535
  msgstr "Обновлено:"
536
 
623
 
624
  #: application/templates/data_grid.php:71
625
  #: application/templates/data_item.php:56
626
+ #: application/templates/data_list.php:63 templates/block_offers_list.php:74
627
+ #: templates/block_offers_logo.php:53
628
  msgid "Buy This Item"
629
  msgstr "Купить сейчас"
630
 
641
  msgid "All offers list with logos"
642
  msgstr "Все предложения с логотипами"
643
 
644
+ #: templates/block_price_statistics.php:10
645
+ msgid "Price statistics"
646
+ msgstr ""
647
+
648
+ #: templates/block_price_statistics.php:33
649
+ msgid "All prices mentioned above are in %s."
650
+ msgstr "Все цены представлены в %s."
651
+
652
+ #: templates/block_price_statistics.php:35
653
+ msgid "This product is available in %s."
654
+ msgstr "Этот товар доступен в магазинах: %s."
655
+
656
+ #: templates/block_price_statistics.php:36
657
+ msgid "At %s you can purchase %s for only %s"
658
+ msgstr "На сайте %s вы можете купить %s всего за %s"
659
+
660
+ #: templates/block_price_statistics.php:36
661
+ msgid "which is %s%% less than the cost in %s (%s)."
662
+ msgstr "что на %s%% меньше, чем цена в %s (%s)."
663
+
664
+ #: templates/block_price_statistics.php:37
665
+ msgid "The lowest price of %s was obtained on %s."
666
+ msgstr "Наименьшая цена на %s была получена %s."
667
+
668
  #. Plugin Name of the plugin/theme
669
  msgid "Content Egg"
670
  msgstr ""
676
  #. Description of the plugin/theme
677
  msgid ""
678
  "Easily adding auto updating products from affiliate systems and additional "
679
+ "content to posts. [ATTENTION: before update PRO version of plugin, activate "
680
+ "plugin!]"
681
  msgstr ""
682
 
683
  #. Author of the plugin/theme
languages/tpl/content-egg-tpl.pot CHANGED
@@ -1,14 +1,14 @@
1
- # Copyright (C) 2016 Content Egg
2
  # This file is distributed under the same license as the Content Egg package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Content Egg 3.0.0\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/content-egg-tpl\n"
7
- "POT-Creation-Date: 2016-12-13 15:20:11+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2016-MO-DA HO:MI+ZONE\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
@@ -140,31 +140,35 @@ msgstr ""
140
  msgid "Last update:"
141
  msgstr ""
142
 
143
- #: application/helpers/TemplateHelper.php:22
144
- #: application/helpers/TemplateHelper.php:43
145
- msgid "number_format_decimal_point"
146
  msgstr ""
147
 
148
  #: application/helpers/TemplateHelper.php:23
149
  #: application/helpers/TemplateHelper.php:44
 
 
 
 
 
150
  msgid "number_format_thousands_sep"
151
  msgstr ""
152
 
153
- #: application/helpers/TemplateHelper.php:115
154
  msgid "d"
155
  msgstr ""
156
 
157
- #: application/helpers/TemplateHelper.php:117
158
  msgid "h"
159
  msgstr ""
160
 
161
- #: application/helpers/TemplateHelper.php:119
162
- #: application/helpers/TemplateHelper.php:121
163
  #: application/modules/Ebay/templates/data_item.php:71
164
  msgid "m"
165
  msgstr ""
166
 
167
- #: application/helpers/TemplateHelper.php:302
168
  #: application/modules/Amazon/templates/data_compare.php:81
169
  #: application/modules/Ozon/templates/data_compare.php:67
170
  #: application/templates/data_price_tracker_alert.php:37
@@ -187,6 +191,7 @@ msgstr ""
187
  #: application/modules/Offer/templates/data_grid.php:7
188
  #: application/modules/Optimisemedia/templates/data_grid.php:7
189
  #: application/modules/PayTM/templates/data_grid.php:7
 
190
  #: application/modules/Shareasale/templates/data_grid.php:7
191
  #: application/modules/TradedoublerProducts/templates/data_grid.php:7
192
  #: application/modules/Zanox/templates/data_grid.php:7
@@ -211,6 +216,7 @@ msgstr ""
211
  #: application/modules/Optimisemedia/templates/data_item.php:7
212
  #: application/modules/Ozon/templates/data_item.php:7
213
  #: application/modules/PayTM/templates/data_item.php:7
 
214
  #: application/modules/Shareasale/templates/data_item.php:7
215
  #: application/modules/TradedoublerProducts/templates/data_item.php:7
216
  #: application/modules/Zanox/templates/data_item.php:7
@@ -235,6 +241,7 @@ msgstr ""
235
  #: application/modules/Ozon/templates/data_grid.php:7
236
  #: application/modules/Ozon/templates/data_list.php:6
237
  #: application/modules/PayTM/templates/data_list.php:6
 
238
  #: application/modules/Shareasale/templates/data_list.php:6
239
  #: application/modules/TradedoublerProducts/templates/data_list.php:6
240
  #: application/modules/Zanox/templates/data_list.php:6
@@ -248,6 +255,7 @@ msgstr ""
248
  #: application/modules/Aliexpress/templates/data_price_tracker_alert.php:7
249
  #: application/modules/Amazon/templates/data_price_tracker_alert.php:7
250
  #: application/modules/CjProducts/templates/data_price_tracker_alert.php:7
 
251
  #: application/modules/GdeSlon/templates/data_price_tracker_alert.php:7
252
  #: application/modules/Impactradius/templates/data_price_tracker_alert.php:7
253
  #: application/modules/Linkshare/templates/data_price_tracker_alert.php:7
@@ -255,6 +263,7 @@ msgstr ""
255
  #: application/modules/Optimisemedia/templates/data_price_tracker_alert.php:7
256
  #: application/modules/Ozon/templates/data_price_tracker_alert.php:7
257
  #: application/modules/PayTM/templates/data_price_tracker_alert.php:7
 
258
  #: application/modules/Shareasale/templates/data_price_tracker_alert.php:7
259
  #: application/modules/TradedoublerProducts/templates/data_price_tracker_alert.php:7
260
  #: application/modules/Zanox/templates/data_price_tracker_alert.php:7
@@ -291,16 +300,16 @@ msgstr ""
291
 
292
  #: application/modules/Amazon/templates/data_compare.php:93
293
  #: application/templates/data_item.php:49
294
- #: application/templates/data_list.php:59 templates/block_offers_list.php:72
295
- #: templates/block_offers_logo.php:51
296
  msgid "Too low to display"
297
  msgstr ""
298
 
299
  #: application/modules/Amazon/templates/data_compare.php:96
300
  #: application/modules/Ebay/templates/data_item.php:81
301
  #: application/templates/blocks/item_after_price_row.php:20
302
- #: application/templates/data_list.php:66 templates/block_offers_list.php:80
303
- #: templates/block_offers_logo.php:60
304
  msgid "Free shipping"
305
  msgstr ""
306
 
@@ -502,7 +511,7 @@ msgstr ""
502
  msgid "All reviews on Yandex.Market"
503
  msgstr ""
504
 
505
- #: application/modules/Offer/views/metabox_module.php:91
506
  msgid "Last update: "
507
  msgstr ""
508
 
@@ -595,8 +604,8 @@ msgstr ""
595
 
596
  #: application/templates/data_grid.php:71
597
  #: application/templates/data_item.php:56
598
- #: application/templates/data_list.php:63 templates/block_offers_list.php:77
599
- #: templates/block_offers_logo.php:57
600
  msgid "Buy This Item"
601
  msgstr ""
602
 
@@ -612,6 +621,30 @@ msgstr ""
612
  #: templates/block_offers_logo.php:9
613
  msgid "All offers list with logos"
614
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
615
  #. Plugin Name of the plugin/theme
616
  msgid "Content Egg"
617
  msgstr ""
@@ -621,7 +654,7 @@ msgid "http://www.keywordrush.com/contentegg"
621
  msgstr ""
622
 
623
  #. Description of the plugin/theme
624
- msgid "Easily adding auto updating products from affiliate systems and additional content to posts."
625
  msgstr ""
626
 
627
  #. Author of the plugin/theme
1
+ # Copyright (C) 2017 Content Egg
2
  # This file is distributed under the same license as the Content Egg package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Content Egg 3.2.0\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/content-egg-tpl\n"
7
+ "POT-Creation-Date: 2017-01-24 19:09:16+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: 2017-MO-DA HO:MI+ZONE\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
140
  msgid "Last update:"
141
  msgstr ""
142
 
143
+ #: application/components/ContentManager.php:438
144
+ msgid "Rating"
 
145
  msgstr ""
146
 
147
  #: application/helpers/TemplateHelper.php:23
148
  #: application/helpers/TemplateHelper.php:44
149
+ msgid "number_format_decimal_point"
150
+ msgstr ""
151
+
152
+ #: application/helpers/TemplateHelper.php:24
153
+ #: application/helpers/TemplateHelper.php:45
154
  msgid "number_format_thousands_sep"
155
  msgstr ""
156
 
157
+ #: application/helpers/TemplateHelper.php:116
158
  msgid "d"
159
  msgstr ""
160
 
161
+ #: application/helpers/TemplateHelper.php:118
162
  msgid "h"
163
  msgstr ""
164
 
165
+ #: application/helpers/TemplateHelper.php:120
166
+ #: application/helpers/TemplateHelper.php:122
167
  #: application/modules/Ebay/templates/data_item.php:71
168
  msgid "m"
169
  msgstr ""
170
 
171
+ #: application/helpers/TemplateHelper.php:303
172
  #: application/modules/Amazon/templates/data_compare.php:81
173
  #: application/modules/Ozon/templates/data_compare.php:67
174
  #: application/templates/data_price_tracker_alert.php:37
191
  #: application/modules/Offer/templates/data_grid.php:7
192
  #: application/modules/Optimisemedia/templates/data_grid.php:7
193
  #: application/modules/PayTM/templates/data_grid.php:7
194
+ #: application/modules/Pepperjam/templates/data_grid.php:7
195
  #: application/modules/Shareasale/templates/data_grid.php:7
196
  #: application/modules/TradedoublerProducts/templates/data_grid.php:7
197
  #: application/modules/Zanox/templates/data_grid.php:7
216
  #: application/modules/Optimisemedia/templates/data_item.php:7
217
  #: application/modules/Ozon/templates/data_item.php:7
218
  #: application/modules/PayTM/templates/data_item.php:7
219
+ #: application/modules/Pepperjam/templates/data_item.php:7
220
  #: application/modules/Shareasale/templates/data_item.php:7
221
  #: application/modules/TradedoublerProducts/templates/data_item.php:7
222
  #: application/modules/Zanox/templates/data_item.php:7
241
  #: application/modules/Ozon/templates/data_grid.php:7
242
  #: application/modules/Ozon/templates/data_list.php:6
243
  #: application/modules/PayTM/templates/data_list.php:6
244
+ #: application/modules/Pepperjam/templates/data_list.php:6
245
  #: application/modules/Shareasale/templates/data_list.php:6
246
  #: application/modules/TradedoublerProducts/templates/data_list.php:6
247
  #: application/modules/Zanox/templates/data_list.php:6
255
  #: application/modules/Aliexpress/templates/data_price_tracker_alert.php:7
256
  #: application/modules/Amazon/templates/data_price_tracker_alert.php:7
257
  #: application/modules/CjProducts/templates/data_price_tracker_alert.php:7
258
+ #: application/modules/Flipkart/templates/data_price_tracker_alert.php:7
259
  #: application/modules/GdeSlon/templates/data_price_tracker_alert.php:7
260
  #: application/modules/Impactradius/templates/data_price_tracker_alert.php:7
261
  #: application/modules/Linkshare/templates/data_price_tracker_alert.php:7
263
  #: application/modules/Optimisemedia/templates/data_price_tracker_alert.php:7
264
  #: application/modules/Ozon/templates/data_price_tracker_alert.php:7
265
  #: application/modules/PayTM/templates/data_price_tracker_alert.php:7
266
+ #: application/modules/Pepperjam/templates/data_price_tracker_alert.php:7
267
  #: application/modules/Shareasale/templates/data_price_tracker_alert.php:7
268
  #: application/modules/TradedoublerProducts/templates/data_price_tracker_alert.php:7
269
  #: application/modules/Zanox/templates/data_price_tracker_alert.php:7
300
 
301
  #: application/modules/Amazon/templates/data_compare.php:93
302
  #: application/templates/data_item.php:49
303
+ #: application/templates/data_list.php:59 templates/block_offers_list.php:69
304
+ #: templates/block_offers_logo.php:47
305
  msgid "Too low to display"
306
  msgstr ""
307
 
308
  #: application/modules/Amazon/templates/data_compare.php:96
309
  #: application/modules/Ebay/templates/data_item.php:81
310
  #: application/templates/blocks/item_after_price_row.php:20
311
+ #: application/templates/data_list.php:66 templates/block_offers_list.php:77
312
+ #: templates/block_offers_logo.php:56
313
  msgid "Free shipping"
314
  msgstr ""
315
 
511
  msgid "All reviews on Yandex.Market"
512
  msgstr ""
513
 
514
+ #: application/modules/Offer/views/metabox_module.php:97
515
  msgid "Last update: "
516
  msgstr ""
517
 
604
 
605
  #: application/templates/data_grid.php:71
606
  #: application/templates/data_item.php:56
607
+ #: application/templates/data_list.php:63 templates/block_offers_list.php:74
608
+ #: templates/block_offers_logo.php:53
609
  msgid "Buy This Item"
610
  msgstr ""
611
 
621
  #: templates/block_offers_logo.php:9
622
  msgid "All offers list with logos"
623
  msgstr ""
624
+
625
+ #: templates/block_price_statistics.php:10
626
+ msgid "Price statistics"
627
+ msgstr ""
628
+
629
+ #: templates/block_price_statistics.php:33
630
+ msgid "All prices mentioned above are in %s."
631
+ msgstr ""
632
+
633
+ #: templates/block_price_statistics.php:35
634
+ msgid "This product is available in %s."
635
+ msgstr ""
636
+
637
+ #: templates/block_price_statistics.php:36
638
+ msgid "At %s you can purchase %s for only %s"
639
+ msgstr ""
640
+
641
+ #: templates/block_price_statistics.php:36
642
+ msgid "which is %s%% less than the cost in %s (%s)."
643
+ msgstr ""
644
+
645
+ #: templates/block_price_statistics.php:37
646
+ msgid "The lowest price of %s was obtained on %s."
647
+ msgstr ""
648
  #. Plugin Name of the plugin/theme
649
  msgid "Content Egg"
650
  msgstr ""
654
  msgstr ""
655
 
656
  #. Description of the plugin/theme
657
+ msgid "Easily adding auto updating products from affiliate systems and additional content to posts. [ATTENTION: before update PRO version of plugin, activate plugin!]"
658
  msgstr ""
659
 
660
  #. Author of the plugin/theme
readme.txt CHANGED
@@ -1,9 +1,9 @@
1
  === Content Egg ===
2
  Contributors: keywordrush,wpsoul
3
- Tags: content, affiliate, autoblogging, amazon, affilinet, coupons, linkshare, shareasale, ozon, flickr, youtube, commission junction, aliexpress, cj, images, wikipedia, freebase, ecommerce, links, shortcode, monetize, search engine optimization, ebay, zanox, moneymaking, price comparison, google images, timesaving, clickbank, linkshare, pixabay, admitad, affilitewindow, otimisemedia, tradedoubler, flipkart, paytm, price alert, tracker, impactradius
4
  Requires at least: 4.2.2
5
  Tested up to: 4.7
6
- Stable tag: 3.0.5
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -43,7 +43,7 @@ Easily adding auto updating products from affiliate systems and additional conte
43
  >
44
  >Modules of free version: Amazon, Pixabay, Google Images, Youtube, Commission Junction Links, Freebase, Affili.net Coupons, Related Keywords, RSS Fetcher, Admitad Products, Offer.
45
  >
46
- >Additional modules of PRO version: Ebay, Zanox, Aliexpress, CJ Products, ClickBank, Admitad Coupons, Affilitewindow, Flipkart, Otimisemedia, Tradedoubler, Affili.net Products, Linkshare, Shareasale, Impactradius, Cityads, Ozon, Paytm, Flickr, Bing Images, Google Books, Google News, Twitter, VK news, Yandex Market...
47
  >
48
  >And we don't stop on these modules. All buyers of pro version can suggest us new module.
49
  >
@@ -108,6 +108,15 @@ If you can do any Wordpress page templates – you can do also templates for Con
108
 
109
  == Changelog ==
110
 
 
 
 
 
 
 
 
 
 
111
  = 3.0.0 =
112
  * New: Offer module - manually create offer from any site with price update.
113
  * New: BingImages - new Cognitive Services API.
1
  === Content Egg ===
2
  Contributors: keywordrush,wpsoul
3
+ Tags: content, affiliate, autoblogging, amazon, affilinet, coupons, linkshare, shareasale, ozon, flickr, youtube, commission junction, aliexpress, cj, images, wikipedia, freebase, ecommerce, links, shortcode, monetize, search engine optimization, ebay, zanox, moneymaking, price comparison, google images, timesaving, clickbank, linkshare, pixabay, admitad, affilitewindow, optimisemedia, tradedoubler, flipkart, paytm, price alert, tracker, impactradius, pepperjam, pepperjamnetwork
4
  Requires at least: 4.2.2
5
  Tested up to: 4.7
6
+ Stable tag: 3.2.1
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
43
  >
44
  >Modules of free version: Amazon, Pixabay, Google Images, Youtube, Commission Junction Links, Freebase, Affili.net Coupons, Related Keywords, RSS Fetcher, Admitad Products, Offer.
45
  >
46
+ >Additional modules of PRO version: Ebay, Zanox, Aliexpress, CJ Products, ClickBank, Admitad Coupons, Affilitewindow, Flipkart, Optimisemedia, Tradedoubler, Affili.net Products, Linkshare, Shareasale, Impactradius, Cityads, Ozon, Paytm, Pepperjam Network, Flickr, Bing Images, Google Books, Google News, Twitter, VK news, Yandex Market...
47
  >
48
  >And we don't stop on these modules. All buyers of pro version can suggest us new module.
49
  >
108
 
109
  == Changelog ==
110
 
111
+ = 3.2.0 =
112
+ * New: Block template: Price statistics.
113
+ * New: Ability to add reviews as post comments for AE modules.
114
+ * New: Rating field for Offer module.
115
+ * New: Support for AMP plugin.
116
+ * New: Minus words for Fill utility.
117
+ * Fix: Hot trends keyword keyword tool.
118
+ * Fix: Product keyword tool.
119
+
120
  = 3.0.0 =
121
  * New: Offer module - manually create offer from any site with price update.
122
  * New: BingImages - new Cognitive Services API.
res/app/app.js CHANGED
@@ -76,7 +76,7 @@ contentEgg.controller('ContentEggController', function ($scope, ModuleService) {
76
  var contentProduct = angular.copy(contentegg_params.contentProduct);
77
  contentProduct.unique_id = Math.random().toString(36).slice(2);
78
  $scope.models[module_id].added.push(contentProduct);
79
- $scope.models[module_id].added_changed = true;
80
  };
81
 
82
  $scope.addAll = function (module_id) {
@@ -261,4 +261,18 @@ contentEgg.directive('selectOnClick', function () {
261
  });
262
  }
263
  };
 
 
 
 
 
 
 
 
 
 
 
 
 
 
264
  });
76
  var contentProduct = angular.copy(contentegg_params.contentProduct);
77
  contentProduct.unique_id = Math.random().toString(36).slice(2);
78
  $scope.models[module_id].added.push(contentProduct);
79
+ $scope.models[module_id].added_changed = true;
80
  };
81
 
82
  $scope.addAll = function (module_id) {
261
  });
262
  }
263
  };
264
+ });
265
+
266
+ contentEgg.directive('convertToNumber', function () {
267
+ return {
268
+ require: 'ngModel',
269
+ link: function (scope, element, attrs, ngModel) {
270
+ ngModel.$parsers.push(function (val) {
271
+ return val != null ? parseInt(val, 10) : null;
272
+ });
273
+ ngModel.$formatters.push(function (val) {
274
+ return val != null ? '' + val : null;
275
+ });
276
+ }
277
+ };
278
  });
res/js/keywords.js CHANGED
@@ -1,69 +1,69 @@
1
 
2
- jQuery(document).ready(function($) {
3
 
4
  jQuery('#cegg-parsers-tabs').tabs();
5
  jQuery("#sug_btn_group").buttonset();
6
  jQuery("#trend_google, #trend_goods").button();
7
  keywords_count();
8
-
9
- jQuery( "#tool_capitalise" ).button({
10
- icons: {
11
- primary: "ui-icon-triangle-1-n"
12
- },
13
- text: false
14
  }).next().button({
15
- icons: {
16
- primary: "ui-icon-carat-1-n"
17
- },
18
- text: false
19
  }).next().button({
20
- icons: {
21
- primary: "ui-icon-arrow-1-s"
22
- },
23
- text: false
24
  }).next().button({
25
- icons: {
26
- primary: "ui-icon-minus"
27
- },
28
- text: false
29
  }).next().button({
30
- icons: {
31
- primary: "ui-icon-plus",
32
- },
33
- text: false
34
  }).next().button({
35
- icons: {
36
- primary: "ui-icon-closethick",
37
- },
38
- text: false
39
- });
40
 
41
 
42
  /** Suggestion tool */
43
  var sug_parser = 'sug_google';
44
  //sug parser source
45
- jQuery("#sug_btn_group input").click(function() {
46
  sug_parser = jQuery(this).val();
47
  if (jQuery('#sug_query').val())
48
  suggest(jQuery('#sug_query').val(), sug_parser);
49
  });
50
- jQuery('#sug_query').keyup(function() {
51
  suggest(jQuery(this).val(), sug_parser);
52
  });
53
  //--------------------------------------
54
 
55
 
56
  //add buttons
57
- jQuery('#add_selected').click(function() {
58
  add_selected()
59
  });
60
 
61
- jQuery('#add_all').click(function() {
62
  add_all();
63
  });
64
 
65
  // keywords count
66
- jQuery('#keywords').keyup(function(e) {
67
  var code = e.which;
68
  if (code == 13) {
69
  keywords_count();
@@ -71,38 +71,38 @@ jQuery(document).ready(function($) {
71
  });
72
 
73
  //tools
74
- jQuery('#tool_capitalise').click(function(event ) {
75
- event.preventDefault();
76
  var keywords = jQuery('#keywords').val();
77
  jQuery('#keywords').val(keywords.capitalize());
78
  });
79
 
80
- jQuery('#tool_sort').click(function(event) {
81
- event.preventDefault();
82
  var keywords = jQuery('#keywords').val();
83
  jQuery('#keywords').val(SortWords(keywords));
84
  });
85
 
86
- jQuery('#tool_delete').click(function(event) {
87
- event.preventDefault();
88
  jQuery('#keywords').val('');
89
  keywords_count();
90
  });
91
 
92
- jQuery('#tool_add_minus').click(function(event) {
93
- event.preventDefault();
94
  var keywords = jQuery('#keywords').val();
95
  jQuery('#keywords').val(addMinus(keywords));
96
  });
97
 
98
- jQuery('#tool_del_minus').click(function(event) {
99
- event.preventDefault();
100
  var keywords = jQuery('#keywords').val();
101
  jQuery('#keywords').val(delMinus(keywords));
102
  });
103
 
104
- jQuery('#tool_upper_first').click(function(event) {
105
- event.preventDefault();
106
  var keywords = jQuery('#keywords').val();
107
  jQuery('#keywords').val(upperFirst(keywords));
108
  });
@@ -111,20 +111,20 @@ jQuery(document).ready(function($) {
111
  /**
112
  * Hot Trends
113
  */
114
- jQuery("#trend_google").click(function() {
115
  jQuery("#trend_google").prop("disabled", true).addClass("ui-state-disabled");
116
  trend_google();
117
  jQuery('#trend_google').removeAttr('disabled').removeClass('ui-state-disabled');
118
  });
119
 
120
- jQuery("#trend_goods").click(function() {
121
  jQuery("#trend_goods").prop("disabled", true).addClass("ui-state-disabled");
122
  amazon_trends();
123
  jQuery('#trend_goods').removeAttr('disabled').removeClass('ui-state-disabled');
124
  });
125
 
126
 
127
- jQuery("#trend_keywords,#sug_keywords,#goods_keywords").change(function() {
128
  var opt = jQuery(this).children(":selected");
129
  add_keyword(opt.val());
130
  opt.remove();
@@ -137,11 +137,11 @@ function suggest(query, sug_parser) {
137
 
138
  function sug_yandex(query) {
139
  var url = 'https://suggest.yandex.ru/suggest-ya.cgi?callback=?&v=4&part=' + encodeURIComponent(query);
140
- jQuery.getJSON(url, function() {
141
  })
142
- .done(function(data) {
143
  var keywords = '';
144
- jQuery.each(data[1], function(i, keyword) {
145
  keywords = keywords + '<option>' + keyword + '</option>';
146
  });
147
  jQuery('#sug_keywords').html(keywords);
@@ -151,11 +151,11 @@ function sug_yandex(query) {
151
  function sug_market(query) {
152
 
153
  var url = 'http://suggest.market.yandex.ru/suggest-market?callback=?&part=' + encodeURIComponent(query);
154
- jQuery.getJSON(url, function() {
155
  })
156
- .done(function(data) {
157
  var keywords = '';
158
- jQuery.each(data[1], function(i, keyword) {
159
  keywords = keywords + '<option>' + keyword + '</option>';
160
  });
161
  jQuery('#sug_keywords').html(keywords);
@@ -168,10 +168,10 @@ function sug_amazon(query) {
168
  dataType: 'jsonp',
169
  cache: true
170
  });
171
- request.done(function(data) {
172
  jQuery('#sug_keywords').empty();
173
  var keywords = '';
174
- jQuery.each(data[1], function(i, keyword) {
175
  keywords = keywords + '<option>' + keyword + '</option>';
176
  });
177
  jQuery('#sug_keywords').html(keywords);
@@ -186,10 +186,10 @@ function sug_google(query) {
186
  dataType: "jsonp",
187
  cache: true
188
  });
189
- request.done(function(data) {
190
  jQuery('#sug_keywords').empty();
191
  var keywords = '';
192
- jQuery.each(data[1], function(i, keyword) {
193
  keywords = keywords + '<option>' + keyword[0] + '</option>';
194
  });
195
  jQuery('#sug_keywords').html(keywords);
@@ -198,7 +198,7 @@ function sug_google(query) {
198
 
199
 
200
  // ebay hardcoded callback
201
- jQuery.namespace = function() {
202
  var a = arguments, o = null, i, j, d;
203
  for (i = 0; i < a.length; i = i + 1) {
204
  d = a[i].split(".");
@@ -211,7 +211,7 @@ jQuery.namespace = function() {
211
  return o;
212
  };
213
  vjoObj = jQuery.namespace("vjo.darwin.domain.finding.autofill.AutoFill");
214
- vjoObj._do = function(data) {
215
  sug_ebay_callback(data);
216
  }
217
 
@@ -222,14 +222,14 @@ function sug_ebay(query) {
222
  dataType: "jsonp",
223
  cache: true
224
  });
225
- request.done(function(data) {
226
  });
227
  }
228
 
229
  function sug_ebay_callback(data) {
230
  jQuery('#sug_keywords').empty();
231
  var keywords;
232
- jQuery.each(data.res.sug, function(i, keyword) {
233
  keywords = keywords + '<option>' + keyword + '</option>';
234
  });
235
  jQuery('#sug_keywords').html(keywords);
@@ -245,15 +245,15 @@ function keywords_uniq() {
245
  // delete duplicates
246
  var arr = jQuery("#keywords").val().split("\n");
247
  var arrDistinct = new Array();
248
- jQuery(arr).each(function(index, item) {
249
  if (jQuery.inArray(item, arrDistinct) == -1)
250
  arrDistinct.push(item);
251
  });
252
  jQuery("#keywords").val(arrDistinct.join("\n"));
253
  }
254
 
255
- String.prototype.capitalize = function() {
256
- return this.replace(/(^|\s)([a-zа-я])/g, function(m, p1, p2) {
257
  return p1 + p2.toUpperCase();
258
  });
259
  };
@@ -280,7 +280,7 @@ function delMinus(words) {
280
 
281
  function upperFirst(words) {
282
  words = words.toLowerCase();
283
- return words.replace(/(^|\n)(.)/g, function(m, p1, p2, offset, s) {
284
  return m.toUpperCase();
285
  });
286
  }
@@ -320,51 +320,41 @@ function trend_google() {
320
  else
321
  zone = 'com';
322
 
323
- var url = 'https://ajax.googleapis.com/ajax/services/feed/load?callback=?&v=1.0&scoring=h&num=100&q=http%3A%2F%2Fwww.google.' + zone + '%2Ftrends%2Fhottrends%2Fatom%2Fhourly';
324
- jQuery.getJSON(url, function() {
325
- })
326
- .done(function(data) {
327
- var keywords = {};
328
- var keyword;
329
- jQuery.each(data.responseData.feed.entries, function(i, row) {
330
- var as = jQuery(row.content).find('a');
331
- as.each(function() {
332
- var keyword = jQuery(this).text();
333
- if (!keywords.hasOwnProperty(keyword)) {
334
- keywords[keyword] = keyword;
335
- jQuery('#trend_keywords')
336
- .append(jQuery("<option></option>")
337
- .attr("value", keyword)
338
- .text(keyword));
339
- }
340
- });
341
- });
342
- });
343
  }
344
  function amazon_trends() {
345
 
346
  var category_id = jQuery('#amazon_categ').val();
347
  var amazon_section = jQuery('#amazon_section').val();
348
- var url = 'http://www.amazon.com/gp/rss/' + amazon_section + '/' + category_id + '/';
349
- var gurl = 'https://ajax.googleapis.com/ajax/services/feed/load?callback=?&v=1.0&num=50&q=';
350
- gurl += encodeURI(url);
351
  jQuery('#goods_keywords').empty();
352
- jQuery.getJSON(gurl, function() {
353
- })
354
- .done(function(data) {
355
- var keyword;
356
- jQuery.each(data.responseData.feed.entries, function(i, row) {
357
- keyword = row.title;
358
- i++;
359
- keyword = keyword.replace('#' + i + ': ', "");
360
- jQuery.trim(keyword);
361
- jQuery('#goods_keywords')
362
- .append(jQuery("<option></option>")
363
- .attr("value", keyword)
364
- .text(keyword));
365
- });
366
- });
367
-
368
  }
369
 
370
  function add_keyword(keyword) {
1
 
2
+ jQuery(document).ready(function ($) {
3
 
4
  jQuery('#cegg-parsers-tabs').tabs();
5
  jQuery("#sug_btn_group").buttonset();
6
  jQuery("#trend_google, #trend_goods").button();
7
  keywords_count();
8
+
9
+ jQuery("#tool_capitalise").button({
10
+ icons: {
11
+ primary: "ui-icon-triangle-1-n"
12
+ },
13
+ text: false
14
  }).next().button({
15
+ icons: {
16
+ primary: "ui-icon-carat-1-n"
17
+ },
18
+ text: false
19
  }).next().button({
20
+ icons: {
21
+ primary: "ui-icon-arrow-1-s"
22
+ },
23
+ text: false
24
  }).next().button({
25
+ icons: {
26
+ primary: "ui-icon-minus"
27
+ },
28
+ text: false
29
  }).next().button({
30
+ icons: {
31
+ primary: "ui-icon-plus",
32
+ },
33
+ text: false
34
  }).next().button({
35
+ icons: {
36
+ primary: "ui-icon-closethick",
37
+ },
38
+ text: false
39
+ });
40
 
41
 
42
  /** Suggestion tool */
43
  var sug_parser = 'sug_google';
44
  //sug parser source
45
+ jQuery("#sug_btn_group input").click(function () {
46
  sug_parser = jQuery(this).val();
47
  if (jQuery('#sug_query').val())
48
  suggest(jQuery('#sug_query').val(), sug_parser);
49
  });
50
+ jQuery('#sug_query').keyup(function () {
51
  suggest(jQuery(this).val(), sug_parser);
52
  });
53
  //--------------------------------------
54
 
55
 
56
  //add buttons
57
+ jQuery('#add_selected').click(function () {
58
  add_selected()
59
  });
60
 
61
+ jQuery('#add_all').click(function () {
62
  add_all();
63
  });
64
 
65
  // keywords count
66
+ jQuery('#keywords').keyup(function (e) {
67
  var code = e.which;
68
  if (code == 13) {
69
  keywords_count();
71
  });
72
 
73
  //tools
74
+ jQuery('#tool_capitalise').click(function (event) {
75
+ event.preventDefault();
76
  var keywords = jQuery('#keywords').val();
77
  jQuery('#keywords').val(keywords.capitalize());
78
  });
79
 
80
+ jQuery('#tool_sort').click(function (event) {
81
+ event.preventDefault();
82
  var keywords = jQuery('#keywords').val();
83
  jQuery('#keywords').val(SortWords(keywords));
84
  });
85
 
86
+ jQuery('#tool_delete').click(function (event) {
87
+ event.preventDefault();
88
  jQuery('#keywords').val('');
89
  keywords_count();
90
  });
91
 
92
+ jQuery('#tool_add_minus').click(function (event) {
93
+ event.preventDefault();
94
  var keywords = jQuery('#keywords').val();
95
  jQuery('#keywords').val(addMinus(keywords));
96
  });
97
 
98
+ jQuery('#tool_del_minus').click(function (event) {
99
+ event.preventDefault();
100
  var keywords = jQuery('#keywords').val();
101
  jQuery('#keywords').val(delMinus(keywords));
102
  });
103
 
104
+ jQuery('#tool_upper_first').click(function (event) {
105
+ event.preventDefault();
106
  var keywords = jQuery('#keywords').val();
107
  jQuery('#keywords').val(upperFirst(keywords));
108
  });
111
  /**
112
  * Hot Trends
113
  */
114
+ jQuery("#trend_google").click(function () {
115
  jQuery("#trend_google").prop("disabled", true).addClass("ui-state-disabled");
116
  trend_google();
117
  jQuery('#trend_google').removeAttr('disabled').removeClass('ui-state-disabled');
118
  });
119
 
120
+ jQuery("#trend_goods").click(function () {
121
  jQuery("#trend_goods").prop("disabled", true).addClass("ui-state-disabled");
122
  amazon_trends();
123
  jQuery('#trend_goods').removeAttr('disabled').removeClass('ui-state-disabled');
124
  });
125
 
126
 
127
+ jQuery("#trend_keywords,#sug_keywords,#goods_keywords").change(function () {
128
  var opt = jQuery(this).children(":selected");
129
  add_keyword(opt.val());
130
  opt.remove();
137
 
138
  function sug_yandex(query) {
139
  var url = 'https://suggest.yandex.ru/suggest-ya.cgi?callback=?&v=4&part=' + encodeURIComponent(query);
140
+ jQuery.getJSON(url, function () {
141
  })
142
+ .done(function (data) {
143
  var keywords = '';
144
+ jQuery.each(data[1], function (i, keyword) {
145
  keywords = keywords + '<option>' + keyword + '</option>';
146
  });
147
  jQuery('#sug_keywords').html(keywords);
151
  function sug_market(query) {
152
 
153
  var url = 'http://suggest.market.yandex.ru/suggest-market?callback=?&part=' + encodeURIComponent(query);
154
+ jQuery.getJSON(url, function () {
155
  })
156
+ .done(function (data) {
157
  var keywords = '';
158
+ jQuery.each(data[1], function (i, keyword) {
159
  keywords = keywords + '<option>' + keyword + '</option>';
160
  });
161
  jQuery('#sug_keywords').html(keywords);
168
  dataType: 'jsonp',
169
  cache: true
170
  });
171
+ request.done(function (data) {
172
  jQuery('#sug_keywords').empty();
173
  var keywords = '';
174
+ jQuery.each(data[1], function (i, keyword) {
175
  keywords = keywords + '<option>' + keyword + '</option>';
176
  });
177
  jQuery('#sug_keywords').html(keywords);
186
  dataType: "jsonp",
187
  cache: true
188
  });
189
+ request.done(function (data) {
190
  jQuery('#sug_keywords').empty();
191
  var keywords = '';
192
+ jQuery.each(data[1], function (i, keyword) {
193
  keywords = keywords + '<option>' + keyword[0] + '</option>';
194
  });
195
  jQuery('#sug_keywords').html(keywords);
198
 
199
 
200
  // ebay hardcoded callback
201
+ jQuery.namespace = function () {
202
  var a = arguments, o = null, i, j, d;
203
  for (i = 0; i < a.length; i = i + 1) {
204
  d = a[i].split(".");
211
  return o;
212
  };
213
  vjoObj = jQuery.namespace("vjo.darwin.domain.finding.autofill.AutoFill");
214
+ vjoObj._do = function (data) {
215
  sug_ebay_callback(data);
216
  }
217
 
222
  dataType: "jsonp",
223
  cache: true
224
  });
225
+ request.done(function (data) {
226
  });
227
  }
228
 
229
  function sug_ebay_callback(data) {
230
  jQuery('#sug_keywords').empty();
231
  var keywords;
232
+ jQuery.each(data.res.sug, function (i, keyword) {
233
  keywords = keywords + '<option>' + keyword + '</option>';
234
  });
235
  jQuery('#sug_keywords').html(keywords);
245
  // delete duplicates
246
  var arr = jQuery("#keywords").val().split("\n");
247
  var arrDistinct = new Array();
248
+ jQuery(arr).each(function (index, item) {
249
  if (jQuery.inArray(item, arrDistinct) == -1)
250
  arrDistinct.push(item);
251
  });
252
  jQuery("#keywords").val(arrDistinct.join("\n"));
253
  }
254
 
255
+ String.prototype.capitalize = function () {
256
+ return this.replace(/(^|\s)([a-zа-я])/g, function (m, p1, p2) {
257
  return p1 + p2.toUpperCase();
258
  });
259
  };
280
 
281
  function upperFirst(words) {
282
  words = words.toLowerCase();
283
+ return words.replace(/(^|\n)(.)/g, function (m, p1, p2, offset, s) {
284
  return m.toUpperCase();
285
  });
286
  }
320
  else
321
  zone = 'com';
322
 
323
+ var url = "https://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20html%20where%20url%3D'https%3A%2F%2Fwww.google." + zone + "%2Ftrends%2Fhottrends%2Fatom%2Fhourly'%20and%20xpath%3D'.%2F%2Fa'&format=json&diagnostics=true&callback=";
324
+ jQuery.getJSON(url, function () {
325
+ }).done(function (data) {
326
+ var keywords = {};
327
+ var keyword;
328
+ jQuery.each(data.query.results.a, function (i, row) {
329
+ var keyword = row.content;
330
+ keywords[keyword] = keyword;
331
+ jQuery('#trend_keywords')
332
+ .append(jQuery("<option></option>")
333
+ .attr("value", keyword)
334
+ .text(keyword));
335
+ });
336
+ });
 
 
 
 
 
 
337
  }
338
  function amazon_trends() {
339
 
340
  var category_id = jQuery('#amazon_categ').val();
341
  var amazon_section = jQuery('#amazon_section').val();
342
+ var aurl = 'http://www.amazon.com/gp/rss/' + amazon_section + '/' + category_id + '/';
343
+ var url = "https://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20html%20where%20url%3D'" + encodeURI(aurl) + "%2F'%20and%20xpath%3D'.%2F%2Fspan%2Fa'&format=json&callback=";
 
344
  jQuery('#goods_keywords').empty();
345
+ jQuery.getJSON(url, function () {
346
+ }).done(function (data) {
347
+ var keywords = {};
348
+ var keyword;
349
+ jQuery.each(data.query.results.a, function (i, row) {
350
+ var keyword = row.content;
351
+ keywords[keyword] = keyword;
352
+ jQuery('#goods_keywords')
353
+ .append(jQuery("<option></option>")
354
+ .attr("value", keyword)
355
+ .text(keyword));
356
+ });
357
+ });
 
 
 
358
  }
359
 
360
  function add_keyword(keyword) {
res/js/prefill.js CHANGED
@@ -90,12 +90,14 @@ function prefill() {
90
  var module_id = jQuery("#module_id").val();
91
  var keyword_source = jQuery("#keyword_source").val();
92
  var keyword_count = jQuery("#keyword_count").val();
 
93
  var autoupdate = jQuery("#autoupdate").is(':checked');
94
 
95
  prefill_url += '&module_id=' + module_id;
96
  prefill_url += '&keyword_source=' + keyword_source;
97
  prefill_url += '&keyword_count=' + keyword_count;
98
  prefill_url += '&autoupdate=' + autoupdate;
 
99
  prefill_url += '&nonce=' + content_egg_prefill.nonce;
100
 
101
  cegg_xxx = jQuery.ajax({
90
  var module_id = jQuery("#module_id").val();
91
  var keyword_source = jQuery("#keyword_source").val();
92
  var keyword_count = jQuery("#keyword_count").val();
93
+ var minus_words = jQuery("#minus_words").val();
94
  var autoupdate = jQuery("#autoupdate").is(':checked');
95
 
96
  prefill_url += '&module_id=' + module_id;
97
  prefill_url += '&keyword_source=' + keyword_source;
98
  prefill_url += '&keyword_count=' + keyword_count;
99
  prefill_url += '&autoupdate=' + autoupdate;
100
+ prefill_url += '&minus_words=' + minus_words;
101
  prefill_url += '&nonce=' + content_egg_prefill.nonce;
102
 
103
  cegg_xxx = jQuery.ajax({
templates/block_price_statistics.php ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Name: Price statistics
4
+ * Modules:
5
+ * Module Types: PRODUCT
6
+ * Shortcoded: FALSE
7
+ *
8
+ */
9
+
10
+ __('Price statistics', 'content-egg-tpl');
11
+
12
+ use ContentEgg\application\helpers\TemplateHelper;
13
+ ?>
14
+ <?php
15
+ $data = TemplateHelper::mergeData($data);
16
+ $min_price_item = TemplateHelper::getMinPriceItem($data);
17
+ $max_price_item = TemplateHelper::getMaxPriceItem($data);
18
+ if (!$min_price_item)
19
+ return;
20
+ $shops_list = TemplateHelper::getShopsList($data);
21
+
22
+ $perc_difference = round(($max_price_item['price'] - $min_price_item['price']) * 100 / $max_price_item['price']);
23
+ ?>
24
+
25
+ <div class="egg-container">
26
+ <?php if ($title): ?>
27
+ <h3><?php echo esc_html($title); ?></h3>
28
+ <?php endif; ?>
29
+
30
+ <div class="well-lg">
31
+ <ul>
32
+ <?php if ($commonCurrency = TemplateHelper::getCommonCurrencyCode($data)): ?>
33
+ <li><?php echo sprintf(__('All prices mentioned above are in %s.', 'content-egg-tpl'), __(TemplateHelper::getCurrencyName($commonCurrency), 'content-egg-tpl')); ?></li>
34
+ <?php endif; ?>
35
+ <li><?php echo sprintf(__('This product is available in %s.', 'content-egg-tpl'), join(', ', $shops_list)); ?></li>
36
+ <li><?php echo sprintf(__('At %s you can purchase %s for only %s', 'content-egg-tpl'), $min_price_item['domain'], $min_price_item['title'], TemplateHelper::formatPriceCurrency($min_price_item['price'], $min_price_item['currencyCode'])); ?><?php if ($perc_difference && $min_price_item['domain'] != $max_price_item['domain']): ?>, <?php echo sprintf(__('which is %s%% less than the cost in %s (%s).', 'content-egg-tpl'), $perc_difference, $shops_list[$max_price_item['domain']], TemplateHelper::formatPriceCurrency($max_price_item['price'], $max_price_item['currencyCode'])); ?><?php endif; ?></li>
37
+ <li><?php echo sprintf(__('The lowest price of %s was obtained on %s.', 'content-egg-tpl'), $max_price_item['title'], TemplateHelper::getLastUpdateFormatted($min_price_item['module_id'], true, $post_id)); ?></li>
38
+ </ul>
39
+
40
+ </div>
41
+ </div>