Ecwid Ecommerce Shopping Cart - Version 3.2.2

Version Description

Download this release

Release Info

Developer Ecwid
Plugin Icon 128x128 Ecwid Ecommerce Shopping Cart
Version 3.2.2
Comparing to
See all releases

Code changes from version 3.2.1 to 3.2.2

ecwid-shopping-cart.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://www.ecwid.com?source=wporg
5
  Description: Ecwid is a free full-featured shopping cart. It can be easily integrated with any Wordpress blog and takes less than 5 minutes to set up.
6
  Text Domain: ecwid-shopping-cart
7
  Author: Ecwid Team
8
- Version: 3.2.1
9
  Author URI: http://www.ecwid.com?source=wporg
10
  */
11
 
@@ -256,6 +256,27 @@ function ecwid_add_frontend_styles() {
256
 
257
  if ((bool)get_option('ecwid_use_chameleon')) {
258
  wp_enqueue_script('ecwid-chameleon-js', plugins_url('ecwid-shopping-cart/js/ecwid-chameleon.js'), array(), get_option('ecwid_plugin_version'), true);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
259
  }
260
 
261
  if (is_active_widget(false, false, 'ecwidrecentlyviewed')) {
@@ -410,6 +431,9 @@ function ecwid_check_version()
410
  do_action('ecwid_plugin_upgraded', array( 'old' => $stored_version, 'new' => $current_version ) );
411
  update_option('ecwid_plugin_version', $current_version);
412
 
 
 
 
413
  }
414
  }
415
 
@@ -815,10 +839,10 @@ function ecwid_content_started($content)
815
 
816
  function ecwid_wrap_shortcode_content($content, $name)
817
  {
818
- return "<!-- Ecwid shopping cart plugin v 3.2.1 -->"
819
  . ecwid_get_scriptjs_code()
820
  . "<div class=\"ecwid-shopping-cart-$name\">$content</div>"
821
- . "<!-- END Ecwid Shopping Cart v 3.2.1 -->";
822
  }
823
 
824
  function ecwid_get_scriptjs_code($force_lang = null) {
@@ -1240,6 +1264,10 @@ EOT;
1240
  // Does not affect updates, automatically turned on for new users only
1241
  add_option("ecwid_advanced_theme_layout", get_option('ecwid_store_id') == ECWID_DEMO_STORE_ID ? 'Y' : 'N', 'yes');
1242
 
 
 
 
 
1243
  /* All new options should go to check_version thing */
1244
 
1245
  $id = get_option("ecwid_store_page_id");
5
  Description: Ecwid is a free full-featured shopping cart. It can be easily integrated with any Wordpress blog and takes less than 5 minutes to set up.
6
  Text Domain: ecwid-shopping-cart
7
  Author: Ecwid Team
8
+ Version: 3.2.2
9
  Author URI: http://www.ecwid.com?source=wporg
10
  */
11
 
256
 
257
  if ((bool)get_option('ecwid_use_chameleon')) {
258
  wp_enqueue_script('ecwid-chameleon-js', plugins_url('ecwid-shopping-cart/js/ecwid-chameleon.js'), array(), get_option('ecwid_plugin_version'), true);
259
+
260
+ $primary = get_option('ecwid_chameleon_primary');
261
+ $background = get_option('ecwid_chameleon_background');
262
+ $links = get_option('ecwid_chameleon_links');
263
+
264
+ $localize = array();
265
+
266
+ if (get_option('ecwid_chameleon_primary')) {
267
+ $localize['primary_color'] = get_option('ecwid_chameleon_primary');
268
+ }
269
+ if (get_option('ecwid_chameleon_background')) {
270
+ $localize['primary_background'] = get_option('ecwid_chameleon_background');
271
+ }
272
+ if (get_option('ecwid_chameleon_links')) {
273
+ $localize['primary_link'] = get_option('ecwid_chameleon_links');
274
+ }
275
+
276
+ if (!empty($localize)) {
277
+ wp_localize_script('ecwid-chameleon-js', 'ecwidChameleon', $localize);
278
+ }
279
+
280
  }
281
 
282
  if (is_active_widget(false, false, 'ecwidrecentlyviewed')) {
431
  do_action('ecwid_plugin_upgraded', array( 'old' => $stored_version, 'new' => $current_version ) );
432
  update_option('ecwid_plugin_version', $current_version);
433
 
434
+ add_option('ecwid_chameleon_primary', '');
435
+ add_option('ecwid_chameleon_background', '');
436
+ add_option('ecwid_chameleon_links', '');
437
  }
438
  }
439
 
839
 
840
  function ecwid_wrap_shortcode_content($content, $name)
841
  {
842
+ return "<!-- Ecwid shopping cart plugin v 3.2.2 -->"
843
  . ecwid_get_scriptjs_code()
844
  . "<div class=\"ecwid-shopping-cart-$name\">$content</div>"
845
+ . "<!-- END Ecwid Shopping Cart v 3.2.2 -->";
846
  }
847
 
848
  function ecwid_get_scriptjs_code($force_lang = null) {
1264
  // Does not affect updates, automatically turned on for new users only
1265
  add_option("ecwid_advanced_theme_layout", get_option('ecwid_store_id') == ECWID_DEMO_STORE_ID ? 'Y' : 'N', 'yes');
1266
 
1267
+ add_option('ecwid_chameleon_primary', '');
1268
+ add_option('ecwid_chameleon_background', '');
1269
+ add_option('ecwid_chameleon_links', '');
1270
+
1271
  /* All new options should go to check_version thing */
1272
 
1273
  $id = get_option("ecwid_store_page_id");
includes/class-ecwid-oauth.php CHANGED
@@ -86,4 +86,4 @@ class Ecwid_OAuth {
86
  }
87
  }
88
 
89
- $ecwid_oauth = new Ecwid_OAuth();
86
  }
87
  }
88
 
89
+ $ecwid_oauth = new Ecwid_OAuth();
includes/themes/class-ecwid-theme-customizr.php CHANGED
@@ -1,20 +1,20 @@
1
- <?php
2
-
3
- require_once ECWID_THEMES_DIR . '/class-ecwid-theme-base.php';
4
-
5
- class Ecwid_Theme_Customizr extends Ecwid_Theme_Base
6
- {
7
- protected $name = 'Customizr';
8
-
9
- protected $adjust_pb_scroll = true;
10
-
11
- public function __construct()
12
- {
13
- parent::__construct();
14
-
15
- wp_enqueue_script( 'ecwid-theme-js', plugins_url( 'ecwid-shopping-cart/js/themes/customizr.js' ), array( 'jquery' ), get_option('ecwid_plugin_version'), true );
16
- wp_enqueue_style( 'ecwid-theme-fixes' , plugins_url( 'ecwid-shopping-cart/css/themes/customizr.css' ), array(), get_option('ecwid_plugin_version'), 'all' );
17
- }
18
- }
19
-
20
  $ecwid_current_theme = new Ecwid_Theme_Customizr();
1
+ <?php
2
+
3
+ require_once ECWID_THEMES_DIR . '/class-ecwid-theme-base.php';
4
+
5
+ class Ecwid_Theme_Customizr extends Ecwid_Theme_Base
6
+ {
7
+ protected $name = 'Customizr';
8
+
9
+ protected $adjust_pb_scroll = true;
10
+
11
+ public function __construct()
12
+ {
13
+ parent::__construct();
14
+
15
+ wp_enqueue_script( 'ecwid-theme-js', plugins_url( 'ecwid-shopping-cart/js/themes/customizr.js' ), array( 'jquery' ), get_option('ecwid_plugin_version'), true );
16
+ wp_enqueue_style( 'ecwid-theme-fixes' , plugins_url( 'ecwid-shopping-cart/css/themes/customizr.css' ), array(), get_option('ecwid_plugin_version'), 'all' );
17
+ }
18
+ }
19
+
20
  $ecwid_current_theme = new Ecwid_Theme_Customizr();
js/ecwid-chameleon.js CHANGED
@@ -1,251 +1,251 @@
1
- if (typeof(Ecwid) == 'object') {
2
- Ecwid.OnAPILoaded.add(function() {
3
-
4
- var html_id = document.getElementsByTagName("html")[0].id;
5
- var body_id = document.getElementsByTagName("body")[0].id;;
6
- var css_prefix = 'html#'+html_id+' body#'+body_id+'.chameleon';
7
-
8
- var css = '';
9
- var parent = document.querySelector('.ecwid').parentNode;
10
- var computedStyle = getComputedStyle(parent, null);
11
-
12
- var primary_color = tinycolor( (typeof ecwidChameleon !== 'undefined' && typeof ecwidChameleon.primary_color !== 'undefined') ? ecwidChameleon.primary_color : computedStyle.color );
13
- var primary_background = tinycolor( (typeof ecwidChameleon !== 'undefined' && typeof ecwidChameleon.primary_background !== 'undefined') ? ecwidChameleon.primary_background : getBackground(parent) );
14
-
15
- if (typeof ecwidChameleon !== 'undefined' && typeof ecwidChameleon.primary_background !== 'undefined') {
16
- var primary_link = tinycolor( ecwidChameleon.primary_link );
17
- }
18
- else {
19
- var a = document.createElement('a');
20
- a.href = a.textContent = url = '';
21
- parent.appendChild(a);
22
- var primary_link = tinycolor( document.defaultView.getComputedStyle(a, null).color );
23
- parent.removeChild(a);
24
- }
25
-
26
- if (tinycolor.equals(primary_background, 'transparent')) {
27
- primary_background = tinycolor('#fff');
28
- }
29
-
30
- var accent_color = tinycolor(primary_link.toString()).darken(15).brighten();
31
- var muted_accent_color = tinycolor(primary_link.toString()).darken(15).setAlpha(.6);
32
-
33
- var hover_link = tinycolor(primary_link.toString()).lighten(20);
34
- var muted_color = (primary_color.isLight()) ? tinycolor(primary_color.toString()).darken(15) : tinycolor(primary_color.toString()).lighten(20);
35
- var muted_link = tinycolor(primary_color.toString()).lighten(20);
36
- var secondary_link = tinycolor(primary_link.toString()).darken(20);
37
-
38
- var border_color = tinycolor(primary_color.toString()).setAlpha(.1);
39
-
40
- var muted_background = tinycolor(primary_background.toString());
41
- var muted_background = (muted_background.isLight()) ? muted_background.darken(5) : muted_background.lighten(15);
42
- var muted_soft_background = tinycolor(primary_background.toString());
43
- var muted_soft_background = (muted_soft_background.isLight()) ? muted_soft_background.darken(10) : muted_soft_background.lighten(20);
44
- var hover_background = tinycolor(primary_link.toString()).lighten(20).setAlpha(.2);
45
-
46
- var button_border_color = tinycolor(hover_link.toString()).darken(5);
47
- var button_hover_top = tinycolor(hover_link.toString()).lighten(5);
48
- var button_hover_bottom = tinycolor(primary_link.toString()).lighten(5);
49
- var button_shadow = tinycolor(button_border_color.toString()).lighten(15).setAlpha(.3);
50
- var button_hover_shadow = tinycolor(button_border_color.toString()).lighten(15).setAlpha(.4);
51
- var button_border_hover_color = tinycolor(hover_link.toString());
52
-
53
- // Additional rules
54
- if (!tinycolor.isReadable(accent_color, muted_soft_background)) {
55
- accent_color = tinycolor(secondary_link.toString()).brighten(20);
56
- muted_accent_color = tinycolor(secondary_link.toString()).lighten(20);
57
- }
58
- if (!tinycolor.isReadable(secondary_link, '#F0F0F0')) {
59
- secondary_link = (secondary_link.isLight()) ? tinycolor(secondary_link.toString()).darken() : tinycolor(secondary_link.toString()).lighten();
60
- }
61
- var button_color = tinycolor('#fff');
62
- if (!tinycolor.isReadable(button_color, primary_link)) {
63
- button_color = tinycolor(primary_background.toString());
64
- }
65
-
66
- // Font family
67
- css+= css_prefix + ' .ecwid, ' + css_prefix + ' .ecwid * { font-family: inherit !important; }\n';
68
-
69
- // Primary colors
70
- css+= css_prefix + ' div.ecwid-productBrowser-head{ color: '+ primary_color.toString() +'; }\n';
71
- css+= css_prefix + ' div.ecwid-productBrowser-productNameLink a, ' + css_prefix + ' div.ecwid-productBrowser-productNameLink a:active, ' + css_prefix + ' div.ecwid-productBrowser-productNameLink a:visited{ color: '+ muted_color.toString() +'; }\n';
72
- css+= css_prefix + ' div.ecwid-productBrowser-productsGrid-productMiddleFragment-mouseover div.ecwid-productBrowser-productNameLink a, ' + css_prefix + ' div.ecwid-productBrowser-productsGrid-productMiddleFragment-mouseover div.ecwid-productBrowser-productNameLink a:active, ' + css_prefix + ' div.ecwid-productBrowser-productsGrid-productMiddleFragment-mouseover div.ecwid-productBrowser-productNameLink a:visited{ font-size: 17px; color: '+ primary_color.toString() +'; }\n';
73
- css+= css_prefix + ' div.ecwid-productBrowser-cart div.ecwid-productBrowser-productNameLink a, ' + css_prefix + ' div.ecwid-productBrowser-cart div.ecwid-productBrowser-productNameLink a:active, ' + css_prefix + ' div.ecwid-productBrowser-cart div.ecwid-productBrowser-productNameLink a:visited{ color: '+ primary_color.toString() +'; }\n';
74
- css+= css_prefix + ' div.ecwid-productBrowser-cart div.ecwid-productBrowser-price{ color: '+ primary_color.toString() +'; }\n';
75
- css+= css_prefix + ' div.ecwid-productBrowser-cart-subtotalAmount, ' + css_prefix + ' div.ecwid-productBrowser-cart-subtotalAmountMinus, ' + css_prefix + ' div.ecwid-productBrowser-cart-shippingAmount, ' + css_prefix + ' div.ecwid-productBrowser-cart-taxAmount{ color: '+ primary_color.toString() +'; }\n';
76
- css+= css_prefix + ' div.ecwid-productBrowser-cart-totalLabel{ color: '+ primary_color.toString() +'; }\n';
77
- css+= css_prefix + ' table.ecwid-productBrowser-productsTable-v2 div.ecwid-productBrowser-productNameLink:hover a, ' + css_prefix + ' table.ecwid-productBrowser-productsList-v2 div.ecwid-productBrowser-productNameLink:hover a, ' + css_prefix + ' table.ecwid-productBrowser-productsGrid-v2 div.ecwid-productBrowser-productNameLink:hover a { color: '+ primary_color.toString() +'; }\n';
78
- css+= css_prefix + ' table.ecwid-Invoice-itemsTable .ecwid-productBrowser-price, ' + css_prefix + ' table.ecwid-Invoice-itemsTable .ecwid-Invoice-qtyLabel{ color: '+ primary_color.toString() +'; }\n';
79
-
80
- // Muted colors
81
- css+= css_prefix + ' .ecwid{ color: '+ muted_color.toString() +'; }\n';
82
- css+= css_prefix + ' div.ecwid-productBrowser-categoryPath{ color: '+ muted_color.toString() +'; }\n';
83
- css+= css_prefix + ' div.ecwid-productBrowser-subcategories-categoryName{ color: '+ muted_color.toString() +'; }\n';
84
- css+= css_prefix + ' div.ecwid-results-topPanel div.ecwid-results-topPanel-itemsCountLabel{ color: '+ muted_color.toString() +'; }\n';
85
- css+= css_prefix + ' div.ecwid-productBrowser-sku{ color: '+ muted_color.toString() +'; }\n';
86
- css+= css_prefix + ' div.ecwid-results-topPanel div{ color: '+ muted_color.toString() +'; }\n';
87
- css+= css_prefix + ' div.ecwid-productBrowser-details-optionPanel label.ecwid-fieldLabel{ color: '+ muted_color.toString() +'; }\n';
88
- css+= css_prefix + ' div.ecwid-productBrowser-details-qtyLabel{ color: '+ muted_color.toString() +'; }\n';
89
- css+= css_prefix + ' div.ecwid-productBrowser-cart div.ecwid-productBrowser-sku{ color: '+ muted_color.toString() +'; }\n';
90
- css+= css_prefix + ' span.ecwid-productBrowser-cart-weight{ color: '+ muted_color.toString() +'; }\n';
91
- css+= css_prefix + ' div.ecwid-productBrowser-cart-optionsList{ color: '+ muted_color.toString() +'; }\n';
92
- css+= css_prefix + ' div.ecwid-productBrowser-cart-subtotalLabel,' + css_prefix + ' div.ecwid-productBrowser-cart-shippingLabel,' + css_prefix + ' div.ecwid-productBrowser-cart-taxLabel{ color: '+ muted_color.toString() +'; }\n';
93
- css+= css_prefix + ' div.ecwid-productBrowser-cart-estimationNote{ color: '+ muted_color.toString() +'; }\n';
94
- css+= css_prefix + ' label.ecwid-fieldLabel{ color: '+ muted_color.toString() +'; }\n';
95
- css+= css_prefix + ' div.ecwid-FormPopup-fieldWrapper label.ecwid-fieldLabel{ color: '+ muted_color.toString() +'; }\n';
96
- css+= css_prefix + ' div.ecwid-Checkout-PasswordBlock-tip{ color: '+ muted_color.toString() +'; }\n';
97
- css+= css_prefix + ' div.ecwid-pager{ color: '+ muted_color.toString() +'; }\n';
98
- css+= css_prefix + ' div.ecwid-pager span.ecwid-pager-link-disabled{ color: '+ muted_color.toString() +'; }\n';
99
- css+= css_prefix + ' div.ecwid-productBrowser-details-inTheBag div{ color: '+ muted_color.toString() +'; }\n';
100
- css+= css_prefix + ' div.ecwid-productBrowser-productsList-descr{ color: '+ muted_color.toString() +'; }\n';
101
- css+= css_prefix + ' div.ecwid-productBrowser-productsTable div.ecwid-productBrowser-sku{ color: '+ muted_color.toString() +'; }\n';
102
- css+= css_prefix + ' div.ecwid-productBrowser-extraFields-side{ color: '+ muted_color.toString() +'; }\n';
103
- css+= css_prefix + ' div.ecwid-Invoice-block{ color: '+ muted_color.toString() +'; }\n';
104
- css+= css_prefix + ' table.ecwid-Invoice-itemsTable .ecwid-productBrowser-sku{ color: '+ muted_color.toString() +'; }\n';
105
- css+= css_prefix + ' table.ecwid-Invoice-itemsTable .ecwid-Invoice-optionsList{ color: '+ muted_color.toString() +'; }\n';
106
- css+= css_prefix + ' table.ecwid-Invoice-itemsTable .ecwid-productBrowser-price,' + css_prefix + ' table.ecwid-Invoice-itemsTable .ecwid-Invoice-qtyLabel{ color: '+ muted_color.toString() +'; }\n';
107
- css+= css_prefix + ' div.ecwid-Invoice-Summary-label,' + css_prefix + ' div.ecwid-Invoice-Summary-value{ color: '+ muted_color.toString() +'; }\n';
108
- css+= css_prefix + ' div.ecwid-Invoice-header-placeOrder div.gwt-Label,' + css_prefix + ' div.ecwid-Invoice-footer-placeOrder div.gwt-Label,' + css_prefix + ' td.ecwid-Invoice-header-orderConfirmation-text,' + css_prefix + ' td.ecwid-Invoice-footer-orderConfirmation-text{ color: '+ muted_color.toString() +'; }\n';
109
- css+= css_prefix + ' div.ecwid-productBrowser-details-outOfStockLabel{ color: '+ muted_color.toString() +'; }\n';
110
-
111
- // Borders
112
- css+= css_prefix + ' div.ecwid-productBrowser-productsGrid-productTopFragment-mouseover,' + css_prefix + ' div.ecwid-productBrowser-productsGrid-productBottomFragment-mouseover{ border-color: '+ border_color.toString() +'; }\n';
113
- css+= css_prefix + ' .ecwid-productBrowser-productsGrid-v2 td.ecwid-productBrowser-productsGrid-productInside.ecwid-productBrowser-productsGrid-hover{ border-color: '+ border_color.toString() +'; }\n';
114
- css+= css_prefix + ' td.ecwid-productBrowser-productsList-mouseover{ border-color: '+ border_color.toString() +'; }\n';
115
- css+= css_prefix + ' .ecwid-productBrowser-relatedProducts .ecwid-productBrowser-relatedProducts-item-top-hover{ border-color: '+ border_color.toString() +'; }\n';
116
- css+= css_prefix + ' .ecwid-productBrowser-relatedProducts .ecwid-productBrowser-relatedProducts-item-bottom-hover{ border-color: '+ border_color.toString() +'; }\n';
117
- css+= css_prefix + ' table.ecwid-categoriesTabBar div.gwt-TabBarFirst,' + css_prefix + ' table.ecwid-categoriesTabBar div.gwt-TabBarRest,' + css_prefix + ' table.ecwid-categoriesTabBar table.gwt-TabBarItem,' + css_prefix + ' div.ecwid-categories-horizontal-menuBarContainer,' + css_prefix + ' td.ecwid-categories-vertical-table-cell,' + css_prefix + ' div.ecwid-categories-MenuBarPopup div.menuSeparatorInner{ border-color: '+ border_color.toString() +'; }\n';
118
-
119
- // Accents
120
- css+= css_prefix + ' div.ecwid-productBrowser-price{ color: '+ accent_color.toString() +'; }\n';
121
- css+= css_prefix + ' div.ecwid-productBrowser-details-inStockLabel{ color: '+ muted_accent_color.toString() +'; }\n';
122
- css+= css_prefix + ' div.ecwid-Checkout-blockTitle,' + css_prefix + ' table.ecwid-Checkout-blockTitle div.gwt-Label,' + css_prefix + ' table.ecwid-Checkout-blockTitle div.gwt-HTML{ color: '+ muted_accent_color.toString() +'; }\n';
123
- css+= css_prefix + ' div.ecwid-Checkout-BreadCrumbs-link-visited{ color: '+ muted_accent_color.toString() +'; }\n';
124
- css+= css_prefix + ' div.ecwid-Checkout-BreadCrumbs-link-current{ color: '+ muted_accent_color.toString() +'; border-color: '+ muted_accent_color.toString() +'; }\n';
125
- css+= css_prefix + ' div.ecwid-fieldEnvelope-label{ color: '+ accent_color.toString() +'; }\n';
126
- css+= css_prefix + ' input.gwt-PasswordTextBox,' + css_prefix + ' textarea.gwt-TextArea,' + css_prefix + ' input.gwt-DateBox{ color: '+ accent_color.toString() +'; }\n';
127
- css+= css_prefix + ' .ecwid div.ecwid-AccentedContinueButton-label{ color: '+ accent_color.toString() +'; }\n';
128
- css+= css_prefix + ' div.ecwid-productBrowser-cart-termsCheckbox-rollover{ background-color: '+ hover_background.toString() +'; }\n';
129
- css+= css_prefix + ' div.ecwid-productBrowser-cart-estimationNote span{ color: '+ muted_accent_color.toString() +'; }\n';
130
- css+= css_prefix + ' div.ecwid-productBrowser-cart-asterisk{ color: '+ muted_accent_color.toString() +'; }\n';
131
- css+= css_prefix + ' div.ecwid-productBrowser-cart-totalAmount{ color: '+ accent_color.toString() +'; }\n';
132
-
133
- // Primary links
134
- css+= css_prefix + ' div.ecwid-productBrowser-categoryPath a,' + css_prefix + ' div.ecwid-productBrowser-categoryPath a:active,' + css_prefix + ' div.ecwid-productBrowser-categoryPath a:visited{ color: '+ primary_link.toString() +'; }\n';
135
- css+= css_prefix + ' .ecwid a,' + css_prefix + ' .ecwid a:active, ' + css_prefix + ' .ecwid a:visited{ color: '+ primary_link.toString() +'; }\n';
136
- css+= css_prefix + ' div.ecwid-results-topPanel div.ecwid-results-topPanel-viewAsPanel-link{ color: '+ primary_link.toString() +'; }\n';
137
- css+= css_prefix + ' div.ecwid-pager span.ecwid-pager-link-enabled{ color: '+ primary_link.toString() +'; }\n';
138
- css+= css_prefix + ' div.ecwid-productBrowser-productsTable-addToBagLink{ color: '+ primary_link.toString() +'; }\n';
139
-
140
- // Hover links
141
- css+= css_prefix + ' div.ecwid-productBrowser-categoryPath a:hover{ color: '+ hover_link.toString() +'; }\n';
142
- css+= css_prefix + ' .ecwid a:hover{ color: '+ hover_link.toString() +'; }\n';
143
- css+= css_prefix + ' div.ecwid-results-topPanel div.ecwid-results-topPanel-viewAsPanel-link:hover{ color: '+ hover_link.toString() +'; }\n';
144
-
145
- // Backgrounds
146
- css+= css_prefix + ' .ecwid .ecwid-ProductDetails-gray-panel-bottom,' + css_prefix + ' .ecwid .ecwid-productBrowser-ask-advice-panel{ background-color: '+ muted_background.toString() +'; }\n';
147
- css+= css_prefix + ' .ecwid-productBrowser-details-rightPanel div.ecwid-productBrowser-sharePanel-header{ background-color: '+ muted_background.toString() +'; }\n';
148
- css+= css_prefix + ' a.ecwid-productBrowser-nav-left,' + css_prefix + ' a.ecwid-productBrowser-nav-right{ background-color: '+ muted_background.toString() +'; }\n';
149
- css+= css_prefix + ' .ecwid .ecwid-productBrowser-ask-advice-panel{ background-color: '+ muted_background.toString() +'; }\n';
150
- css+= css_prefix + ' .ecwid .ecwid-productBrowser-ask-advice-panel .ecwid-productBrowser-ask-advice-panel-icon{ background-color: '+ muted_background.toString() +'; }\n';
151
- css+= css_prefix + ' div.ecwid-productBrowser-backgroundedPanel{ background-color: '+ muted_soft_background.toString() +'; }\n';
152
- css+= css_prefix + ' .ecwid-productBrowser-details-rightPanel .ecwid-productBrowser-sharePanel-buttonsContainer{ background-color: '+ muted_soft_background.toString() +'; border-color: '+ tinycolor(muted_color.toString()).setAlpha(.2).toString() +'}\n';
153
- css+= css_prefix + ' tr.ecwid-productBrowser-cart-itemsTable-row-selected,' + css_prefix + ' td.ecwid-productBrowser-cart-itemsTable-cell-selected{ background-color: '+ muted_background.toString() +'; }\n';
154
- css+= css_prefix + ' div.ecwid-productBrowser-cart-EnterCouponBox{ background-color: '+ muted_background.toString() +'; border-color: transparent; }\n';
155
- css+= css_prefix + ' div.ecwid-form{ background-color: '+ muted_background.toString() +'; }\n';
156
- css+= css_prefix + ' .ecwid input.ecwid-productBrowser-details-qtyTextField{ color: '+ primary_color.toString() +'; }\n';
157
- css+= css_prefix + ' td.ecwid-productBrowser-productsTable-cell{ background-color: '+ primary_background.toString() +'; }\n';
158
- css+= css_prefix + ' td.ecwid-productBrowser-productsTable-cellOdd{ background-color: '+ muted_background.toString() +'; }\n';
159
-
160
- css+= css_prefix + ' div.ecwid-Invoice-cell-title{ color: '+ muted_color +';background-color: '+ muted_background.toString() +'; }\n';
161
- css+= css_prefix + ' div.ecwid-Invoice-blockTitle{ color: '+ muted_color +';background-color: '+ muted_background.toString() +'; }\n';
162
- css+= css_prefix + ' td.ecwid-Invoice-cell{ background-color: '+ muted_background.toString() +'; }\n';
163
- css+= css_prefix + ' td.ecwid-Invoice-edgeCell{ background-color: '+ muted_background.toString() +'; }\n';
164
-
165
- // Buttons
166
- css+= css_prefix + ' div.ecwid-AddToBagButton::after { content: "' + msg('TableProductsContainer.add_to_bag', 'Add To Bag') + '"; white-space: nowrap; }\n';
167
- css+= css_prefix + ' div.ecwid-ContinueShoppingButton::after { content: "' + msg('ShoppingCartView.continue', 'Continue Shopping') + '"; white-space: nowrap; }\n';
168
- css+= css_prefix + ' div.ecwid-productBrowser-cart-checkoutButton:after { content: "' + msg('FBAutofillCheckout.Breadcrumbs.checkout', 'Checkout') + '"; white-space: nowrap; }\n';
169
- css+= css_prefix + ' div.ecwid-Checkout-placeOrderButton::after { content: "' + msg('FBAutofillCheckout.Breadcrumbs.checkout', 'Place Order') + '"; white-space: nowrap; }\n';
170
-
171
- css+= css_prefix + ' div.ecwid-ContinueShoppingButton::after,' + css_prefix + ' div.ecwid-Checkout-placeOrderButton::after, ' + css_prefix + ' div.ecwid-AddToBagButton::after, ' + css_prefix + ' div.ecwid-productBrowser-cart-checkoutButton::after, ' + css_prefix + ' button.ecwid-AccentedButton span, ' + css_prefix + ' div.ecwid-Checkout-placeOrderButton::after{ color: '+ button_color +'; }\n';
172
-
173
- css+= css_prefix + ' button.ecwid-AccentedButton,' + css_prefix + ' div.ecwid-AddToBagButton-up, ' + css_prefix + ' div.ecwid-productBrowser-cart-checkoutButton-up,' + css_prefix + ' div.ecwid-Checkout-placeOrderButton-up,' + css_prefix + ' div.ecwid-ContinueShoppingButton-up,' + css_prefix + ' div.ecwid-AddToBagButton-up-hovering,' + css_prefix + ' div.ecwid-AddToBagButton-down-hovering,' + css_prefix + ' div.ecwid-productBrowser-cart-checkoutButton-up-hovering,' + css_prefix + ' div.ecwid-productBrowser-cart-checkoutButton-down-hovering,' + css_prefix + ' div.ecwid-Checkout-placeOrderButton-down-hovering,' + css_prefix + ' div.ecwid-Checkout-placeOrderButton-up-hovering,' + css_prefix + ' div.ecwid-ContinueShoppingButton-up-hovering,' + css_prefix + ' div.ecwid-ContinueShoppingButton-down-hovering,' + css_prefix + ' button.ecwid-AccentedButton:hover { -webkit-box-sizing: border-box; box-sizing: border-box; width: auto; min-width: 160px; height: auto; padding: 11px 40px; background-color: '+primary_link+'; background-image: -webkit-gradient(linear, left top, left bottom, from('+hover_link+'), to('+primary_link+')); background-image: -webkit-linear-gradient(top, '+hover_link+', '+primary_link+'); background-image: -moz-linear-gradient(top, '+hover_link+', '+primary_link+'); background-image: -ms-linear-gradient(top, '+hover_link+', '+primary_link+'); background-image: -o-linear-gradient(top, '+hover_link+', '+primary_link+'); background-image: linear-gradient(to bottom, '+hover_link+', '+primary_link+'); border: 1px solid '+button_border_color+'; -webkit-box-shadow: inset 0 1px 0 '+button_shadow+'; box-shadow: inset 0 1px 0 '+button_shadow+'; text-decoration: none; text-shadow: 0 1px 0 rgba(0,0,0,0.1); border-radius: 3px; padding-left: 20px; padding-right: 20px; }\n';
174
-
175
- css+= css_prefix + ' div.ecwid-AddToBagButton-up-hovering,' + css_prefix + ' div.ecwid-productBrowser-cart-checkoutButton-up-hovering,' + css_prefix + ' div.ecwid-Checkout-placeOrderButton-up-hovering,' + css_prefix + ' div.ecwid-ContinueShoppingButton-up-hovering { background-image: -webkit-gradient(linear, left top, left bottom, from('+button_hover_top+'), to('+button_hover_bottom+')); background-image: -webkit-linear-gradient(top, '+button_hover_top+', '+button_hover_bottom+'); background-image: -moz-linear-gradient(top, '+button_hover_top+', '+button_hover_bottom+'); background-image: -ms-linear-gradient(top, '+button_hover_top+', '+button_hover_bottom+'); background-image: -o-linear-gradient(top, '+button_hover_top+', '+button_hover_bottom+'); background-image: linear-gradient(to bottom, '+button_hover_top+', '+button_hover_bottom+'); border: 1px solid '+button_border_hover_color+'; -webkit-box-shadow: inset 0 1px 0 '+button_hover_shadow+'; box-shadow: inset 0 1px 0 '+button_hover_shadow+'; text-decoration: none; text-shadow: 0 -1px 0 rgba(0,0,0,0.2); } \n';
176
-
177
-
178
- css+= css_prefix + ' button.gwt-Button,' + css_prefix + ' #wrapper button.gwt-Button{ color: '+ secondary_link +'; }\n';
179
- css+= css_prefix + ' button.ecwid-AccentedButton{ line-height: 1; }\n';
180
-
181
- // Search
182
- css+= css_prefix + ' .ecwid-SearchPanel-button { background-color: '+ muted_background.toString() +'; border: 1px solid '+ border_color +'; border-radius: 2px; color: '+ primary_color +'; cursor: pointer; font-size: 12px; height: 26px; outline: medium none; padding: 2px 5px; text-decoration: none; vertical-align: baseline; white-space: nowrap; }\n';
183
-
184
- // Categories
185
- css+= css_prefix + ' span.ecwid-categories-category{ color: '+ muted_color.toString() +'; }\n';
186
- css+= css_prefix + ' div.ecwid-categoriesMenuBar td.gwt-MenuItem-selected span.ecwid-categories-category,' + css_prefix + ' div.ecwid-categoriesMenuBar td.gwt-MenuItem-current span.ecwid-categories-category,' + css_prefix + ' td.ecwid-categories-vertical-table-cell-selected span.ecwid-categories-category,' + css_prefix + ' table.ecwid-categoriesTabBar table.gwt-TabBarItem-selected span.ecwid-categories-category{ color: '+ primary_link.toString() +'; }\n';
187
-
188
- css+= css_prefix + ' table.ecwid-categoriesTabBar table.gwt-TabBarItem-selected td { background: none !important; }\n';
189
- css+= css_prefix + ' table.ecwid-categoriesTabBar table.gwt-TabBarItem-selected { border: 1px solid; border-bottom: 0px; border-color: '+ border_color.toString() +'; }\n';
190
- css+= css_prefix + ' .ecwid .ecwid-productBrowser-ask-advice-panel { min-height: 18px; height: auto; }\n';
191
-
192
- head = document.getElementsByTagName('head')[0],
193
- style = document.createElement('style');
194
- style.type = 'text/css';
195
- if (style.styleSheet) {
196
- style.styleSheet.cssText = css;
197
- } else {
198
- style.appendChild(document.createTextNode(css));
199
- }
200
- head.appendChild(style);
201
- document.getElementsByTagName("body")[0].className += ' chameleon';
202
- });
203
- }
204
-
205
- function getLinkColor(url) {
206
- var a = document.createElement('a');
207
- a.href = a.textContent = url;
208
- document.body.appendChild(a);
209
- return document.defaultView.getComputedStyle(a, null).color;
210
- }
211
-
212
- function toCamelCase(s){
213
- for(var exp=/-([a-z])/; exp.test(s); s=s.replace(exp,RegExp.$1.toUpperCase()));
214
- return s;
215
- }
216
-
217
- function getStyle(e,a){
218
- var v=null;
219
- if(document.defaultView && document.defaultView.getComputedStyle){
220
- var cs = document.defaultView.getComputedStyle(e, null);
221
- if(cs && cs.getPropertyValue)
222
- v = cs.getPropertyValue(a);
223
- }
224
- if(!v && e.currentStyle)
225
- v = e.currentStyle[toCamelCase(a)];
226
- return v;
227
- }
228
-
229
- function getBackground(e){
230
- var v = getStyle(e,'background-color');
231
- while (!v || v=='transparent' || v=='#000000' || v=='rgba(0, 0, 0, 0)'){
232
- if( e == document.body )
233
- v = '#fff';
234
- else {
235
- e = e.parentNode;
236
- v = getStyle(e, 'background-color');
237
- }
238
- }
239
- return v;
240
- }
241
-
242
- function msg(label, defaultValue) {
243
- var messageBundles = (window.Ecwid && window.Ecwid.MessageBundles) ? window.Ecwid.MessageBundles : {};
244
- var bundle = messageBundles['ru.cdev.xnext.client'] ? messageBundles['ru.cdev.xnext.client'] : {};
245
- return bundle[label] || defaultValue;
246
- }
247
-
248
- // TinyColor v1.1.2
249
- // https://github.com/bgrins/TinyColor
250
- // Brian Grinstead, MIT License
251
- !function(){function t(r,n){if(r=r?r:"",n=n||{},r instanceof t)return r;if(!(this instanceof t))return new t(r,n);var a=e(r);this._originalInput=r,this._r=a.r,this._g=a.g,this._b=a.b,this._a=a.a,this._roundA=j(100*this._a)/100,this._format=n.format||a.format,this._gradientType=n.gradientType,this._r<1&&(this._r=j(this._r)),this._g<1&&(this._g=j(this._g)),this._b<1&&(this._b=j(this._b)),this._ok=a.ok,this._tc_id=I++}function e(t){var e={r:0,g:0,b:0},n=1,i=!1,o=!1;return"string"==typeof t&&(t=q(t)),"object"==typeof t&&(t.hasOwnProperty("r")&&t.hasOwnProperty("g")&&t.hasOwnProperty("b")?(e=r(t.r,t.g,t.b),i=!0,o="%"===String(t.r).substr(-1)?"prgb":"rgb"):t.hasOwnProperty("h")&&t.hasOwnProperty("s")&&t.hasOwnProperty("v")?(t.s=O(t.s),t.v=O(t.v),e=s(t.h,t.s,t.v),i=!0,o="hsv"):t.hasOwnProperty("h")&&t.hasOwnProperty("s")&&t.hasOwnProperty("l")&&(t.s=O(t.s),t.l=O(t.l),e=a(t.h,t.s,t.l),i=!0,o="hsl"),t.hasOwnProperty("a")&&(n=t.a)),n=k(n),{ok:i,format:t.format||o,r:T(255,$(e.r,0)),g:T(255,$(e.g,0)),b:T(255,$(e.b,0)),a:n}}function r(t,e,r){return{r:255*A(t,255),g:255*A(e,255),b:255*A(r,255)}}function n(t,e,r){t=A(t,255),e=A(e,255),r=A(r,255);var n,a,i=$(t,e,r),s=T(t,e,r),o=(i+s)/2;if(i==s)n=a=0;else{var f=i-s;switch(a=o>.5?f/(2-i-s):f/(i+s),i){case t:n=(e-r)/f+(r>e?6:0);break;case e:n=(r-t)/f+2;break;case r:n=(t-e)/f+4}n/=6}return{h:n,s:a,l:o}}function a(t,e,r){function n(t,e,r){return 0>r&&(r+=1),r>1&&(r-=1),1/6>r?t+6*(e-t)*r:.5>r?e:2/3>r?t+(e-t)*(2/3-r)*6:t}var a,i,s;if(t=A(t,360),e=A(e,100),r=A(r,100),0===e)a=i=s=r;else{var o=.5>r?r*(1+e):r+e-r*e,f=2*r-o;a=n(f,o,t+1/3),i=n(f,o,t),s=n(f,o,t-1/3)}return{r:255*a,g:255*i,b:255*s}}function i(t,e,r){t=A(t,255),e=A(e,255),r=A(r,255);var n,a,i=$(t,e,r),s=T(t,e,r),o=i,f=i-s;if(a=0===i?0:f/i,i==s)n=0;else{switch(i){case t:n=(e-r)/f+(r>e?6:0);break;case e:n=(r-t)/f+2;break;case r:n=(t-e)/f+4}n/=6}return{h:n,s:a,v:o}}function s(t,e,r){t=6*A(t,360),e=A(e,100),r=A(r,100);var n=N.floor(t),a=t-n,i=r*(1-e),s=r*(1-a*e),o=r*(1-(1-a)*e),f=n%6,h=[r,s,i,i,o,r][f],u=[o,r,r,s,i,i][f],l=[i,i,o,r,r,s][f];return{r:255*h,g:255*u,b:255*l}}function o(t,e,r,n){var a=[M(j(t).toString(16)),M(j(e).toString(16)),M(j(r).toString(16))];return n&&a[0].charAt(0)==a[0].charAt(1)&&a[1].charAt(0)==a[1].charAt(1)&&a[2].charAt(0)==a[2].charAt(1)?a[0].charAt(0)+a[1].charAt(0)+a[2].charAt(0):a.join("")}function f(t,e,r,n){var a=[M(P(n)),M(j(t).toString(16)),M(j(e).toString(16)),M(j(r).toString(16))];return a.join("")}function h(e,r){r=0===r?0:r||10;var n=t(e).toHsl();return n.s-=r/100,n.s=H(n.s),t(n)}function u(e,r){r=0===r?0:r||10;var n=t(e).toHsl();return n.s+=r/100,n.s=H(n.s),t(n)}function l(e){return t(e).desaturate(100)}function c(e,r){r=0===r?0:r||10;var n=t(e).toHsl();return n.l+=r/100,n.l=H(n.l),t(n)}function g(e,r){r=0===r?0:r||10;var n=t(e).toRgb();return n.r=$(0,T(255,n.r-j(255*-(r/100)))),n.g=$(0,T(255,n.g-j(255*-(r/100)))),n.b=$(0,T(255,n.b-j(255*-(r/100)))),t(n)}function d(e,r){r=0===r?0:r||10;var n=t(e).toHsl();return n.l-=r/100,n.l=H(n.l),t(n)}function b(e,r){var n=t(e).toHsl(),a=(j(n.h)+r)%360;return n.h=0>a?360+a:a,t(n)}function p(e){var r=t(e).toHsl();return r.h=(r.h+180)%360,t(r)}function m(e){var r=t(e).toHsl(),n=r.h;return[t(e),t({h:(n+120)%360,s:r.s,l:r.l}),t({h:(n+240)%360,s:r.s,l:r.l})]}function _(e){var r=t(e).toHsl(),n=r.h;return[t(e),t({h:(n+90)%360,s:r.s,l:r.l}),t({h:(n+180)%360,s:r.s,l:r.l}),t({h:(n+270)%360,s:r.s,l:r.l})]}function v(e){var r=t(e).toHsl(),n=r.h;return[t(e),t({h:(n+72)%360,s:r.s,l:r.l}),t({h:(n+216)%360,s:r.s,l:r.l})]}function y(e,r,n){r=r||6,n=n||30;var a=t(e).toHsl(),i=360/n,s=[t(e)];for(a.h=(a.h-(i*r>>1)+720)%360;--r;)a.h=(a.h+i)%360,s.push(t(a));return s}function w(e,r){r=r||6;for(var n=t(e).toHsv(),a=n.h,i=n.s,s=n.v,o=[],f=1/r;r--;)o.push(t({h:a,s:i,v:s})),s=(s+f)%1;return o}function x(t){var e={};for(var r in t)t.hasOwnProperty(r)&&(e[t[r]]=r);return e}function k(t){return t=parseFloat(t),(isNaN(t)||0>t||t>1)&&(t=1),t}function A(t,e){R(t)&&(t="100%");var r=F(t);return t=T(e,$(0,parseFloat(t))),r&&(t=parseInt(t*e,10)/100),N.abs(t-e)<1e-6?1:t%e/parseFloat(e)}function H(t){return T(1,$(0,t))}function S(t){return parseInt(t,16)}function R(t){return"string"==typeof t&&-1!=t.indexOf(".")&&1===parseFloat(t)}function F(t){return"string"==typeof t&&-1!=t.indexOf("%")}function M(t){return 1==t.length?"0"+t:""+t}function O(t){return 1>=t&&(t=100*t+"%"),t}function P(t){return Math.round(255*parseFloat(t)).toString(16)}function C(t){return S(t)/255}function q(t){t=t.replace(z,"").replace(E,"").toLowerCase();var e=!1;if(B[t])t=B[t],e=!0;else if("transparent"==t)return{r:0,g:0,b:0,a:0,format:"name"};var r;return(r=U.rgb.exec(t))?{r:r[1],g:r[2],b:r[3]}:(r=U.rgba.exec(t))?{r:r[1],g:r[2],b:r[3],a:r[4]}:(r=U.hsl.exec(t))?{h:r[1],s:r[2],l:r[3]}:(r=U.hsla.exec(t))?{h:r[1],s:r[2],l:r[3],a:r[4]}:(r=U.hsv.exec(t))?{h:r[1],s:r[2],v:r[3]}:(r=U.hsva.exec(t))?{h:r[1],s:r[2],v:r[3],a:r[4]}:(r=U.hex8.exec(t))?{a:C(r[1]),r:S(r[2]),g:S(r[3]),b:S(r[4]),format:e?"name":"hex8"}:(r=U.hex6.exec(t))?{r:S(r[1]),g:S(r[2]),b:S(r[3]),format:e?"name":"hex"}:(r=U.hex3.exec(t))?{r:S(r[1]+""+r[1]),g:S(r[2]+""+r[2]),b:S(r[3]+""+r[3]),format:e?"name":"hex"}:!1}function L(t){var e,r;return t=t||{level:"AA",size:"small"},e=(t.level||"AA").toUpperCase(),r=(t.size||"small").toLowerCase(),"AA"!==e&&"AAA"!==e&&(e="AA"),"small"!==r&&"large"!==r&&(r="small"),{level:e,size:r}}var z=/^[\s,#]+/,E=/\s+$/,I=0,N=Math,j=N.round,T=N.min,$=N.max,D=N.random;t.prototype={isDark:function(){return this.getBrightness()<128},isLight:function(){return!this.isDark()},isValid:function(){return this._ok},getOriginalInput:function(){return this._originalInput},getFormat:function(){return this._format},getAlpha:function(){return this._a},getBrightness:function(){var t=this.toRgb();return(299*t.r+587*t.g+114*t.b)/1e3},getLuminance:function(){var t,e,r,n,a,i,s=this.toRgb();return t=s.r/255,e=s.g/255,r=s.b/255,n=.03928>=t?t/12.92:Math.pow((t+.055)/1.055,2.4),a=.03928>=e?e/12.92:Math.pow((e+.055)/1.055,2.4),i=.03928>=r?r/12.92:Math.pow((r+.055)/1.055,2.4),.2126*n+.7152*a+.0722*i},setAlpha:function(t){return this._a=k(t),this._roundA=j(100*this._a)/100,this},toHsv:function(){var t=i(this._r,this._g,this._b);return{h:360*t.h,s:t.s,v:t.v,a:this._a}},toHsvString:function(){var t=i(this._r,this._g,this._b),e=j(360*t.h),r=j(100*t.s),n=j(100*t.v);return 1==this._a?"hsv("+e+", "+r+"%, "+n+"%)":"hsva("+e+", "+r+"%, "+n+"%, "+this._roundA+")"},toHsl:function(){var t=n(this._r,this._g,this._b);return{h:360*t.h,s:t.s,l:t.l,a:this._a}},toHslString:function(){var t=n(this._r,this._g,this._b),e=j(360*t.h),r=j(100*t.s),a=j(100*t.l);return 1==this._a?"hsl("+e+", "+r+"%, "+a+"%)":"hsla("+e+", "+r+"%, "+a+"%, "+this._roundA+")"},toHex:function(t){return o(this._r,this._g,this._b,t)},toHexString:function(t){return"#"+this.toHex(t)},toHex8:function(){return f(this._r,this._g,this._b,this._a)},toHex8String:function(){return"#"+this.toHex8()},toRgb:function(){return{r:j(this._r),g:j(this._g),b:j(this._b),a:this._a}},toRgbString:function(){return 1==this._a?"rgb("+j(this._r)+", "+j(this._g)+", "+j(this._b)+")":"rgba("+j(this._r)+", "+j(this._g)+", "+j(this._b)+", "+this._roundA+")"},toPercentageRgb:function(){return{r:j(100*A(this._r,255))+"%",g:j(100*A(this._g,255))+"%",b:j(100*A(this._b,255))+"%",a:this._a}},toPercentageRgbString:function(){return 1==this._a?"rgb("+j(100*A(this._r,255))+"%, "+j(100*A(this._g,255))+"%, "+j(100*A(this._b,255))+"%)":"rgba("+j(100*A(this._r,255))+"%, "+j(100*A(this._g,255))+"%, "+j(100*A(this._b,255))+"%, "+this._roundA+")"},toName:function(){return 0===this._a?"transparent":this._a<1?!1:G[o(this._r,this._g,this._b,!0)]||!1},toFilter:function(e){var r="#"+f(this._r,this._g,this._b,this._a),n=r,a=this._gradientType?"GradientType = 1, ":"";if(e){var i=t(e);n=i.toHex8String()}return"progid:DXImageTransform.Microsoft.gradient("+a+"startColorstr="+r+",endColorstr="+n+")"},toString:function(t){var e=!!t;t=t||this._format;var r=!1,n=this._a<1&&this._a>=0,a=!e&&n&&("hex"===t||"hex6"===t||"hex3"===t||"name"===t);return a?"name"===t&&0===this._a?this.toName():this.toRgbString():("rgb"===t&&(r=this.toRgbString()),"prgb"===t&&(r=this.toPercentageRgbString()),("hex"===t||"hex6"===t)&&(r=this.toHexString()),"hex3"===t&&(r=this.toHexString(!0)),"hex8"===t&&(r=this.toHex8String()),"name"===t&&(r=this.toName()),"hsl"===t&&(r=this.toHslString()),"hsv"===t&&(r=this.toHsvString()),r||this.toHexString())},_applyModification:function(t,e){var r=t.apply(null,[this].concat([].slice.call(e)));return this._r=r._r,this._g=r._g,this._b=r._b,this.setAlpha(r._a),this},lighten:function(){return this._applyModification(c,arguments)},brighten:function(){return this._applyModification(g,arguments)},darken:function(){return this._applyModification(d,arguments)},desaturate:function(){return this._applyModification(h,arguments)},saturate:function(){return this._applyModification(u,arguments)},greyscale:function(){return this._applyModification(l,arguments)},spin:function(){return this._applyModification(b,arguments)},_applyCombination:function(t,e){return t.apply(null,[this].concat([].slice.call(e)))},analogous:function(){return this._applyCombination(y,arguments)},complement:function(){return this._applyCombination(p,arguments)},monochromatic:function(){return this._applyCombination(w,arguments)},splitcomplement:function(){return this._applyCombination(v,arguments)},triad:function(){return this._applyCombination(m,arguments)},tetrad:function(){return this._applyCombination(_,arguments)}},t.fromRatio=function(e,r){if("object"==typeof e){var n={};for(var a in e)e.hasOwnProperty(a)&&(n[a]="a"===a?e[a]:O(e[a]));e=n}return t(e,r)},t.equals=function(e,r){return e&&r?t(e).toRgbString()==t(r).toRgbString():!1},t.random=function(){return t.fromRatio({r:D(),g:D(),b:D()})},t.mix=function(e,r,n){n=0===n?0:n||50;var a,i=t(e).toRgb(),s=t(r).toRgb(),o=n/100,f=2*o-1,h=s.a-i.a;a=f*h==-1?f:(f+h)/(1+f*h),a=(a+1)/2;var u=1-a,l={r:s.r*a+i.r*u,g:s.g*a+i.g*u,b:s.b*a+i.b*u,a:s.a*o+i.a*(1-o)};return t(l)},t.readability=function(e,r){var n=t(e),a=t(r);return(Math.max(n.getLuminance(),a.getLuminance())+.05)/(Math.min(n.getLuminance(),a.getLuminance())+.05)},t.isReadable=function(e,r,n){var a,i,s=t.readability(e,r);switch(i=!1,a=L(n),a.level+a.size){case"AAsmall":case"AAAlarge":i=s>=4.5;break;case"AAlarge":i=s>=3;break;case"AAAsmall":i=s>=7}return i},t.mostReadable=function(e,r,n){var a,i,s,o,f=null,h=0;n=n||{},i=n.includeFallbackColors,s=n.level,o=n.size;for(var u=0;u<r.length;u++)a=t.readability(e,r[u]),a>h&&(h=a,f=t(r[u]));return t.isReadable(e,f,{level:s,size:o})||!i?f:(n.includeFallbackColors=!1,t.mostReadable(e,["#fff","#000"],n))};var B=t.names={aliceblue:"f0f8ff",antiquewhite:"faebd7",aqua:"0ff",aquamarine:"7fffd4",azure:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"000",blanchedalmond:"ffebcd",blue:"00f",blueviolet:"8a2be2",brown:"a52a2a",burlywood:"deb887",burntsienna:"ea7e5d",cadetblue:"5f9ea0",chartreuse:"7fff00",chocolate:"d2691e",coral:"ff7f50",cornflowerblue:"6495ed",cornsilk:"fff8dc",crimson:"dc143c",cyan:"0ff",darkblue:"00008b",darkcyan:"008b8b",darkgoldenrod:"b8860b",darkgray:"a9a9a9",darkgreen:"006400",darkgrey:"a9a9a9",darkkhaki:"bdb76b",darkmagenta:"8b008b",darkolivegreen:"556b2f",darkorange:"ff8c00",darkorchid:"9932cc",darkred:"8b0000",darksalmon:"e9967a",darkseagreen:"8fbc8f",darkslateblue:"483d8b",darkslategray:"2f4f4f",darkslategrey:"2f4f4f",darkturquoise:"00ced1",darkviolet:"9400d3",deeppink:"ff1493",deepskyblue:"00bfff",dimgray:"696969",dimgrey:"696969",dodgerblue:"1e90ff",firebrick:"b22222",floralwhite:"fffaf0",forestgreen:"228b22",fuchsia:"f0f",gainsboro:"dcdcdc",ghostwhite:"f8f8ff",gold:"ffd700",goldenrod:"daa520",gray:"808080",green:"008000",greenyellow:"adff2f",grey:"808080",honeydew:"f0fff0",hotpink:"ff69b4",indianred:"cd5c5c",indigo:"4b0082",ivory:"fffff0",khaki:"f0e68c",lavender:"e6e6fa",lavenderblush:"fff0f5",lawngreen:"7cfc00",lemonchiffon:"fffacd",lightblue:"add8e6",lightcoral:"f08080",lightcyan:"e0ffff",lightgoldenrodyellow:"fafad2",lightgray:"d3d3d3",lightgreen:"90ee90",lightgrey:"d3d3d3",lightpink:"ffb6c1",lightsalmon:"ffa07a",lightseagreen:"20b2aa",lightskyblue:"87cefa",lightslategray:"789",lightslategrey:"789",lightsteelblue:"b0c4de",lightyellow:"ffffe0",lime:"0f0",limegreen:"32cd32",linen:"faf0e6",magenta:"f0f",maroon:"800000",mediumaquamarine:"66cdaa",mediumblue:"0000cd",mediumorchid:"ba55d3",mediumpurple:"9370db",mediumseagreen:"3cb371",mediumslateblue:"7b68ee",mediumspringgreen:"00fa9a",mediumturquoise:"48d1cc",mediumvioletred:"c71585",midnightblue:"191970",mintcream:"f5fffa",mistyrose:"ffe4e1",moccasin:"ffe4b5",navajowhite:"ffdead",navy:"000080",oldlace:"fdf5e6",olive:"808000",olivedrab:"6b8e23",orange:"ffa500",orangered:"ff4500",orchid:"da70d6",palegoldenrod:"eee8aa",palegreen:"98fb98",paleturquoise:"afeeee",palevioletred:"db7093",papayawhip:"ffefd5",peachpuff:"ffdab9",peru:"cd853f",pink:"ffc0cb",plum:"dda0dd",powderblue:"b0e0e6",purple:"800080",rebeccapurple:"663399",red:"f00",rosybrown:"bc8f8f",royalblue:"4169e1",saddlebrown:"8b4513",salmon:"fa8072",sandybrown:"f4a460",seagreen:"2e8b57",seashell:"fff5ee",sienna:"a0522d",silver:"c0c0c0",skyblue:"87ceeb",slateblue:"6a5acd",slategray:"708090",slategrey:"708090",snow:"fffafa",springgreen:"00ff7f",steelblue:"4682b4",tan:"d2b48c",teal:"008080",thistle:"d8bfd8",tomato:"ff6347",turquoise:"40e0d0",violet:"ee82ee",wheat:"f5deb3",white:"fff",whitesmoke:"f5f5f5",yellow:"ff0",yellowgreen:"9acd32"},G=t.hexNames=x(B),U=function(){var t="[-\\+]?\\d+%?",e="[-\\+]?\\d*\\.\\d+%?",r="(?:"+e+")|(?:"+t+")",n="[\\s|\\(]+("+r+")[,|\\s]+("+r+")[,|\\s]+("+r+")\\s*\\)?",a="[\\s|\\(]+("+r+")[,|\\s]+("+r+")[,|\\s]+("+r+")[,|\\s]+("+r+")\\s*\\)?";return{rgb:new RegExp("rgb"+n),rgba:new RegExp("rgba"+a),hsl:new RegExp("hsl"+n),hsla:new RegExp("hsla"+a),hsv:new RegExp("hsv"+n),hsva:new RegExp("hsva"+a),hex3:/^([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex8:/^([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/}}();"undefined"!=typeof module&&module.exports?module.exports=t:"function"==typeof define&&define.amd?define(function(){return t}):window.tinycolor=t}();
1
+ if (typeof(Ecwid) == 'object') {
2
+ Ecwid.OnAPILoaded.add(function() {
3
+
4
+ var html_id = document.getElementsByTagName("html")[0].id;
5
+ var body_id = document.getElementsByTagName("body")[0].id;;
6
+ var css_prefix = 'html#'+html_id+' body#'+body_id+'.chameleon';
7
+
8
+ var css = '';
9
+ var parent = document.querySelector('.ecwid').parentNode;
10
+ var computedStyle = getComputedStyle(parent, null);
11
+
12
+ var primary_color = tinycolor( (typeof ecwidChameleon !== 'undefined' && typeof ecwidChameleon.primary_color !== 'undefined') ? ecwidChameleon.primary_color : computedStyle.color );
13
+ var primary_background = tinycolor( (typeof ecwidChameleon !== 'undefined' && typeof ecwidChameleon.primary_background !== 'undefined') ? ecwidChameleon.primary_background : getBackground(parent) );
14
+
15
+ if (typeof ecwidChameleon !== 'undefined' && typeof ecwidChameleon.primary_background !== 'undefined') {
16
+ var primary_link = tinycolor( ecwidChameleon.primary_link );
17
+ }
18
+ else {
19
+ var a = document.createElement('a');
20
+ a.href = a.textContent = url = '';
21
+ parent.appendChild(a);
22
+ var primary_link = tinycolor( document.defaultView.getComputedStyle(a, null).color );
23
+ parent.removeChild(a);
24
+ }
25
+
26
+ if (tinycolor.equals(primary_background, 'transparent')) {
27
+ primary_background = tinycolor('#fff');
28
+ }
29
+
30
+ var accent_color = tinycolor(primary_link.toString()).darken(15).brighten();
31
+ var muted_accent_color = tinycolor(primary_link.toString()).darken(15).setAlpha(.6);
32
+
33
+ var hover_link = tinycolor(primary_link.toString()).lighten(20);
34
+ var muted_color = (primary_color.isLight()) ? tinycolor(primary_color.toString()).darken(15) : tinycolor(primary_color.toString()).lighten(20);
35
+ var muted_link = tinycolor(primary_color.toString()).lighten(20);
36
+ var secondary_link = tinycolor(primary_link.toString()).darken(20);
37
+
38
+ var border_color = tinycolor(primary_color.toString()).setAlpha(.1);
39
+
40
+ var muted_background = tinycolor(primary_background.toString());
41
+ var muted_background = (muted_background.isLight()) ? muted_background.darken(5) : muted_background.lighten(15);
42
+ var muted_soft_background = tinycolor(primary_background.toString());
43
+ var muted_soft_background = (muted_soft_background.isLight()) ? muted_soft_background.darken(10) : muted_soft_background.lighten(20);
44
+ var hover_background = tinycolor(primary_link.toString()).lighten(20).setAlpha(.2);
45
+
46
+ var button_border_color = tinycolor(hover_link.toString()).darken(5);
47
+ var button_hover_top = tinycolor(hover_link.toString()).lighten(5);
48
+ var button_hover_bottom = tinycolor(primary_link.toString()).lighten(5);
49
+ var button_shadow = tinycolor(button_border_color.toString()).lighten(15).setAlpha(.3);
50
+ var button_hover_shadow = tinycolor(button_border_color.toString()).lighten(15).setAlpha(.4);
51
+ var button_border_hover_color = tinycolor(hover_link.toString());
52
+
53
+ // Additional rules
54
+ if (!tinycolor.isReadable(accent_color, muted_soft_background)) {
55
+ accent_color = tinycolor(secondary_link.toString()).brighten(20);
56
+ muted_accent_color = tinycolor(secondary_link.toString()).lighten(20);
57
+ }
58
+ if (!tinycolor.isReadable(secondary_link, '#F0F0F0')) {
59
+ secondary_link = (secondary_link.isLight()) ? tinycolor(secondary_link.toString()).darken() : tinycolor(secondary_link.toString()).lighten();
60
+ }
61
+ var button_color = tinycolor('#fff');
62
+ if (!tinycolor.isReadable(button_color, primary_link)) {
63
+ button_color = tinycolor(primary_background.toString());
64
+ }
65
+
66
+ // Font family
67
+ css+= css_prefix + ' .ecwid, ' + css_prefix + ' .ecwid * { font-family: inherit !important; }\n';
68
+
69
+ // Primary colors
70
+ css+= css_prefix + ' div.ecwid-productBrowser-head{ color: '+ primary_color.toString() +'; }\n';
71
+ css+= css_prefix + ' div.ecwid-productBrowser-productNameLink a, ' + css_prefix + ' div.ecwid-productBrowser-productNameLink a:active, ' + css_prefix + ' div.ecwid-productBrowser-productNameLink a:visited{ color: '+ muted_color.toString() +'; }\n';
72
+ css+= css_prefix + ' div.ecwid-productBrowser-productsGrid-productMiddleFragment-mouseover div.ecwid-productBrowser-productNameLink a, ' + css_prefix + ' div.ecwid-productBrowser-productsGrid-productMiddleFragment-mouseover div.ecwid-productBrowser-productNameLink a:active, ' + css_prefix + ' div.ecwid-productBrowser-productsGrid-productMiddleFragment-mouseover div.ecwid-productBrowser-productNameLink a:visited{ font-size: 17px; color: '+ primary_color.toString() +'; }\n';
73
+ css+= css_prefix + ' div.ecwid-productBrowser-cart div.ecwid-productBrowser-productNameLink a, ' + css_prefix + ' div.ecwid-productBrowser-cart div.ecwid-productBrowser-productNameLink a:active, ' + css_prefix + ' div.ecwid-productBrowser-cart div.ecwid-productBrowser-productNameLink a:visited{ color: '+ primary_color.toString() +'; }\n';
74
+ css+= css_prefix + ' div.ecwid-productBrowser-cart div.ecwid-productBrowser-price{ color: '+ primary_color.toString() +'; }\n';
75
+ css+= css_prefix + ' div.ecwid-productBrowser-cart-subtotalAmount, ' + css_prefix + ' div.ecwid-productBrowser-cart-subtotalAmountMinus, ' + css_prefix + ' div.ecwid-productBrowser-cart-shippingAmount, ' + css_prefix + ' div.ecwid-productBrowser-cart-taxAmount{ color: '+ primary_color.toString() +'; }\n';
76
+ css+= css_prefix + ' div.ecwid-productBrowser-cart-totalLabel{ color: '+ primary_color.toString() +'; }\n';
77
+ css+= css_prefix + ' table.ecwid-productBrowser-productsTable-v2 div.ecwid-productBrowser-productNameLink:hover a, ' + css_prefix + ' table.ecwid-productBrowser-productsList-v2 div.ecwid-productBrowser-productNameLink:hover a, ' + css_prefix + ' table.ecwid-productBrowser-productsGrid-v2 div.ecwid-productBrowser-productNameLink:hover a { color: '+ primary_color.toString() +'; }\n';
78
+ css+= css_prefix + ' table.ecwid-Invoice-itemsTable .ecwid-productBrowser-price, ' + css_prefix + ' table.ecwid-Invoice-itemsTable .ecwid-Invoice-qtyLabel{ color: '+ primary_color.toString() +'; }\n';
79
+
80
+ // Muted colors
81
+ css+= css_prefix + ' .ecwid{ color: '+ muted_color.toString() +'; }\n';
82
+ css+= css_prefix + ' div.ecwid-productBrowser-categoryPath{ color: '+ muted_color.toString() +'; }\n';
83
+ css+= css_prefix + ' div.ecwid-productBrowser-subcategories-categoryName{ color: '+ muted_color.toString() +'; }\n';
84
+ css+= css_prefix + ' div.ecwid-results-topPanel div.ecwid-results-topPanel-itemsCountLabel{ color: '+ muted_color.toString() +'; }\n';
85
+ css+= css_prefix + ' div.ecwid-productBrowser-sku{ color: '+ muted_color.toString() +'; }\n';
86
+ css+= css_prefix + ' div.ecwid-results-topPanel div{ color: '+ muted_color.toString() +'; }\n';
87
+ css+= css_prefix + ' div.ecwid-productBrowser-details-optionPanel label.ecwid-fieldLabel{ color: '+ muted_color.toString() +'; }\n';
88
+ css+= css_prefix + ' div.ecwid-productBrowser-details-qtyLabel{ color: '+ muted_color.toString() +'; }\n';
89
+ css+= css_prefix + ' div.ecwid-productBrowser-cart div.ecwid-productBrowser-sku{ color: '+ muted_color.toString() +'; }\n';
90
+ css+= css_prefix + ' span.ecwid-productBrowser-cart-weight{ color: '+ muted_color.toString() +'; }\n';
91
+ css+= css_prefix + ' div.ecwid-productBrowser-cart-optionsList{ color: '+ muted_color.toString() +'; }\n';
92
+ css+= css_prefix + ' div.ecwid-productBrowser-cart-subtotalLabel,' + css_prefix + ' div.ecwid-productBrowser-cart-shippingLabel,' + css_prefix + ' div.ecwid-productBrowser-cart-taxLabel{ color: '+ muted_color.toString() +'; }\n';
93
+ css+= css_prefix + ' div.ecwid-productBrowser-cart-estimationNote{ color: '+ muted_color.toString() +'; }\n';
94
+ css+= css_prefix + ' label.ecwid-fieldLabel{ color: '+ muted_color.toString() +'; }\n';
95
+ css+= css_prefix + ' div.ecwid-FormPopup-fieldWrapper label.ecwid-fieldLabel{ color: '+ muted_color.toString() +'; }\n';
96
+ css+= css_prefix + ' div.ecwid-Checkout-PasswordBlock-tip{ color: '+ muted_color.toString() +'; }\n';
97
+ css+= css_prefix + ' div.ecwid-pager{ color: '+ muted_color.toString() +'; }\n';
98
+ css+= css_prefix + ' div.ecwid-pager span.ecwid-pager-link-disabled{ color: '+ muted_color.toString() +'; }\n';
99
+ css+= css_prefix + ' div.ecwid-productBrowser-details-inTheBag div{ color: '+ muted_color.toString() +'; }\n';
100
+ css+= css_prefix + ' div.ecwid-productBrowser-productsList-descr{ color: '+ muted_color.toString() +'; }\n';
101
+ css+= css_prefix + ' div.ecwid-productBrowser-productsTable div.ecwid-productBrowser-sku{ color: '+ muted_color.toString() +'; }\n';
102
+ css+= css_prefix + ' div.ecwid-productBrowser-extraFields-side{ color: '+ muted_color.toString() +'; }\n';
103
+ css+= css_prefix + ' div.ecwid-Invoice-block{ color: '+ muted_color.toString() +'; }\n';
104
+ css+= css_prefix + ' table.ecwid-Invoice-itemsTable .ecwid-productBrowser-sku{ color: '+ muted_color.toString() +'; }\n';
105
+ css+= css_prefix + ' table.ecwid-Invoice-itemsTable .ecwid-Invoice-optionsList{ color: '+ muted_color.toString() +'; }\n';
106
+ css+= css_prefix + ' table.ecwid-Invoice-itemsTable .ecwid-productBrowser-price,' + css_prefix + ' table.ecwid-Invoice-itemsTable .ecwid-Invoice-qtyLabel{ color: '+ muted_color.toString() +'; }\n';
107
+ css+= css_prefix + ' div.ecwid-Invoice-Summary-label,' + css_prefix + ' div.ecwid-Invoice-Summary-value{ color: '+ muted_color.toString() +'; }\n';
108
+ css+= css_prefix + ' div.ecwid-Invoice-header-placeOrder div.gwt-Label,' + css_prefix + ' div.ecwid-Invoice-footer-placeOrder div.gwt-Label,' + css_prefix + ' td.ecwid-Invoice-header-orderConfirmation-text,' + css_prefix + ' td.ecwid-Invoice-footer-orderConfirmation-text{ color: '+ muted_color.toString() +'; }\n';
109
+ css+= css_prefix + ' div.ecwid-productBrowser-details-outOfStockLabel{ color: '+ muted_color.toString() +'; }\n';
110
+
111
+ // Borders
112
+ css+= css_prefix + ' div.ecwid-productBrowser-productsGrid-productTopFragment-mouseover,' + css_prefix + ' div.ecwid-productBrowser-productsGrid-productBottomFragment-mouseover{ border-color: '+ border_color.toString() +'; }\n';
113
+ css+= css_prefix + ' .ecwid-productBrowser-productsGrid-v2 td.ecwid-productBrowser-productsGrid-productInside.ecwid-productBrowser-productsGrid-hover{ border-color: '+ border_color.toString() +'; }\n';
114
+ css+= css_prefix + ' td.ecwid-productBrowser-productsList-mouseover{ border-color: '+ border_color.toString() +'; }\n';
115
+ css+= css_prefix + ' .ecwid-productBrowser-relatedProducts .ecwid-productBrowser-relatedProducts-item-top-hover{ border-color: '+ border_color.toString() +'; }\n';
116
+ css+= css_prefix + ' .ecwid-productBrowser-relatedProducts .ecwid-productBrowser-relatedProducts-item-bottom-hover{ border-color: '+ border_color.toString() +'; }\n';
117
+ css+= css_prefix + ' table.ecwid-categoriesTabBar div.gwt-TabBarFirst,' + css_prefix + ' table.ecwid-categoriesTabBar div.gwt-TabBarRest,' + css_prefix + ' table.ecwid-categoriesTabBar table.gwt-TabBarItem,' + css_prefix + ' div.ecwid-categories-horizontal-menuBarContainer,' + css_prefix + ' td.ecwid-categories-vertical-table-cell,' + css_prefix + ' div.ecwid-categories-MenuBarPopup div.menuSeparatorInner{ border-color: '+ border_color.toString() +'; }\n';
118
+
119
+ // Accents
120
+ css+= css_prefix + ' div.ecwid-productBrowser-price{ color: '+ accent_color.toString() +'; }\n';
121
+ css+= css_prefix + ' div.ecwid-productBrowser-details-inStockLabel{ color: '+ muted_accent_color.toString() +'; }\n';
122
+ css+= css_prefix + ' div.ecwid-Checkout-blockTitle,' + css_prefix + ' table.ecwid-Checkout-blockTitle div.gwt-Label,' + css_prefix + ' table.ecwid-Checkout-blockTitle div.gwt-HTML{ color: '+ muted_accent_color.toString() +'; }\n';
123
+ css+= css_prefix + ' div.ecwid-Checkout-BreadCrumbs-link-visited{ color: '+ muted_accent_color.toString() +'; }\n';
124
+ css+= css_prefix + ' div.ecwid-Checkout-BreadCrumbs-link-current{ color: '+ muted_accent_color.toString() +'; border-color: '+ muted_accent_color.toString() +'; }\n';
125
+ css+= css_prefix + ' div.ecwid-fieldEnvelope-label{ color: '+ accent_color.toString() +'; }\n';
126
+ css+= css_prefix + ' input.gwt-PasswordTextBox,' + css_prefix + ' textarea.gwt-TextArea,' + css_prefix + ' input.gwt-DateBox{ color: '+ accent_color.toString() +'; }\n';
127
+ css+= css_prefix + ' .ecwid div.ecwid-AccentedContinueButton-label{ color: '+ accent_color.toString() +'; }\n';
128
+ css+= css_prefix + ' div.ecwid-productBrowser-cart-termsCheckbox-rollover{ background-color: '+ hover_background.toString() +'; }\n';
129
+ css+= css_prefix + ' div.ecwid-productBrowser-cart-estimationNote span{ color: '+ muted_accent_color.toString() +'; }\n';
130
+ css+= css_prefix + ' div.ecwid-productBrowser-cart-asterisk{ color: '+ muted_accent_color.toString() +'; }\n';
131
+ css+= css_prefix + ' div.ecwid-productBrowser-cart-totalAmount{ color: '+ accent_color.toString() +'; }\n';
132
+
133
+ // Primary links
134
+ css+= css_prefix + ' div.ecwid-productBrowser-categoryPath a,' + css_prefix + ' div.ecwid-productBrowser-categoryPath a:active,' + css_prefix + ' div.ecwid-productBrowser-categoryPath a:visited{ color: '+ primary_link.toString() +'; }\n';
135
+ css+= css_prefix + ' .ecwid a,' + css_prefix + ' .ecwid a:active, ' + css_prefix + ' .ecwid a:visited{ color: '+ primary_link.toString() +'; }\n';
136
+ css+= css_prefix + ' div.ecwid-results-topPanel div.ecwid-results-topPanel-viewAsPanel-link{ color: '+ primary_link.toString() +'; }\n';
137
+ css+= css_prefix + ' div.ecwid-pager span.ecwid-pager-link-enabled{ color: '+ primary_link.toString() +'; }\n';
138
+ css+= css_prefix + ' div.ecwid-productBrowser-productsTable-addToBagLink{ color: '+ primary_link.toString() +'; }\n';
139
+
140
+ // Hover links
141
+ css+= css_prefix + ' div.ecwid-productBrowser-categoryPath a:hover{ color: '+ hover_link.toString() +'; }\n';
142
+ css+= css_prefix + ' .ecwid a:hover{ color: '+ hover_link.toString() +'; }\n';
143
+ css+= css_prefix + ' div.ecwid-results-topPanel div.ecwid-results-topPanel-viewAsPanel-link:hover{ color: '+ hover_link.toString() +'; }\n';
144
+
145
+ // Backgrounds
146
+ css+= css_prefix + ' .ecwid .ecwid-ProductDetails-gray-panel-bottom,' + css_prefix + ' .ecwid .ecwid-productBrowser-ask-advice-panel{ background-color: '+ muted_background.toString() +'; }\n';
147
+ css+= css_prefix + ' .ecwid-productBrowser-details-rightPanel div.ecwid-productBrowser-sharePanel-header{ background-color: '+ muted_background.toString() +'; }\n';
148
+ css+= css_prefix + ' a.ecwid-productBrowser-nav-left,' + css_prefix + ' a.ecwid-productBrowser-nav-right{ background-color: '+ muted_background.toString() +'; }\n';
149
+ css+= css_prefix + ' .ecwid .ecwid-productBrowser-ask-advice-panel{ background-color: '+ muted_background.toString() +'; }\n';
150
+ css+= css_prefix + ' .ecwid .ecwid-productBrowser-ask-advice-panel .ecwid-productBrowser-ask-advice-panel-icon{ background-color: '+ muted_background.toString() +'; }\n';
151
+ css+= css_prefix + ' div.ecwid-productBrowser-backgroundedPanel{ background-color: '+ muted_soft_background.toString() +'; }\n';
152
+ css+= css_prefix + ' .ecwid-productBrowser-details-rightPanel .ecwid-productBrowser-sharePanel-buttonsContainer{ background-color: '+ muted_soft_background.toString() +'; border-color: '+ tinycolor(muted_color.toString()).setAlpha(.2).toString() +'}\n';
153
+ css+= css_prefix + ' tr.ecwid-productBrowser-cart-itemsTable-row-selected,' + css_prefix + ' td.ecwid-productBrowser-cart-itemsTable-cell-selected{ background-color: '+ muted_background.toString() +'; }\n';
154
+ css+= css_prefix + ' div.ecwid-productBrowser-cart-EnterCouponBox{ background-color: '+ muted_background.toString() +'; border-color: transparent; }\n';
155
+ css+= css_prefix + ' div.ecwid-form{ background-color: '+ muted_background.toString() +'; }\n';
156
+ css+= css_prefix + ' .ecwid input.ecwid-productBrowser-details-qtyTextField{ color: '+ primary_color.toString() +'; }\n';
157
+ css+= css_prefix + ' td.ecwid-productBrowser-productsTable-cell{ background-color: '+ primary_background.toString() +'; }\n';
158
+ css+= css_prefix + ' td.ecwid-productBrowser-productsTable-cellOdd{ background-color: '+ muted_background.toString() +'; }\n';
159
+
160
+ css+= css_prefix + ' div.ecwid-Invoice-cell-title{ color: '+ muted_color +';background-color: '+ muted_background.toString() +'; }\n';
161
+ css+= css_prefix + ' div.ecwid-Invoice-blockTitle{ color: '+ muted_color +';background-color: '+ muted_background.toString() +'; }\n';
162
+ css+= css_prefix + ' td.ecwid-Invoice-cell{ background-color: '+ muted_background.toString() +'; }\n';
163
+ css+= css_prefix + ' td.ecwid-Invoice-edgeCell{ background-color: '+ muted_background.toString() +'; }\n';
164
+
165
+ // Buttons
166
+ css+= css_prefix + ' div.ecwid-AddToBagButton::after { content: "' + msg('TableProductsContainer.add_to_bag', 'Add To Bag') + '"; white-space: nowrap; }\n';
167
+ css+= css_prefix + ' div.ecwid-ContinueShoppingButton::after { content: "' + msg('ShoppingCartView.continue', 'Continue Shopping') + '"; white-space: nowrap; }\n';
168
+ css+= css_prefix + ' div.ecwid-productBrowser-cart-checkoutButton:after { content: "' + msg('FBAutofillCheckout.Breadcrumbs.checkout', 'Checkout') + '"; white-space: nowrap; }\n';
169
+ css+= css_prefix + ' div.ecwid-Checkout-placeOrderButton::after { content: "' + msg('FBAutofillCheckout.Breadcrumbs.checkout', 'Place Order') + '"; white-space: nowrap; }\n';
170
+
171
+ css+= css_prefix + ' div.ecwid-ContinueShoppingButton::after,' + css_prefix + ' div.ecwid-Checkout-placeOrderButton::after, ' + css_prefix + ' div.ecwid-AddToBagButton::after, ' + css_prefix + ' div.ecwid-productBrowser-cart-checkoutButton::after, ' + css_prefix + ' button.ecwid-AccentedButton span, ' + css_prefix + ' div.ecwid-Checkout-placeOrderButton::after{ color: '+ button_color +'; }\n';
172
+
173
+ css+= css_prefix + ' button.ecwid-AccentedButton,' + css_prefix + ' div.ecwid-AddToBagButton-up, ' + css_prefix + ' div.ecwid-productBrowser-cart-checkoutButton-up,' + css_prefix + ' div.ecwid-Checkout-placeOrderButton-up,' + css_prefix + ' div.ecwid-ContinueShoppingButton-up,' + css_prefix + ' div.ecwid-AddToBagButton-up-hovering,' + css_prefix + ' div.ecwid-AddToBagButton-down-hovering,' + css_prefix + ' div.ecwid-productBrowser-cart-checkoutButton-up-hovering,' + css_prefix + ' div.ecwid-productBrowser-cart-checkoutButton-down-hovering,' + css_prefix + ' div.ecwid-Checkout-placeOrderButton-down-hovering,' + css_prefix + ' div.ecwid-Checkout-placeOrderButton-up-hovering,' + css_prefix + ' div.ecwid-ContinueShoppingButton-up-hovering,' + css_prefix + ' div.ecwid-ContinueShoppingButton-down-hovering,' + css_prefix + ' button.ecwid-AccentedButton:hover { -webkit-box-sizing: border-box; box-sizing: border-box; width: auto; min-width: 160px; height: auto; padding: 11px 40px; background-color: '+primary_link+'; background-image: -webkit-gradient(linear, left top, left bottom, from('+hover_link+'), to('+primary_link+')); background-image: -webkit-linear-gradient(top, '+hover_link+', '+primary_link+'); background-image: -moz-linear-gradient(top, '+hover_link+', '+primary_link+'); background-image: -ms-linear-gradient(top, '+hover_link+', '+primary_link+'); background-image: -o-linear-gradient(top, '+hover_link+', '+primary_link+'); background-image: linear-gradient(to bottom, '+hover_link+', '+primary_link+'); border: 1px solid '+button_border_color+'; -webkit-box-shadow: inset 0 1px 0 '+button_shadow+'; box-shadow: inset 0 1px 0 '+button_shadow+'; text-decoration: none; text-shadow: 0 1px 0 rgba(0,0,0,0.1); border-radius: 3px; padding-left: 20px; padding-right: 20px; }\n';
174
+
175
+ css+= css_prefix + ' div.ecwid-AddToBagButton-up-hovering,' + css_prefix + ' div.ecwid-productBrowser-cart-checkoutButton-up-hovering,' + css_prefix + ' div.ecwid-Checkout-placeOrderButton-up-hovering,' + css_prefix + ' div.ecwid-ContinueShoppingButton-up-hovering { background-image: -webkit-gradient(linear, left top, left bottom, from('+button_hover_top+'), to('+button_hover_bottom+')); background-image: -webkit-linear-gradient(top, '+button_hover_top+', '+button_hover_bottom+'); background-image: -moz-linear-gradient(top, '+button_hover_top+', '+button_hover_bottom+'); background-image: -ms-linear-gradient(top, '+button_hover_top+', '+button_hover_bottom+'); background-image: -o-linear-gradient(top, '+button_hover_top+', '+button_hover_bottom+'); background-image: linear-gradient(to bottom, '+button_hover_top+', '+button_hover_bottom+'); border: 1px solid '+button_border_hover_color+'; -webkit-box-shadow: inset 0 1px 0 '+button_hover_shadow+'; box-shadow: inset 0 1px 0 '+button_hover_shadow+'; text-decoration: none; text-shadow: 0 -1px 0 rgba(0,0,0,0.2); } \n';
176
+
177
+
178
+ css+= css_prefix + ' button.gwt-Button,' + css_prefix + ' #wrapper button.gwt-Button{ color: '+ secondary_link +'; }\n';
179
+ css+= css_prefix + ' button.ecwid-AccentedButton{ line-height: 1; }\n';
180
+
181
+ // Search
182
+ css+= css_prefix + ' .ecwid-SearchPanel-button { background-color: '+ muted_background.toString() +'; border: 1px solid '+ border_color +'; border-radius: 2px; color: '+ primary_color +'; cursor: pointer; font-size: 12px; height: 26px; outline: medium none; padding: 2px 5px; text-decoration: none; vertical-align: baseline; white-space: nowrap; }\n';
183
+
184
+ // Categories
185
+ css+= css_prefix + ' span.ecwid-categories-category{ color: '+ muted_color.toString() +'; }\n';
186
+ css+= css_prefix + ' div.ecwid-categoriesMenuBar td.gwt-MenuItem-selected span.ecwid-categories-category,' + css_prefix + ' div.ecwid-categoriesMenuBar td.gwt-MenuItem-current span.ecwid-categories-category,' + css_prefix + ' td.ecwid-categories-vertical-table-cell-selected span.ecwid-categories-category,' + css_prefix + ' table.ecwid-categoriesTabBar table.gwt-TabBarItem-selected span.ecwid-categories-category{ color: '+ primary_link.toString() +'; }\n';
187
+
188
+ css+= css_prefix + ' table.ecwid-categoriesTabBar table.gwt-TabBarItem-selected td { background: none !important; }\n';
189
+ css+= css_prefix + ' table.ecwid-categoriesTabBar table.gwt-TabBarItem-selected { border: 1px solid; border-bottom: 0px; border-color: '+ border_color.toString() +'; }\n';
190
+ css+= css_prefix + ' .ecwid .ecwid-productBrowser-ask-advice-panel { min-height: 18px; height: auto; }\n';
191
+
192
+ head = document.getElementsByTagName('head')[0],
193
+ style = document.createElement('style');
194
+ style.type = 'text/css';
195
+ if (style.styleSheet) {
196
+ style.styleSheet.cssText = css;
197
+ } else {
198
+ style.appendChild(document.createTextNode(css));
199
+ }
200
+ head.appendChild(style);
201
+ document.getElementsByTagName("body")[0].className += ' chameleon';
202
+ });
203
+ }
204
+
205
+ function getLinkColor(url) {
206
+ var a = document.createElement('a');
207
+ a.href = a.textContent = url;
208
+ document.body.appendChild(a);
209
+ return document.defaultView.getComputedStyle(a, null).color;
210
+ }
211
+
212
+ function toCamelCase(s){
213
+ for(var exp=/-([a-z])/; exp.test(s); s=s.replace(exp,RegExp.$1.toUpperCase()));
214
+ return s;
215
+ }
216
+
217
+ function getStyle(e,a){
218
+ var v=null;
219
+ if(document.defaultView && document.defaultView.getComputedStyle){
220
+ var cs = document.defaultView.getComputedStyle(e, null);
221
+ if(cs && cs.getPropertyValue)
222
+ v = cs.getPropertyValue(a);
223
+ }
224
+ if(!v && e.currentStyle)
225
+ v = e.currentStyle[toCamelCase(a)];
226
+ return v;
227
+ }
228
+
229
+ function getBackground(e){
230
+ var v = getStyle(e,'background-color');
231
+ while (!v || v=='transparent' || v=='#000000' || v=='rgba(0, 0, 0, 0)'){
232
+ if( e == document.body )
233
+ v = '#fff';
234
+ else {
235
+ e = e.parentNode;
236
+ v = getStyle(e, 'background-color');
237
+ }
238
+ }
239
+ return v;
240
+ }
241
+
242
+ function msg(label, defaultValue) {
243
+ var messageBundles = (window.Ecwid && window.Ecwid.MessageBundles) ? window.Ecwid.MessageBundles : {};
244
+ var bundle = messageBundles['ru.cdev.xnext.client'] ? messageBundles['ru.cdev.xnext.client'] : {};
245
+ return bundle[label] || defaultValue;
246
+ }
247
+
248
+ // TinyColor v1.1.2
249
+ // https://github.com/bgrins/TinyColor
250
+ // Brian Grinstead, MIT License
251
+ !function(){function t(r,n){if(r=r?r:"",n=n||{},r instanceof t)return r;if(!(this instanceof t))return new t(r,n);var a=e(r);this._originalInput=r,this._r=a.r,this._g=a.g,this._b=a.b,this._a=a.a,this._roundA=j(100*this._a)/100,this._format=n.format||a.format,this._gradientType=n.gradientType,this._r<1&&(this._r=j(this._r)),this._g<1&&(this._g=j(this._g)),this._b<1&&(this._b=j(this._b)),this._ok=a.ok,this._tc_id=I++}function e(t){var e={r:0,g:0,b:0},n=1,i=!1,o=!1;return"string"==typeof t&&(t=q(t)),"object"==typeof t&&(t.hasOwnProperty("r")&&t.hasOwnProperty("g")&&t.hasOwnProperty("b")?(e=r(t.r,t.g,t.b),i=!0,o="%"===String(t.r).substr(-1)?"prgb":"rgb"):t.hasOwnProperty("h")&&t.hasOwnProperty("s")&&t.hasOwnProperty("v")?(t.s=O(t.s),t.v=O(t.v),e=s(t.h,t.s,t.v),i=!0,o="hsv"):t.hasOwnProperty("h")&&t.hasOwnProperty("s")&&t.hasOwnProperty("l")&&(t.s=O(t.s),t.l=O(t.l),e=a(t.h,t.s,t.l),i=!0,o="hsl"),t.hasOwnProperty("a")&&(n=t.a)),n=k(n),{ok:i,format:t.format||o,r:T(255,$(e.r,0)),g:T(255,$(e.g,0)),b:T(255,$(e.b,0)),a:n}}function r(t,e,r){return{r:255*A(t,255),g:255*A(e,255),b:255*A(r,255)}}function n(t,e,r){t=A(t,255),e=A(e,255),r=A(r,255);var n,a,i=$(t,e,r),s=T(t,e,r),o=(i+s)/2;if(i==s)n=a=0;else{var f=i-s;switch(a=o>.5?f/(2-i-s):f/(i+s),i){case t:n=(e-r)/f+(r>e?6:0);break;case e:n=(r-t)/f+2;break;case r:n=(t-e)/f+4}n/=6}return{h:n,s:a,l:o}}function a(t,e,r){function n(t,e,r){return 0>r&&(r+=1),r>1&&(r-=1),1/6>r?t+6*(e-t)*r:.5>r?e:2/3>r?t+(e-t)*(2/3-r)*6:t}var a,i,s;if(t=A(t,360),e=A(e,100),r=A(r,100),0===e)a=i=s=r;else{var o=.5>r?r*(1+e):r+e-r*e,f=2*r-o;a=n(f,o,t+1/3),i=n(f,o,t),s=n(f,o,t-1/3)}return{r:255*a,g:255*i,b:255*s}}function i(t,e,r){t=A(t,255),e=A(e,255),r=A(r,255);var n,a,i=$(t,e,r),s=T(t,e,r),o=i,f=i-s;if(a=0===i?0:f/i,i==s)n=0;else{switch(i){case t:n=(e-r)/f+(r>e?6:0);break;case e:n=(r-t)/f+2;break;case r:n=(t-e)/f+4}n/=6}return{h:n,s:a,v:o}}function s(t,e,r){t=6*A(t,360),e=A(e,100),r=A(r,100);var n=N.floor(t),a=t-n,i=r*(1-e),s=r*(1-a*e),o=r*(1-(1-a)*e),f=n%6,h=[r,s,i,i,o,r][f],u=[o,r,r,s,i,i][f],l=[i,i,o,r,r,s][f];return{r:255*h,g:255*u,b:255*l}}function o(t,e,r,n){var a=[M(j(t).toString(16)),M(j(e).toString(16)),M(j(r).toString(16))];return n&&a[0].charAt(0)==a[0].charAt(1)&&a[1].charAt(0)==a[1].charAt(1)&&a[2].charAt(0)==a[2].charAt(1)?a[0].charAt(0)+a[1].charAt(0)+a[2].charAt(0):a.join("")}function f(t,e,r,n){var a=[M(P(n)),M(j(t).toString(16)),M(j(e).toString(16)),M(j(r).toString(16))];return a.join("")}function h(e,r){r=0===r?0:r||10;var n=t(e).toHsl();return n.s-=r/100,n.s=H(n.s),t(n)}function u(e,r){r=0===r?0:r||10;var n=t(e).toHsl();return n.s+=r/100,n.s=H(n.s),t(n)}function l(e){return t(e).desaturate(100)}function c(e,r){r=0===r?0:r||10;var n=t(e).toHsl();return n.l+=r/100,n.l=H(n.l),t(n)}function g(e,r){r=0===r?0:r||10;var n=t(e).toRgb();return n.r=$(0,T(255,n.r-j(255*-(r/100)))),n.g=$(0,T(255,n.g-j(255*-(r/100)))),n.b=$(0,T(255,n.b-j(255*-(r/100)))),t(n)}function d(e,r){r=0===r?0:r||10;var n=t(e).toHsl();return n.l-=r/100,n.l=H(n.l),t(n)}function b(e,r){var n=t(e).toHsl(),a=(j(n.h)+r)%360;return n.h=0>a?360+a:a,t(n)}function p(e){var r=t(e).toHsl();return r.h=(r.h+180)%360,t(r)}function m(e){var r=t(e).toHsl(),n=r.h;return[t(e),t({h:(n+120)%360,s:r.s,l:r.l}),t({h:(n+240)%360,s:r.s,l:r.l})]}function _(e){var r=t(e).toHsl(),n=r.h;return[t(e),t({h:(n+90)%360,s:r.s,l:r.l}),t({h:(n+180)%360,s:r.s,l:r.l}),t({h:(n+270)%360,s:r.s,l:r.l})]}function v(e){var r=t(e).toHsl(),n=r.h;return[t(e),t({h:(n+72)%360,s:r.s,l:r.l}),t({h:(n+216)%360,s:r.s,l:r.l})]}function y(e,r,n){r=r||6,n=n||30;var a=t(e).toHsl(),i=360/n,s=[t(e)];for(a.h=(a.h-(i*r>>1)+720)%360;--r;)a.h=(a.h+i)%360,s.push(t(a));return s}function w(e,r){r=r||6;for(var n=t(e).toHsv(),a=n.h,i=n.s,s=n.v,o=[],f=1/r;r--;)o.push(t({h:a,s:i,v:s})),s=(s+f)%1;return o}function x(t){var e={};for(var r in t)t.hasOwnProperty(r)&&(e[t[r]]=r);return e}function k(t){return t=parseFloat(t),(isNaN(t)||0>t||t>1)&&(t=1),t}function A(t,e){R(t)&&(t="100%");var r=F(t);return t=T(e,$(0,parseFloat(t))),r&&(t=parseInt(t*e,10)/100),N.abs(t-e)<1e-6?1:t%e/parseFloat(e)}function H(t){return T(1,$(0,t))}function S(t){return parseInt(t,16)}function R(t){return"string"==typeof t&&-1!=t.indexOf(".")&&1===parseFloat(t)}function F(t){return"string"==typeof t&&-1!=t.indexOf("%")}function M(t){return 1==t.length?"0"+t:""+t}function O(t){return 1>=t&&(t=100*t+"%"),t}function P(t){return Math.round(255*parseFloat(t)).toString(16)}function C(t){return S(t)/255}function q(t){t=t.replace(z,"").replace(E,"").toLowerCase();var e=!1;if(B[t])t=B[t],e=!0;else if("transparent"==t)return{r:0,g:0,b:0,a:0,format:"name"};var r;return(r=U.rgb.exec(t))?{r:r[1],g:r[2],b:r[3]}:(r=U.rgba.exec(t))?{r:r[1],g:r[2],b:r[3],a:r[4]}:(r=U.hsl.exec(t))?{h:r[1],s:r[2],l:r[3]}:(r=U.hsla.exec(t))?{h:r[1],s:r[2],l:r[3],a:r[4]}:(r=U.hsv.exec(t))?{h:r[1],s:r[2],v:r[3]}:(r=U.hsva.exec(t))?{h:r[1],s:r[2],v:r[3],a:r[4]}:(r=U.hex8.exec(t))?{a:C(r[1]),r:S(r[2]),g:S(r[3]),b:S(r[4]),format:e?"name":"hex8"}:(r=U.hex6.exec(t))?{r:S(r[1]),g:S(r[2]),b:S(r[3]),format:e?"name":"hex"}:(r=U.hex3.exec(t))?{r:S(r[1]+""+r[1]),g:S(r[2]+""+r[2]),b:S(r[3]+""+r[3]),format:e?"name":"hex"}:!1}function L(t){var e,r;return t=t||{level:"AA",size:"small"},e=(t.level||"AA").toUpperCase(),r=(t.size||"small").toLowerCase(),"AA"!==e&&"AAA"!==e&&(e="AA"),"small"!==r&&"large"!==r&&(r="small"),{level:e,size:r}}var z=/^[\s,#]+/,E=/\s+$/,I=0,N=Math,j=N.round,T=N.min,$=N.max,D=N.random;t.prototype={isDark:function(){return this.getBrightness()<128},isLight:function(){return!this.isDark()},isValid:function(){return this._ok},getOriginalInput:function(){return this._originalInput},getFormat:function(){return this._format},getAlpha:function(){return this._a},getBrightness:function(){var t=this.toRgb();return(299*t.r+587*t.g+114*t.b)/1e3},getLuminance:function(){var t,e,r,n,a,i,s=this.toRgb();return t=s.r/255,e=s.g/255,r=s.b/255,n=.03928>=t?t/12.92:Math.pow((t+.055)/1.055,2.4),a=.03928>=e?e/12.92:Math.pow((e+.055)/1.055,2.4),i=.03928>=r?r/12.92:Math.pow((r+.055)/1.055,2.4),.2126*n+.7152*a+.0722*i},setAlpha:function(t){return this._a=k(t),this._roundA=j(100*this._a)/100,this},toHsv:function(){var t=i(this._r,this._g,this._b);return{h:360*t.h,s:t.s,v:t.v,a:this._a}},toHsvString:function(){var t=i(this._r,this._g,this._b),e=j(360*t.h),r=j(100*t.s),n=j(100*t.v);return 1==this._a?"hsv("+e+", "+r+"%, "+n+"%)":"hsva("+e+", "+r+"%, "+n+"%, "+this._roundA+")"},toHsl:function(){var t=n(this._r,this._g,this._b);return{h:360*t.h,s:t.s,l:t.l,a:this._a}},toHslString:function(){var t=n(this._r,this._g,this._b),e=j(360*t.h),r=j(100*t.s),a=j(100*t.l);return 1==this._a?"hsl("+e+", "+r+"%, "+a+"%)":"hsla("+e+", "+r+"%, "+a+"%, "+this._roundA+")"},toHex:function(t){return o(this._r,this._g,this._b,t)},toHexString:function(t){return"#"+this.toHex(t)},toHex8:function(){return f(this._r,this._g,this._b,this._a)},toHex8String:function(){return"#"+this.toHex8()},toRgb:function(){return{r:j(this._r),g:j(this._g),b:j(this._b),a:this._a}},toRgbString:function(){return 1==this._a?"rgb("+j(this._r)+", "+j(this._g)+", "+j(this._b)+")":"rgba("+j(this._r)+", "+j(this._g)+", "+j(this._b)+", "+this._roundA+")"},toPercentageRgb:function(){return{r:j(100*A(this._r,255))+"%",g:j(100*A(this._g,255))+"%",b:j(100*A(this._b,255))+"%",a:this._a}},toPercentageRgbString:function(){return 1==this._a?"rgb("+j(100*A(this._r,255))+"%, "+j(100*A(this._g,255))+"%, "+j(100*A(this._b,255))+"%)":"rgba("+j(100*A(this._r,255))+"%, "+j(100*A(this._g,255))+"%, "+j(100*A(this._b,255))+"%, "+this._roundA+")"},toName:function(){return 0===this._a?"transparent":this._a<1?!1:G[o(this._r,this._g,this._b,!0)]||!1},toFilter:function(e){var r="#"+f(this._r,this._g,this._b,this._a),n=r,a=this._gradientType?"GradientType = 1, ":"";if(e){var i=t(e);n=i.toHex8String()}return"progid:DXImageTransform.Microsoft.gradient("+a+"startColorstr="+r+",endColorstr="+n+")"},toString:function(t){var e=!!t;t=t||this._format;var r=!1,n=this._a<1&&this._a>=0,a=!e&&n&&("hex"===t||"hex6"===t||"hex3"===t||"name"===t);return a?"name"===t&&0===this._a?this.toName():this.toRgbString():("rgb"===t&&(r=this.toRgbString()),"prgb"===t&&(r=this.toPercentageRgbString()),("hex"===t||"hex6"===t)&&(r=this.toHexString()),"hex3"===t&&(r=this.toHexString(!0)),"hex8"===t&&(r=this.toHex8String()),"name"===t&&(r=this.toName()),"hsl"===t&&(r=this.toHslString()),"hsv"===t&&(r=this.toHsvString()),r||this.toHexString())},_applyModification:function(t,e){var r=t.apply(null,[this].concat([].slice.call(e)));return this._r=r._r,this._g=r._g,this._b=r._b,this.setAlpha(r._a),this},lighten:function(){return this._applyModification(c,arguments)},brighten:function(){return this._applyModification(g,arguments)},darken:function(){return this._applyModification(d,arguments)},desaturate:function(){return this._applyModification(h,arguments)},saturate:function(){return this._applyModification(u,arguments)},greyscale:function(){return this._applyModification(l,arguments)},spin:function(){return this._applyModification(b,arguments)},_applyCombination:function(t,e){return t.apply(null,[this].concat([].slice.call(e)))},analogous:function(){return this._applyCombination(y,arguments)},complement:function(){return this._applyCombination(p,arguments)},monochromatic:function(){return this._applyCombination(w,arguments)},splitcomplement:function(){return this._applyCombination(v,arguments)},triad:function(){return this._applyCombination(m,arguments)},tetrad:function(){return this._applyCombination(_,arguments)}},t.fromRatio=function(e,r){if("object"==typeof e){var n={};for(var a in e)e.hasOwnProperty(a)&&(n[a]="a"===a?e[a]:O(e[a]));e=n}return t(e,r)},t.equals=function(e,r){return e&&r?t(e).toRgbString()==t(r).toRgbString():!1},t.random=function(){return t.fromRatio({r:D(),g:D(),b:D()})},t.mix=function(e,r,n){n=0===n?0:n||50;var a,i=t(e).toRgb(),s=t(r).toRgb(),o=n/100,f=2*o-1,h=s.a-i.a;a=f*h==-1?f:(f+h)/(1+f*h),a=(a+1)/2;var u=1-a,l={r:s.r*a+i.r*u,g:s.g*a+i.g*u,b:s.b*a+i.b*u,a:s.a*o+i.a*(1-o)};return t(l)},t.readability=function(e,r){var n=t(e),a=t(r);return(Math.max(n.getLuminance(),a.getLuminance())+.05)/(Math.min(n.getLuminance(),a.getLuminance())+.05)},t.isReadable=function(e,r,n){var a,i,s=t.readability(e,r);switch(i=!1,a=L(n),a.level+a.size){case"AAsmall":case"AAAlarge":i=s>=4.5;break;case"AAlarge":i=s>=3;break;case"AAAsmall":i=s>=7}return i},t.mostReadable=function(e,r,n){var a,i,s,o,f=null,h=0;n=n||{},i=n.includeFallbackColors,s=n.level,o=n.size;for(var u=0;u<r.length;u++)a=t.readability(e,r[u]),a>h&&(h=a,f=t(r[u]));return t.isReadable(e,f,{level:s,size:o})||!i?f:(n.includeFallbackColors=!1,t.mostReadable(e,["#fff","#000"],n))};var B=t.names={aliceblue:"f0f8ff",antiquewhite:"faebd7",aqua:"0ff",aquamarine:"7fffd4",azure:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"000",blanchedalmond:"ffebcd",blue:"00f",blueviolet:"8a2be2",brown:"a52a2a",burlywood:"deb887",burntsienna:"ea7e5d",cadetblue:"5f9ea0",chartreuse:"7fff00",chocolate:"d2691e",coral:"ff7f50",cornflowerblue:"6495ed",cornsilk:"fff8dc",crimson:"dc143c",cyan:"0ff",darkblue:"00008b",darkcyan:"008b8b",darkgoldenrod:"b8860b",darkgray:"a9a9a9",darkgreen:"006400",darkgrey:"a9a9a9",darkkhaki:"bdb76b",darkmagenta:"8b008b",darkolivegreen:"556b2f",darkorange:"ff8c00",darkorchid:"9932cc",darkred:"8b0000",darksalmon:"e9967a",darkseagreen:"8fbc8f",darkslateblue:"483d8b",darkslategray:"2f4f4f",darkslategrey:"2f4f4f",darkturquoise:"00ced1",darkviolet:"9400d3",deeppink:"ff1493",deepskyblue:"00bfff",dimgray:"696969",dimgrey:"696969",dodgerblue:"1e90ff",firebrick:"b22222",floralwhite:"fffaf0",forestgreen:"228b22",fuchsia:"f0f",gainsboro:"dcdcdc",ghostwhite:"f8f8ff",gold:"ffd700",goldenrod:"daa520",gray:"808080",green:"008000",greenyellow:"adff2f",grey:"808080",honeydew:"f0fff0",hotpink:"ff69b4",indianred:"cd5c5c",indigo:"4b0082",ivory:"fffff0",khaki:"f0e68c",lavender:"e6e6fa",lavenderblush:"fff0f5",lawngreen:"7cfc00",lemonchiffon:"fffacd",lightblue:"add8e6",lightcoral:"f08080",lightcyan:"e0ffff",lightgoldenrodyellow:"fafad2",lightgray:"d3d3d3",lightgreen:"90ee90",lightgrey:"d3d3d3",lightpink:"ffb6c1",lightsalmon:"ffa07a",lightseagreen:"20b2aa",lightskyblue:"87cefa",lightslategray:"789",lightslategrey:"789",lightsteelblue:"b0c4de",lightyellow:"ffffe0",lime:"0f0",limegreen:"32cd32",linen:"faf0e6",magenta:"f0f",maroon:"800000",mediumaquamarine:"66cdaa",mediumblue:"0000cd",mediumorchid:"ba55d3",mediumpurple:"9370db",mediumseagreen:"3cb371",mediumslateblue:"7b68ee",mediumspringgreen:"00fa9a",mediumturquoise:"48d1cc",mediumvioletred:"c71585",midnightblue:"191970",mintcream:"f5fffa",mistyrose:"ffe4e1",moccasin:"ffe4b5",navajowhite:"ffdead",navy:"000080",oldlace:"fdf5e6",olive:"808000",olivedrab:"6b8e23",orange:"ffa500",orangered:"ff4500",orchid:"da70d6",palegoldenrod:"eee8aa",palegreen:"98fb98",paleturquoise:"afeeee",palevioletred:"db7093",papayawhip:"ffefd5",peachpuff:"ffdab9",peru:"cd853f",pink:"ffc0cb",plum:"dda0dd",powderblue:"b0e0e6",purple:"800080",rebeccapurple:"663399",red:"f00",rosybrown:"bc8f8f",royalblue:"4169e1",saddlebrown:"8b4513",salmon:"fa8072",sandybrown:"f4a460",seagreen:"2e8b57",seashell:"fff5ee",sienna:"a0522d",silver:"c0c0c0",skyblue:"87ceeb",slateblue:"6a5acd",slategray:"708090",slategrey:"708090",snow:"fffafa",springgreen:"00ff7f",steelblue:"4682b4",tan:"d2b48c",teal:"008080",thistle:"d8bfd8",tomato:"ff6347",turquoise:"40e0d0",violet:"ee82ee",wheat:"f5deb3",white:"fff",whitesmoke:"f5f5f5",yellow:"ff0",yellowgreen:"9acd32"},G=t.hexNames=x(B),U=function(){var t="[-\\+]?\\d+%?",e="[-\\+]?\\d*\\.\\d+%?",r="(?:"+e+")|(?:"+t+")",n="[\\s|\\(]+("+r+")[,|\\s]+("+r+")[,|\\s]+("+r+")\\s*\\)?",a="[\\s|\\(]+("+r+")[,|\\s]+("+r+")[,|\\s]+("+r+")[,|\\s]+("+r+")\\s*\\)?";return{rgb:new RegExp("rgb"+n),rgba:new RegExp("rgba"+a),hsl:new RegExp("hsl"+n),hsla:new RegExp("hsla"+a),hsv:new RegExp("hsv"+n),hsva:new RegExp("hsva"+a),hex3:/^([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex8:/^([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/}}();"undefined"!=typeof module&&module.exports?module.exports=t:"function"==typeof define&&define.amd?define(function(){return t}):window.tinycolor=t}();
languages/ecwid-shopping-cart-ru_RU.po CHANGED
@@ -1,467 +1,467 @@
1
- msgid "Ecwid Shopping Cart"
2
- msgstr "Интернет-магазин Эквид"
3
-
4
- msgid "Ecwid Team"
5
- msgstr "Ecwid Team"
6
-
7
- msgid "Ecwid is a free full-featured shopping cart. It can be easily integrated with any Wordpress blog and takes less than 5 minutes to set up."
8
- msgstr "Эквид – бесплатный полнофункциональный интернет-магазин. Легко встраивается в любой WordPress сайт и настраивается за 5 минут."
9
-
10
- msgid "Get help"
11
- msgstr "Получить помощь"
12
-
13
- msgid "Go to Ecwid site"
14
- msgstr "Пройти на сайт Эквида"
15
-
16
- msgid "Visit storefront"
17
- msgstr "Открыть страницу магазина"
18
-
19
- msgid "Manage my store"
20
- msgstr "Управлять магазином"
21
-
22
- msgid "Manage plugin settings"
23
- msgstr "Изменить настройки плагина"
24
-
25
- msgid "→ Sell on Facebook"
26
- msgstr "→ Начать продавать на Facebook"
27
-
28
- msgid "<a %s>Online store powered by Ecwid</a>"
29
- msgstr "<a %s>Интернет магазин построен на Эквиде</a>"
30
-
31
- msgid "Store"
32
- msgstr "Магазин"
33
-
34
- msgid "Ecwid shopping cart settings"
35
- msgstr "Настройки Ecwid"
36
-
37
- msgid "Ecwid Store"
38
- msgstr "Магазин Ecwid"
39
-
40
- msgid "Setup"
41
- msgstr "Настройки"
42
-
43
- msgid "Dashboard"
44
- msgstr "Консоль"
45
-
46
- msgid "Appearance settings"
47
- msgstr "Настройки внешнего вида"
48
-
49
- msgid "Appearance"
50
- msgstr "Внешний вид"
51
-
52
- msgid "Advanced settings"
53
- msgstr "Дополнительные настройки"
54
-
55
- msgid "Advanced"
56
- msgstr "Дополнительные"
57
-
58
- msgid "Hidden category"
59
- msgstr "Скрытая категория"
60
-
61
- msgid "If you like Ecwid and want to help it grow and become the most popular e-commerce solution, you can now add a fancy 'Powered by Ecwid' badge on your site to show your visitors that you're a proud user of Ecwid."
62
- msgstr "Если вам нравится Эквид и вы хотите помочь ему расти и стать самым популярным конструктором интернет-магазинов, вы можете добавить значок Эквида на ваш сайт, чтобы показать посетителям, что вы пользуетесь Эквидом."
63
-
64
- msgid "Ecwid Badge"
65
- msgstr "Значок Эквида"
66
-
67
- msgid "Ecwid shopping cart widget"
68
- msgstr "Виджет интернет-магазина Эквид"
69
-
70
- msgid "Ecwid ecommerce solution"
71
- msgstr "Решение для электронной коммерции Эквид"
72
-
73
- msgid "Ecwid free shopping cart"
74
- msgstr "Беспланный конструктов интернет-магазинов Эквид"
75
-
76
- msgid "Ecwid shopping cart"
77
- msgstr "Интернет-магазин Эквид"
78
-
79
- msgid "Ecwid e-commerce widgets"
80
- msgstr "Виджеты для электронной коммерции Эквид"
81
-
82
- msgid "Your store's minicart"
83
- msgstr "Корзина вашего магазина"
84
-
85
- msgid "Ecwid Shopping Bag (Normal)"
86
- msgstr "Корзина Эквида (Основной режим)"
87
-
88
- msgid "Ecwid Shopping Bag (Mini view)"
89
- msgstr "Корзина Эквида (Компактная)"
90
-
91
- msgid "Your store's search box"
92
- msgstr "Форма поиска по вашему магазину"
93
-
94
- msgid "Ecwid Search Box"
95
- msgstr "Поиск по Эквид-магазину"
96
-
97
- msgid "Vertical menu of categories"
98
- msgstr "Вертикальное меню категорий"
99
-
100
- msgid "Ecwid Vertical Categories"
101
- msgstr "Вертикальное меню категорий Эквида"
102
-
103
- msgid "A link to your store page"
104
- msgstr "Ссылка на страницу с вашим Эквид-магазином"
105
-
106
- msgid "Ecwid Store Page Link"
107
- msgstr "Ссылка на Эквид-магазин"
108
-
109
- msgid "Shop"
110
- msgstr "Магазин"
111
-
112
- msgid "A list of products recently viewed by a customer. Add this widget to the sidebar to let them later return to the products they saw in your shop."
113
- msgstr "Список товаров, просмотренных посетителями. Добавьте этот виджет в сайдбар, чтобы позволить клиентам быстро перейти к товарам, которые они просматривали ранее."
114
-
115
- msgid "Recently Viewed Products"
116
- msgstr "Просмотренные товары"
117
-
118
- msgid "Number of products to show"
119
- msgstr "Количество товаров для отображения"
120
-
121
- msgid "Greetings! Your Ecwid store is now active."
122
- msgstr "Добро пожаловать в Эквид!"
123
-
124
- msgid "Take a few simple steps to complete store setup"
125
- msgstr "Магазин почти готов — осталось несколько простых шагов"
126
-
127
- msgid "Set up Ecwid Store"
128
- msgstr "Настроить магазин"
129
-
130
- msgid "Good job! Your store is set up and you're ready to sell."
131
- msgstr "Отлично! Магазин установлен и готов к продажам."
132
-
133
- msgid "Now you can fine-tune your store's appearance"
134
- msgstr "Теперь вы можете настроить внешний вид витрины"
135
-
136
- msgid "Visit Storefront"
137
- msgstr "Открыть витрину"
138
-
139
- msgid "Configure Appearance"
140
- msgstr "Настроить внешний вид"
141
-
142
- msgid "Your store is almost ready!"
143
- msgstr "Магазин почти готов!"
144
-
145
- msgid "Connect your Ecwid account with this site to complete setup and start selling"
146
- msgstr "Привяжите Эквид-аккаунт к сайту, чтобы завершить установку и начать продавать"
147
-
148
- msgid "Connect Your Ecwid Store"
149
- msgstr "Привязать Эквид-аккаунт"
150
-
151
- msgid "To add extra functions to your store, drag and drop Ecwid store elements on your site. When you're done, you can get back to modifying your settings."
152
- msgstr "Добавьте дополнительные элементы магазина, перетащив виджеты Эквида в нужное место сайта. После установки виджетов можете вернуться к настройкам магазина."
153
-
154
- msgid "Back to Store Settings"
155
- msgstr "Вернуться к настройкам"
156
-
157
- msgid "Do you like your Ecwid online store? We'd appreciate it if you add your review and vote for the plugin on Wordpress site."
158
- msgstr "Вам нравится ваш Эквид-магазин? Будем благодарны, если вы оставите отзыв и проголосуете за Эквид на сайте WordPress."
159
-
160
- msgid "Rate Ecwid at WordPress.org"
161
- msgstr "Оценить Эквид на WordPress.org"
162
-
163
- msgid "Add Store"
164
- msgstr "Добавить магазин"
165
-
166
- msgid "Edit Store"
167
- msgstr "Настройки магазина"
168
-
169
- msgid "Edit Appearance"
170
- msgstr "Настроить внешний вид"
171
-
172
- msgid "Price"
173
- msgstr "Цена"
174
-
175
- msgid "Never show this message again"
176
- msgstr "Больше не показывать это сообщение"
177
-
178
- msgid "Ecwid Shopping Cart — Advanced settings"
179
- msgstr "Магазин Ecwid — Дополнительные настройки"
180
-
181
- msgid "Category shown by default"
182
- msgstr "Категория, показываемая по умолчанию"
183
-
184
- msgid "Store root category"
185
- msgstr "Корневая категория магазина"
186
-
187
- msgid "Default category ID"
188
- msgstr "ID категории по умолчанию"
189
-
190
- msgid "By default, the storefront shows a list of root categories. You can override this behavior and show a different category when customers open your store for the first time. This is useful if you only have one category or want to display a specific set of items (e.g. \"Featured Products\") to new visitors."
191
- msgstr "По умолчанию, магазин показывает корневые категории. Здесь можно выбрать другую категорию для отображения, когда покупатель впервые открывает ваш магазин. Это может быть полезно, если у вас есть только одна категория или вы хотите показывать определённые набор товаров (например, специальные предложения) новым пользователям."
192
-
193
- msgid "In order to set this option, <a %s>find an ID of the necessary category</a> and save it here."
194
- msgstr "Чтобы выставить категорию, <a %s>найдите ID нужной категории</a> и введите в это поле."
195
-
196
- msgid "Single Sign-On Secret Key"
197
- msgstr "Секретный ключ системы единой авторизации"
198
-
199
- msgid "Single Sign-On Secret Key is an option that allows your customers access to your WordPress site as well as the Ecwid shopping cart. When customers log in to your site, they will automatically be logged in to your Ecwid store as well. It makes sense to enable this feature if your visitors actually create accounts in your WordPress website."
200
- msgstr "Эта функция позволяет включить систему единой авторизации: когда покупатели вошли в свой аккаунт на вашем сайте, они автоматически входят в свой Эквид-аккаунт, даже если раньше у них его не было. Эта функция может быть полезна в случае, если ваши посетители создают свои аккаунты на вашем сайте."
201
-
202
- msgid "In order to enable this feature, opt to use a secret key. You will find this key in your Ecwid control panel, at \"System Settings > Apps > Legacy API Keys > Single Sign-On Secret Key\" page. This feature is available for <a href=\"http://www.ecwid.com/compare-plans.html\" target=\"_blank\">paid users</a> only."
203
- msgstr "Чтобы включить эту функцию, вам необходимо ввести секретный ключ. Его можно найти в панели управления Эквида в секции \"Настройки > Apps > Legacy API Keys > Секретный ключ SSO\". Эта функция доступна только пользователям с <a href=\"http://www.ecwid.com/compare-plans.html\" target=\"_blank\">платным аккаунтом</a>."
204
-
205
- msgid "Save changes"
206
- msgstr "Сохранить изменения"
207
-
208
- msgid "Ecwid Shopping Cart — Appearance settings"
209
- msgstr "Магазин Ecwid — Настройки внешнего вида"
210
-
211
- msgid "Display search box above products"
212
- msgstr "Показывать форму поиска над списком продуктов"
213
-
214
- msgid "Or you can add search box to your website's toolbar using <a href=\"%s\">WordPress native widgets</a>"
215
- msgstr "Или вы можете добавить форму поиска на ваш сайт с помощью <a href=\"%s\">виджетов WordPress</a>"
216
-
217
- msgid "Display horizontal categories above products"
218
- msgstr "Показывать горизонтальное меню категорий над списком продуктов"
219
-
220
- msgid "Or you can add vertical categories to your website's toolbar using <a href=\"%s\">WordPress native widgets</a>"
221
- msgstr "Или вы можете добавить вертикальное меню категорий на ваш сайт с помощью <a href=\"%s\">виджетов WordPress</a>"
222
-
223
- msgid "Enable minicart attached to horizontal categories"
224
- msgstr "Показывать корзину у горизонтального меню категорий"
225
-
226
- msgid "You should disable this option, if you added minicart to your website's&nbsp;sidebar"
227
- msgstr "Если вы добавили виджет корзины в боковое меню, следует отключить эту настройку"
228
-
229
- msgid "Number of categories per row"
230
- msgstr "Количество категорий в ряд"
231
-
232
- msgid "Number of products per page"
233
- msgstr "Количество продуктов на странице"
234
-
235
- msgid "Grid view"
236
- msgstr "Вид \"сетка\""
237
-
238
- msgid "List view"
239
- msgstr "Вид \"список\""
240
-
241
- msgid "Table view"
242
- msgstr "Вид \"таблица\""
243
-
244
- msgid "Here you can control how many products will be displayed per page. These options define maximum values. If there is not enough space to show all product columns, Ecwid will adapt the number of columns to hold all products."
245
- msgstr "Здесь вы можете задать количество отображаемых продуктов на странице. Эти цифры определяют максимальные значения. Если на странице в сетке продуктов будет недостаточно места для отображения всех столбцов, Эквид уменьшит их количество."
246
-
247
- msgid "Default view mode on product pages"
248
- msgstr "Вид страницы продуктов по умолчанию"
249
-
250
- msgid "Grid"
251
- msgstr "Сетка"
252
-
253
- msgid "List"
254
- msgstr "Список"
255
-
256
- msgid "Table"
257
- msgstr "Таблица"
258
-
259
- msgid "Default view mode on search results"
260
- msgstr "Вид страницы результатов поиска по умолчанию"
261
-
262
- msgid "Connect your store<br /> to this WordPress site"
263
- msgstr "Подключите магазин<br /> к своему WordPress сайту"
264
-
265
- msgid "Connect Ecwid store"
266
- msgstr "Подключить"
267
-
268
- msgid "After clicking button you need to login and accept permissions to use our plugin"
269
- msgstr "Нажмите на кнопку, авторизуйтесь в Эквиде и выдайте запрошенные права доступа"
270
-
271
- msgid "Connection error - after clicking button you need to login and accept permissions to use our plugin. Please, try again."
272
- msgstr "Ошибка подключения: после нажатия на кнопку, авторизуйтесь в Эквиде и предоставьте запрашиваемые права."
273
-
274
- msgid "Don't have Ecwid account? Create it here"
275
- msgstr "Ещё нет аккаунта в Эквиде? Зарегистрируйтесь"
276
-
277
- msgid "Questions? Visit <a %s>Ecwid support center</a>"
278
- msgstr "Есть вопросы? Посетите <a %s>Центр поддержки Эквида (англ)</a> или <a target=\"_blank\" href=\"http://www.ecwid.com/forums/forumdisplay.php?f=10\"> русскоязычный раздел форума</a>"
279
-
280
- msgid "Store ID"
281
- msgstr "ID Магазина"
282
-
283
- msgid "Disconnect store"
284
- msgstr "Отсоединить магазин"
285
-
286
- msgid "Congratulations!"
287
- msgstr "Поздравляем!"
288
-
289
- msgid "Your Ecwid store is now connected<br /> to your WordPress website"
290
- msgstr "Эквид-магазин успешно подключен<br /> к вашему WordPress сайту"
291
-
292
- msgid "Greetings!"
293
- msgstr "Приветствуем!"
294
-
295
- msgid "Your Ecwid store is connected<br /> to your WordPress website"
296
- msgstr "Эквид-магазин подключен<br /> к вашему WordPress сайту"
297
-
298
- msgid "Open control panel"
299
- msgstr "Открыть панель управления"
300
-
301
- msgid "Plugin is installed successfully!"
302
- msgstr "Плагин успешно установлен!"
303
-
304
- msgid "There are just a few steps left to start selling<br /> on your WordPress site"
305
- msgstr "До открытия магазина на вашем WordPress сайте<br /> осталось несколько простых шагов"
306
-
307
- msgid "There are few little steps left to start selling<br /> on your WordPress site"
308
- msgstr "До открытия магазина на вашем WordPress сайте<br /> осталось несколько простых шагов"
309
-
310
- msgid "Register"
311
- msgstr "Зарегистрируйтесь"
312
-
313
- msgid "Create a free Ecwid account to manage your store and inventory.<br /> No credit card required"
314
- msgstr "Зарегистрируйте бесплатный аккаунт в Эквиде.<br /> Кредитная карта не требуется"
315
-
316
- msgid "Connect"
317
- msgstr "Подключите магазин"
318
-
319
- msgid "Add your Ecwid store to your site <nobr>in two clicks</nobr>"
320
- msgstr "Подключите свой Эквид-магазин к сайту <nobr>в два клика</nobr>"
321
-
322
- msgid "Connect your Ecwid store to this site <nobr>in two clicks</nobr>"
323
- msgstr "Подключите свой Эквид-магазин к сайту <nobr>в два клика</nobr>"
324
-
325
- msgid "Start selling"
326
- msgstr "Начните продавать"
327
-
328
- msgid "Your storefront is ready"
329
- msgstr "Магазин открыт для покупателей"
330
-
331
- msgid "Create Ecwid store"
332
- msgstr "Создать магазин бесплатно"
333
-
334
- msgid "Connect your store"
335
- msgstr "Подключить магазин"
336
-
337
- msgid "Free registration, No credit card required"
338
- msgstr "Регистрация бесплатна, кредитная карта не требуется"
339
-
340
- msgid "Connection error: please click the button again and give permissions for this plugin<br /> to show your Ecwid store on this site."
341
- msgstr "Ошибка подключения: пожалуйста, нажмите кнопку ещё раз и предоставьте права доступа плагину<br /> для публикации своего Эквид-магазина на этом сайте."
342
-
343
- msgid "You will be asked to log in to your Ecwid Control Panel<br />and give permissions to show your store on this site"
344
- msgstr "Вам будет предложено войти в панель управления Эквида<br />и предоставить права доступа для отображения магазина на вашем сайте"
345
-
346
- msgid "Already have Ecwid account?"
347
- msgstr "Уже есть аккаунт в Эквиде?"
348
-
349
- msgid "Connect your store to Wordpress site"
350
- msgstr "Подключить магазин к своему сайту"
351
-
352
- msgid "Don't have an Ecwid account?"
353
- msgstr "Ещё нет аккаунта в Эквиде?"
354
-
355
- msgid "Register at Ecwid for free"
356
- msgstr "Зарегистрироваться бесплатно"
357
-
358
- msgid "No credit card required"
359
- msgstr "Кредитная карта не требуется"
360
-
361
- msgid "Get ready to sell online"
362
- msgstr "Продавать онлайн – это просто"
363
-
364
- msgid "Sell Everywhere<br>with your Ecwid store"
365
- msgstr "Продавайте там,<br> где ваши клиенты"
366
-
367
- msgid "Start selling on your WordPress site. Then mirror your shop on your Facebook page, blog and marketplaces like Google Shopping, Yahoo and Shopping.com."
368
- msgstr "Откройте продажи на своём WordPress сайте, а затем разместите витрину магазина в социальных сетях, блоге, и выгрузите товары на торговые площадки Яндекс.Маркет, eBay и Google Shopping."
369
-
370
- msgid "Use Ecwid's mobile-POS to swipe credit cards and sell on the go. Your orders and inventory are always synchronized with your online store."
371
- msgstr "Используйте наше мобильное приложение, чтобы получать и обрабатывать заказы в любой точке продаж. Все изменения синхронизируются с магазином на лету."
372
-
373
- msgid "Features"
374
- msgstr "Преимущества"
375
-
376
- msgid "Compatible with your theme"
377
- msgstr "Работает с вашей темой"
378
-
379
- msgid "Ecwid is compatible with your<br>“%s” WordPress theme<br>out of the box."
380
- msgstr "Эквид совместим с темой<br>\"%s\" вашего сайта из коробки."
381
-
382
- msgid "Free and always up to date"
383
- msgstr "Бесплатный план и обновления"
384
-
385
- msgid "Free plan always available with tons of features<br>at no additional cost. Seamless upgrades occur<br>automatically for free."
386
- msgstr "Всегда доступный бесплатный план с множеством<br>возможностей. Обновления магазина автоматизированы,<br> бесплатны и не требуют вашего участия."
387
-
388
- msgid "Responsive design"
389
- msgstr "Адаптивный дизайн"
390
-
391
- msgid "Your store looks perfect<br />on all devices"
392
- msgstr "Ваш магазин выглядит превосходно<br />на любом устройстве: планшете, смартфоне и ноутбуке."
393
-
394
- msgid "PCI-DSS Certified"
395
- msgstr "Сертификация по PCI-DSS"
396
-
397
- msgid "Secure checkout with over 40<br />payment options"
398
- msgstr "Эквид сертифицирован по стандарту Level 1 PCI-DSS – самому высокому уровню безопасности передачи данных."
399
-
400
- msgid "Global Reach"
401
- msgstr "Глобальное решение"
402
-
403
- msgid "More than 700,000 merchants in 175 countries"
404
- msgstr "Эквид уже используют 700,000 продавцов из 175 стран"
405
-
406
- msgid "Start selling <br>on your WordPress <nobr>site for free</nobr>"
407
- msgstr "Начните продавать<br>на своём Wordpress <nobr>сайте бесплатно</nobr>"
408
-
409
- msgid "Get Started, Create Ecwid Account"
410
- msgstr "Зарегистрировать аккаунт"
411
-
412
- msgid "Connect your store to this site"
413
- msgstr "Подключить магазин к своему сайту"
414
-
415
- msgid "Reconnect your store<br /> to this WordPress site"
416
- msgstr "Reconnect your store<br /> to this WordPress site"
417
-
418
- msgid "Reconnect Ecwid store"
419
- msgstr "Reconnect Ecwid store"
420
-
421
- msgid "New features available, reconnect to be in touch with our updates"
422
- msgstr "New features available, reconnect to be in touch with our updates"
423
-
424
- msgid "Add store"
425
- msgstr "Add store"
426
-
427
- msgid "Store settings"
428
- msgstr "Настройки магазина"
429
-
430
- msgid "Choose widgets to show"
431
- msgstr "Виджеты витрины магазина"
432
-
433
- msgid "Product catalog will be shown automatically"
434
- msgstr "Каталог товаров отображается по умолчанию"
435
-
436
- msgid "Show search"
437
- msgstr "Поиск"
438
-
439
- msgid "Show minicart"
440
- msgstr "Мини-корзина"
441
-
442
- msgid "Show horizontal categories"
443
- msgstr "Горизонтальные категории"
444
-
445
- msgid "Additionally, you can add store controls to your website's toolbar using <a %s>WordPress native widgets</a>"
446
- msgstr "Кроме того, вы можете добавить отдельные элементы магазина в сайдбар сайта используя <a %s>встроенные виджеты WordPress</a>"
447
-
448
- msgid "Demo store"
449
- msgstr "Демонстрационный магазин"
450
-
451
- msgid "Ecwid plugin settings"
452
- msgstr "Настройки плагина"
453
-
454
- msgid "Your store will be shown here!"
455
- msgstr "Здесь будет отображаться ваш магазин."
456
-
457
- msgid "Demo Store"
458
- msgstr "Демонстрационный магазин"
459
-
460
- msgid "Chameleon skin <sup>beta</sup>"
461
- msgstr "Тема \"Хамелеон\" <sup>бета</sup>"
462
-
463
- msgid "Automatic adjustment of your store design to your Wordpress theme. Whatever Wordpress theme you use, Ecwid will detect predominant colors and font and use them in your product catalog."
464
- msgstr "Автоматическая подстройка внешнего вида магазина под стили темы сайта. Включите эту опцию, чтобы Эквид определял цвета и шрифты сайта и исопльзовал их в каталоге товаров."
465
-
466
- msgid "Please note this functionality is in beta. So if you run into difficulties or find problems with Chameleon, please <a %s>let us know</a>."
467
  msgstr "Мы добавили этот инструмент недавно, и он сейчас работает в бета-режиме. Если вы обнаружите какие-либо проблемы в его работе, пожалуйста, <a %s>сообщите нам</a>."
1
+ msgid "Ecwid Shopping Cart"
2
+ msgstr "Интернет-магазин Эквид"
3
+
4
+ msgid "Ecwid Team"
5
+ msgstr "Ecwid Team"
6
+
7
+ msgid "Ecwid is a free full-featured shopping cart. It can be easily integrated with any Wordpress blog and takes less than 5 minutes to set up."
8
+ msgstr "Эквид – бесплатный полнофункциональный интернет-магазин. Легко встраивается в любой WordPress сайт и настраивается за 5 минут."
9
+
10
+ msgid "Get help"
11
+ msgstr "Получить помощь"
12
+
13
+ msgid "Go to Ecwid site"
14
+ msgstr "Пройти на сайт Эквида"
15
+
16
+ msgid "Visit storefront"
17
+ msgstr "Открыть страницу магазина"
18
+
19
+ msgid "Manage my store"
20
+ msgstr "Управлять магазином"
21
+
22
+ msgid "Manage plugin settings"
23
+ msgstr "Изменить настройки плагина"
24
+
25
+ msgid "→ Sell on Facebook"
26
+ msgstr "→ Начать продавать на Facebook"
27
+
28
+ msgid "<a %s>Online store powered by Ecwid</a>"
29
+ msgstr "<a %s>Интернет магазин построен на Эквиде</a>"
30
+
31
+ msgid "Store"
32
+ msgstr "Магазин"
33
+
34
+ msgid "Ecwid shopping cart settings"
35
+ msgstr "Настройки Ecwid"
36
+
37
+ msgid "Ecwid Store"
38
+ msgstr "Магазин Ecwid"
39
+
40
+ msgid "Setup"
41
+ msgstr "Настройки"
42
+
43
+ msgid "Dashboard"
44
+ msgstr "Консоль"
45
+
46
+ msgid "Appearance settings"
47
+ msgstr "Настройки внешнего вида"
48
+
49
+ msgid "Appearance"
50
+ msgstr "Внешний вид"
51
+
52
+ msgid "Advanced settings"
53
+ msgstr "Дополнительные настройки"
54
+
55
+ msgid "Advanced"
56
+ msgstr "Дополнительные"
57
+
58
+ msgid "Hidden category"
59
+ msgstr "Скрытая категория"
60
+
61
+ msgid "If you like Ecwid and want to help it grow and become the most popular e-commerce solution, you can now add a fancy 'Powered by Ecwid' badge on your site to show your visitors that you're a proud user of Ecwid."
62
+ msgstr "Если вам нравится Эквид и вы хотите помочь ему расти и стать самым популярным конструктором интернет-магазинов, вы можете добавить значок Эквида на ваш сайт, чтобы показать посетителям, что вы пользуетесь Эквидом."
63
+
64
+ msgid "Ecwid Badge"
65
+ msgstr "Значок Эквида"
66
+
67
+ msgid "Ecwid shopping cart widget"
68
+ msgstr "Виджет интернет-магазина Эквид"
69
+
70
+ msgid "Ecwid ecommerce solution"
71
+ msgstr "Решение для электронной коммерции Эквид"
72
+
73
+ msgid "Ecwid free shopping cart"
74
+ msgstr "Беспланный конструктов интернет-магазинов Эквид"
75
+
76
+ msgid "Ecwid shopping cart"
77
+ msgstr "Интернет-магазин Эквид"
78
+
79
+ msgid "Ecwid e-commerce widgets"
80
+ msgstr "Виджеты для электронной коммерции Эквид"
81
+
82
+ msgid "Your store's minicart"
83
+ msgstr "Корзина вашего магазина"
84
+
85
+ msgid "Ecwid Shopping Bag (Normal)"
86
+ msgstr "Корзина Эквида (Основной режим)"
87
+
88
+ msgid "Ecwid Shopping Bag (Mini view)"
89
+ msgstr "Корзина Эквида (Компактная)"
90
+
91
+ msgid "Your store's search box"
92
+ msgstr "Форма поиска по вашему магазину"
93
+
94
+ msgid "Ecwid Search Box"
95
+ msgstr "Поиск по Эквид-магазину"
96
+
97
+ msgid "Vertical menu of categories"
98
+ msgstr "Вертикальное меню категорий"
99
+
100
+ msgid "Ecwid Vertical Categories"
101
+ msgstr "Вертикальное меню категорий Эквида"
102
+
103
+ msgid "A link to your store page"
104
+ msgstr "Ссылка на страницу с вашим Эквид-магазином"
105
+
106
+ msgid "Ecwid Store Page Link"
107
+ msgstr "Ссылка на Эквид-магазин"
108
+
109
+ msgid "Shop"
110
+ msgstr "Магазин"
111
+
112
+ msgid "A list of products recently viewed by a customer. Add this widget to the sidebar to let them later return to the products they saw in your shop."
113
+ msgstr "Список товаров, просмотренных посетителями. Добавьте этот виджет в сайдбар, чтобы позволить клиентам быстро перейти к товарам, которые они просматривали ранее."
114
+
115
+ msgid "Recently Viewed Products"
116
+ msgstr "Просмотренные товары"
117
+
118
+ msgid "Number of products to show"
119
+ msgstr "Количество товаров для отображения"
120
+
121
+ msgid "Greetings! Your Ecwid store is now active."
122
+ msgstr "Добро пожаловать в Эквид!"
123
+
124
+ msgid "Take a few simple steps to complete store setup"
125
+ msgstr "Магазин почти готов — осталось несколько простых шагов"
126
+
127
+ msgid "Set up Ecwid Store"
128
+ msgstr "Настроить магазин"
129
+
130
+ msgid "Good job! Your store is set up and you're ready to sell."
131
+ msgstr "Отлично! Магазин установлен и готов к продажам."
132
+
133
+ msgid "Now you can fine-tune your store's appearance"
134
+ msgstr "Теперь вы можете настроить внешний вид витрины"
135
+
136
+ msgid "Visit Storefront"
137
+ msgstr "Открыть витрину"
138
+
139
+ msgid "Configure Appearance"
140
+ msgstr "Настроить внешний вид"
141
+
142
+ msgid "Your store is almost ready!"
143
+ msgstr "Магазин почти готов!"
144
+
145
+ msgid "Connect your Ecwid account with this site to complete setup and start selling"
146
+ msgstr "Привяжите Эквид-аккаунт к сайту, чтобы завершить установку и начать продавать"
147
+
148
+ msgid "Connect Your Ecwid Store"
149
+ msgstr "Привязать Эквид-аккаунт"
150
+
151
+ msgid "To add extra functions to your store, drag and drop Ecwid store elements on your site. When you're done, you can get back to modifying your settings."
152
+ msgstr "Добавьте дополнительные элементы магазина, перетащив виджеты Эквида в нужное место сайта. После установки виджетов можете вернуться к настройкам магазина."
153
+
154
+ msgid "Back to Store Settings"
155
+ msgstr "Вернуться к настройкам"
156
+
157
+ msgid "Do you like your Ecwid online store? We'd appreciate it if you add your review and vote for the plugin on Wordpress site."
158
+ msgstr "Вам нравится ваш Эквид-магазин? Будем благодарны, если вы оставите отзыв и проголосуете за Эквид на сайте WordPress."
159
+
160
+ msgid "Rate Ecwid at WordPress.org"
161
+ msgstr "Оценить Эквид на WordPress.org"
162
+
163
+ msgid "Add Store"
164
+ msgstr "Добавить магазин"
165
+
166
+ msgid "Edit Store"
167
+ msgstr "Настройки магазина"
168
+
169
+ msgid "Edit Appearance"
170
+ msgstr "Настроить внешний вид"
171
+
172
+ msgid "Price"
173
+ msgstr "Цена"
174
+
175
+ msgid "Never show this message again"
176
+ msgstr "Больше не показывать это сообщение"
177
+
178
+ msgid "Ecwid Shopping Cart — Advanced settings"
179
+ msgstr "Магазин Ecwid — Дополнительные настройки"
180
+
181
+ msgid "Category shown by default"
182
+ msgstr "Категория, показываемая по умолчанию"
183
+
184
+ msgid "Store root category"
185
+ msgstr "Корневая категория магазина"
186
+
187
+ msgid "Default category ID"
188
+ msgstr "ID категории по умолчанию"
189
+
190
+ msgid "By default, the storefront shows a list of root categories. You can override this behavior and show a different category when customers open your store for the first time. This is useful if you only have one category or want to display a specific set of items (e.g. \"Featured Products\") to new visitors."
191
+ msgstr "По умолчанию, магазин показывает корневые категории. Здесь можно выбрать другую категорию для отображения, когда покупатель впервые открывает ваш магазин. Это может быть полезно, если у вас есть только одна категория или вы хотите показывать определённые набор товаров (например, специальные предложения) новым пользователям."
192
+
193
+ msgid "In order to set this option, <a %s>find an ID of the necessary category</a> and save it here."
194
+ msgstr "Чтобы выставить категорию, <a %s>найдите ID нужной категории</a> и введите в это поле."
195
+
196
+ msgid "Single Sign-On Secret Key"
197
+ msgstr "Секретный ключ системы единой авторизации"
198
+
199
+ msgid "Single Sign-On Secret Key is an option that allows your customers access to your WordPress site as well as the Ecwid shopping cart. When customers log in to your site, they will automatically be logged in to your Ecwid store as well. It makes sense to enable this feature if your visitors actually create accounts in your WordPress website."
200
+ msgstr "Эта функция позволяет включить систему единой авторизации: когда покупатели вошли в свой аккаунт на вашем сайте, они автоматически входят в свой Эквид-аккаунт, даже если раньше у них его не было. Эта функция может быть полезна в случае, если ваши посетители создают свои аккаунты на вашем сайте."
201
+
202
+ msgid "In order to enable this feature, opt to use a secret key. You will find this key in your Ecwid control panel, at \"System Settings > Apps > Legacy API Keys > Single Sign-On Secret Key\" page. This feature is available for <a href=\"http://www.ecwid.com/compare-plans.html\" target=\"_blank\">paid users</a> only."
203
+ msgstr "Чтобы включить эту функцию, вам необходимо ввести секретный ключ. Его можно найти в панели управления Эквида в секции \"Настройки > Apps > Legacy API Keys > Секретный ключ SSO\". Эта функция доступна только пользователям с <a href=\"http://www.ecwid.com/compare-plans.html\" target=\"_blank\">платным аккаунтом</a>."
204
+
205
+ msgid "Save changes"
206
+ msgstr "Сохранить изменения"
207
+
208
+ msgid "Ecwid Shopping Cart — Appearance settings"
209
+ msgstr "Магазин Ecwid — Настройки внешнего вида"
210
+
211
+ msgid "Display search box above products"
212
+ msgstr "Показывать форму поиска над списком продуктов"
213
+
214
+ msgid "Or you can add search box to your website's toolbar using <a href=\"%s\">WordPress native widgets</a>"
215
+ msgstr "Или вы можете добавить форму поиска на ваш сайт с помощью <a href=\"%s\">виджетов WordPress</a>"
216
+
217
+ msgid "Display horizontal categories above products"
218
+ msgstr "Показывать горизонтальное меню категорий над списком продуктов"
219
+
220
+ msgid "Or you can add vertical categories to your website's toolbar using <a href=\"%s\">WordPress native widgets</a>"
221
+ msgstr "Или вы можете добавить вертикальное меню категорий на ваш сайт с помощью <a href=\"%s\">виджетов WordPress</a>"
222
+
223
+ msgid "Enable minicart attached to horizontal categories"
224
+ msgstr "Показывать корзину у горизонтального меню категорий"
225
+
226
+ msgid "You should disable this option, if you added minicart to your website's&nbsp;sidebar"
227
+ msgstr "Если вы добавили виджет корзины в боковое меню, следует отключить эту настройку"
228
+
229
+ msgid "Number of categories per row"
230
+ msgstr "Количество категорий в ряд"
231
+
232
+ msgid "Number of products per page"
233
+ msgstr "Количество продуктов на странице"
234
+
235
+ msgid "Grid view"
236
+ msgstr "Вид \"сетка\""
237
+
238
+ msgid "List view"
239
+ msgstr "Вид \"список\""
240
+
241
+ msgid "Table view"
242
+ msgstr "Вид \"таблица\""
243
+
244
+ msgid "Here you can control how many products will be displayed per page. These options define maximum values. If there is not enough space to show all product columns, Ecwid will adapt the number of columns to hold all products."
245
+ msgstr "Здесь вы можете задать количество отображаемых продуктов на странице. Эти цифры определяют максимальные значения. Если на странице в сетке продуктов будет недостаточно места для отображения всех столбцов, Эквид уменьшит их количество."
246
+
247
+ msgid "Default view mode on product pages"
248
+ msgstr "Вид страницы продуктов по умолчанию"
249
+
250
+ msgid "Grid"
251
+ msgstr "Сетка"
252
+
253
+ msgid "List"
254
+ msgstr "Список"
255
+
256
+ msgid "Table"
257
+ msgstr "Таблица"
258
+
259
+ msgid "Default view mode on search results"
260
+ msgstr "Вид страницы результатов поиска по умолчанию"
261
+
262
+ msgid "Connect your store<br /> to this WordPress site"
263
+ msgstr "Подключите магазин<br /> к своему WordPress сайту"
264
+
265
+ msgid "Connect Ecwid store"
266
+ msgstr "Подключить"
267
+
268
+ msgid "After clicking button you need to login and accept permissions to use our plugin"
269
+ msgstr "Нажмите на кнопку, авторизуйтесь в Эквиде и выдайте запрошенные права доступа"
270
+
271
+ msgid "Connection error - after clicking button you need to login and accept permissions to use our plugin. Please, try again."
272
+ msgstr "Ошибка подключения: после нажатия на кнопку, авторизуйтесь в Эквиде и предоставьте запрашиваемые права."
273
+
274
+ msgid "Don't have Ecwid account? Create it here"
275
+ msgstr "Ещё нет аккаунта в Эквиде? Зарегистрируйтесь"
276
+
277
+ msgid "Questions? Visit <a %s>Ecwid support center</a>"
278
+ msgstr "Есть вопросы? Посетите <a %s>Центр поддержки Эквида (англ)</a> или <a target=\"_blank\" href=\"http://www.ecwid.com/forums/forumdisplay.php?f=10\"> русскоязычный раздел форума</a>"
279
+
280
+ msgid "Store ID"
281
+ msgstr "ID Магазина"
282
+
283
+ msgid "Disconnect store"
284
+ msgstr "Отсоединить магазин"
285
+
286
+ msgid "Congratulations!"
287
+ msgstr "Поздравляем!"
288
+
289
+ msgid "Your Ecwid store is now connected<br /> to your WordPress website"
290
+ msgstr "Эквид-магазин успешно подключен<br /> к вашему WordPress сайту"
291
+
292
+ msgid "Greetings!"
293
+ msgstr "Приветствуем!"
294
+
295
+ msgid "Your Ecwid store is connected<br /> to your WordPress website"
296
+ msgstr "Эквид-магазин подключен<br /> к вашему WordPress сайту"
297
+
298
+ msgid "Open control panel"
299
+ msgstr "Открыть панель управления"
300
+
301
+ msgid "Plugin is installed successfully!"
302
+ msgstr "Плагин успешно установлен!"
303
+
304
+ msgid "There are just a few steps left to start selling<br /> on your WordPress site"
305
+ msgstr "До открытия магазина на вашем WordPress сайте<br /> осталось несколько простых шагов"
306
+
307
+ msgid "There are few little steps left to start selling<br /> on your WordPress site"
308
+ msgstr "До открытия магазина на вашем WordPress сайте<br /> осталось несколько простых шагов"
309
+
310
+ msgid "Register"
311
+ msgstr "Зарегистрируйтесь"
312
+
313
+ msgid "Create a free Ecwid account to manage your store and inventory.<br /> No credit card required"
314
+ msgstr "Зарегистрируйте бесплатный аккаунт в Эквиде.<br /> Кредитная карта не требуется"
315
+
316
+ msgid "Connect"
317
+ msgstr "Подключите магазин"
318
+
319
+ msgid "Add your Ecwid store to your site <nobr>in two clicks</nobr>"
320
+ msgstr "Подключите свой Эквид-магазин к сайту <nobr>в два клика</nobr>"
321
+
322
+ msgid "Connect your Ecwid store to this site <nobr>in two clicks</nobr>"
323
+ msgstr "Подключите свой Эквид-магазин к сайту <nobr>в два клика</nobr>"
324
+
325
+ msgid "Start selling"
326
+ msgstr "Начните продавать"
327
+
328
+ msgid "Your storefront is ready"
329
+ msgstr "Магазин открыт для покупателей"
330
+
331
+ msgid "Create Ecwid store"
332
+ msgstr "Создать магазин бесплатно"
333
+
334
+ msgid "Connect your store"
335
+ msgstr "Подключить магазин"
336
+
337
+ msgid "Free registration, No credit card required"
338
+ msgstr "Регистрация бесплатна, кредитная карта не требуется"
339
+
340
+ msgid "Connection error: please click the button again and give permissions for this plugin<br /> to show your Ecwid store on this site."
341
+ msgstr "Ошибка подключения: пожалуйста, нажмите кнопку ещё раз и предоставьте права доступа плагину<br /> для публикации своего Эквид-магазина на этом сайте."
342
+
343
+ msgid "You will be asked to log in to your Ecwid Control Panel<br />and give permissions to show your store on this site"
344
+ msgstr "Вам будет предложено войти в панель управления Эквида<br />и предоставить права доступа для отображения магазина на вашем сайте"
345
+
346
+ msgid "Already have Ecwid account?"
347
+ msgstr "Уже есть аккаунт в Эквиде?"
348
+
349
+ msgid "Connect your store to Wordpress site"
350
+ msgstr "Подключить магазин к своему сайту"
351
+
352
+ msgid "Don't have an Ecwid account?"
353
+ msgstr "Ещё нет аккаунта в Эквиде?"
354
+
355
+ msgid "Register at Ecwid for free"
356
+ msgstr "Зарегистрироваться бесплатно"
357
+
358
+ msgid "No credit card required"
359
+ msgstr "Кредитная карта не требуется"
360
+
361
+ msgid "Get ready to sell online"
362
+ msgstr "Продавать онлайн – это просто"
363
+
364
+ msgid "Sell Everywhere<br>with your Ecwid store"
365
+ msgstr "Продавайте там,<br> где ваши клиенты"
366
+
367
+ msgid "Start selling on your WordPress site. Then mirror your shop on your Facebook page, blog and marketplaces like Google Shopping, Yahoo and Shopping.com."
368
+ msgstr "Откройте продажи на своём WordPress сайте, а затем разместите витрину магазина в социальных сетях, блоге, и выгрузите товары на торговые площадки Яндекс.Маркет, eBay и Google Shopping."
369
+
370
+ msgid "Use Ecwid's mobile-POS to swipe credit cards and sell on the go. Your orders and inventory are always synchronized with your online store."
371
+ msgstr "Используйте наше мобильное приложение, чтобы получать и обрабатывать заказы в любой точке продаж. Все изменения синхронизируются с магазином на лету."
372
+
373
+ msgid "Features"
374
+ msgstr "Преимущества"
375
+
376
+ msgid "Compatible with your theme"
377
+ msgstr "Работает с вашей темой"
378
+
379
+ msgid "Ecwid is compatible with your<br>“%s” WordPress theme<br>out of the box."
380
+ msgstr "Эквид совместим с темой<br>\"%s\" вашего сайта из коробки."
381
+
382
+ msgid "Free and always up to date"
383
+ msgstr "Бесплатный план и обновления"
384
+
385
+ msgid "Free plan always available with tons of features<br>at no additional cost. Seamless upgrades occur<br>automatically for free."
386
+ msgstr "Всегда доступный бесплатный план с множеством<br>возможностей. Обновления магазина автоматизированы,<br> бесплатны и не требуют вашего участия."
387
+
388
+ msgid "Responsive design"
389
+ msgstr "Адаптивный дизайн"
390
+
391
+ msgid "Your store looks perfect<br />on all devices"
392
+ msgstr "Ваш магазин выглядит превосходно<br />на любом устройстве: планшете, смартфоне и ноутбуке."
393
+
394
+ msgid "PCI-DSS Certified"
395
+ msgstr "Сертификация по PCI-DSS"
396
+
397
+ msgid "Secure checkout with over 40<br />payment options"
398
+ msgstr "Эквид сертифицирован по стандарту Level 1 PCI-DSS – самому высокому уровню безопасности передачи данных."
399
+
400
+ msgid "Global Reach"
401
+ msgstr "Глобальное решение"
402
+
403
+ msgid "More than 700,000 merchants in 175 countries"
404
+ msgstr "Эквид уже используют 700,000 продавцов из 175 стран"
405
+
406
+ msgid "Start selling <br>on your WordPress <nobr>site for free</nobr>"
407
+ msgstr "Начните продавать<br>на своём Wordpress <nobr>сайте бесплатно</nobr>"
408
+
409
+ msgid "Get Started, Create Ecwid Account"
410
+ msgstr "Зарегистрировать аккаунт"
411
+
412
+ msgid "Connect your store to this site"
413
+ msgstr "Подключить магазин к своему сайту"
414
+
415
+ msgid "Reconnect your store<br /> to this WordPress site"
416
+ msgstr "Reconnect your store<br /> to this WordPress site"
417
+
418
+ msgid "Reconnect Ecwid store"
419
+ msgstr "Reconnect Ecwid store"
420
+
421
+ msgid "New features available, reconnect to be in touch with our updates"
422
+ msgstr "New features available, reconnect to be in touch with our updates"
423
+
424
+ msgid "Add store"
425
+ msgstr "Add store"
426
+
427
+ msgid "Store settings"
428
+ msgstr "Настройки магазина"
429
+
430
+ msgid "Choose widgets to show"
431
+ msgstr "Виджеты витрины магазина"
432
+
433
+ msgid "Product catalog will be shown automatically"
434
+ msgstr "Каталог товаров отображается по умолчанию"
435
+
436
+ msgid "Show search"
437
+ msgstr "Поиск"
438
+
439
+ msgid "Show minicart"
440
+ msgstr "Мини-корзина"
441
+
442
+ msgid "Show horizontal categories"
443
+ msgstr "Горизонтальные категории"
444
+
445
+ msgid "Additionally, you can add store controls to your website's toolbar using <a %s>WordPress native widgets</a>"
446
+ msgstr "Кроме того, вы можете добавить отдельные элементы магазина в сайдбар сайта используя <a %s>встроенные виджеты WordPress</a>"
447
+
448
+ msgid "Demo store"
449
+ msgstr "Демонстрационный магазин"
450
+
451
+ msgid "Ecwid plugin settings"
452
+ msgstr "Настройки плагина"
453
+
454
+ msgid "Your store will be shown here!"
455
+ msgstr "Здесь будет отображаться ваш магазин."
456
+
457
+ msgid "Demo Store"
458
+ msgstr "Демонстрационный магазин"
459
+
460
+ msgid "Chameleon skin <sup>beta</sup>"
461
+ msgstr "Тема \"Хамелеон\" <sup>бета</sup>"
462
+
463
+ msgid "Automatic adjustment of your store design to your Wordpress theme. Whatever Wordpress theme you use, Ecwid will detect predominant colors and font and use them in your product catalog."
464
+ msgstr "Автоматическая подстройка внешнего вида магазина под стили темы сайта. Включите эту опцию, чтобы Эквид определял цвета и шрифты сайта и исопльзовал их в каталоге товаров."
465
+
466
+ msgid "Please note this functionality is in beta. So if you run into difficulties or find problems with Chameleon, please <a %s>let us know</a>."
467
  msgstr "Мы добавили этот инструмент недавно, и он сейчас работает в бета-режиме. Если вы обнаружите какие-либо проблемы в его работе, пожалуйста, <a %s>сообщите нам</a>."
languages/ecwid-shopping-cart.pot CHANGED
@@ -1,495 +1,495 @@
1
- msgid "Ecwid Shopping Cart"
2
- msgstr ""
3
-
4
- msgid "Ecwid Team"
5
- msgstr ""
6
-
7
- msgid "Ecwid is a free full-featured shopping cart. It can be easily integrated with any Wordpress blog and takes less than 5 minutes to set up."
8
- msgstr ""
9
-
10
- msgid "Get help"
11
- msgstr ""
12
-
13
- msgid "Go to Ecwid site"
14
- msgstr ""
15
-
16
- msgid "Visit storefront"
17
- msgstr ""
18
-
19
- msgid "Manage my store"
20
- msgstr ""
21
-
22
- msgid "Manage plugin settings"
23
- msgstr ""
24
-
25
- msgid "→ Sell on Facebook"
26
- msgstr ""
27
-
28
- msgid "<a %s>Online store powered by Ecwid</a>"
29
- msgstr ""
30
-
31
- msgid "Store"
32
- msgstr ""
33
-
34
- msgid "Ecwid shopping cart settings"
35
- msgstr ""
36
-
37
- msgid "Ecwid Store"
38
- msgstr ""
39
-
40
- msgid "Setup"
41
- msgstr ""
42
-
43
- msgid "Dashboard"
44
- msgstr ""
45
-
46
- msgid "Appearance settings"
47
- msgstr ""
48
-
49
- msgid "Appearance"
50
- msgstr ""
51
-
52
- msgid "Advanced settings"
53
- msgstr ""
54
-
55
- msgid "Advanced"
56
- msgstr ""
57
-
58
- msgid "Hidden category"
59
- msgstr ""
60
-
61
- msgid "Recommendations for Your Online Store"
62
- msgstr ""
63
-
64
- msgid "If you like Ecwid and want to help it grow and become the most popular e-commerce solution, you can now add a fancy 'Powered by Ecwid' badge on your site to show your visitors that you're a proud user of Ecwid."
65
- msgstr ""
66
-
67
- msgid "Ecwid Badge"
68
- msgstr ""
69
-
70
- msgid "Ecwid shopping cart widget"
71
- msgstr ""
72
-
73
- msgid "Ecwid ecommerce solution"
74
- msgstr ""
75
-
76
- msgid "Ecwid free shopping cart"
77
- msgstr ""
78
-
79
- msgid "Ecwid shopping cart"
80
- msgstr ""
81
-
82
- msgid "Ecwid e-commerce widgets"
83
- msgstr ""
84
-
85
- msgid "Your store's minicart"
86
- msgstr ""
87
-
88
- msgid "Ecwid Shopping Bag (Normal)"
89
- msgstr ""
90
-
91
- msgid "Ecwid Shopping Bag (Mini view)"
92
- msgstr ""
93
-
94
- msgid "Your store's search box"
95
- msgstr ""
96
-
97
- msgid "Ecwid Search Box"
98
- msgstr ""
99
-
100
- msgid "Vertical menu of categories"
101
- msgstr ""
102
-
103
- msgid "Ecwid Vertical Categories"
104
- msgstr ""
105
-
106
- msgid "A link to your store page"
107
- msgstr ""
108
-
109
- msgid "Ecwid Store Page Link"
110
- msgstr ""
111
-
112
- msgid "Shop"
113
- msgstr ""
114
-
115
- msgid "A list of products recently viewed by a customer. Add this widget to the sidebar to let them later return to the products they saw in your shop."
116
- msgstr ""
117
-
118
- msgid "Recently Viewed Products"
119
- msgstr ""
120
-
121
- msgid "View Products"
122
- msgstr ""
123
-
124
- msgid "Store Link Title"
125
- msgstr ""
126
-
127
- msgid "Number of products to show"
128
- msgstr ""
129
-
130
- msgid "Greetings! Your Ecwid store is now active."
131
- msgstr ""
132
-
133
- msgid "Take a few simple steps to complete store setup"
134
- msgstr ""
135
-
136
- msgid "Set up Ecwid Store"
137
- msgstr ""
138
-
139
- msgid "Good job! Your store is set up and you're ready to sell."
140
- msgstr ""
141
-
142
- msgid "Now you can fine-tune your store's appearance"
143
- msgstr ""
144
-
145
- msgid "Visit Storefront"
146
- msgstr ""
147
-
148
- msgid "Configure Appearance"
149
- msgstr ""
150
-
151
- msgid "Your store is almost ready!"
152
- msgstr ""
153
-
154
- msgid "Connect your Ecwid account with this site to complete setup and start selling"
155
- msgstr ""
156
-
157
- msgid "Connect Your Ecwid Store"
158
- msgstr ""
159
-
160
- msgid "To add extra functions to your store, drag and drop Ecwid store elements on your site. When you're done, you can get back to modifying your settings."
161
- msgstr ""
162
-
163
- msgid "Back to Store Settings"
164
- msgstr ""
165
-
166
- msgid "Do you like your Ecwid online store? We'd appreciate it if you add your review and vote for the plugin on Wordpress site."
167
- msgstr ""
168
-
169
- msgid "Rate Ecwid at WordPress.org"
170
- msgstr ""
171
-
172
- msgid "Add Store"
173
- msgstr ""
174
-
175
- msgid "Edit Store"
176
- msgstr ""
177
-
178
- msgid "Edit Appearance"
179
- msgstr ""
180
-
181
- msgid "Price"
182
- msgstr ""
183
-
184
- msgid "Never show this message again"
185
- msgstr ""
186
-
187
- msgid "Ecwid Shopping Cart — Advanced settings"
188
- msgstr ""
189
-
190
- msgid "Category shown by default"
191
- msgstr ""
192
-
193
- msgid "Store root category"
194
- msgstr ""
195
-
196
- msgid "Default category ID"
197
- msgstr ""
198
-
199
- msgid "By default, the storefront shows a list of root categories. You can override this behavior and show a different category when customers open your store for the first time. This is useful if you only have one category or want to display a specific set of items (e.g. \"Featured Products\") to new visitors."
200
- msgstr ""
201
-
202
- msgid "In order to set this option, <a %s>find an ID of the necessary category</a> and save it here."
203
- msgstr ""
204
-
205
- msgid "Single Sign-On Secret Key"
206
- msgstr ""
207
-
208
- msgid "Single Sign-On Secret Key is an option that allows your customers access to your WordPress site as well as the Ecwid shopping cart. When customers log in to your site, they will automatically be logged in to your Ecwid store as well. It makes sense to enable this feature if your visitors actually create accounts in your WordPress website."
209
- msgstr ""
210
-
211
- msgid "In order to enable this feature, opt to use a secret key. You will find this key in your Ecwid control panel, at \"System Settings > Apps > Legacy API Keys > Single Sign-On Secret Key\" page. This feature is available for <a href=\"http://www.ecwid.com/compare-plans.html\" target=\"_blank\">paid users</a> only."
212
- msgstr ""
213
-
214
- msgid "Chameleon skin <sup>beta</sup>"
215
- msgstr ""
216
-
217
- msgid "Automatic adjustment of your store design to your Wordpress theme. Whatever Wordpress theme you use, Ecwid will detect predominant colors and font and use them in your product catalog."
218
- msgstr ""
219
-
220
- msgid "Please note this functionality is in beta. So if you run into difficulties or find problems with Chameleon, please <a %s>let us know</a>."
221
- msgstr ""
222
-
223
- msgid "Save changes"
224
- msgstr ""
225
-
226
- msgid "Ecwid Shopping Cart — Appearance settings"
227
- msgstr ""
228
-
229
- msgid "Display search box above products"
230
- msgstr ""
231
-
232
- msgid "Or you can add search box to your website's toolbar using <a href=\"%s\">WordPress native widgets</a>"
233
- msgstr ""
234
-
235
- msgid "Display horizontal categories above products"
236
- msgstr ""
237
-
238
- msgid "Or you can add vertical categories to your website's toolbar using <a href=\"%s\">WordPress native widgets</a>"
239
- msgstr ""
240
-
241
- msgid "Enable minicart attached to horizontal categories"
242
- msgstr ""
243
-
244
- msgid "You should disable this option, if you added minicart to your website's&nbsp;sidebar"
245
- msgstr ""
246
-
247
- msgid "Number of categories per row"
248
- msgstr ""
249
-
250
- msgid "Number of products per page"
251
- msgstr ""
252
-
253
- msgid "Grid view"
254
- msgstr ""
255
-
256
- msgid "List view"
257
- msgstr ""
258
-
259
- msgid "Table view"
260
- msgstr ""
261
-
262
- msgid "Here you can control how many products will be displayed per page. These options define maximum values. If there is not enough space to show all product columns, Ecwid will adapt the number of columns to hold all products."
263
- msgstr ""
264
-
265
- msgid "Default view mode on product pages"
266
- msgstr ""
267
-
268
- msgid "Grid"
269
- msgstr ""
270
-
271
- msgid "List"
272
- msgstr ""
273
-
274
- msgid "Table"
275
- msgstr ""
276
-
277
- msgid "Default view mode on search results"
278
- msgstr ""
279
-
280
- msgid "Connect your store<br /> to this WordPress site"
281
- msgstr ""
282
-
283
- msgid "Connect Ecwid store"
284
- msgstr ""
285
-
286
- msgid "After clicking button you need to login and accept permissions to use our plugin"
287
- msgstr ""
288
-
289
- msgid "Connection error - after clicking button you need to login and accept permissions to use our plugin. Please, try again."
290
- msgstr ""
291
-
292
- msgid "Don't have Ecwid account? Create it here"
293
- msgstr ""
294
-
295
- msgid "Questions? Visit <a %s>Ecwid support center</a>"
296
- msgstr ""
297
-
298
- msgid "Store ID"
299
- msgstr ""
300
-
301
- msgid "Disconnect store"
302
- msgstr ""
303
-
304
- msgid "Congratulations!"
305
- msgstr ""
306
-
307
- msgid "Your Ecwid store is now connected<br /> to your WordPress website"
308
- msgstr ""
309
-
310
- msgid "Greetings!"
311
- msgstr ""
312
-
313
- msgid "Your Ecwid store is connected<br /> to your WordPress website"
314
- msgstr ""
315
-
316
- msgid "Open control panel"
317
- msgstr ""
318
-
319
- msgid "Plugin is installed successfully!"
320
- msgstr ""
321
-
322
- msgid "There are just a few steps left to start selling<br /> on your WordPress site"
323
- msgstr ""
324
-
325
- msgid "There are few little steps left to start selling<br /> on your WordPress site"
326
- msgstr ""
327
-
328
- msgid "Register"
329
- msgstr ""
330
-
331
- msgid "Create a free Ecwid account to manage your store and inventory.<br /> No credit card required"
332
- msgstr ""
333
-
334
- msgid "Connect"
335
- msgstr ""
336
-
337
- msgid "Add your Ecwid store to your site <nobr>in two clicks</nobr>"
338
- msgstr ""
339
-
340
- msgid "Connect your Ecwid store to this site <nobr>in two clicks</nobr>"
341
- msgstr ""
342
-
343
- msgid "Start selling"
344
- msgstr ""
345
-
346
- msgid "Your storefront is ready"
347
- msgstr ""
348
-
349
- msgid "Create Ecwid store"
350
- msgstr ""
351
-
352
- msgid "Connect your store"
353
- msgstr ""
354
-
355
- msgid "Free registration, No credit card required"
356
- msgstr ""
357
-
358
- msgid "Connection error: please click the button again and give permissions for this plugin<br /> to show your Ecwid store on this site."
359
- msgstr ""
360
-
361
- msgid "You will be asked to log in to your Ecwid Control Panel<br />and give permissions to show your store on this site"
362
- msgstr ""
363
-
364
- msgid "Already have Ecwid account?"
365
- msgstr ""
366
-
367
- msgid "Connect your store to Wordpress site"
368
- msgstr ""
369
-
370
- msgid "Don't have an Ecwid account?"
371
- msgstr ""
372
-
373
- msgid "Register at Ecwid for free"
374
- msgstr ""
375
-
376
- msgid "No credit card required"
377
- msgstr ""
378
-
379
- msgid "Get ready to sell online"
380
- msgstr ""
381
-
382
- msgid "Sell Everywhere<br>with your Ecwid store"
383
- msgstr ""
384
-
385
- msgid "Start selling on your WordPress site. Then mirror your shop on your Facebook page, blog and marketplaces like Google Shopping, Yahoo and Shopping.com."
386
- msgstr ""
387
-
388
- msgid "Use Ecwid's mobile-POS to swipe credit cards and sell on the go. Your orders and inventory are always synchronized with your online store."
389
- msgstr ""
390
-
391
- msgid "Features"
392
- msgstr ""
393
-
394
- msgid "Compatible with your theme"
395
- msgstr ""
396
-
397
- msgid "Ecwid is compatible with your<br>“%s” WordPress theme<br>out of the box."
398
- msgstr ""
399
-
400
- msgid "Free and always up to date"
401
- msgstr ""
402
-
403
- msgid "Free plan always available with tons of features<br>at no additional cost. Updates are seamless, automatic<br>and free of charge."
404
- msgstr ""
405
-
406
- msgid "Responsive design"
407
- msgstr ""
408
-
409
- msgid "Your store looks perfect<br />on all devices"
410
- msgstr ""
411
-
412
- msgid "PCI-DSS Certified"
413
- msgstr ""
414
-
415
- msgid "Secure checkout with over 40<br />payment options"
416
- msgstr ""
417
-
418
- msgid "Global Reach"
419
- msgstr ""
420
-
421
- msgid "More than 700,000 merchants in 175 countries"
422
- msgstr ""
423
-
424
- msgid "Start selling <br>on your WordPress <nobr>site for free</nobr>"
425
- msgstr ""
426
-
427
- msgid "Get Started, Create Ecwid Account"
428
- msgstr ""
429
-
430
- msgid "Connect your store to this site"
431
- msgstr ""
432
-
433
- msgid "Reconnect your store<br /> to this WordPress site"
434
- msgstr ""
435
-
436
- msgid "Reconnect Ecwid store"
437
- msgstr ""
438
-
439
- msgid "New features available, reconnect to be in touch with our updates"
440
- msgstr ""
441
-
442
- msgid "Questions? Visit <a href=\"http://help.ecwid.com/?source=wporg\">Ecwid support center</a>"
443
- msgstr ""
444
-
445
- msgid "Store settings"
446
- msgstr ""
447
-
448
- msgid "Choose widgets to show"
449
- msgstr ""
450
-
451
- msgid "Product catalog will be shown automatically"
452
- msgstr ""
453
-
454
- msgid "Show search"
455
- msgstr ""
456
-
457
- msgid "Show minicart"
458
- msgstr ""
459
-
460
- msgid "Show horizontal categories"
461
- msgstr ""
462
-
463
- msgid "Additionally, you can add store controls to your website's toolbar using <a %s>WordPress native widgets</a>"
464
- msgstr ""
465
-
466
- msgid "Demo store"
467
- msgstr ""
468
-
469
- msgid "Ecwid plugin settings"
470
- msgstr ""
471
-
472
- msgid "Your store will be shown here!"
473
- msgstr ""
474
-
475
- msgid "Demo Store"
476
- msgstr ""
477
-
478
- msgid "Sell On The Go with Ecwid iOS Application"
479
- msgstr ""
480
-
481
- msgid "Ecwid iOS app allows you to manage your online store, sell your products on the go, and accept payments with your phone. Just download the Ecwid app, connect it to your Ecwid shop and have your sales at your fingertips!"
482
- msgstr ""
483
-
484
- msgid "Get Your Products Found on Google using XML Sitemap"
485
- msgstr ""
486
-
487
- msgid "Free Google XML Sitemaps plugin creates a sitemap that includes your store product links. This makes your product pages more visible to search engines and appear in the search results."
488
- msgstr ""
489
-
490
- msgid "Add Product Slider to Your Store"
491
- msgstr ""
492
-
493
- msgid "Add a fancy product slider to your site using a free WP Widgets Avalanche plugin which works perfectly with Ecwid"
494
- msgstr ""
495
-
1
+ msgid "Ecwid Shopping Cart"
2
+ msgstr ""
3
+
4
+ msgid "Ecwid Team"
5
+ msgstr ""
6
+
7
+ msgid "Ecwid is a free full-featured shopping cart. It can be easily integrated with any Wordpress blog and takes less than 5 minutes to set up."
8
+ msgstr ""
9
+
10
+ msgid "Get help"
11
+ msgstr ""
12
+
13
+ msgid "Go to Ecwid site"
14
+ msgstr ""
15
+
16
+ msgid "Visit storefront"
17
+ msgstr ""
18
+
19
+ msgid "Manage my store"
20
+ msgstr ""
21
+
22
+ msgid "Manage plugin settings"
23
+ msgstr ""
24
+
25
+ msgid "→ Sell on Facebook"
26
+ msgstr ""
27
+
28
+ msgid "<a %s>Online store powered by Ecwid</a>"
29
+ msgstr ""
30
+
31
+ msgid "Store"
32
+ msgstr ""
33
+
34
+ msgid "Ecwid shopping cart settings"
35
+ msgstr ""
36
+
37
+ msgid "Ecwid Store"
38
+ msgstr ""
39
+
40
+ msgid "Setup"
41
+ msgstr ""
42
+
43
+ msgid "Dashboard"
44
+ msgstr ""
45
+
46
+ msgid "Appearance settings"
47
+ msgstr ""
48
+
49
+ msgid "Appearance"
50
+ msgstr ""
51
+
52
+ msgid "Advanced settings"
53
+ msgstr ""
54
+
55
+ msgid "Advanced"
56
+ msgstr ""
57
+
58
+ msgid "Hidden category"
59
+ msgstr ""
60
+
61
+ msgid "Recommendations for Your Online Store"
62
+ msgstr ""
63
+
64
+ msgid "If you like Ecwid and want to help it grow and become the most popular e-commerce solution, you can now add a fancy 'Powered by Ecwid' badge on your site to show your visitors that you're a proud user of Ecwid."
65
+ msgstr ""
66
+
67
+ msgid "Ecwid Badge"
68
+ msgstr ""
69
+
70
+ msgid "Ecwid shopping cart widget"
71
+ msgstr ""
72
+
73
+ msgid "Ecwid ecommerce solution"
74
+ msgstr ""
75
+
76
+ msgid "Ecwid free shopping cart"
77
+ msgstr ""
78
+
79
+ msgid "Ecwid shopping cart"
80
+ msgstr ""
81
+
82
+ msgid "Ecwid e-commerce widgets"
83
+ msgstr ""
84
+
85
+ msgid "Your store's minicart"
86
+ msgstr ""
87
+
88
+ msgid "Ecwid Shopping Bag (Normal)"
89
+ msgstr ""
90
+
91
+ msgid "Ecwid Shopping Bag (Mini view)"
92
+ msgstr ""
93
+
94
+ msgid "Your store's search box"
95
+ msgstr ""
96
+
97
+ msgid "Ecwid Search Box"
98
+ msgstr ""
99
+
100
+ msgid "Vertical menu of categories"
101
+ msgstr ""
102
+
103
+ msgid "Ecwid Vertical Categories"
104
+ msgstr ""
105
+
106
+ msgid "A link to your store page"
107
+ msgstr ""
108
+
109
+ msgid "Ecwid Store Page Link"
110
+ msgstr ""
111
+
112
+ msgid "Shop"
113
+ msgstr ""
114
+
115
+ msgid "A list of products recently viewed by a customer. Add this widget to the sidebar to let them later return to the products they saw in your shop."
116
+ msgstr ""
117
+
118
+ msgid "Recently Viewed Products"
119
+ msgstr ""
120
+
121
+ msgid "View Products"
122
+ msgstr ""
123
+
124
+ msgid "Store Link Title"
125
+ msgstr ""
126
+
127
+ msgid "Number of products to show"
128
+ msgstr ""
129
+
130
+ msgid "Greetings! Your Ecwid store is now active."
131
+ msgstr ""
132
+
133
+ msgid "Take a few simple steps to complete store setup"
134
+ msgstr ""
135
+
136
+ msgid "Set up Ecwid Store"
137
+ msgstr ""
138
+
139
+ msgid "Good job! Your store is set up and you're ready to sell."
140
+ msgstr ""
141
+
142
+ msgid "Now you can fine-tune your store's appearance"
143
+ msgstr ""
144
+
145
+ msgid "Visit Storefront"
146
+ msgstr ""
147
+
148
+ msgid "Configure Appearance"
149
+ msgstr ""
150
+
151
+ msgid "Your store is almost ready!"
152
+ msgstr ""
153
+
154
+ msgid "Connect your Ecwid account with this site to complete setup and start selling"
155
+ msgstr ""
156
+
157
+ msgid "Connect Your Ecwid Store"
158
+ msgstr ""
159
+
160
+ msgid "To add extra functions to your store, drag and drop Ecwid store elements on your site. When you're done, you can get back to modifying your settings."
161
+ msgstr ""
162
+
163
+ msgid "Back to Store Settings"
164
+ msgstr ""
165
+
166
+ msgid "Do you like your Ecwid online store? We'd appreciate it if you add your review and vote for the plugin on Wordpress site."
167
+ msgstr ""
168
+
169
+ msgid "Rate Ecwid at WordPress.org"
170
+ msgstr ""
171
+
172
+ msgid "Add Store"
173
+ msgstr ""
174
+
175
+ msgid "Edit Store"
176
+ msgstr ""
177
+
178
+ msgid "Edit Appearance"
179
+ msgstr ""
180
+
181
+ msgid "Price"
182
+ msgstr ""
183
+
184
+ msgid "Never show this message again"
185
+ msgstr ""
186
+
187
+ msgid "Ecwid Shopping Cart — Advanced settings"
188
+ msgstr ""
189
+
190
+ msgid "Category shown by default"
191
+ msgstr ""
192
+
193
+ msgid "Store root category"
194
+ msgstr ""
195
+
196
+ msgid "Default category ID"
197
+ msgstr ""
198
+
199
+ msgid "By default, the storefront shows a list of root categories. You can override this behavior and show a different category when customers open your store for the first time. This is useful if you only have one category or want to display a specific set of items (e.g. \"Featured Products\") to new visitors."
200
+ msgstr ""
201
+
202
+ msgid "In order to set this option, <a %s>find an ID of the necessary category</a> and save it here."
203
+ msgstr ""
204
+
205
+ msgid "Single Sign-On Secret Key"
206
+ msgstr ""
207
+
208
+ msgid "Single Sign-On Secret Key is an option that allows your customers access to your WordPress site as well as the Ecwid shopping cart. When customers log in to your site, they will automatically be logged in to your Ecwid store as well. It makes sense to enable this feature if your visitors actually create accounts in your WordPress website."
209
+ msgstr ""
210
+
211
+ msgid "In order to enable this feature, opt to use a secret key. You will find this key in your Ecwid control panel, at \"System Settings > Apps > Legacy API Keys > Single Sign-On Secret Key\" page. This feature is available for <a href=\"http://www.ecwid.com/compare-plans.html\" target=\"_blank\">paid users</a> only."
212
+ msgstr ""
213
+
214
+ msgid "Chameleon skin <sup>beta</sup>"
215
+ msgstr ""
216
+
217
+ msgid "Automatic adjustment of your store design to your Wordpress theme. Whatever Wordpress theme you use, Ecwid will detect predominant colors and font and use them in your product catalog."
218
+ msgstr ""
219
+
220
+ msgid "Please note this functionality is in beta. So if you run into difficulties or find problems with Chameleon, please <a %s>let us know</a>."
221
+ msgstr ""
222
+
223
+ msgid "Save changes"
224
+ msgstr ""
225
+
226
+ msgid "Ecwid Shopping Cart — Appearance settings"
227
+ msgstr ""
228
+
229
+ msgid "Display search box above products"
230
+ msgstr ""
231
+
232
+ msgid "Or you can add search box to your website's toolbar using <a href=\"%s\">WordPress native widgets</a>"
233
+ msgstr ""
234
+
235
+ msgid "Display horizontal categories above products"
236
+ msgstr ""
237
+
238
+ msgid "Or you can add vertical categories to your website's toolbar using <a href=\"%s\">WordPress native widgets</a>"
239
+ msgstr ""
240
+
241
+ msgid "Enable minicart attached to horizontal categories"
242
+ msgstr ""
243
+
244
+ msgid "You should disable this option, if you added minicart to your website's&nbsp;sidebar"
245
+ msgstr ""
246
+
247
+ msgid "Number of categories per row"
248
+ msgstr ""
249
+
250
+ msgid "Number of products per page"
251
+ msgstr ""
252
+
253
+ msgid "Grid view"
254
+ msgstr ""
255
+
256
+ msgid "List view"
257
+ msgstr ""
258
+
259
+ msgid "Table view"
260
+ msgstr ""
261
+
262
+ msgid "Here you can control how many products will be displayed per page. These options define maximum values. If there is not enough space to show all product columns, Ecwid will adapt the number of columns to hold all products."
263
+ msgstr ""
264
+
265
+ msgid "Default view mode on product pages"
266
+ msgstr ""
267
+
268
+ msgid "Grid"
269
+ msgstr ""
270
+
271
+ msgid "List"
272
+ msgstr ""
273
+
274
+ msgid "Table"
275
+ msgstr ""
276
+
277
+ msgid "Default view mode on search results"
278
+ msgstr ""
279
+
280
+ msgid "Connect your store<br /> to this WordPress site"
281
+ msgstr ""
282
+
283
+ msgid "Connect Ecwid store"
284
+ msgstr ""
285
+
286
+ msgid "After clicking button you need to login and accept permissions to use our plugin"
287
+ msgstr ""
288
+
289
+ msgid "Connection error - after clicking button you need to login and accept permissions to use our plugin. Please, try again."
290
+ msgstr ""
291
+
292
+ msgid "Don't have Ecwid account? Create it here"
293
+ msgstr ""
294
+
295
+ msgid "Questions? Visit <a %s>Ecwid support center</a>"
296
+ msgstr ""
297
+
298
+ msgid "Store ID"
299
+ msgstr ""
300
+
301
+ msgid "Disconnect store"
302
+ msgstr ""
303
+
304
+ msgid "Congratulations!"
305
+ msgstr ""
306
+
307
+ msgid "Your Ecwid store is now connected<br /> to your WordPress website"
308
+ msgstr ""
309
+
310
+ msgid "Greetings!"
311
+ msgstr ""
312
+
313
+ msgid "Your Ecwid store is connected<br /> to your WordPress website"
314
+ msgstr ""
315
+
316
+ msgid "Open control panel"
317
+ msgstr ""
318
+
319
+ msgid "Plugin is installed successfully!"
320
+ msgstr ""
321
+
322
+ msgid "There are just a few steps left to start selling<br /> on your WordPress site"
323
+ msgstr ""
324
+
325
+ msgid "There are few little steps left to start selling<br /> on your WordPress site"
326
+ msgstr ""
327
+
328
+ msgid "Register"
329
+ msgstr ""
330
+
331
+ msgid "Create a free Ecwid account to manage your store and inventory.<br /> No credit card required"
332
+ msgstr ""
333
+
334
+ msgid "Connect"
335
+ msgstr ""
336
+
337
+ msgid "Add your Ecwid store to your site <nobr>in two clicks</nobr>"
338
+ msgstr ""
339
+
340
+ msgid "Connect your Ecwid store to this site <nobr>in two clicks</nobr>"
341
+ msgstr ""
342
+
343
+ msgid "Start selling"
344
+ msgstr ""
345
+
346
+ msgid "Your storefront is ready"
347
+ msgstr ""
348
+
349
+ msgid "Create Ecwid store"
350
+ msgstr ""
351
+
352
+ msgid "Connect your store"
353
+ msgstr ""
354
+
355
+ msgid "Free registration, No credit card required"
356
+ msgstr ""
357
+
358
+ msgid "Connection error: please click the button again and give permissions for this plugin<br /> to show your Ecwid store on this site."
359
+ msgstr ""
360
+
361
+ msgid "You will be asked to log in to your Ecwid Control Panel<br />and give permissions to show your store on this site"
362
+ msgstr ""
363
+
364
+ msgid "Already have Ecwid account?"
365
+ msgstr ""
366
+
367
+ msgid "Connect your store to Wordpress site"
368
+ msgstr ""
369
+
370
+ msgid "Don't have an Ecwid account?"
371
+ msgstr ""
372
+
373
+ msgid "Register at Ecwid for free"
374
+ msgstr ""
375
+
376
+ msgid "No credit card required"
377
+ msgstr ""
378
+
379
+ msgid "Get ready to sell online"
380
+ msgstr ""
381
+
382
+ msgid "Sell Everywhere<br>with your Ecwid store"
383
+ msgstr ""
384
+
385
+ msgid "Start selling on your WordPress site. Then mirror your shop on your Facebook page, blog and marketplaces like Google Shopping, Yahoo and Shopping.com."
386
+ msgstr ""
387
+
388
+ msgid "Use Ecwid's mobile-POS to swipe credit cards and sell on the go. Your orders and inventory are always synchronized with your online store."
389
+ msgstr ""
390
+
391
+ msgid "Features"
392
+ msgstr ""
393
+
394
+ msgid "Compatible with your theme"
395
+ msgstr ""
396
+
397
+ msgid "Ecwid is compatible with your<br>“%s” WordPress theme<br>out of the box."
398
+ msgstr ""
399
+
400
+ msgid "Free and always up to date"
401
+ msgstr ""
402
+
403
+ msgid "Free plan always available with tons of features<br>at no additional cost. Updates are seamless, automatic<br>and free of charge."
404
+ msgstr ""
405
+
406
+ msgid "Responsive design"
407
+ msgstr ""
408
+
409
+ msgid "Your store looks perfect<br />on all devices"
410
+ msgstr ""
411
+
412
+ msgid "PCI-DSS Certified"
413
+ msgstr ""
414
+
415
+ msgid "Secure checkout with over 40<br />payment options"
416
+ msgstr ""
417
+
418
+ msgid "Global Reach"
419
+ msgstr ""
420
+
421
+ msgid "More than 700,000 merchants in 175 countries"
422
+ msgstr ""
423
+
424
+ msgid "Start selling <br>on your WordPress <nobr>site for free</nobr>"
425
+ msgstr ""
426
+
427
+ msgid "Get Started, Create Ecwid Account"
428
+ msgstr ""
429
+
430
+ msgid "Connect your store to this site"
431
+ msgstr ""
432
+
433
+ msgid "Reconnect your store<br /> to this WordPress site"
434
+ msgstr ""
435
+
436
+ msgid "Reconnect Ecwid store"
437
+ msgstr ""
438
+
439
+ msgid "New features available, reconnect to be in touch with our updates"
440
+ msgstr ""
441
+
442
+ msgid "Questions? Visit <a href=\"http://help.ecwid.com/?source=wporg\">Ecwid support center</a>"
443
+ msgstr ""
444
+
445
+ msgid "Store settings"
446
+ msgstr ""
447
+
448
+ msgid "Choose widgets to show"
449
+ msgstr ""
450
+
451
+ msgid "Product catalog will be shown automatically"
452
+ msgstr ""
453
+
454
+ msgid "Show search"
455
+ msgstr ""
456
+
457
+ msgid "Show minicart"
458
+ msgstr ""
459
+
460
+ msgid "Show horizontal categories"
461
+ msgstr ""
462
+
463
+ msgid "Additionally, you can add store controls to your website's toolbar using <a %s>WordPress native widgets</a>"
464
+ msgstr ""
465
+
466
+ msgid "Demo store"
467
+ msgstr ""
468
+
469
+ msgid "Ecwid plugin settings"
470
+ msgstr ""
471
+
472
+ msgid "Your store will be shown here!"
473
+ msgstr ""
474
+
475
+ msgid "Demo Store"
476
+ msgstr ""
477
+
478
+ msgid "Sell On The Go with Ecwid iOS Application"
479
+ msgstr ""
480
+
481
+ msgid "Ecwid iOS app allows you to manage your online store, sell your products on the go, and accept payments with your phone. Just download the Ecwid app, connect it to your Ecwid shop and have your sales at your fingertips!"
482
+ msgstr ""
483
+
484
+ msgid "Get Your Products Found on Google using XML Sitemap"
485
+ msgstr ""
486
+
487
+ msgid "Free Google XML Sitemaps plugin creates a sitemap that includes your store product links. This makes your product pages more visible to search engines and appear in the search results."
488
+ msgstr ""
489
+
490
+ msgid "Add Product Slider to Your Store"
491
+ msgstr ""
492
+
493
+ msgid "Add a fancy product slider to your site using a free WP Widgets Avalanche plugin which works perfectly with Ecwid"
494
+ msgstr ""
495
+
readme.txt CHANGED
@@ -3,14 +3,14 @@ Contributors: ecwid
3
  Tags: ecwid, shopping cart, ecommerce, wordpress ecommerce, wp e-commerce, paypal, e-commerce, online store, store, shop, cart, online shop, shopping, digital goods, downloadable products, product catalog, ecomerce, products, facebook, f-commerce
4
  Requires at least: 2.8
5
  Tested up to: 4.2
6
- Stable tag: 3.2.1
7
 
8
  Ecwid is a full-featured shopping cart that can be added to any Wordpress site in less than 5 minutes. Start using Ecwid for free today.
9
 
10
  == Description ==
11
  **Wordpress.com officially recommends Ecwid as an e-commerce solution to millions of its users!**
12
 
13
- [Ecwid](http://www.ecwid.com?source=wporg-plugin-site "Ecwid site") is a powerful and easy-to-use shopping cart solution that allows you to sell on your WordPress website. Join over *700,000* sellers in *175* countries and sell globally with over *40* international payment options, real-time shipping integrations and support of *45* languages.
14
 
15
  = Full-featured Shopping Cart =
16
 
@@ -107,6 +107,9 @@ http://codex.wordpress.org/Managing_Plugins#Installing_Plugins
107
  * [Ecwid site](http://www.ecwid.com/?source=wporg-plugin-site "Ecwid Site")
108
 
109
  == Changelog ==
 
 
 
110
  = 3.2.1 =
111
  - Fixed an issue in the new "Chameleon skin” tool that could affect font styles on the site.
112
 
3
  Tags: ecwid, shopping cart, ecommerce, wordpress ecommerce, wp e-commerce, paypal, e-commerce, online store, store, shop, cart, online shop, shopping, digital goods, downloadable products, product catalog, ecomerce, products, facebook, f-commerce
4
  Requires at least: 2.8
5
  Tested up to: 4.2
6
+ Stable tag: 3.2.2
7
 
8
  Ecwid is a full-featured shopping cart that can be added to any Wordpress site in less than 5 minutes. Start using Ecwid for free today.
9
 
10
  == Description ==
11
  **Wordpress.com officially recommends Ecwid as an e-commerce solution to millions of its users!**
12
 
13
+ [Ecwid](http://www.ecwid.com?source=wporg-plugin-site "Ecwid site") is a powerful and easy-to-use shopping cart solution that allows you to sell on your WordPress website. Join over *800,000* sellers in *175* countries and sell globally with over *40* international payment options, real-time shipping integrations and support of *45* languages.
14
 
15
  = Full-featured Shopping Cart =
16
 
107
  * [Ecwid site](http://www.ecwid.com/?source=wporg-plugin-site "Ecwid Site")
108
 
109
  == Changelog ==
110
+ = 3.2.2=
111
+ - Fixed a few minor bugs in the Chameleon skin feature
112
+
113
  = 3.2.1 =
114
  - Fixed an issue in the new "Chameleon skin” tool that could affect font styles on the site.
115
 
templates/connect.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php if ($connection_error): ?>
2
- <script src="//app.ecwid.com/script.js?wporg_error=<?php echo urlencode($last_error); ?>&url=<?php echo urlencode(get_bloginfo('url')); ?>"></script>
3
  <?php endif; ?>
4
  <div class="wrap ecwid-admin ecwid-connect">
5
  <div class="box">
1
  <?php if ($connection_error): ?>
2
+ <script src="//app.ecwid.com/script.js?805056&data_wporg_error=<?php echo urlencode($last_error); ?>&url=<?php echo urlencode(get_bloginfo('url')); ?>"></script>
3
  <?php endif; ?>
4
  <div class="wrap ecwid-admin ecwid-connect">
5
  <div class="box">
templates/landing.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php if ($connection_error): ?>
2
- <script src="//app.ecwid.com/script.js?wporg_error=<?php echo urlencode($last_error); ?>&url=<?php echo urlencode(get_bloginfo('url')); ?>"></script>
3
  <?php endif; ?>
4
  <div class="ecwid-landing <?php echo $register ? 'register' : 'connect'; echo $connection_error ? ' conn-error': ''; ?>">
5
  <div class="ecwid-thank">
1
  <?php if ($connection_error): ?>
2
+ <script src="//app.ecwid.com/script.js?805056&data_wporg_error=<?php echo urlencode($last_error); ?>&url=<?php echo urlencode(get_bloginfo('url')); ?>"></script>
3
  <?php endif; ?>
4
  <div class="ecwid-landing <?php echo $register ? 'register' : 'connect'; echo $connection_error ? ' conn-error': ''; ?>">
5
  <div class="ecwid-thank">