Content Egg - Version 3.5.1

Version Description

Download this release

Release Info

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

Code changes from version 3.5.0 to 3.5.1

application/Plugin.php CHANGED
@@ -14,7 +14,7 @@ use ContentEgg\application\helpers\CurrencyHelper;
14
  */
15
  class Plugin {
16
 
17
- const version = '3.5.0';
18
  const db_version = 29;
19
  const wp_requires = '4.2.2';
20
  const slug = 'content-egg';
14
  */
15
  class Plugin {
16
 
17
+ const version = '3.5.1';
18
  const db_version = 29;
19
  const wp_requires = '4.2.2';
20
  const slug = 'content-egg';
application/ProductSearch.php ADDED
@@ -0,0 +1,115 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace ContentEgg\application;
4
+
5
+ use ContentEgg\application\components\VirtualPage;
6
+ use ContentEgg\application\admin\GeneralConfig;
7
+ use ContentEgg\application\components\ModuleManager;
8
+ use ContentEgg\application\helpers\TextHelper;
9
+ use ContentEgg\application\ModuleViewer;
10
+ use ContentEgg\application\components\ContentManager;
11
+ use ContentEgg\application\helpers\InputHelper;
12
+
13
+ /**
14
+ * ProductSearch class file
15
+ *
16
+ * @author keywordrush.com <support@keywordrush.com>
17
+ * @link http://www.keywordrush.com/
18
+ * @copyright Copyright &copy; 2017 keywordrush.com
19
+ */
20
+ class ProductSearch extends VirtualPage {
21
+
22
+ const PAGE_SLUG = 'product-search';
23
+ const shortcode = 'content-egg-search-form';
24
+
25
+ private $keyword;
26
+
27
+ public static function initAction()
28
+ {
29
+ \add_shortcode(self::shortcode, array(__CLASS__, 'viewSearchFrom'));
30
+
31
+ if (!GeneralConfig::getInstance()->option('search_modules'))
32
+ return;
33
+
34
+ new self;
35
+ //parent::initAction();
36
+ }
37
+
38
+ protected function handleRequest($query_vars = array())
39
+ {
40
+ if (empty($query_vars['s']))
41
+ return;
42
+
43
+ $this->keyword = trim(TextHelper::clear_utf8(\sanitize_text_field($query_vars['s'])));
44
+ if (!$this->keyword)
45
+ return;
46
+
47
+ parent::handleRequest($query_vars);
48
+ }
49
+
50
+ public static function viewSearchFrom($atts, $content = "")
51
+ {
52
+ echo ProductSearchWidget::getSearchForm();
53
+ }
54
+
55
+ public function getSlug()
56
+ {
57
+ return self::PAGE_SLUG;
58
+ }
59
+
60
+ public function getBody()
61
+ {
62
+ // search & add data to ModuleViewer
63
+ $total = $this->addSearchData();
64
+ if ($total)
65
+ return GeneralConfig::getInstance()->option('search_page_tpl');
66
+ else
67
+ return __('Sorry. No products found.', 'content-egg-tpl');
68
+ }
69
+
70
+ public function getTemplate()
71
+ {
72
+ return 'ce-product-search.php';
73
+ }
74
+
75
+ /**
76
+ * Search and set view data
77
+ */
78
+ private function addSearchData()
79
+ {
80
+ $post_id = -1;
81
+ $module_ids = GeneralConfig::getInstance()->option('search_modules');
82
+ $total = 0;
83
+ foreach ($module_ids as $module_id)
84
+ {
85
+ $parser = ModuleManager::getInstance()->parserFactory($module_id);
86
+ if (!$parser->isActive())
87
+ continue;
88
+
89
+ try
90
+ {
91
+ $data = $parser->doRequest($this->keyword, array(), true);
92
+ } catch (\Exception $e)
93
+ {
94
+ // error
95
+ continue;
96
+ }
97
+
98
+ // nodata!
99
+ if (!$data)
100
+ continue;
101
+
102
+ $data = ContentManager::dataPresavePrepare($data, $module_id, $post_id);
103
+ $data = ContentManager::dataPreviewPrepare($data, $module_id, $post_id);
104
+ $total += count($data);
105
+ ModuleViewer::getInstance()->setData($module_id, $post_id, $data);
106
+ }
107
+ return $total;
108
+ }
109
+
110
+ public function getTitle()
111
+ {
112
+ return sprintf(__('Search Results for "%s"', 'content-egg-tpl'), $this->keyword);
113
+ }
114
+
115
+ }
application/ProductSearchWidget.php ADDED
@@ -0,0 +1,108 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace ContentEgg\application;
4
+
5
+ /**
6
+ * ProductSearchWidget class file
7
+ *
8
+ * @author keywordrush.com <support@keywordrush.com>
9
+ * @link http://www.keywordrush.com/
10
+ * @copyright Copyright &copy; 2017 keywordrush.com
11
+ */
12
+ class ProductSearchWidget extends \WP_Widget {
13
+
14
+ public static function initAction()
15
+ {
16
+ \add_action('widgets_init', function() {
17
+ \register_widget(__CLASS__);
18
+ });
19
+ }
20
+
21
+ /**
22
+ * Register widget with WordPress.
23
+ */
24
+ public function __construct()
25
+ {
26
+ parent::__construct(
27
+ 'cegg_product_search', \esc_html__('CE:Product Search', 'content-egg'), array('description' => \esc_html__('A search form for affiliate products.', 'content-egg'), 'classname' => 'widget widget_search')
28
+ );
29
+ }
30
+
31
+ /**
32
+ * Front-end display of widget.
33
+ *
34
+ */
35
+ public function widget($args, $instance)
36
+ {
37
+ $title = \apply_filters('widget_title', empty($instance['title']) ? '' : $instance['title'], $instance, $this->id_base);
38
+
39
+ echo $args['before_widget'];
40
+ if ($title)
41
+ {
42
+ echo $args['before_title'] . $title . $args['after_title'];
43
+ }
44
+
45
+ // Use current theme search form if it exists
46
+ echo self::getSearchForm();
47
+
48
+ echo $args['after_widget'];
49
+ }
50
+
51
+ /**
52
+ * Back-end widget form.
53
+ *
54
+ */
55
+ public function form($instance)
56
+ {
57
+ $title = !empty($instance['title']) ? $instance['title'] : '';
58
+ ?>
59
+ <p>
60
+ <label for="<?php echo \esc_attr($this->get_field_id('title')); ?>"><?php \esc_attr_e('Title:', 'content-egg'); ?></label>
61
+ <input class="widefat" id="<?php echo \esc_attr($this->get_field_id('title')); ?>" name="<?php echo \esc_attr($this->get_field_name('title')); ?>" type="text" value="<?php echo \esc_attr($title); ?>">
62
+ </p>
63
+ <?php
64
+ }
65
+
66
+ /**
67
+ * Sanitize widget form values as they are saved.
68
+ */
69
+ public function update($new_instance, $old_instance)
70
+ {
71
+ $instance = array();
72
+ $instance['title'] = (!empty($new_instance['title']) ) ? sanitize_text_field($new_instance['title']) : '';
73
+
74
+ return $instance;
75
+ }
76
+
77
+ public static function getSearchForm()
78
+ {
79
+ $search_form_template = \locate_template('ce-product-searchform.php');
80
+ if ($search_form_template)
81
+ {
82
+ ob_start();
83
+ require( $search_form_template );
84
+ $form = ob_get_clean();
85
+ } else
86
+ {
87
+ // standart wp search from
88
+ $form = \get_search_form(false);
89
+
90
+ if (\get_option('permalink_structure'))
91
+ $form = preg_replace('/action=["\'].+?["\']/', 'action="' . self::getSearchFormUri() . '"', $form);
92
+ else
93
+ $form = preg_replace('/<\/form>/', '<input type="hidden" name="pagename" value="' . \esc_attr(ProductSearch::PAGE_SLUG) . '"></form>', $form);
94
+
95
+ $form = preg_replace('/placeholder=".+?"/', 'placeholder="' . esc_attr(__('Product Search...', 'content-egg-tpl')) . '"', $form);
96
+ }
97
+ return $form;
98
+ }
99
+
100
+ public static function getSearchFormUri()
101
+ {
102
+ if (\get_option('permalink_structure'))
103
+ return \esc_url(\home_url(ProductSearch::PAGE_SLUG));
104
+ else
105
+ return \esc_url(\home_url('/'));
106
+ }
107
+
108
+ }
application/components/VirtualPage.php ADDED
@@ -0,0 +1,168 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace ContentEgg\application\components;
4
+
5
+ /**
6
+ * VirtualPage abstract class file
7
+ *
8
+ * @author keywordrush.com <support@keywordrush.com>
9
+ * @link http://www.keywordrush.com/
10
+ * @copyright Copyright &copy; 2017 keywordrush.com
11
+ */
12
+ abstract class VirtualPage {
13
+
14
+ private static $created = false;
15
+
16
+
17
+ public function __construct()
18
+ {
19
+ \add_action('parse_request', array($this, 'sniffRequests'));
20
+ }
21
+
22
+ public static function initAction()
23
+ {
24
+ $class = get_called_class();
25
+ new $class;
26
+ }
27
+
28
+ /**
29
+ * Page slug
30
+ */
31
+ abstract function getSlug();
32
+
33
+ /**
34
+ * Page body
35
+ */
36
+ abstract function getBody();
37
+
38
+ /**
39
+ * Page title
40
+ */
41
+ abstract function getTitle();
42
+
43
+ /**
44
+ * Custom page template
45
+ */
46
+ public function getTemplate()
47
+ {
48
+ return '';
49
+ }
50
+
51
+ public function sniffRequests($wp)
52
+ {
53
+ if (isset($wp->query_vars['pagename']))
54
+ {
55
+ $page = $wp->query_vars['pagename'];
56
+ }
57
+ elseif (\get_option('permalink_structure'))
58
+ {
59
+ $home_path = parse_url( \home_url('/'), PHP_URL_PATH );
60
+ $page = preg_replace( "#^" . preg_quote($home_path) . "#", '', filter_input(INPUT_SERVER, 'REQUEST_URI'));
61
+ $page = parse_url($page, PHP_URL_PATH);
62
+ $page = trim($page, '/');
63
+ }
64
+ else
65
+ return;
66
+
67
+ if ($page && $page == $this->getSlug())
68
+ {
69
+ $this->handleRequest($wp->query_vars);
70
+ }
71
+ }
72
+
73
+ protected function handleRequest($query_vars = array())
74
+ {
75
+ \add_action('template_redirect', array($this, 'renderTemplate'));
76
+ \add_filter('the_posts', array($this, 'createDummyPage'));
77
+ }
78
+
79
+ /**
80
+ * Modified version of Virtual_Themed_Pages_BC class
81
+ * @link: https://gist.github.com/brianoz/9105004
82
+ */
83
+ public function createDummyPage($posts)
84
+ {
85
+ if (self::$created)
86
+ return $posts;
87
+
88
+ /*
89
+ if ($posts)
90
+ return $posts;
91
+ *
92
+ */
93
+
94
+ // have to create a dummy post as otherwise many templates
95
+ // don't call the_content filter
96
+ global $wp, $wp_query;
97
+
98
+ //create a fake post intance
99
+ $p = new \stdClass;
100
+ // fill $p with everything a page in the database would have
101
+ $p->ID = -1;
102
+ $p->post_author = 1;
103
+ $p->post_date = current_time('mysql');
104
+ $p->post_date_gmt = current_time('mysql', 1);
105
+ $p->post_content = $this->getBody();
106
+ $p->post_title = $this->getTitle();
107
+ $p->post_excerpt = '';
108
+ $p->post_status = 'publish';
109
+ $p->ping_status = 'closed';
110
+ $p->post_password = '';
111
+ $p->post_name = $this->getSlug(); // slug
112
+ $p->to_ping = '';
113
+ $p->pinged = '';
114
+ $p->modified = $p->post_date;
115
+ $p->modified_gmt = $p->post_date_gmt;
116
+ $p->post_content_filtered = '';
117
+ $p->post_parent = 0;
118
+ $p->guid = \get_home_url('/' . $p->post_name); // use url instead?
119
+ $p->menu_order = 0;
120
+ $p->post_type = 'page';
121
+ $p->post_mime_type = '';
122
+ $p->comment_status = 'closed';
123
+ $p->comment_count = 0;
124
+ $p->filter = 'raw'; // How to sanitize post fields. Accepts 'raw', 'edit', 'db', or 'display'.
125
+ $p->ancestors = array(); // 3.6
126
+
127
+ //$p = new \WP_Post($p); // ??
128
+ //$GLOBALS['post'] = $p;
129
+
130
+ // reset wp_query properties to simulate a found page
131
+ $wp_query->is_page = TRUE;
132
+ $wp_query->is_singular = TRUE;
133
+ $wp_query->is_home = FALSE;
134
+ $wp_query->is_archive = FALSE;
135
+ $wp_query->is_category = FALSE;
136
+ unset($wp_query->query['error']);
137
+ $wp->query = array();
138
+ $wp_query->query_vars['error'] = '';
139
+ $wp_query->is_404 = FALSE;
140
+ $wp_query->found_posts = 1;
141
+ $wp_query->comment_count = 0;
142
+ // -1 for current_comment displays comment if not logged in!
143
+ $wp_query->current_comment = null;
144
+ $wp_query->is_singular = 1;
145
+ $wp_query->post = $p;
146
+ $wp_query->posts = array($p);
147
+ $wp_query->queried_object = $p;
148
+ $wp_query->queried_object_id = $p->ID;
149
+ $wp_query->current_post = $p->ID;
150
+ $wp_query->post_count = 1;
151
+ $wp_query->is_attachment = false;
152
+
153
+ self::$created = true;
154
+
155
+ return array($p);
156
+ }
157
+
158
+ public function renderTemplate()
159
+ {
160
+ $templates = array('page.php', 'index.php');
161
+ $template = $this->getTemplate();
162
+ if ($template)
163
+ $templates = array_merge(array($template), $templates);
164
+ \locate_template($templates, true);
165
+ exit;
166
+ }
167
+
168
+ }
content-egg.php CHANGED
@@ -6,7 +6,7 @@ namespace ContentEgg;
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.5.0
10
  Author: keywordrush.com
11
  Author URI: http://www.keywordrush.com
12
  Text Domain: content-egg
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.5.1
10
  Author: keywordrush.com
11
  Author URI: http://www.keywordrush.com
12
  Text Domain: content-egg
languages/tpl/content-egg-tpl-IW.mo ADDED
Binary file
languages/tpl/content-egg-tpl-IW.po ADDED
@@ -0,0 +1,705 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.4.1\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/content-egg-tpl\n"
7
+ "POT-Creation-Date: 2017-03-04 17:13+0200\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-03-04 17:59+0200\n"
12
+ "Language-Team: \n"
13
+ "X-Generator: Poedit 1.8.12\n"
14
+ "Last-Translator: \n"
15
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
+ "Language: he_IL\n"
17
+
18
+ #: application/PriceAlert.php:87
19
+ msgid "All fields are required."
20
+ msgstr "כל השדות נדרשים."
21
+
22
+ #: application/PriceAlert.php:90
23
+ msgid "Your email address is invalid."
24
+ msgstr "כתובת הדוא״ל שהכנסת אינה חוקית."
25
+
26
+ #: application/PriceAlert.php:93
27
+ msgid "The price has already been reached."
28
+ msgstr "זה כבר הגיע למחיר הזה."
29
+
30
+ #: application/PriceAlert.php:101
31
+ msgid "You already tracking this product."
32
+ msgstr "אתה כבר עוקב אחר מוצר זה."
33
+
34
+ #: application/PriceAlert.php:119
35
+ msgid ""
36
+ "We are now tracking this product for you. Please verify your email address "
37
+ "to be notified of price drops."
38
+ msgstr ""
39
+ "אנחנו כעת מנטרים מוצר זה בשבילך. נא וודא כי כתובת הדוא\"ל שהקלדת תקין כדי "
40
+ "לקבל עידכונים על ירידת מחירים."
41
+
42
+ #: application/PriceAlert.php:121
43
+ msgid "Internal Error. Please notify the administrator."
44
+ msgstr "שגיאה פנימית. הינכם מתבקשים להודיע למנהל."
45
+
46
+ #: application/PriceAlert.php:127
47
+ msgid "Welcome to %s"
48
+ msgstr "ברוך הבא ל- %s!"
49
+
50
+ #: application/PriceAlert.php:137
51
+ msgid "Hello,"
52
+ msgstr "שלום,"
53
+
54
+ #: application/PriceAlert.php:138
55
+ msgid "You have successfully set a price drop alert for %s."
56
+ msgstr "הגדרה בהצלחה קבלת התראות על ירידת מחיר עבור %s."
57
+
58
+ #: application/PriceAlert.php:139
59
+ msgid ""
60
+ "We will not send you any price alerts until you verified your email address."
61
+ msgstr "לא נשלח לך התראות על ירידת מחיר שתאמת את כתובת הדוא\"ל שלך."
62
+
63
+ #: application/PriceAlert.php:140
64
+ msgid ""
65
+ "Please open this link to validate your email address:<br> <a href=\"%s\">%s</"
66
+ "a>"
67
+ msgstr ""
68
+ "אנא פתח את הקישור כדי לאמת את כתובת הדוא\"ל שלך: <br> <a href=\"%s\">%s</a>"
69
+
70
+ #: application/PriceAlert.php:148
71
+ msgid "Thank You,\\r\\n Team %s"
72
+ msgstr "תודה רבה, \\r\\n צוות %s"
73
+
74
+ #: application/PriceAlert.php:201
75
+ msgid ""
76
+ "Your email has been verified. We will let you know by email when the Price "
77
+ "Drops."
78
+ msgstr "כתובת הדוא\"ל שלך מאומת. אנחנו נשלח לך הודעה ברגע שתהיה ירידת מחיר."
79
+
80
+ #: application/PriceAlert.php:201
81
+ msgid "Success!"
82
+ msgstr "הצלחת!"
83
+
84
+ #: application/PriceAlert.php:218
85
+ msgid "You are now unsubscribed from our Price Alerts via email."
86
+ msgstr "אינך רשום יותר לקבלת התראות על ירידת מחיר דרך הדוא\"ל."
87
+
88
+ #: application/PriceAlert.php:218
89
+ msgid "Unsubscribed!"
90
+ msgstr "הוסרת בהצלחה!"
91
+
92
+ #: application/PriceAlert.php:234
93
+ msgid " Ok "
94
+ msgstr " אישור "
95
+
96
+ #: application/PriceAlert.php:306
97
+ msgid "Price alert: \"%s\""
98
+ msgstr "התראת ירידת מחיר: \"%s\""
99
+
100
+ #: application/PriceAlert.php:322
101
+ msgid "Good news!"
102
+ msgstr "חדשות טובות!"
103
+
104
+ #: application/PriceAlert.php:323
105
+ msgid "The price target you set for the item has been reached."
106
+ msgstr "המחיר שהצבת לירידת מחיר הגיע לרף."
107
+
108
+ #: application/PriceAlert.php:324
109
+ msgid "<a href=\"%s\">Save %s (%s%%) on %s</a>"
110
+ msgstr ""
111
+
112
+ #: application/PriceAlert.php:326
113
+ msgid "Desired Price: %s"
114
+ msgstr "מחיר רצוי: \"%s\""
115
+
116
+ #: application/PriceAlert.php:327
117
+ msgid "Current Price: <strong>%s</strong>"
118
+ msgstr "מחיר נוכחי: <strong>%s</strong>"
119
+
120
+ #: application/PriceAlert.php:328
121
+ #: application/modules/Amazon/templates/data_compare.php:120
122
+ #: application/modules/Ozon/templates/data_compare.php:77
123
+ #: application/templates/data_item.php:62
124
+ #: application/templates/data_price_tracker_alert.php:39
125
+ msgid "as of"
126
+ msgstr "עודכן בתאריך"
127
+
128
+ #: application/PriceAlert.php:329
129
+ msgid "Price dropped from %s to %s"
130
+ msgstr "המחיר ירד מ- %s ל- %s"
131
+
132
+ #: application/PriceAlert.php:331
133
+ msgid "<a href=\"%s\">More info...</a>"
134
+ msgstr "<a href=\"%s\"> פרטים נוספים...</a>"
135
+
136
+ #: application/PriceAlert.php:334
137
+ msgid ""
138
+ "This present alert has now expired. You may <a href=\"%s\">create a new "
139
+ "alert</a> for this item."
140
+ msgstr ""
141
+
142
+ #: application/PriceAlert.php:335
143
+ msgid ""
144
+ "If you don't want to receive any price alerts from us in the future, <a href="
145
+ "\"%s\">please click here</a>."
146
+ msgstr ""
147
+
148
+ #: application/admin/views/_metabox_results.php:15
149
+ #: application/admin/views/_metabox_search_results.php:12
150
+ msgid "EAN:"
151
+ msgstr ""
152
+
153
+ #: application/admin/views/_metabox_results.php:16
154
+ msgid "Last update:"
155
+ msgstr "עדכון אחרון:"
156
+
157
+ #: application/components/ContentManager.php:447
158
+ msgid "Rating"
159
+ msgstr ""
160
+
161
+ #: application/helpers/TemplateHelper.php:23
162
+ #: application/helpers/TemplateHelper.php:44
163
+ msgid "number_format_decimal_point"
164
+ msgstr ""
165
+
166
+ #: application/helpers/TemplateHelper.php:24
167
+ #: application/helpers/TemplateHelper.php:45
168
+ msgid "number_format_thousands_sep"
169
+ msgstr ""
170
+
171
+ #: application/helpers/TemplateHelper.php:116
172
+ msgid "d"
173
+ msgstr ""
174
+
175
+ #: application/helpers/TemplateHelper.php:118
176
+ msgid "h"
177
+ msgstr ""
178
+
179
+ #: application/helpers/TemplateHelper.php:120
180
+ #: application/helpers/TemplateHelper.php:122
181
+ #: application/modules/Ebay/templates/data_item.php:71
182
+ msgid "m"
183
+ msgstr ""
184
+
185
+ #: application/helpers/TemplateHelper.php:310
186
+ #: application/modules/Amazon/templates/data_compare.php:87
187
+ #: application/modules/Ozon/templates/data_compare.php:67
188
+ #: application/templates/data_price_tracker_alert.php:37
189
+ msgid "Price"
190
+ msgstr ""
191
+
192
+ #: application/modules/AE/templates/data_grid.php:7
193
+ #: application/modules/AdmitadProducts/templates/data_grid.php:7
194
+ #: application/modules/Affiliatewindow/templates/data_grid.php:7
195
+ #: application/modules/AffilinetProducts/templates/data_grid.php:7
196
+ #: application/modules/Aliexpress/templates/data_grid.php:7
197
+ #: application/modules/Amazon/templates/data_grid.php:9
198
+ #: application/modules/CityadsProducts/templates/data_grid.php:7
199
+ #: application/modules/CjProducts/templates/data_grid.php:7
200
+ #: application/modules/Ebay/templates/data_grid.php:7
201
+ #: application/modules/Envato/templates/data_grid.php:7
202
+ #: application/modules/Flipkart/templates/data_grid.php:7
203
+ #: application/modules/GdeSlon/templates/data_grid.php:7
204
+ #: application/modules/Impactradius/templates/data_grid.php:7
205
+ #: application/modules/Linkshare/templates/data_grid.php:7
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/Pepperjam/templates/data_grid.php:7
210
+ #: application/modules/Shareasale/templates/data_grid.php:7
211
+ #: application/modules/TradedoublerProducts/templates/data_grid.php:7
212
+ #: application/modules/Udemy/templates/data_grid.php:7
213
+ #: application/modules/Zanox/templates/data_grid.php:7
214
+ msgid "Grid"
215
+ msgstr ""
216
+
217
+ #: application/modules/AE/templates/data_item.php:7
218
+ #: application/modules/AdmitadProducts/templates/data_item.php:7
219
+ #: application/modules/Affiliatewindow/templates/data_item.php:7
220
+ #: application/modules/AffilinetProducts/templates/data_item.php:7
221
+ #: application/modules/Aliexpress/templates/data_item.php:7
222
+ #: application/modules/Amazon/templates/data_item.php:7
223
+ #: application/modules/CityadsProducts/templates/data_item.php:7
224
+ #: application/modules/CjProducts/templates/data_item.php:7
225
+ #: application/modules/Ebay/templates/data_item.php:6
226
+ #: application/modules/Envato/templates/data_item.php:7
227
+ #: application/modules/Flipkart/templates/data_item.php:7
228
+ #: application/modules/GdeSlon/templates/data_item.php:7
229
+ #: application/modules/Impactradius/templates/data_item.php:7
230
+ #: application/modules/Linkshare/templates/data_item.php:7
231
+ #: application/modules/Market/templates/data_item.php:5
232
+ #: application/modules/Offer/templates/data_item.php:7
233
+ #: application/modules/Optimisemedia/templates/data_item.php:7
234
+ #: application/modules/Ozon/templates/data_item.php:7
235
+ #: application/modules/PayTM/templates/data_item.php:7
236
+ #: application/modules/Pepperjam/templates/data_item.php:7
237
+ #: application/modules/Shareasale/templates/data_item.php:7
238
+ #: application/modules/TradedoublerProducts/templates/data_item.php:7
239
+ #: application/modules/Udemy/templates/data_item.php:7
240
+ #: application/modules/Zanox/templates/data_item.php:7
241
+ msgid "Product card"
242
+ msgstr ""
243
+
244
+ #: application/modules/AE/templates/data_list.php:6
245
+ #: application/modules/AdmitadProducts/templates/data_list.php:6
246
+ #: application/modules/Affiliatewindow/templates/data_list.php:6
247
+ #: application/modules/AffilinetProducts/templates/data_list.php:6
248
+ #: application/modules/Aliexpress/templates/data_list.php:6
249
+ #: application/modules/Amazon/templates/data_list.php:6
250
+ #: application/modules/CityadsProducts/templates/data_list.php:6
251
+ #: application/modules/CjProducts/templates/data_list.php:6
252
+ #: application/modules/Ebay/templates/data_list.php:6
253
+ #: application/modules/Envato/templates/data_list.php:6
254
+ #: application/modules/Flipkart/templates/data_list.php:6
255
+ #: application/modules/GdeSlon/templates/data_list.php:6
256
+ #: application/modules/Impactradius/templates/data_list.php:6
257
+ #: application/modules/Linkshare/templates/data_list.php:6
258
+ #: application/modules/Offer/templates/data_list.php:6
259
+ #: application/modules/Optimisemedia/templates/data_list.php:6
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/Udemy/templates/data_list.php:6
267
+ #: application/modules/Zanox/templates/data_list.php:6
268
+ msgid "List"
269
+ msgstr ""
270
+
271
+ #: application/modules/AE/templates/data_price_tracker_alert.php:7
272
+ #: application/modules/AdmitadProducts/templates/data_price_tracker_alert.php:7
273
+ #: application/modules/Affiliatewindow/templates/data_price_tracker_alert.php:7
274
+ #: application/modules/AffilinetProducts/templates/data_price_tracker_alert.php:7
275
+ #: application/modules/Aliexpress/templates/data_price_tracker_alert.php:7
276
+ #: application/modules/Amazon/templates/data_price_tracker_alert.php:7
277
+ #: application/modules/CjProducts/templates/data_price_tracker_alert.php:7
278
+ #: application/modules/Flipkart/templates/data_price_tracker_alert.php:7
279
+ #: application/modules/GdeSlon/templates/data_price_tracker_alert.php:7
280
+ #: application/modules/Impactradius/templates/data_price_tracker_alert.php:7
281
+ #: application/modules/Linkshare/templates/data_price_tracker_alert.php:7
282
+ #: application/modules/Offer/templates/data_price_tracker_alert.php:7
283
+ #: application/modules/Optimisemedia/templates/data_price_tracker_alert.php:7
284
+ #: application/modules/Ozon/templates/data_price_tracker_alert.php:7
285
+ #: application/modules/PayTM/templates/data_price_tracker_alert.php:7
286
+ #: application/modules/Pepperjam/templates/data_price_tracker_alert.php:7
287
+ #: application/modules/Shareasale/templates/data_price_tracker_alert.php:7
288
+ #: application/modules/TradedoublerProducts/templates/data_price_tracker_alert.php:7
289
+ #: application/modules/Zanox/templates/data_price_tracker_alert.php:7
290
+ #: application/templates/data_price_tracker_alert.php:5
291
+ msgid "Price tracker & alert"
292
+ msgstr ""
293
+
294
+ #: application/modules/AdmitadCoupons/templates/data_coupons.php:6
295
+ #: application/modules/AffilinetCoupons/templates/data_coupons.php:6
296
+ #: application/modules/TradedoublerCoupons/templates/data_coupons.php:6
297
+ msgid "Coupons"
298
+ msgstr ""
299
+
300
+ #: application/modules/Amazon/templates/data_compare.php:6
301
+ #: application/modules/Amazon/templates/data_compare.php:40
302
+ #: application/modules/Ozon/templates/data_compare.php:6
303
+ #: application/modules/Ozon/templates/data_compare.php:28
304
+ msgid "Compare"
305
+ msgstr ""
306
+
307
+ #: application/modules/Amazon/templates/data_compare.php:64
308
+ #: application/modules/Ozon/templates/data_compare.php:45
309
+ msgid "User Rating"
310
+ msgstr ""
311
+
312
+ #: application/modules/Amazon/templates/data_compare.php:75
313
+ msgid "ratings"
314
+ msgstr ""
315
+
316
+ #: application/modules/Amazon/templates/data_compare.php:79
317
+ #: application/modules/Ozon/templates/data_compare.php:59
318
+ msgid "See all reviews"
319
+ msgstr ""
320
+
321
+ #: application/modules/Amazon/templates/data_compare.php:99
322
+ #: application/templates/data_item.php:49
323
+ #: application/templates/data_list.php:68 templates/block_offers_list.php:69
324
+ #: templates/block_offers_logo.php:47
325
+ msgid "Too low to display"
326
+ msgstr ""
327
+
328
+ #: application/modules/Amazon/templates/data_compare.php:102
329
+ #: application/modules/Ebay/templates/data_item.php:81
330
+ #: application/templates/blocks/item_after_price_row.php:20
331
+ #: application/templates/data_list.php:75 templates/block_offers_list.php:77
332
+ #: templates/block_offers_logo.php:56
333
+ msgid "Free shipping"
334
+ msgstr ""
335
+
336
+ #: application/modules/Amazon/templates/data_compare.php:108
337
+ #: application/templates/blocks/item_after_price_row.php:9
338
+ #: application/templates/data_list.php:40
339
+ msgid "new"
340
+ msgstr ""
341
+
342
+ #: application/modules/Amazon/templates/data_compare.php:110
343
+ #: application/modules/Amazon/templates/data_compare.php:115
344
+ #: application/templates/blocks/item_after_price_row.php:11
345
+ #: application/templates/blocks/item_after_price_row.php:16
346
+ #: application/templates/data_list.php:42
347
+ #: application/templates/data_list.php:49
348
+ msgid "from"
349
+ msgstr ""
350
+
351
+ #: application/modules/Amazon/templates/data_compare.php:115
352
+ #: application/templates/blocks/item_after_price_row.php:16
353
+ #: application/templates/data_list.php:49
354
+ msgid "used"
355
+ msgstr ""
356
+
357
+ #: application/modules/Amazon/templates/data_compare.php:128
358
+ #: application/modules/Amazon/templates/data_compare.php:249
359
+ #: application/modules/Ozon/templates/data_compare.php:85
360
+ #: application/modules/Ozon/templates/data_compare.php:166
361
+ msgid "Shop Now"
362
+ msgstr ""
363
+
364
+ #: application/modules/Amazon/templates/data_compare.php:132
365
+ #: application/modules/Amazon/templates/data_compare.php:253
366
+ #: application/modules/Ebay/templates/data_item.php:53
367
+ #: application/modules/Ozon/templates/data_compare.php:89
368
+ #: application/modules/Ozon/templates/data_compare.php:170
369
+ #: application/templates/data_price_tracker_alert.php:44
370
+ msgid "BUY THIS ITEM"
371
+ msgstr "קנה בחנות"
372
+
373
+ #: application/modules/Amazon/templates/data_compare.php:141
374
+ #: application/templates/blocks/item_features.php:3
375
+ #: application/templates/blocks/item_features.php:13
376
+ #: application/templates/blocks/item_features.php:22
377
+ #: application/templates/blocks/item_features.php:31
378
+ #: application/templates/blocks/item_features.php:40
379
+ #: application/templates/blocks/item_features.php:49
380
+ msgid "Features"
381
+ msgstr ""
382
+
383
+ #: application/modules/Amazon/templates/data_compare.php:191
384
+ #: application/modules/Ozon/templates/data_compare.php:139
385
+ msgid "User Reviews"
386
+ msgstr ""
387
+
388
+ #: application/modules/Amazon/templates/data_compare.php:216
389
+ msgid "Expert Reviews"
390
+ msgstr ""
391
+
392
+ #: application/modules/Amazon/templates/data_compare.php:232
393
+ msgid "Barcodes"
394
+ msgstr ""
395
+
396
+ #: application/modules/Amazon/templates/data_compare.php:260
397
+ msgid "Images"
398
+ msgstr ""
399
+
400
+ #: application/modules/BingImages/templates/data_image.php:5
401
+ #: application/modules/GoogleImages/templates/data_image.php:5
402
+ #: application/modules/Pixabay/templates/data_image.php:5
403
+ msgid "Image"
404
+ msgstr ""
405
+
406
+ #: application/modules/BingImages/templates/data_justified_gallery.php:7
407
+ #: application/modules/Flickr/templates/data_justified_gallery.php:7
408
+ #: application/modules/GoogleImages/templates/data_justified_gallery.php:7
409
+ #: application/modules/Ozon/templates/data_compare.php:179
410
+ #: application/modules/Pixabay/templates/data_justified_gallery.php:7
411
+ msgid "Gallery"
412
+ msgstr ""
413
+
414
+ #: application/modules/CjLinks/templates/data_universal.php:6
415
+ msgid "Universal"
416
+ msgstr ""
417
+
418
+ #: application/modules/CjLinks/templates/data_universal.php:38
419
+ #: application/templates/data_coupon.php:37
420
+ msgid "Ends:"
421
+ msgstr ""
422
+
423
+ #: application/modules/CjLinks/templates/data_universal.php:49
424
+ #: application/templates/data_coupon.php:53
425
+ msgid "Shop Sale"
426
+ msgstr ""
427
+
428
+ #: application/modules/Clickbank/templates/data_simple.php:6
429
+ #: application/modules/Flickr/templates/data_simple.php:5
430
+ #: application/modules/Freebase/templates/data_simple.php:5
431
+ #: application/modules/GoogleBooks/templates/data_simple.php:5
432
+ #: application/modules/GoogleImages/templates/data_simple.php:5
433
+ #: application/modules/Twitter/templates/data_simple.php:5
434
+ #: application/modules/VkNews/templates/data_simple.php:5
435
+ #: application/modules/Youtube/templates/data_simple.php:5
436
+ msgid "Simple"
437
+ msgstr ""
438
+
439
+ #: application/modules/Ebay/templates/data_item.php:39
440
+ msgid "Buy It Now"
441
+ msgstr "קנה עכשיו"
442
+
443
+ #: application/modules/Ebay/templates/data_item.php:53
444
+ msgid "VIEW THIS ITEM"
445
+ msgstr "צפה במוצר זה"
446
+
447
+ #: application/modules/Ebay/templates/data_item.php:58
448
+ #: application/templates/data_grid.php:67
449
+ msgid "Bids:"
450
+ msgstr ""
451
+
452
+ #: application/modules/Ebay/templates/data_item.php:63
453
+ msgid "Item condition:"
454
+ msgstr ""
455
+
456
+ #: application/modules/Ebay/templates/data_item.php:70
457
+ msgid "Time left:"
458
+ msgstr ""
459
+
460
+ #: application/modules/Ebay/templates/data_item.php:75
461
+ msgid "Ended:"
462
+ msgstr ""
463
+
464
+ #: application/modules/Ebay/templates/data_item.php:85
465
+ msgid "EEK:"
466
+ msgstr ""
467
+
468
+ #: application/modules/Envato/templates/_item_details.php:2
469
+ #: application/modules/Udemy/templates/_item_details.php:2
470
+ msgid "What Will I Learn?"
471
+ msgstr ""
472
+
473
+ #: application/modules/Envato/templates/_item_details.php:10
474
+ #: application/modules/Udemy/templates/_item_details.php:10
475
+ msgid "Requirements"
476
+ msgstr ""
477
+
478
+ #: application/modules/Envato/templates/_item_details.php:18
479
+ #: application/modules/Udemy/templates/_item_details.php:18
480
+ msgid "Target audience"
481
+ msgstr ""
482
+
483
+ #: application/modules/Flickr/templates/data_justified_gallery.php:62
484
+ msgid "Photo: %s on Flickr"
485
+ msgstr ""
486
+
487
+ #: application/modules/Flickr/templates/data_simple.php:20
488
+ msgid "Photo %s on Flickr"
489
+ msgstr ""
490
+
491
+ #: application/modules/Freebase/templates/data_simple.php:27
492
+ msgid "Source:"
493
+ msgstr ""
494
+
495
+ #: application/modules/Market/templates/data_item.php:33
496
+ msgid "Customer reviews:"
497
+ msgstr ""
498
+
499
+ #: application/modules/Market/templates/data_item.php:43
500
+ msgid "Average price"
501
+ msgstr ""
502
+
503
+ #: application/modules/Market/templates/data_item.php:50
504
+ msgid "Data from Yandex.Market"
505
+ msgstr ""
506
+
507
+ #: application/modules/Market/templates/data_item.php:83
508
+ msgid "free"
509
+ msgstr ""
510
+
511
+ #: application/modules/Market/templates/data_item.php:90
512
+ msgid "Pickup"
513
+ msgstr ""
514
+
515
+ #: application/modules/Market/templates/data_item.php:94
516
+ msgid "In stock"
517
+ msgstr ""
518
+
519
+ #: application/modules/Market/templates/data_item.php:96
520
+ msgid "Not available"
521
+ msgstr ""
522
+
523
+ #: application/modules/Market/templates/data_item.php:101
524
+ msgid "Visit store"
525
+ msgstr ""
526
+
527
+ #: application/modules/Market/templates/data_item.php:109
528
+ #: application/templates/blocks/item_reviews.php:4
529
+ #: application/templates/blocks/item_reviews.php:57
530
+ msgid "Customer reviews"
531
+ msgstr ""
532
+
533
+ #: application/modules/Market/templates/data_item.php:127
534
+ msgid "Pros:"
535
+ msgstr ""
536
+
537
+ #: application/modules/Market/templates/data_item.php:128
538
+ msgid "Cons:"
539
+ msgstr ""
540
+
541
+ #: application/modules/Market/templates/data_item.php:129
542
+ msgid "Comment:"
543
+ msgstr ""
544
+
545
+ #: application/modules/Market/templates/data_item.php:135
546
+ msgid "All reviews on Yandex.Market"
547
+ msgstr ""
548
+
549
+ #: application/modules/Offer/views/metabox_module.php:97
550
+ msgid "Last update: "
551
+ msgstr ""
552
+
553
+ #: application/modules/Ozon/templates/data_compare.php:56
554
+ msgid "Reviews:"
555
+ msgstr ""
556
+
557
+ #: application/modules/Ozon/templates/data_compare.php:98
558
+ msgid "Description"
559
+ msgstr ""
560
+
561
+ #: application/modules/Youtube/templates/data_responsive_embed.php:5
562
+ msgid "Large"
563
+ msgstr ""
564
+
565
+ #: application/modules/Youtube/templates/data_tile.php:5
566
+ msgid "Tile"
567
+ msgstr ""
568
+
569
+ #: application/templates/blocks/item_features.php:59
570
+ msgid "Specifications"
571
+ msgstr ""
572
+
573
+ #: application/templates/blocks/item_reviews.php:9
574
+ msgid "customer reviews"
575
+ msgstr ""
576
+
577
+ #: application/templates/blocks/item_reviews.php:37
578
+ msgid "User reviews"
579
+ msgstr ""
580
+
581
+ #: application/templates/blocks/item_reviews.php:51
582
+ msgid "View all reviews"
583
+ msgstr ""
584
+
585
+ #: application/templates/blocks/price_alert_inline.php:8
586
+ msgid "Wait For A Price Drop"
587
+ msgstr "חכה לירידה במחיר"
588
+
589
+ #: application/templates/blocks/price_alert_inline.php:14
590
+ #: application/templates/blocks/price_alert_inline.php:15
591
+ msgid "Your Email"
592
+ msgstr "דוא\"ל שלך"
593
+
594
+ #: application/templates/blocks/price_alert_inline.php:18
595
+ #: application/templates/blocks/price_alert_inline.php:24
596
+ msgid "Desired Price"
597
+ msgstr "מחיר מבוקש"
598
+
599
+ #: application/templates/blocks/price_alert_inline.php:30
600
+ msgid "SET ALERT"
601
+ msgstr "קבע לקבל התראה"
602
+
603
+ #: application/templates/blocks/price_alert_inline.php:35
604
+ msgid "You will receive a notification when the price drops."
605
+ msgstr "אתה תקבל התראות על ירידות מחירים."
606
+
607
+ #: application/templates/blocks/price_history.php:5
608
+ msgid "Price History"
609
+ msgstr "היסטוריית מחירים"
610
+
611
+ #: application/templates/blocks/price_history.php:14
612
+ msgid "Statistics"
613
+ msgstr "סטטיסטיקות"
614
+
615
+ #: application/templates/blocks/price_history.php:17
616
+ msgid "Current Price"
617
+ msgstr "מחיר נוכחי"
618
+
619
+ #: application/templates/blocks/price_history.php:29
620
+ msgid "Highest Price"
621
+ msgstr "המחיר הגבוה ביותר"
622
+
623
+ #: application/templates/blocks/price_history.php:35
624
+ msgid "Lowest Price"
625
+ msgstr "המחיר הנמוך ביותר"
626
+
627
+ #: application/templates/blocks/price_history.php:41
628
+ msgid "Since"
629
+ msgstr "החל מתאריך"
630
+
631
+ #: application/templates/blocks/price_history.php:44
632
+ msgid "Last price changes"
633
+ msgstr "שינויים אחרונים במחיר"
634
+
635
+ #: application/templates/data_coupon.php:25
636
+ #: application/templates/data_coupon.php:32
637
+ msgid "OFF"
638
+ msgstr ""
639
+
640
+ #: application/templates/data_grid.php:72
641
+ #: application/templates/data_item.php:56
642
+ #: application/templates/data_list.php:72 templates/block_offers_list.php:74
643
+ #: templates/block_offers_logo.php:53
644
+ msgid "Buy This Item"
645
+ msgstr "לקניית המוצר"
646
+
647
+ #: application/templates/data_grid.php:85
648
+ #: application/templates/data_list.php:85
649
+ msgid "Last updated on"
650
+ msgstr "עודכן לאחרונה ב-"
651
+
652
+ #: templates/block_offers_list.php:9
653
+ msgid "All offers list"
654
+ msgstr ""
655
+
656
+ #: templates/block_offers_logo.php:9
657
+ msgid "All offers list with logos"
658
+ msgstr ""
659
+
660
+ #: templates/block_price_statistics.php:10
661
+ msgid "Price statistics"
662
+ msgstr "סטטיסטיקת מחירים"
663
+
664
+ #: templates/block_price_statistics.php:34
665
+ msgid "All prices mentioned above are in %s."
666
+ msgstr "כל המחירים נקובים ב- %s."
667
+
668
+ #: templates/block_price_statistics.php:37
669
+ msgid "This product is available in %s."
670
+ msgstr "ניתן לקנות את המוצר באתרים הבאים: %s."
671
+
672
+ #: templates/block_price_statistics.php:39
673
+ msgid "At %s you can purchase %s for only %s"
674
+ msgstr "באתר %s ניתן לקנות את ה- %s עבור %s בלבד"
675
+
676
+ #: templates/block_price_statistics.php:39
677
+ msgid "which is %s%% less than the cost in %s (%s)."
678
+ msgstr ", מחיר שהוא נמוך ב-%s%% מהמחיר ב- %s (%s)."
679
+
680
+ #: templates/block_price_statistics.php:40
681
+ msgid "The lowest price of %s was obtained on %s."
682
+ msgstr "המחיר הנמוך ביותר שנמצא על %s נכון ומעודכן לתאריך %s."
683
+
684
+ #. Plugin Name of the plugin/theme
685
+ msgid "Content Egg"
686
+ msgstr ""
687
+
688
+ #. Plugin URI of the plugin/theme
689
+ msgid "http://www.keywordrush.com/contentegg"
690
+ msgstr ""
691
+
692
+ #. Description of the plugin/theme
693
+ msgid ""
694
+ "Easily adding auto updating products from affiliate systems and additional "
695
+ "content to posts. [ATTENTION: before update PRO version of plugin, activate "
696
+ "plugin!]"
697
+ msgstr ""
698
+
699
+ #. Author of the plugin/theme
700
+ msgid "keywordrush.com"
701
+ msgstr ""
702
+
703
+ #. Author URI of the plugin/theme
704
+ msgid "http://www.keywordrush.com"
705
+ msgstr ""
readme.txt CHANGED
@@ -3,7 +3,7 @@ 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, udemy, envato
4
  Requires at least: 4.2.2
5
  Tested up to: 4.7.2
6
- Stable tag: 3.5.0
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
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, udemy, envato
4
  Requires at least: 4.2.2
5
  Tested up to: 4.7.2
6
+ Stable tag: 3.5.1
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9