Version Description
- Added Russian translation of the new plugin settings and registration pages
- Temporary fix for low quality images in the recently viewed products sidebar widget
- Fixed a few layout issues on the new registration page in the plugin backend
Download this release
Release Info
Developer | Ecwid |
Plugin | Ecwid Ecommerce Shopping Cart |
Version | 3.0.1 |
Comparing to | |
See all releases |
Code changes from version 3.0 to 3.0.1
- css/landing.css +1 -1
- ecwid-shopping-cart.php +8 -4
- fonts/ecwid-icons.svg +16 -16
- includes/class-ecwid-integration-wpseo.php +5 -5
- js/products-list.js +5 -10
- js/recently-viewed-common.js +69 -0
- js/recently-viewed.js +2 -36
- languages/ecwid-shopping-cart-ru_RU.mo +0 -0
- languages/ecwid-shopping-cart-ru_RU.po +459 -400
- languages/ecwid-shopping-cart.pot +458 -462
- lib/ecwid_catalog.php +2 -2
- readme.txt +7 -1
- templates/advanced-settings.php +1 -1
- templates/landing.php +5 -5
- templates/store-popup.php +1 -1
css/landing.css
CHANGED
@@ -493,4 +493,4 @@ ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu>li.current>a.current:a
|
|
493 |
|
494 |
.ecwid-landing .button:hover {
|
495 |
color: white;
|
496 |
-
}
|
493 |
|
494 |
.ecwid-landing .button:hover {
|
495 |
color: white;
|
496 |
+
}
|
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.0
|
9 |
Author URI: http://www.ecwid.com?source=wporg
|
10 |
*/
|
11 |
|
@@ -243,6 +243,10 @@ function ecwid_add_frontend_styles() {
|
|
243 |
wp_register_script('ecwid-products-list-js', plugins_url('ecwid-shopping-cart/js/products-list.js'), array('jquery-ui-widget'));
|
244 |
wp_register_style('ecwid-products-list-css', plugins_url('ecwid-shopping-cart/css/products-list.css'));
|
245 |
wp_enqueue_style('ecwid-css', plugins_url('ecwid-shopping-cart/css/frontend.css'));
|
|
|
|
|
|
|
|
|
246 |
}
|
247 |
|
248 |
function ecwid_load_textdomain() {
|
@@ -731,10 +735,10 @@ function ecwid_content_started($content)
|
|
731 |
|
732 |
function ecwid_wrap_shortcode_content($content, $name)
|
733 |
{
|
734 |
-
return "<!-- Ecwid shopping cart plugin v 3.0 -->"
|
735 |
. ecwid_get_scriptjs_code()
|
736 |
. "<div class=\"ecwid-shopping-cart-$name\">$content</div>"
|
737 |
-
. "<!-- END Ecwid Shopping Cart v 3.0 -->";
|
738 |
}
|
739 |
|
740 |
function ecwid_get_scriptjs_code($force_lang = null) {
|
@@ -1168,7 +1172,7 @@ EOT;
|
|
1168 |
$id = wp_insert_post( $my_post );
|
1169 |
update_option('ecwid_store_page_id', $id);
|
1170 |
|
1171 |
-
if (ecwid_get_theme_identification() == '
|
1172 |
update_post_meta($id, '_wp_page_template', 'full-width-page.php');
|
1173 |
update_option("ecwid_show_search_box", 'Y');
|
1174 |
}
|
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.0.1
|
9 |
Author URI: http://www.ecwid.com?source=wporg
|
10 |
*/
|
11 |
|
243 |
wp_register_script('ecwid-products-list-js', plugins_url('ecwid-shopping-cart/js/products-list.js'), array('jquery-ui-widget'));
|
244 |
wp_register_style('ecwid-products-list-css', plugins_url('ecwid-shopping-cart/css/products-list.css'));
|
245 |
wp_enqueue_style('ecwid-css', plugins_url('ecwid-shopping-cart/css/frontend.css'));
|
246 |
+
|
247 |
+
if (is_active_widget(false, false, 'ecwidrecentlyviewed')) {
|
248 |
+
wp_enqueue_script('ecwid-recently-viewed', plugins_url('ecwid-shopping-cart/js/recently-viewed-common.js'), array('jquery', 'utils'), false, true);
|
249 |
+
}
|
250 |
}
|
251 |
|
252 |
function ecwid_load_textdomain() {
|
735 |
|
736 |
function ecwid_wrap_shortcode_content($content, $name)
|
737 |
{
|
738 |
+
return "<!-- Ecwid shopping cart plugin v 3.0.1 -->"
|
739 |
. ecwid_get_scriptjs_code()
|
740 |
. "<div class=\"ecwid-shopping-cart-$name\">$content</div>"
|
741 |
+
. "<!-- END Ecwid Shopping Cart v 3.0.1 -->";
|
742 |
}
|
743 |
|
744 |
function ecwid_get_scriptjs_code($force_lang = null) {
|
1172 |
$id = wp_insert_post( $my_post );
|
1173 |
update_option('ecwid_store_page_id', $id);
|
1174 |
|
1175 |
+
if (ecwid_get_theme_identification() == 'responsive') {
|
1176 |
update_post_meta($id, '_wp_page_template', 'full-width-page.php');
|
1177 |
update_option("ecwid_show_search_box", 'Y');
|
1178 |
}
|
fonts/ecwid-icons.svg
CHANGED
@@ -1,17 +1,17 @@
|
|
1 |
-
<?xml version="1.0" standalone="no"?>
|
2 |
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
3 |
-
<svg xmlns="http://www.w3.org/2000/svg">
|
4 |
-
<metadata>Generated by IcoMoon</metadata>
|
5 |
-
<defs>
|
6 |
-
<font id="icomoon" horiz-adv-x="1024">
|
7 |
-
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
8 |
-
<missing-glyph horiz-adv-x="1024" />
|
9 |
-
<glyph unicode=" " d="" horiz-adv-x="512" />
|
10 |
-
<glyph unicode="" d="M930.909 605.091h-837.818c-20.945 0-46.545-17.222-46.545-38.633v-62.836c0-20.945 25.6-38.167 46.545-38.167h346.298v101.004h153.6v-101.004h337.92c20.945 0 46.545 17.222 46.545 38.633v60.044c0 20.945-25.6 40.96-46.545 40.96zM823.855 902.517c-50.269 50.269-89.833 31.651-115.433 0-46.545-58.647-95.418-103.331-125.207-128.465-6.982 7.913-17.222 13.033-28.393 13.033h-76.8c-11.171 0-21.411-5.12-28.393-13.033-29.789 25.135-78.662 69.818-125.207 128.465-25.6 31.651-65.164 50.269-115.433 0-180.131-180.131 59.113-227.607 98.676-227.607h84.247c0 0-202.938 88.436-140.102 164.771 26.531 32.116 48.407 8.844 83.316-13.964 34.444-22.342 79.127-44.684 109.382-58.647-2.793-5.585-5.12-11.636-5.12-18.153v-38.633c0-20.945 17.222-38.633 38.633-38.633h76.8c20.945 0 38.633 17.222 38.633 38.633v38.633c0 6.516-2.327 12.567-5.12 17.687 30.255 14.429 75.404 36.771 109.847 59.113 34.909 22.807 56.785 45.615 83.316 13.498 62.836-75.869-140.102-164.771-140.102-164.771h84.247c39.098 0.465 278.342 47.942 98.211 228.073zM439.389 410.997c0 0-307.2 0-345.833 0v-372.364c0-20.945 17.222-38.633 38.633-38.633h307.2v410.996zM592.989 410.997v-410.996h299.287c20.945 0 38.633 17.222 38.633 38.633v372.364c-38.633 0-337.92 0-337.92 0z" />
|
11 |
-
<glyph unicode="" d="M349.556 716.335c21.876 0 41.425 16.291 41.425 38.633 0 101.935 16.291 126.604 118.225 126.604s118.225-24.669 118.225-126.604c0-21.876 19.084-38.633 41.425-38.633 21.876 0 38.633 16.291 38.633 38.633 0 63.302 2.793 206.196-198.284 206.196s-197.818-142.895-197.818-206.196c2.327-21.876 16.291-38.633 38.167-38.633zM1023.535 47.942l-126.604 602.298c-2.793 16.291-16.291 30.255-33.047 30.255h-703.767c-16.291 0-33.047-13.964-33.047-30.255l-126.604-602.298c-2.793-27.462 11.171-49.338 33.047-49.338h960.233c19.084 0 32.582 21.876 29.789 49.338zM333.265 521.31c-33.047 0-60.509 27.462-60.509 60.509s27.462 60.509 60.509 60.509 60.509-27.462 60.509-60.509-27.462-60.509-60.509-60.509zM690.735 521.31c-33.047 0-60.509 27.462-60.509 60.509s27.462 60.509 60.509 60.509c33.047 0 60.509-27.462 60.509-60.509s-27.462-60.509-60.509-60.509z" />
|
12 |
-
<glyph unicode="" d="M976.524 884.364h-929.047c-26.065 0-47.476-23.273-47.476-54.458v-124.276c0-27.927 21.411-53.993 47.476-53.993h928.582c26.531 0 47.942 23.273 47.942 54.458v123.811c0 31.185-21.411 54.458-47.476 54.458zM976.524 558.546h-929.047c-26.065 0-47.476-23.273-47.476-54.458v-124.276c0-27.927 21.411-53.993 47.476-53.993h928.582c26.065 0 47.476 23.273 47.476 54.458v124.276c0.465 30.72-20.945 53.993-47.011 53.993zM976.524 232.728h-929.047c-26.065 0-47.476-23.273-47.476-54.458v-124.276c0-27.927 21.411-53.993 47.476-53.993h928.582c26.065 0 47.476 23.273 47.476 54.458v124.276c0.465 30.72-20.945 53.993-47.011 53.993z" />
|
13 |
-
<glyph unicode="" d="M848.989 185.717c0-15.424-12.503-27.927-27.927-27.927s-27.927 12.503-27.927 27.927c0 15.424 12.503 27.927 27.927 27.927s27.927-12.503 27.927-27.927zM233.658 184.786c0-15.424-12.503-27.927-27.927-27.927s-27.927 12.503-27.927 27.927c0 15.424 12.503 27.927 27.927 27.927s27.927-12.503 27.927-27.927zM823.389 977.455h-622.778c-110.778 0-200.611-89.833-200.611-200.611v-623.244c0-110.313 89.833-200.145 200.611-200.145h623.244c110.778 0 200.611 89.833 200.611 200.611v622.778c-0.465 110.778-90.298 200.611-201.076 200.611zM642.793 683.288c21.411 0 39.098-17.222 39.098-39.098s-17.687-39.098-39.098-39.098c-21.411 0-39.098 17.222-39.098 39.098 0.465 21.876 17.687 39.098 39.098 39.098zM642.793 543.186c21.411 0 39.098-17.222 39.098-39.098 0-21.411-17.687-39.098-39.098-39.098s-39.098 17.222-39.098 39.098 17.687 39.098 39.098 39.098zM514.793 683.288c21.411 0 39.098-17.222 39.098-39.098 0-21.411-17.222-39.098-39.098-39.098-21.411 0-39.098 17.222-39.098 39.098 0.465 21.876 17.687 39.098 39.098 39.098zM514.793 543.186c21.411 0 39.098-17.222 39.098-39.098 0-21.411-17.222-39.098-39.098-39.098-21.411 0-39.098 17.222-39.098 39.098 0.465 21.876 17.687 39.098 39.098 39.098zM388.655 683.288c21.411 0 39.098-17.222 39.098-39.098 0-21.411-17.222-39.098-39.098-39.098-21.411 0-39.098 17.222-39.098 39.098s17.222 39.098 39.098 39.098zM388.655 543.186c21.411 0 39.098-17.222 39.098-39.098 0-21.411-17.222-39.098-39.098-39.098-21.411 0-39.098 17.222-39.098 39.098s17.222 39.098 39.098 39.098zM205.731 107.055c-42.822 0-77.731 34.909-77.731 77.731s34.909 78.196 77.731 78.196c43.287 0 78.196-34.909 78.196-78.196 0-42.822-34.909-77.731-78.196-77.731zM566.924 284.393c-37.236 0-51.665 15.825-53.527 20.945-1.862-5.12-15.36-20.945-52.596-20.945-39.098 0-40.495 0-81.92 0-48.873 0-124.742 25.6-147.084 103.796-22.807 77.731-54.458 194.56-68.887 246.691-14.429 52.596-16.291 56.32 8.844 56.32 22.807 0 70.284-3.258 85.644-56.32 14.895-53.062 44.684-153.6 56.32-192.698 16.756-55.855 63.302-61.44 93.556-61.44 40.96 0 63.302 1.396 63.302 33.978 13.033 0.465 33.047 0 42.356 0s29.324 0 42.356 0c0-31.185 22.342-34.444 63.302-33.978 47.011 0.465 84.247 12.567 101.935 71.215 15.825 53.527 59.578 221.556 77.731 294.633 10.705 43.753 63.767 48.873 84.713 48.873 24.669 0.465 15.825-20.015 1.862-75.404-15.36-62.371-56.785-237.847-82.851-317.905-25.6-77.265-88.436-118.225-155.927-118.225-41.425 0.465-40.495 0.465-79.127 0.465zM821.062 107.986c-43.287 0-78.196 34.909-78.196 78.196s34.909 78.196 78.196 78.196c42.822 0 78.196-34.909 78.196-78.196s-35.375-78.196-78.196-78.196z" />
|
14 |
-
<glyph unicode="" d="M961.629 121.019c13.498-13.498 21.411-32.582 21.411-51.2 0-19.084-7.913-37.702-21.411-51.2-16.291-16.291-32.582-24.204-51.2-24.204-21.411 0-37.702 7.913-51.2 21.411l-200.145 197.353c-67.491-48.873-146.153-70.284-229.935-70.284-53.993 0-107.985 10.705-156.858 32.582-51.2 21.411-94.487 51.2-129.862 86.575-34.909 34.909-64.698 78.196-86.575 129.862s-32.582 102.865-32.582 156.858 10.705 107.985 32.582 156.858c21.411 51.2 51.2 94.487 86.575 129.862s78.196 64.698 129.862 86.575 102.865 32.582 156.858 32.582 107.985-10.705 156.858-32.582c51.2-21.411 94.487-51.2 129.862-86.575s64.698-78.196 86.575-129.862c21.411-51.2 32.582-102.865 32.582-156.858 0-83.782-24.204-161.978-70.284-229.935l196.887-197.818zM613.004 364.451c51.2 51.2 75.869 110.778 75.869 183.855 0 70.284-24.204 132.655-75.869 183.855s-110.778 75.869-183.855 75.869c-70.284 0-132.655-24.204-183.855-75.869s-75.404-110.778-75.404-183.855c0-70.284 24.204-132.655 75.869-183.855s110.778-75.869 183.855-75.869c69.818 0 132.189 26.996 183.389 75.869z" />
|
15 |
-
<glyph unicode="" d="M50.735 50.735c0 9.309 7.447 16.756 16.756 16.756h890.88c9.309 0 16.756-7.447 16.756-16.756v-33.978c0-9.309-7.447-16.756-16.756-16.756h-891.345c-9.309 0-16.756 7.447-16.756 16.756v33.978zM977.455 608.815c-35.84 71.68-51.2 141.498-71.68 257.396 0 6.516-16.291 28.858-35.84 28.858h-715.869c-19.549 0-35.84-22.342-35.84-28.858 0 0-35.84-221.556-71.68-257.396 0-36.305 0-108.451 0-108.451s0.465-1.396 1.396-2.793h-1.396c0 0 3.258-17.687 25.6-27.927 3.258-1.862 6.516-3.258 10.24-4.189v-324.422c0-19.549 20.48-33.047 40.029-33.047h282.065v296.495c0 19.549 18.618 35.375 38.633 35.375h142.429c19.549 0 35.375-15.825 35.375-35.375v-296.495h284.858c19.549 0 35.375 13.498 35.375 33.047v324.422c28.393 4.655 35.84 33.047 35.84 33.047h-0.931c0.465 1.862 0.931 2.793 0.931 2.793s0.465 71.68 0.465 107.52zM327.215 250.415c0-19.549-8.844-35.84-28.393-35.84h-74.007c-19.549 0-28.858 16.291-28.858 35.84v143.36c0 19.549 9.309 35.84 28.858 35.84h74.007c19.549 0 28.393-16.291 28.393-35.84v-143.36zM827.113 250.415c0-19.549-7.913-35.84-27.462-35.84h-73.076c-19.549 0-28.858 16.291-28.858 35.84v143.36c0 19.549 9.309 35.84 28.858 35.84h73.076c19.549 0 27.462-16.291 27.462-35.84v-143.36zM833.629 829.44c0 0 38.167-181.993 61.44-220.625-35.375 0-97.745 0-97.745 0l-35.84 220.625h72.145zM898.327 572.975l-0.465-27.927c-3.258-24.669-24.204-43.753-49.804-43.753-27.927 0-50.269 16.756-50.269 44.684 0 0.931 1.396 26.996 1.396 26.996h99.142zM628.829 554.357v18.618h101.935l-0.465-28.393c-3.724-24.669-24.669-43.287-49.804-43.287-27.927 0-50.735 22.807-50.735 50.735 0 0.931 0 1.396 0.465 2.327h-1.396zM689.804 829.44c0 0 26.996-177.338 38.167-220.625 11.171 0-99.142 0-99.142 0l-10.705 220.625h71.68zM475.229 829.44h72.611l13.033-220.625h-97.745l12.102 220.625zM462.196 572.975h99.142l0.465-25.135c-1.862-26.065-23.738-46.545-50.269-46.545s-48.407 20.48-50.269 46.545l0.931 25.135zM331.869 829.44h71.68l-10.705-220.625c0 0-69.818 0-95.884 0 11.171 40.029 34.909 220.625 34.909 220.625zM294.633 572.975h99.142l0.931-18.618h-0.465c0-0.931 0.465-1.396 0.465-2.327 0-27.927-22.807-50.735-50.735-50.735-25.6 0-46.080 18.618-49.804 43.287l0.465 28.393zM190.371 829.44h69.818l-29.324-220.625c0 0-71.215 0-97.745 0 27.462 49.804 57.251 220.625 57.251 220.625zM126.604 572.975h99.142c0 0 0-20.015 0-20.945 0-27.927-22.807-50.735-50.735-50.735-24.669 0-45.615 17.687-49.804 41.425l1.396 30.255z" />
|
16 |
-
<glyph unicode="" d="M865.745 109.848c-25.135-24.669-65.629-24.669-90.764 0l-267.636 263.913-272.756-268.567c-25.135-24.669-65.629-24.669-90.764 0s-25.135 64.698 0 89.367l268.567 264.378-269.033 264.378c-25.135 24.669-25.135 64.698 0 89.367s65.629 24.669 90.764 0l267.636-263.447 272.756 268.567c25.135 24.669 65.629 24.669 90.764 0s25.135-64.698 0-89.367l-268.567-264.378 268.567-264.844c25.135-24.669 25.135-64.698 0.465-89.367z" />
|
17 |
</font></defs></svg>
|
1 |
+
<?xml version="1.0" standalone="no"?>
|
2 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
3 |
+
<svg xmlns="http://www.w3.org/2000/svg">
|
4 |
+
<metadata>Generated by IcoMoon</metadata>
|
5 |
+
<defs>
|
6 |
+
<font id="icomoon" horiz-adv-x="1024">
|
7 |
+
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
8 |
+
<missing-glyph horiz-adv-x="1024" />
|
9 |
+
<glyph unicode=" " d="" horiz-adv-x="512" />
|
10 |
+
<glyph unicode="" d="M930.909 605.091h-837.818c-20.945 0-46.545-17.222-46.545-38.633v-62.836c0-20.945 25.6-38.167 46.545-38.167h346.298v101.004h153.6v-101.004h337.92c20.945 0 46.545 17.222 46.545 38.633v60.044c0 20.945-25.6 40.96-46.545 40.96zM823.855 902.517c-50.269 50.269-89.833 31.651-115.433 0-46.545-58.647-95.418-103.331-125.207-128.465-6.982 7.913-17.222 13.033-28.393 13.033h-76.8c-11.171 0-21.411-5.12-28.393-13.033-29.789 25.135-78.662 69.818-125.207 128.465-25.6 31.651-65.164 50.269-115.433 0-180.131-180.131 59.113-227.607 98.676-227.607h84.247c0 0-202.938 88.436-140.102 164.771 26.531 32.116 48.407 8.844 83.316-13.964 34.444-22.342 79.127-44.684 109.382-58.647-2.793-5.585-5.12-11.636-5.12-18.153v-38.633c0-20.945 17.222-38.633 38.633-38.633h76.8c20.945 0 38.633 17.222 38.633 38.633v38.633c0 6.516-2.327 12.567-5.12 17.687 30.255 14.429 75.404 36.771 109.847 59.113 34.909 22.807 56.785 45.615 83.316 13.498 62.836-75.869-140.102-164.771-140.102-164.771h84.247c39.098 0.465 278.342 47.942 98.211 228.073zM439.389 410.997c0 0-307.2 0-345.833 0v-372.364c0-20.945 17.222-38.633 38.633-38.633h307.2v410.996zM592.989 410.997v-410.996h299.287c20.945 0 38.633 17.222 38.633 38.633v372.364c-38.633 0-337.92 0-337.92 0z" />
|
11 |
+
<glyph unicode="" d="M349.556 716.335c21.876 0 41.425 16.291 41.425 38.633 0 101.935 16.291 126.604 118.225 126.604s118.225-24.669 118.225-126.604c0-21.876 19.084-38.633 41.425-38.633 21.876 0 38.633 16.291 38.633 38.633 0 63.302 2.793 206.196-198.284 206.196s-197.818-142.895-197.818-206.196c2.327-21.876 16.291-38.633 38.167-38.633zM1023.535 47.942l-126.604 602.298c-2.793 16.291-16.291 30.255-33.047 30.255h-703.767c-16.291 0-33.047-13.964-33.047-30.255l-126.604-602.298c-2.793-27.462 11.171-49.338 33.047-49.338h960.233c19.084 0 32.582 21.876 29.789 49.338zM333.265 521.31c-33.047 0-60.509 27.462-60.509 60.509s27.462 60.509 60.509 60.509 60.509-27.462 60.509-60.509-27.462-60.509-60.509-60.509zM690.735 521.31c-33.047 0-60.509 27.462-60.509 60.509s27.462 60.509 60.509 60.509c33.047 0 60.509-27.462 60.509-60.509s-27.462-60.509-60.509-60.509z" />
|
12 |
+
<glyph unicode="" d="M976.524 884.364h-929.047c-26.065 0-47.476-23.273-47.476-54.458v-124.276c0-27.927 21.411-53.993 47.476-53.993h928.582c26.531 0 47.942 23.273 47.942 54.458v123.811c0 31.185-21.411 54.458-47.476 54.458zM976.524 558.546h-929.047c-26.065 0-47.476-23.273-47.476-54.458v-124.276c0-27.927 21.411-53.993 47.476-53.993h928.582c26.065 0 47.476 23.273 47.476 54.458v124.276c0.465 30.72-20.945 53.993-47.011 53.993zM976.524 232.728h-929.047c-26.065 0-47.476-23.273-47.476-54.458v-124.276c0-27.927 21.411-53.993 47.476-53.993h928.582c26.065 0 47.476 23.273 47.476 54.458v124.276c0.465 30.72-20.945 53.993-47.011 53.993z" />
|
13 |
+
<glyph unicode="" d="M848.989 185.717c0-15.424-12.503-27.927-27.927-27.927s-27.927 12.503-27.927 27.927c0 15.424 12.503 27.927 27.927 27.927s27.927-12.503 27.927-27.927zM233.658 184.786c0-15.424-12.503-27.927-27.927-27.927s-27.927 12.503-27.927 27.927c0 15.424 12.503 27.927 27.927 27.927s27.927-12.503 27.927-27.927zM823.389 977.455h-622.778c-110.778 0-200.611-89.833-200.611-200.611v-623.244c0-110.313 89.833-200.145 200.611-200.145h623.244c110.778 0 200.611 89.833 200.611 200.611v622.778c-0.465 110.778-90.298 200.611-201.076 200.611zM642.793 683.288c21.411 0 39.098-17.222 39.098-39.098s-17.687-39.098-39.098-39.098c-21.411 0-39.098 17.222-39.098 39.098 0.465 21.876 17.687 39.098 39.098 39.098zM642.793 543.186c21.411 0 39.098-17.222 39.098-39.098 0-21.411-17.687-39.098-39.098-39.098s-39.098 17.222-39.098 39.098 17.687 39.098 39.098 39.098zM514.793 683.288c21.411 0 39.098-17.222 39.098-39.098 0-21.411-17.222-39.098-39.098-39.098-21.411 0-39.098 17.222-39.098 39.098 0.465 21.876 17.687 39.098 39.098 39.098zM514.793 543.186c21.411 0 39.098-17.222 39.098-39.098 0-21.411-17.222-39.098-39.098-39.098-21.411 0-39.098 17.222-39.098 39.098 0.465 21.876 17.687 39.098 39.098 39.098zM388.655 683.288c21.411 0 39.098-17.222 39.098-39.098 0-21.411-17.222-39.098-39.098-39.098-21.411 0-39.098 17.222-39.098 39.098s17.222 39.098 39.098 39.098zM388.655 543.186c21.411 0 39.098-17.222 39.098-39.098 0-21.411-17.222-39.098-39.098-39.098-21.411 0-39.098 17.222-39.098 39.098s17.222 39.098 39.098 39.098zM205.731 107.055c-42.822 0-77.731 34.909-77.731 77.731s34.909 78.196 77.731 78.196c43.287 0 78.196-34.909 78.196-78.196 0-42.822-34.909-77.731-78.196-77.731zM566.924 284.393c-37.236 0-51.665 15.825-53.527 20.945-1.862-5.12-15.36-20.945-52.596-20.945-39.098 0-40.495 0-81.92 0-48.873 0-124.742 25.6-147.084 103.796-22.807 77.731-54.458 194.56-68.887 246.691-14.429 52.596-16.291 56.32 8.844 56.32 22.807 0 70.284-3.258 85.644-56.32 14.895-53.062 44.684-153.6 56.32-192.698 16.756-55.855 63.302-61.44 93.556-61.44 40.96 0 63.302 1.396 63.302 33.978 13.033 0.465 33.047 0 42.356 0s29.324 0 42.356 0c0-31.185 22.342-34.444 63.302-33.978 47.011 0.465 84.247 12.567 101.935 71.215 15.825 53.527 59.578 221.556 77.731 294.633 10.705 43.753 63.767 48.873 84.713 48.873 24.669 0.465 15.825-20.015 1.862-75.404-15.36-62.371-56.785-237.847-82.851-317.905-25.6-77.265-88.436-118.225-155.927-118.225-41.425 0.465-40.495 0.465-79.127 0.465zM821.062 107.986c-43.287 0-78.196 34.909-78.196 78.196s34.909 78.196 78.196 78.196c42.822 0 78.196-34.909 78.196-78.196s-35.375-78.196-78.196-78.196z" />
|
14 |
+
<glyph unicode="" d="M961.629 121.019c13.498-13.498 21.411-32.582 21.411-51.2 0-19.084-7.913-37.702-21.411-51.2-16.291-16.291-32.582-24.204-51.2-24.204-21.411 0-37.702 7.913-51.2 21.411l-200.145 197.353c-67.491-48.873-146.153-70.284-229.935-70.284-53.993 0-107.985 10.705-156.858 32.582-51.2 21.411-94.487 51.2-129.862 86.575-34.909 34.909-64.698 78.196-86.575 129.862s-32.582 102.865-32.582 156.858 10.705 107.985 32.582 156.858c21.411 51.2 51.2 94.487 86.575 129.862s78.196 64.698 129.862 86.575 102.865 32.582 156.858 32.582 107.985-10.705 156.858-32.582c51.2-21.411 94.487-51.2 129.862-86.575s64.698-78.196 86.575-129.862c21.411-51.2 32.582-102.865 32.582-156.858 0-83.782-24.204-161.978-70.284-229.935l196.887-197.818zM613.004 364.451c51.2 51.2 75.869 110.778 75.869 183.855 0 70.284-24.204 132.655-75.869 183.855s-110.778 75.869-183.855 75.869c-70.284 0-132.655-24.204-183.855-75.869s-75.404-110.778-75.404-183.855c0-70.284 24.204-132.655 75.869-183.855s110.778-75.869 183.855-75.869c69.818 0 132.189 26.996 183.389 75.869z" />
|
15 |
+
<glyph unicode="" d="M50.735 50.735c0 9.309 7.447 16.756 16.756 16.756h890.88c9.309 0 16.756-7.447 16.756-16.756v-33.978c0-9.309-7.447-16.756-16.756-16.756h-891.345c-9.309 0-16.756 7.447-16.756 16.756v33.978zM977.455 608.815c-35.84 71.68-51.2 141.498-71.68 257.396 0 6.516-16.291 28.858-35.84 28.858h-715.869c-19.549 0-35.84-22.342-35.84-28.858 0 0-35.84-221.556-71.68-257.396 0-36.305 0-108.451 0-108.451s0.465-1.396 1.396-2.793h-1.396c0 0 3.258-17.687 25.6-27.927 3.258-1.862 6.516-3.258 10.24-4.189v-324.422c0-19.549 20.48-33.047 40.029-33.047h282.065v296.495c0 19.549 18.618 35.375 38.633 35.375h142.429c19.549 0 35.375-15.825 35.375-35.375v-296.495h284.858c19.549 0 35.375 13.498 35.375 33.047v324.422c28.393 4.655 35.84 33.047 35.84 33.047h-0.931c0.465 1.862 0.931 2.793 0.931 2.793s0.465 71.68 0.465 107.52zM327.215 250.415c0-19.549-8.844-35.84-28.393-35.84h-74.007c-19.549 0-28.858 16.291-28.858 35.84v143.36c0 19.549 9.309 35.84 28.858 35.84h74.007c19.549 0 28.393-16.291 28.393-35.84v-143.36zM827.113 250.415c0-19.549-7.913-35.84-27.462-35.84h-73.076c-19.549 0-28.858 16.291-28.858 35.84v143.36c0 19.549 9.309 35.84 28.858 35.84h73.076c19.549 0 27.462-16.291 27.462-35.84v-143.36zM833.629 829.44c0 0 38.167-181.993 61.44-220.625-35.375 0-97.745 0-97.745 0l-35.84 220.625h72.145zM898.327 572.975l-0.465-27.927c-3.258-24.669-24.204-43.753-49.804-43.753-27.927 0-50.269 16.756-50.269 44.684 0 0.931 1.396 26.996 1.396 26.996h99.142zM628.829 554.357v18.618h101.935l-0.465-28.393c-3.724-24.669-24.669-43.287-49.804-43.287-27.927 0-50.735 22.807-50.735 50.735 0 0.931 0 1.396 0.465 2.327h-1.396zM689.804 829.44c0 0 26.996-177.338 38.167-220.625 11.171 0-99.142 0-99.142 0l-10.705 220.625h71.68zM475.229 829.44h72.611l13.033-220.625h-97.745l12.102 220.625zM462.196 572.975h99.142l0.465-25.135c-1.862-26.065-23.738-46.545-50.269-46.545s-48.407 20.48-50.269 46.545l0.931 25.135zM331.869 829.44h71.68l-10.705-220.625c0 0-69.818 0-95.884 0 11.171 40.029 34.909 220.625 34.909 220.625zM294.633 572.975h99.142l0.931-18.618h-0.465c0-0.931 0.465-1.396 0.465-2.327 0-27.927-22.807-50.735-50.735-50.735-25.6 0-46.080 18.618-49.804 43.287l0.465 28.393zM190.371 829.44h69.818l-29.324-220.625c0 0-71.215 0-97.745 0 27.462 49.804 57.251 220.625 57.251 220.625zM126.604 572.975h99.142c0 0 0-20.015 0-20.945 0-27.927-22.807-50.735-50.735-50.735-24.669 0-45.615 17.687-49.804 41.425l1.396 30.255z" />
|
16 |
+
<glyph unicode="" d="M865.745 109.848c-25.135-24.669-65.629-24.669-90.764 0l-267.636 263.913-272.756-268.567c-25.135-24.669-65.629-24.669-90.764 0s-25.135 64.698 0 89.367l268.567 264.378-269.033 264.378c-25.135 24.669-25.135 64.698 0 89.367s65.629 24.669 90.764 0l267.636-263.447 272.756 268.567c25.135 24.669 65.629 24.669 90.764 0s25.135-64.698 0-89.367l-268.567-264.378 268.567-264.844c25.135-24.669 25.135-64.698 0.465-89.367z" />
|
17 |
</font></defs></svg>
|
includes/class-ecwid-integration-wpseo.php
CHANGED
@@ -26,13 +26,13 @@ class Ecwid_Integration_WordPress_SEO_By_Yoast
|
|
26 |
}
|
27 |
|
28 |
global $wpseo_front;
|
|
|
29 |
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
|
34 |
-
|
35 |
-
remove_action( 'wpseo_head', array( $wpseo_front, 'canonical' ), 20);
|
36 |
// Description
|
37 |
remove_action( 'wpseo_head', array( $wpseo_front, 'metadesc' ), 10 );
|
38 |
}
|
26 |
}
|
27 |
|
28 |
global $wpseo_front;
|
29 |
+
// Canonical
|
30 |
|
31 |
+
if (empty($wpseo_front)) {
|
32 |
+
$wpseo_front = WPSEO_Frontend::get_instance();
|
33 |
+
}
|
34 |
|
35 |
+
remove_action( 'wpseo_head', array( $wpseo_front, 'canonical' ), 20 );
|
|
|
36 |
// Description
|
37 |
remove_action( 'wpseo_head', array( $wpseo_front, 'metadesc' ), 10 );
|
38 |
}
|
js/products-list.js
CHANGED
@@ -1,18 +1,13 @@
|
|
1 |
jQuery.widget('ecwid.productsList', {
|
2 |
-
container: null,
|
3 |
|
4 |
-
|
5 |
-
},
|
6 |
-
|
7 |
-
options: {
|
8 |
-
max: 3
|
9 |
-
},
|
10 |
|
11 |
-
|
|
|
|
|
|
|
12 |
|
13 |
-
_prefix: 'ecwid-productsList',
|
14 |
|
15 |
-
_create: function() {
|
16 |
this.element.addClass(this._prefix);
|
17 |
this._removeInitialContent();
|
18 |
this.container = jQuery('<ul>').appendTo(this.element);
|
1 |
jQuery.widget('ecwid.productsList', {
|
|
|
2 |
|
3 |
+
_create: function() {
|
|
|
|
|
|
|
|
|
|
|
4 |
|
5 |
+
this.products = {};
|
6 |
+
this.container = null;
|
7 |
+
this._prefix = 'ecwid-productsList';
|
8 |
+
this.sort = [];
|
9 |
|
|
|
10 |
|
|
|
11 |
this.element.addClass(this._prefix);
|
12 |
this._removeInitialContent();
|
13 |
this.container = jQuery('<ul>').appendTo(this.element);
|
js/recently-viewed-common.js
ADDED
@@ -0,0 +1,69 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
(function() {
|
2 |
+
|
3 |
+
if (typeof jQuery == 'undefined') {
|
4 |
+
throw new Error('recently-viewed-common.js requires jquery');
|
5 |
+
}
|
6 |
+
|
7 |
+
if (typeof Ecwid == 'undefined') {
|
8 |
+
throw new Error('recently-viewed-common.js must be included after Ecwid object initialization');
|
9 |
+
}
|
10 |
+
|
11 |
+
if (typeof wpCookies == 'undefined') {
|
12 |
+
throw new Error('recently-viewed-common.js requires utils');
|
13 |
+
}
|
14 |
+
|
15 |
+
if (wpCookies.get('test_ecwid_shopping_cart_recently_products_cookie') != 'test_ecwid_shopping_cart_cookie_value') {
|
16 |
+
wpCookies.set('test_ecwid_shopping_cart_recently_products_cookie', 'test_ecwid_shopping_cart_cookie_value', '', '/');
|
17 |
+
throw new Error('recently-viewed-common.js requires enabled cookies');
|
18 |
+
}
|
19 |
+
|
20 |
+
Ecwid.OnPageLoaded.add(function(page) {
|
21 |
+
if (page.type == 'PRODUCT') {
|
22 |
+
debugger;
|
23 |
+
var productInfo = fetchProductInfo(page.productId);
|
24 |
+
saveProductToCookies(productInfo);
|
25 |
+
}
|
26 |
+
});
|
27 |
+
|
28 |
+
var fetchProductInfo = function(productId) {
|
29 |
+
var product = {};
|
30 |
+
|
31 |
+
product.id = productId;
|
32 |
+
product.link = window.location.href;
|
33 |
+
|
34 |
+
return product;
|
35 |
+
}
|
36 |
+
|
37 |
+
var saveProductToCookies = function(product) {
|
38 |
+
var cookieName = 'ecwid-shopping-cart-recently-viewed';
|
39 |
+
|
40 |
+
debugger;
|
41 |
+
var cookie = JSON.parse(wpCookies.get(cookieName));
|
42 |
+
|
43 |
+
if (cookie == null || typeof(cookie) != 'object') {
|
44 |
+
cookie = {last: 0, products: []};
|
45 |
+
}
|
46 |
+
|
47 |
+
var expires = new Date;
|
48 |
+
expires.setMonth(expires.getMonth() + 1);
|
49 |
+
|
50 |
+
var src = jQuery('script[src*="app.ecwid.com/script.js?"]').attr('src');
|
51 |
+
var re = /app.ecwid.com\/script.js\?(\d*)/;
|
52 |
+
cookie.store_id = src.match(re)[1];
|
53 |
+
|
54 |
+
for (var i = 0; i < cookie.products.length; i++) {
|
55 |
+
if (cookie.products[i].id == product.id) {
|
56 |
+
cookie.products.splice(i, 1);
|
57 |
+
}
|
58 |
+
}
|
59 |
+
|
60 |
+
cookie.products.unshift({
|
61 |
+
id: product.id,
|
62 |
+
link: product.link
|
63 |
+
});
|
64 |
+
|
65 |
+
wpCookies.set(cookieName, JSON.stringify(cookie), expires.toUTCString(), '/' );
|
66 |
+
|
67 |
+
}
|
68 |
+
|
69 |
+
})();
|
js/recently-viewed.js
CHANGED
@@ -24,7 +24,7 @@ jQuery.widget('ecwid.recentlyViewedProducts', jQuery.ecwid.productsList, {
|
|
24 |
|
25 |
setTimeout(function() {
|
26 |
self.addViewedProduct(product);
|
27 |
-
},
|
28 |
}
|
29 |
}
|
30 |
);
|
@@ -47,43 +47,9 @@ jQuery.widget('ecwid.recentlyViewedProducts', jQuery.ecwid.productsList, {
|
|
47 |
this._addToSort(product.id);
|
48 |
}
|
49 |
|
50 |
-
this._refreshCookies(product);
|
51 |
-
|
52 |
this._render();
|
53 |
},
|
54 |
|
55 |
-
_refreshCookies: function(product)
|
56 |
-
{
|
57 |
-
var cookieName = 'ecwid-shopping-cart-recently-viewed';
|
58 |
-
|
59 |
-
var cookie = JSON.parse(wpCookies.get(cookieName));
|
60 |
-
|
61 |
-
if (cookie == null || typeof(cookie) != 'object') {
|
62 |
-
cookie = {last: 0, products: []};
|
63 |
-
}
|
64 |
-
|
65 |
-
var expires = new Date;
|
66 |
-
expires.setMonth(expires.getMonth() + 1);
|
67 |
-
|
68 |
-
var src = jQuery('script[src*="app.ecwid.com/script.js?"]').attr('src');
|
69 |
-
var re = /app.ecwid.com\/script.js\?(\d*)/;
|
70 |
-
cookie.store_id = src.match(re)[1];
|
71 |
-
|
72 |
-
for (var i = 0; i < cookie.products.length; i++) {
|
73 |
-
if (cookie.products[i].id == product.id) {
|
74 |
-
cookie.products.splice(i, 1);
|
75 |
-
}
|
76 |
-
}
|
77 |
-
|
78 |
-
cookie.products.unshift({
|
79 |
-
id: product.id,
|
80 |
-
link: product.link
|
81 |
-
});
|
82 |
-
|
83 |
-
wpCookies.set(cookieName, JSON.stringify(cookie), expires.toUTCString() );
|
84 |
-
|
85 |
-
},
|
86 |
-
|
87 |
_getProductsToShow: function() {
|
88 |
// copy array using slice
|
89 |
var sort = this.sort.slice();
|
@@ -108,4 +74,4 @@ jQuery.widget('ecwid.recentlyViewedProducts', jQuery.ecwid.productsList, {
|
|
108 |
}
|
109 |
});
|
110 |
|
111 |
-
jQuery('.ecwid-recently-viewed-products').recentlyViewedProducts();
|
24 |
|
25 |
setTimeout(function() {
|
26 |
self.addViewedProduct(product);
|
27 |
+
}, 500);
|
28 |
}
|
29 |
}
|
30 |
);
|
47 |
this._addToSort(product.id);
|
48 |
}
|
49 |
|
|
|
|
|
50 |
this._render();
|
51 |
},
|
52 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
_getProductsToShow: function() {
|
54 |
// copy array using slice
|
55 |
var sort = this.sort.slice();
|
74 |
}
|
75 |
});
|
76 |
|
77 |
+
jQuery('.ecwid-recently-viewed-products').recentlyViewedProducts();
|
languages/ecwid-shopping-cart-ru_RU.mo
CHANGED
Binary file
|
languages/ecwid-shopping-cart-ru_RU.po
CHANGED
@@ -1,400 +1,459 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
"
|
12 |
-
|
13 |
-
"
|
14 |
-
"
|
15 |
-
|
16 |
-
"
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 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 href=\"http://help.ecwid.com/?source=wporg\">Ecwid support center</a>"
|
278 |
+
msgstr "Есть вопросы? Посетите <a href=\"http://help.ecwid.com/?source=wporg\">Центр поддержки Эквида (англ)</a> или <a 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 |
+
|
languages/ecwid-shopping-cart.pot
CHANGED
@@ -1,462 +1,458 @@
|
|
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 "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 ""
|
159 |
-
|
160 |
-
msgid "Rate Ecwid at WordPress.org"
|
161 |
-
msgstr ""
|
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 ""
|
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 ""
|
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 ""
|
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 > API > Single Sign-On
|
203 |
-
msgstr ""
|
204 |
-
|
205 |
-
msgid "Save changes"
|
206 |
-
msgstr ""
|
207 |
-
|
208 |
-
msgid "Ecwid Shopping Cart — Appearance settings"
|
209 |
-
msgstr ""
|
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 ""
|
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 ""
|
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 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 ""
|
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 href=\"http://help.ecwid.com/?source=wporg\">Ecwid support center</a>"
|
278 |
-
msgstr ""
|
279 |
-
|
280 |
-
msgid "Store ID"
|
281 |
-
msgstr ""
|
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 ""
|
291 |
-
|
292 |
-
msgid "Greetings!"
|
293 |
-
msgstr ""
|
294 |
-
|
295 |
-
msgid "Your Ecwid store is connected<br /> to your WordPress website"
|
296 |
-
msgstr ""
|
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 ""
|
306 |
-
|
307 |
-
msgid "There are few little steps left to start selling<br />on your WordPress site"
|
308 |
-
msgstr ""
|
309 |
-
|
310 |
-
msgid "Register"
|
311 |
-
msgstr ""
|
312 |
-
|
313 |
-
msgid "Create a free Ecwid account to manage your
|
314 |
-
msgstr ""
|
315 |
-
|
316 |
-
msgid "Connect"
|
317 |
-
msgstr ""
|
318 |
-
|
319 |
-
msgid "Add your Ecwid store to your site<
|
320 |
-
msgstr ""
|
321 |
-
|
322 |
-
msgid "Connect your Ecwid store to this site<
|
323 |
-
msgstr ""
|
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 ""
|
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 ""
|
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 ""
|
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 ""
|
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
|
380 |
-
msgstr ""
|
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 ""
|
387 |
-
|
388 |
-
msgid "Responsive design"
|
389 |
-
msgstr ""
|
390 |
-
|
391 |
-
msgid "Your store looks perfect<br />on all devices"
|
392 |
-
msgstr ""
|
393 |
-
|
394 |
-
msgid "PCI-DSS Certified"
|
395 |
-
msgstr ""
|
396 |
-
|
397 |
-
msgid "Secure checkout with over 40<br />payment options"
|
398 |
-
msgstr ""
|
399 |
-
|
400 |
-
msgid "Global Reach"
|
401 |
-
msgstr ""
|
402 |
-
|
403 |
-
msgid "More than 700,000 merchants in 175 countries"
|
404 |
-
msgstr ""
|
405 |
-
|
406 |
-
msgid "Start selling <br>on your WordPress <nobr>site for free</nobr>"
|
407 |
-
msgstr ""
|
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 ""
|
417 |
-
|
418 |
-
msgid "Reconnect Ecwid store"
|
419 |
-
msgstr ""
|
420 |
-
|
421 |
-
msgid "New features available, reconnect to be in touch with our updates"
|
422 |
-
msgstr ""
|
423 |
-
|
424 |
-
msgid "Add store"
|
425 |
-
msgstr ""
|
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 ""
|
447 |
-
|
448 |
-
msgid "Demo store"
|
449 |
-
msgstr ""
|
450 |
-
|
451 |
-
msgid "Ecwid plugin settings"
|
452 |
-
msgstr ""
|
453 |
-
|
454 |
-
msgid "
|
455 |
-
msgstr ""
|
456 |
-
|
457 |
-
msgid "
|
458 |
-
msgstr ""
|
459 |
-
|
460 |
-
msgid "Demo Store"
|
461 |
-
msgstr ""
|
462 |
-
|
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 "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 ""
|
159 |
+
|
160 |
+
msgid "Rate Ecwid at WordPress.org"
|
161 |
+
msgstr ""
|
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 ""
|
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 ""
|
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 ""
|
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 ""
|
204 |
+
|
205 |
+
msgid "Save changes"
|
206 |
+
msgstr ""
|
207 |
+
|
208 |
+
msgid "Ecwid Shopping Cart — Appearance settings"
|
209 |
+
msgstr ""
|
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 ""
|
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 ""
|
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 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 ""
|
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 href=\"http://help.ecwid.com/?source=wporg\">Ecwid support center</a>"
|
278 |
+
msgstr ""
|
279 |
+
|
280 |
+
msgid "Store ID"
|
281 |
+
msgstr ""
|
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 ""
|
291 |
+
|
292 |
+
msgid "Greetings!"
|
293 |
+
msgstr ""
|
294 |
+
|
295 |
+
msgid "Your Ecwid store is connected<br /> to your WordPress website"
|
296 |
+
msgstr ""
|
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 ""
|
306 |
+
|
307 |
+
msgid "There are few little steps left to start selling<br /> on your WordPress site"
|
308 |
+
msgstr ""
|
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 ""
|
315 |
+
|
316 |
+
msgid "Connect"
|
317 |
+
msgstr ""
|
318 |
+
|
319 |
+
msgid "Add your Ecwid store to your site <nobr>in two clicks</nobr>"
|
320 |
+
msgstr ""
|
321 |
+
|
322 |
+
msgid "Connect your Ecwid store to this site <nobr>in two clicks</nobr>"
|
323 |
+
msgstr ""
|
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 ""
|
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 ""
|
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 ""
|
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 ""
|
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 ""
|
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 ""
|
387 |
+
|
388 |
+
msgid "Responsive design"
|
389 |
+
msgstr ""
|
390 |
+
|
391 |
+
msgid "Your store looks perfect<br />on all devices"
|
392 |
+
msgstr ""
|
393 |
+
|
394 |
+
msgid "PCI-DSS Certified"
|
395 |
+
msgstr ""
|
396 |
+
|
397 |
+
msgid "Secure checkout with over 40<br />payment options"
|
398 |
+
msgstr ""
|
399 |
+
|
400 |
+
msgid "Global Reach"
|
401 |
+
msgstr ""
|
402 |
+
|
403 |
+
msgid "More than 700,000 merchants in 175 countries"
|
404 |
+
msgstr ""
|
405 |
+
|
406 |
+
msgid "Start selling <br>on your WordPress <nobr>site for free</nobr>"
|
407 |
+
msgstr ""
|
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 ""
|
417 |
+
|
418 |
+
msgid "Reconnect Ecwid store"
|
419 |
+
msgstr ""
|
420 |
+
|
421 |
+
msgid "New features available, reconnect to be in touch with our updates"
|
422 |
+
msgstr ""
|
423 |
+
|
424 |
+
msgid "Add store"
|
425 |
+
msgstr ""
|
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 ""
|
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 ""
|
|
|
|
|
|
|
|
lib/ecwid_catalog.php
CHANGED
@@ -107,11 +107,11 @@ class EcwidCatalog
|
|
107 |
}
|
108 |
if($product_options["type"] == "TEXTAREA")
|
109 |
{
|
110 |
-
$return .=$this->_l('<textarea name="' . EcwidPlatform::esc_attr($product_options["name"]) . '></textarea>');
|
111 |
}
|
112 |
if ($product_options["type"] == "SELECT")
|
113 |
{
|
114 |
-
$return .= $this->_l('<select name='. $product_options["name"].'>', 1);
|
115 |
foreach ($product_options["choices"] as $options_param)
|
116 |
{
|
117 |
$return .= $this->_l(
|
107 |
}
|
108 |
if($product_options["type"] == "TEXTAREA")
|
109 |
{
|
110 |
+
$return .=$this->_l('<textarea name="' . EcwidPlatform::esc_attr($product_options["name"]) . '"></textarea>');
|
111 |
}
|
112 |
if ($product_options["type"] == "SELECT")
|
113 |
{
|
114 |
+
$return .= $this->_l('<select name="'. $product_options["name"].'">', 1);
|
115 |
foreach ($product_options["choices"] as $options_param)
|
116 |
{
|
117 |
$return .= $this->_l(
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ 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.1
|
6 |
-
Stable tag: 3.0
|
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 |
|
@@ -107,6 +107,12 @@ 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.0 =
|
111 |
- **New sidebar widget: Recently Viewed Products.** A new Ecwid's sidebar widget is now available – your site can now show the products that the customer has recently visited. The links and images in the sidebar are updated automatically, so the customer can return to the product they previously opened and probably decide to buy it. This will increase visibility of your products for the customers and generate more sales. Enable the new widget under Appearance->Widgets menu in your admin backend.
|
112 |
- **New design of the plugin Dashboard.** The dashboard ("Ecwid") page in the plugin backend is now nicer and more useful.
|
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.1
|
6 |
+
Stable tag: 3.0.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 |
|
107 |
* [Ecwid site](http://www.ecwid.com/?source=wporg-plugin-site "Ecwid Site")
|
108 |
|
109 |
== Changelog ==
|
110 |
+
= 3.0.1 =
|
111 |
+
- Added Russian translation of the new plugin settings and registration pages
|
112 |
+
- Temporary fix for low quality images in the recently viewed products sidebar widget
|
113 |
+
- Fixed a few layout issues on the new registration page in the plugin backend
|
114 |
+
|
115 |
+
|
116 |
= 3.0 =
|
117 |
- **New sidebar widget: Recently Viewed Products.** A new Ecwid's sidebar widget is now available – your site can now show the products that the customer has recently visited. The links and images in the sidebar are updated automatically, so the customer can return to the product they previously opened and probably decide to buy it. This will increase visibility of your products for the customers and generate more sales. Enable the new widget under Appearance->Widgets menu in your admin backend.
|
118 |
- **New design of the plugin Dashboard.** The dashboard ("Ecwid") page in the plugin backend is now nicer and more useful.
|
templates/advanced-settings.php
CHANGED
@@ -79,7 +79,7 @@
|
|
79 |
<?php _e('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.', 'ecwid-shopping-cart'); ?>
|
80 |
</div>
|
81 |
<div class="note grayed-links">
|
82 |
-
<?php _e('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 > API > Single Sign-On
|
83 |
</div>
|
84 |
</div>
|
85 |
|
79 |
<?php _e('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.', 'ecwid-shopping-cart'); ?>
|
80 |
</div>
|
81 |
<div class="note grayed-links">
|
82 |
+
<?php _e('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.', 'ecwid-shopping-cart'); ?>
|
83 |
</div>
|
84 |
</div>
|
85 |
|
templates/landing.php
CHANGED
@@ -2,18 +2,18 @@
|
|
2 |
<div class="ecwid-thank">
|
3 |
<h1 class="on-register">
|
4 |
<span><?php _e('Plugin is installed successfully!', 'ecwid-shopping-cart'); ?></span>
|
5 |
-
<?php _e('There are just a few steps left to start selling<br />on your WordPress site', 'ecwid-shopping-cart'); ?>
|
6 |
</h1>
|
7 |
<h1 class="on-connect">
|
8 |
<span><?php _e('Plugin is installed successfully!', 'ecwid-shopping-cart'); ?></span>
|
9 |
-
<?php _e('There are few little steps left to start selling<br />on your WordPress site', 'ecwid-shopping-cart'); ?>
|
10 |
</h1>
|
11 |
<div class="ecwid-thank-steps">
|
12 |
<div class="ecwid-thank-step ecwid-thank-step-one<?php echo $register ?'' : ' active'; ?>">
|
13 |
<div class="ecwid-thank-step-image"><img src="<?php echo ECWID_PLUGIN_URL; ?>images/landing/ecwid.svg" class="none-active"><img src="<?php echo ECWID_PLUGIN_URL; ?>images/landing/ecwid-active.svg" class="active"></div>
|
14 |
<div class="ecwid-thank-step-description">
|
15 |
<h2><?php _e('Register', 'ecwid-shopping-cart'); ?></h2>
|
16 |
-
<p><?php _e('Create a free Ecwid account to manage your
|
17 |
</div>
|
18 |
</div>
|
19 |
<div class="ecwid-thank-step ecwid-thank-step-two">
|
@@ -22,8 +22,8 @@
|
|
22 |
<h2>
|
23 |
<?php _e('Connect', 'ecwid-shopping-cart'); ?>
|
24 |
</h2>
|
25 |
-
<p class="on-register"><?php _e('Add your Ecwid store to your site<
|
26 |
-
<p class="on-connect"><?php _e('Connect your Ecwid store to this site<
|
27 |
</div>
|
28 |
</div>
|
29 |
<div class="ecwid-thank-step ecwid-thank-step-three">
|
2 |
<div class="ecwid-thank">
|
3 |
<h1 class="on-register">
|
4 |
<span><?php _e('Plugin is installed successfully!', 'ecwid-shopping-cart'); ?></span>
|
5 |
+
<?php _e('There are just a few steps left to start selling<br /> on your WordPress site', 'ecwid-shopping-cart'); ?>
|
6 |
</h1>
|
7 |
<h1 class="on-connect">
|
8 |
<span><?php _e('Plugin is installed successfully!', 'ecwid-shopping-cart'); ?></span>
|
9 |
+
<?php _e('There are few little steps left to start selling<br /> on your WordPress site', 'ecwid-shopping-cart'); ?>
|
10 |
</h1>
|
11 |
<div class="ecwid-thank-steps">
|
12 |
<div class="ecwid-thank-step ecwid-thank-step-one<?php echo $register ?'' : ' active'; ?>">
|
13 |
<div class="ecwid-thank-step-image"><img src="<?php echo ECWID_PLUGIN_URL; ?>images/landing/ecwid.svg" class="none-active"><img src="<?php echo ECWID_PLUGIN_URL; ?>images/landing/ecwid-active.svg" class="active"></div>
|
14 |
<div class="ecwid-thank-step-description">
|
15 |
<h2><?php _e('Register', 'ecwid-shopping-cart'); ?></h2>
|
16 |
+
<p><?php _e('Create a free Ecwid account to manage your store and inventory.<br /> No credit card required', 'ecwid-shopping-cart'); ?></p>
|
17 |
</div>
|
18 |
</div>
|
19 |
<div class="ecwid-thank-step ecwid-thank-step-two">
|
22 |
<h2>
|
23 |
<?php _e('Connect', 'ecwid-shopping-cart'); ?>
|
24 |
</h2>
|
25 |
+
<p class="on-register"><?php _e('Add your Ecwid store to your site <nobr>in two clicks</nobr>', 'ecwid-shopping-cart'); ?></p>
|
26 |
+
<p class="on-connect"><?php _e('Connect your Ecwid store to this site <nobr>in two clicks</nobr>', 'ecwid-shopping-cart'); ?></p>
|
27 |
</div>
|
28 |
</div>
|
29 |
<div class="ecwid-thank-step ecwid-thank-step-three">
|
templates/store-popup.php
CHANGED
@@ -8,7 +8,7 @@
|
|
8 |
<div class="media-frame wp-core-ui hide-router">
|
9 |
<div class="media-frame-menu">
|
10 |
<div class="media-menu">
|
11 |
-
<a href="#" class="media-menu-item" data-content="add-store"><?php _e('Add
|
12 |
<a href="#" class="media-menu-item" data-content="store-settings"><?php _e('Store settings', 'ecwid-shopping-cart'); ?></a>
|
13 |
<a href="#" class="media-menu-item" data-content="appearance"><?php _e('Appearance', 'ecwid-shopping-cart'); ?></a>
|
14 |
</div>
|
8 |
<div class="media-frame wp-core-ui hide-router">
|
9 |
<div class="media-frame-menu">
|
10 |
<div class="media-menu">
|
11 |
+
<a href="#" class="media-menu-item" data-content="add-store"><?php _e('Add Store', 'ecwid-shopping-cart'); ?></a>
|
12 |
<a href="#" class="media-menu-item" data-content="store-settings"><?php _e('Store settings', 'ecwid-shopping-cart'); ?></a>
|
13 |
<a href="#" class="media-menu-item" data-content="appearance"><?php _e('Appearance', 'ecwid-shopping-cart'); ?></a>
|
14 |
</div>
|