Ecwid Ecommerce Shopping Cart - Version 2.6

Version Description

  • Ecwid's new SEO URLs compatibility. The new Ecwid clean URLs have been released a few days ago for all Ecwid users. Our WordPress plugin is already fully compatible with the new URLs. Your store pages will be better indexed by search engines and the search results will look more attractive as the links themselves will mention the product/category they lead to. Of course, Ecwid will handle all redirects, backward compatibility with the old URL scheme and avoid any duplicate issues. Enjoy the new SE-friendly URLs with no trouble.
  • Improved formatting of product snippets markup. In this update we tidied up in the product HTML representations generated for search engines and fixes a few issues in the products data markup. In particular, the price and availability tags have been re-formatted according to the Google recommendations to ensure better search engine results.
  • A few improvements and fixes for Twenty Fourteen and Responsive themes layout. Ecwid looks nice on the vast majority of WordPress themes. Additionally, we strive to make it look even better on the most popular themes. This update brings a few more minor layout fixes for the sites with "Responsive" and "Twenty Fourteen" themes installed.
Download this release

Release Info

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

Code changes from version 2.5 to 2.6

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: 2.5
9
  Author URI: http://www.ecwid.com?source=wporg
10
  */
11
 
@@ -46,6 +46,7 @@ if ( is_admin() ){
46
  add_action('admin_head', 'ecwid_ie8_fonts_inclusion');
47
  add_action('admin_head', 'ecwid_send_stats');
48
  add_action('save_post', 'ecwid_save_post');
 
49
  } else {
50
  add_shortcode('ecwid_script', 'ecwid_script_shortcode');
51
  add_shortcode('ecwid_minicart', 'ecwid_minicart_shortcode');
@@ -55,8 +56,8 @@ if ( is_admin() ){
55
  add_action('init', 'ecwid_backward_compatibility');
56
  add_action('send_headers', 'ecwid_503_on_store_closed');
57
  add_action('template_redirect', 'ecwid_seo_compatibility_template_redirect');
58
- add_action('template_redirect', 'ecwid_apply_theme');
59
  add_action('template_redirect', 'ecwid_404_on_broken_escaped_fragment');
 
60
  add_action('wp_enqueue_scripts', 'ecwid_add_frontend_styles');
61
  add_action('wp', 'ecwid_seo_ultimate_compatibility', 0);
62
  add_action('wp_title', 'ecwid_seo_compatibility_init', 0);
@@ -496,7 +497,7 @@ function ecwid_meta_description() {
496
  $description = strip_tags($description);
497
  $description = html_entity_decode($description, ENT_NOQUOTES, 'UTF-8');
498
 
499
- $description = preg_replace('![\p{Z}\s]{2,}!u', ' ', $description);
500
  $description = trim($description, " \t\xA0\n\r"); // Space, tab, non-breaking space, newline, carriage return
501
  $description = mb_substr($description, 0, 160);
502
  $description = htmlspecialchars($description, ENT_COMPAT, 'UTF-8');
@@ -619,10 +620,10 @@ function ecwid_content_started($content)
619
 
620
  function ecwid_wrap_shortcode_content($content, $name)
621
  {
622
- return "<!-- Ecwid shopping cart plugin v 2.5 -->"
623
  . ecwid_get_scriptjs_code()
624
  . "<div class=\"ecwid-shopping-cart-$name\">$content</div>"
625
- . "<!-- END Ecwid Shopping Cart v 2.5 -->";
626
  }
627
 
628
  function ecwid_get_scriptjs_code($force_lang = null) {
@@ -953,11 +954,10 @@ EOT;
953
  $id = wp_insert_post( $my_post );
954
  update_option('ecwid_store_page_id', $id);
955
 
956
- do_action('ecwid_store_page_created', $id);
957
-
958
- if (ecwid_get_theme_name() == 'Responsive') {
959
- update_post_meta($id, '_wp_page_template', 'full-width-page.php');
960
- }
961
  }
962
 
963
  Ecwid_Message_Manager::enable_message('on_activate');
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: 2.6
9
  Author URI: http://www.ecwid.com?source=wporg
10
  */
11
 
46
  add_action('admin_head', 'ecwid_ie8_fonts_inclusion');
47
  add_action('admin_head', 'ecwid_send_stats');
48
  add_action('save_post', 'ecwid_save_post');
49
+ add_action('init', 'ecwid_apply_theme');
50
  } else {
51
  add_shortcode('ecwid_script', 'ecwid_script_shortcode');
52
  add_shortcode('ecwid_minicart', 'ecwid_minicart_shortcode');
56
  add_action('init', 'ecwid_backward_compatibility');
57
  add_action('send_headers', 'ecwid_503_on_store_closed');
58
  add_action('template_redirect', 'ecwid_seo_compatibility_template_redirect');
 
59
  add_action('template_redirect', 'ecwid_404_on_broken_escaped_fragment');
60
+ add_action('template_redirect', 'ecwid_apply_theme');
61
  add_action('wp_enqueue_scripts', 'ecwid_add_frontend_styles');
62
  add_action('wp', 'ecwid_seo_ultimate_compatibility', 0);
63
  add_action('wp_title', 'ecwid_seo_compatibility_init', 0);
497
  $description = strip_tags($description);
498
  $description = html_entity_decode($description, ENT_NOQUOTES, 'UTF-8');
499
 
500
+ $description = preg_replace('![\p{Z}\s]{1,}!u', ' ', $description);
501
  $description = trim($description, " \t\xA0\n\r"); // Space, tab, non-breaking space, newline, carriage return
502
  $description = mb_substr($description, 0, 160);
503
  $description = htmlspecialchars($description, ENT_COMPAT, 'UTF-8');
620
 
621
  function ecwid_wrap_shortcode_content($content, $name)
622
  {
623
+ return "<!-- Ecwid shopping cart plugin v 2.6 -->"
624
  . ecwid_get_scriptjs_code()
625
  . "<div class=\"ecwid-shopping-cart-$name\">$content</div>"
626
+ . "<!-- END Ecwid Shopping Cart v 2.6 -->";
627
  }
628
 
629
  function ecwid_get_scriptjs_code($force_lang = null) {
954
  $id = wp_insert_post( $my_post );
955
  update_option('ecwid_store_page_id', $id);
956
 
957
+ if (ecwid_get_theme_name() == 'Responsive') {
958
+ update_post_meta($id, '_wp_page_template', 'full-width-page.php');
959
+ update_option("ecwid_show_search_box", 'Y');
960
+ }
 
961
  }
962
 
963
  Ecwid_Message_Manager::enable_message('on_activate');
languages/ecwid-shopping-cart-de_DE.po CHANGED
@@ -1,174 +1,261 @@
 
1
  msgid "Ecwid Shopping Cart"
2
  msgstr ""
 
3
  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."
4
  msgstr ""
 
5
  msgid "Ecwid Team"
6
  msgstr ""
 
7
  msgid "Get help"
8
  msgstr "Hilfe"
 
9
  msgid "Go to Ecwid site"
10
  msgstr "zur Ecwid-Website"
 
11
  msgid "Visit storefront"
12
  msgstr "zum Shop"
 
13
  msgid "Manage my store"
14
  msgstr "Shop verwalten"
 
15
  msgid "Manage plugin settings"
16
  msgstr "Plugin-Einstellungen verwalten"
 
17
  msgid "→ Sell on Facebook"
18
  msgstr "→ auf Facebook verkaufen"
 
19
  msgid "Online store powered by <a %s>Ecwid</a>"
20
  msgstr ""
 
21
  msgid "Store"
22
  msgstr "Shop"
 
23
  msgid "<strong>Ecwid shopping cart is almost ready</strong>. Please visit <a target=\"_blank\" href=\"%s\">the created page</a> to see your store with demo products. In order to finish the installation, please go to the <a href=\"admin.php?page=ecwid\"><strong>Ecwid settings</strong></a> and configure the plugin."
24
  msgstr "<strong>Ihr Ecwid-Onlineshop steht gleich bereit</strong>. Bitte rufen Sie die <a target=\"_blank\" href=\"%s\">erstellte Seite</a> auf, um Ihren Shop mit Demoartikeln anzuzeigen. Um die Installation abzuschließen, gehen Sie bitte zu den <a href=\"admin.php?page=ecwid\"><strong>Ecwid-Einstellungen</strong></a> und konfigurieren Sie das Plugin."
 
25
  msgid "Do you like your Ecwid online store? We'd appreciate it if you <a %s>add your review and vote</a> for the plugin on Wordpress site. (<a id=\"hide-vote-message\">Close</a> and do not show this message anymore)"
26
  msgstr ""
 
27
  msgid "Ecwid shopping cart settings"
28
  msgstr ""
 
29
  msgid "Ecwid Store"
30
  msgstr "Ecwid-Onlineshop"
 
31
  msgid "General settings"
32
  msgstr "Allgemeine Einstellungen"
 
33
  msgid "General"
34
  msgstr "Allgemein"
 
35
  msgid "Appearance settings"
36
  msgstr "Anzeigeneinstellungen"
 
37
  msgid "Appearance"
38
  msgstr "Anzeige"
 
39
  msgid "Advanced settings"
40
  msgstr "Erweiterte Einstellungen"
 
41
  msgid "Advanced"
42
  msgstr "Erweitert"
 
43
  msgid "Setup"
44
  msgstr ""
 
45
  msgid "Your store's minicart"
46
  msgstr "Miniwarenkorb Ihres Shops"
 
47
  msgid "Ecwid Shopping Bag (Normal)"
48
  msgstr "Ecwid-Warenkorb (normal)"
 
49
  msgid "Ecwid Shopping Bag (Mini view)"
50
  msgstr "Ecwid-Warenkorb (Miniansicht)"
 
51
  msgid "Your store's search box"
52
  msgstr "Suchfeld Ihres Shops"
 
53
  msgid "Ecwid Search Box"
54
  msgstr "Ecwid-Suchfeld"
 
55
  msgid "Vertical menu of categories"
56
  msgstr "Vertikale Kategoriennavigation"
 
57
  msgid "Ecwid Vertical Categories"
58
  msgstr "Ecwid vertikale Kategorien"
 
59
  msgid "Price"
60
  msgstr ""
 
61
  msgid "Ecwid Shopping Cart — Advanced settings"
62
  msgstr "Ecwid-Onlineshop — Erweiterte Einstellungen"
 
63
  msgid "Category shown by default"
64
  msgstr "standardmäßig angezeigte Kategorie"
 
65
  msgid "Store root category"
66
  msgstr "Shop-Grundkategorie"
 
67
  msgid "Default category ID"
68
  msgstr "Standardkategorien-ID"
 
69
  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."
70
  msgstr "Standardmäßig zeigt der Shop eine Liste von Grundkategorien an. Sie können diese Einstellung überschreiben und eine andere Kategorie anzeigen, wenn Kunden Ihren Shop zum ersten Mal öffnen. Dies ist sinnvoll, wenn Sie nur eine Kategorie haben oder allen neuen Besuchern einen bestimmten Satz von Artikeln (z.B. \"Ausgewählte Produkte\") anzeigen möchten."
 
71
  msgid "In order to set this option, <a %s>find an ID of the necessary category</a> and save it here."
72
  msgstr "Zur Einstellung dieser Option <a %s>suchen Sie die ID der nötigen Kategorie</a> und speichern Sie diese hier."
 
73
  msgid "Single Sign-On Secret Key"
74
  msgstr "Single-Sign-on-Sicherheitsschlüssel"
 
75
  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."
76
  msgstr "Diese optionale Funktion bietet Single-Sign-On: Wenn Kunden auf Ihrer Website eingeloggt sind, sind sie automatisch auch in Ihrem Ecwid-Onlineshop eingeloggt, selbst wenn sie bisher noch kein Konto für den Shop hatten. Die Aktivierung dieser Funktion ist sinnvoll, wenn Ihre Besucher eigentlich Konten auf Ihrer WordPress-Website erstellen."
 
77
  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 API\" page. This feature is available for <a href=\"http://www.ecwid.com/compare-plans.html\" target=\"_blank\">paid users</a> only."
78
  msgstr "Zur Aktivierung dieser Funktion müssen Sie einen Sicherheitsschlüssel senden. Diesen Schlüssel finden Sie in Ihrem Ecwid-Steuermenü unter \"Systemeinstellungen > API > Single-Sign-on-API\". Diese Funktion ist nur bei <a href=\"http://www.ecwid.com/compare-plans.html\" target=\"_blank\">kostenpflichtigen Paketen</a> verfügbar."
 
79
  msgid "Save changes"
80
  msgstr "Änderungen speichern"
 
81
  msgid "Ecwid Shopping Cart — Appearance settings"
82
  msgstr "Ecwid-Onlineshop — Anzeigeneinstellungen"
 
83
  msgid "Display search box above products"
84
  msgstr "Suchfeld oberhalb der Artikel anzeigen"
 
85
  msgid "Or you can add search box to your website's toolbar using <a href=\"%s\">WordPress native widgets</a>"
86
  msgstr "Oder fügen Sie der Toolbar Ihrer Website mit den <a href=\"%s\">vorhandenen WordPress-Widgets</a> ein Suchfeld hinzu"
 
87
  msgid "Display horizontal categories above products"
88
  msgstr "horizontale Kategorien oberhalb der Artikel anzeigen"
 
89
  msgid "Or you can add vertical categories to your website's toolbar using <a href=\"%s\">WordPress native widgets</a>"
90
  msgstr "Oder fügen Sie der Toolbar Ihrer Website mit den <a href=\"%s\">vorhandenen WordPress-Widgets</a> vertikale Kategorien hinzu"
 
91
  msgid "Enable minicart attached to horizontal categories"
92
  msgstr "Miniwarenkorb Ihres Shops an horizontale Kategorien heften"
 
93
  msgid "You should disable this option, if you added minicart to your website's&nbsp;sidebar"
94
  msgstr "Diese Option sollten Sie deaktivieren, wenn Sie den Miniwarenkorb der Seitenleiste Ihrer Website hinzugefügt haben"
 
95
  msgid "Number of categories per row"
96
  msgstr "Anzahl Kategorien pro Zeile"
 
97
  msgid "Number of products per page"
98
  msgstr "Anzahl Kategorien pro Seite"
 
99
  msgid "Grid view"
100
  msgstr "Gitteransicht"
 
101
  msgid "List view"
102
  msgstr "Listenansicht"
 
103
  msgid "Table view"
104
  msgstr "Tabellenansicht"
 
105
  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."
106
  msgstr "Hier können Sie einstellen, wie viele Artikel pro Seite angezeigt werden sollen. Diese Optionen legen Maximalwerte fest. Falls nicht ausreichend Platz ist, um alle Artikelspalten anzuzeigen, passt Ecwid zur Berücksichtigung aller Artikel die Anzahl der Spalten an."
 
107
  msgid "Default view mode on product pages"
108
  msgstr "Standardanzeigemodus auf Artikelseiten"
 
109
  msgid "Grid"
110
  msgstr "Gitter"
 
111
  msgid "List"
112
  msgstr "Liste"
 
113
  msgid "Table"
114
  msgstr "Tabelle"
 
115
  msgid "Default view mode on search results"
116
  msgstr "Standardanzeigemodus für Suchergebnisse"
 
117
  msgid "Store powered by Ecwid"
118
  msgstr ""
 
119
  msgid "Ecwid Shopping Cart — General settings"
120
  msgstr "Ecwid-Onlineshop — Allgemeine Einstellungen"
 
121
  msgid "Thank you for choosing Ecwid to build your online store"
122
  msgstr "Vielen Dank, dass Sie Ecwid zur Erstellung Ihres Onlineshops gewählt haben"
 
123
  msgid "The first step towards opening your online business: <br />Let’s get started and add a store to your WordPress website in <strong>3</strong> simple steps."
124
  msgstr "Der erste Schritt auf dem Weg zur Eröffnung Ihres Onlineshops: <br />Legen Sie jetzt los und stellen Sie in <strong>3</strong> einfachen Schritten einen Onlineshop auf Ihre WordPress-Website."
 
125
  msgid "Register at Ecwid"
126
  msgstr "Bei Ecwid anmelden"
 
127
  msgid "Create a new Ecwid account which you will use to manage your store and inventory. The registration is free."
128
  msgstr "Erstellen Sie ein neues Ecwid-Konto, mit dem Sie Ihren Shop und Ihren Warenbestand verwalten. Die Anmeldung ist kostenlos."
 
129
  msgid "Create new Ecwid account"
130
  msgstr "Neues Ecwid-Konto erstellen"
 
131
  msgid "I already have Ecwid account, sign in"
132
  msgstr "Ich habe bereits ein Ecwid-Konto, bitte einloggen"
 
133
  msgid "You will be able to sign up through your existing Google, Facebook or PayPal profiles as well."
134
  msgstr "Sie können sich auch über Ihre vorhandenen Google-, Facebook- oder PayPal-Konten anmelden."
 
135
  msgid "Find your Store ID"
136
  msgstr "Shop-ID suchen"
 
137
  msgid "Store ID is a unique identifier of any Ecwid store, it consists of several digits. You can find it on the \"Dashboard\" page of Ecwid control panel. Also the Store ID will be sent in the Welcome email after the registration."
138
  msgstr "Die Shop-ID ist ein eindeutiges Kennzeichen jedes Ecwid-Onlineshops und besteht aus mehreren Ziffern. Sie finden sie im Hauptmenü des Ecwid-Steuermenüs. Die Shop-ID wird außerdem mit der Begrüßungs-E-Mail nach der Anmeldung versendet."
 
139
  msgid "Enter your Store ID"
140
  msgstr "Shop-ID eingeben"
 
141
  msgid "Enter your Store ID here:"
142
  msgstr "Geben Sie hier Ihre Shop-ID ein:"
 
143
  msgid "Store ID"
144
  msgstr "Shop-ID"
 
145
  msgid "Save and connect your Ecwid store to the site"
146
  msgstr "Speichern Sie und verbinden Sie Ihren Ecwid-Onlineshop mit Ihrer Website"
 
147
  msgid "Questions? Visit <a href=\"http://help.ecwid.com/?source=wporg\">Ecwid support center</a>"
148
  msgstr "Fragen? Wechseln Sie zum <a href=\"http://help.ecwid.com/?source=wporg\">Ecwid-Supportcenter</a>"
 
149
  msgid "Congratulations!"
150
  msgstr "Herzlichen Glückwunsch!"
 
151
  msgid "Your Ecwid store is now connected to your WordPress website"
152
  msgstr "Ihr Ecwid-Onlineshop ist jetzt mit Ihrer WordPress-Website verbunden"
 
153
  msgid "Greetings!"
154
  msgstr "Hallo!"
 
155
  msgid "Your Ecwid store is connected to your WordPress website"
156
  msgstr "Ihr Ecwid-Onlineshop ist mit Ihrer WordPress-Website verbunden"
 
157
  msgid "Control panel"
158
  msgstr "Steuermenü"
 
159
  msgid "Account status"
160
  msgstr "Kontostatus"
 
161
  msgid "Paid"
162
  msgstr "Bezahlpaket"
 
163
  msgid "Free"
164
  msgstr "Kostenloses Paket"
 
165
  msgid "Thank you for supporting Ecwid!"
166
  msgstr "Vielen Dank, dass Sie Ecwid nutzen!"
 
167
  msgid "Upgrade to get access to cool premium features."
168
  msgstr "Holen Sie sich jetzt tolle Premiumfunktionen mit einem Upgrade."
 
169
  msgid "Billing and plans"
170
  msgstr ""
 
171
  msgid "Upgrade"
172
  msgstr ""
 
173
  msgid "If you want to connect another Ecwid store, you can <a %s>disconnect the current one and change Store ID</a>."
174
  msgstr ""
1
+
2
  msgid "Ecwid Shopping Cart"
3
  msgstr ""
4
+
5
  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."
6
  msgstr ""
7
+
8
  msgid "Ecwid Team"
9
  msgstr ""
10
+
11
  msgid "Get help"
12
  msgstr "Hilfe"
13
+
14
  msgid "Go to Ecwid site"
15
  msgstr "zur Ecwid-Website"
16
+
17
  msgid "Visit storefront"
18
  msgstr "zum Shop"
19
+
20
  msgid "Manage my store"
21
  msgstr "Shop verwalten"
22
+
23
  msgid "Manage plugin settings"
24
  msgstr "Plugin-Einstellungen verwalten"
25
+
26
  msgid "→ Sell on Facebook"
27
  msgstr "→ auf Facebook verkaufen"
28
+
29
  msgid "Online store powered by <a %s>Ecwid</a>"
30
  msgstr ""
31
+
32
  msgid "Store"
33
  msgstr "Shop"
34
+
35
  msgid "<strong>Ecwid shopping cart is almost ready</strong>. Please visit <a target=\"_blank\" href=\"%s\">the created page</a> to see your store with demo products. In order to finish the installation, please go to the <a href=\"admin.php?page=ecwid\"><strong>Ecwid settings</strong></a> and configure the plugin."
36
  msgstr "<strong>Ihr Ecwid-Onlineshop steht gleich bereit</strong>. Bitte rufen Sie die <a target=\"_blank\" href=\"%s\">erstellte Seite</a> auf, um Ihren Shop mit Demoartikeln anzuzeigen. Um die Installation abzuschließen, gehen Sie bitte zu den <a href=\"admin.php?page=ecwid\"><strong>Ecwid-Einstellungen</strong></a> und konfigurieren Sie das Plugin."
37
+
38
  msgid "Do you like your Ecwid online store? We'd appreciate it if you <a %s>add your review and vote</a> for the plugin on Wordpress site. (<a id=\"hide-vote-message\">Close</a> and do not show this message anymore)"
39
  msgstr ""
40
+
41
  msgid "Ecwid shopping cart settings"
42
  msgstr ""
43
+
44
  msgid "Ecwid Store"
45
  msgstr "Ecwid-Onlineshop"
46
+
47
  msgid "General settings"
48
  msgstr "Allgemeine Einstellungen"
49
+
50
  msgid "General"
51
  msgstr "Allgemein"
52
+
53
  msgid "Appearance settings"
54
  msgstr "Anzeigeneinstellungen"
55
+
56
  msgid "Appearance"
57
  msgstr "Anzeige"
58
+
59
  msgid "Advanced settings"
60
  msgstr "Erweiterte Einstellungen"
61
+
62
  msgid "Advanced"
63
  msgstr "Erweitert"
64
+
65
  msgid "Setup"
66
  msgstr ""
67
+
68
  msgid "Your store's minicart"
69
  msgstr "Miniwarenkorb Ihres Shops"
70
+
71
  msgid "Ecwid Shopping Bag (Normal)"
72
  msgstr "Ecwid-Warenkorb (normal)"
73
+
74
  msgid "Ecwid Shopping Bag (Mini view)"
75
  msgstr "Ecwid-Warenkorb (Miniansicht)"
76
+
77
  msgid "Your store's search box"
78
  msgstr "Suchfeld Ihres Shops"
79
+
80
  msgid "Ecwid Search Box"
81
  msgstr "Ecwid-Suchfeld"
82
+
83
  msgid "Vertical menu of categories"
84
  msgstr "Vertikale Kategoriennavigation"
85
+
86
  msgid "Ecwid Vertical Categories"
87
  msgstr "Ecwid vertikale Kategorien"
88
+
89
  msgid "Price"
90
  msgstr ""
91
+
92
  msgid "Ecwid Shopping Cart — Advanced settings"
93
  msgstr "Ecwid-Onlineshop — Erweiterte Einstellungen"
94
+
95
  msgid "Category shown by default"
96
  msgstr "standardmäßig angezeigte Kategorie"
97
+
98
  msgid "Store root category"
99
  msgstr "Shop-Grundkategorie"
100
+
101
  msgid "Default category ID"
102
  msgstr "Standardkategorien-ID"
103
+
104
  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."
105
  msgstr "Standardmäßig zeigt der Shop eine Liste von Grundkategorien an. Sie können diese Einstellung überschreiben und eine andere Kategorie anzeigen, wenn Kunden Ihren Shop zum ersten Mal öffnen. Dies ist sinnvoll, wenn Sie nur eine Kategorie haben oder allen neuen Besuchern einen bestimmten Satz von Artikeln (z.B. \"Ausgewählte Produkte\") anzeigen möchten."
106
+
107
  msgid "In order to set this option, <a %s>find an ID of the necessary category</a> and save it here."
108
  msgstr "Zur Einstellung dieser Option <a %s>suchen Sie die ID der nötigen Kategorie</a> und speichern Sie diese hier."
109
+
110
  msgid "Single Sign-On Secret Key"
111
  msgstr "Single-Sign-on-Sicherheitsschlüssel"
112
+
113
  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."
114
  msgstr "Diese optionale Funktion bietet Single-Sign-On: Wenn Kunden auf Ihrer Website eingeloggt sind, sind sie automatisch auch in Ihrem Ecwid-Onlineshop eingeloggt, selbst wenn sie bisher noch kein Konto für den Shop hatten. Die Aktivierung dieser Funktion ist sinnvoll, wenn Ihre Besucher eigentlich Konten auf Ihrer WordPress-Website erstellen."
115
+
116
  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 API\" page. This feature is available for <a href=\"http://www.ecwid.com/compare-plans.html\" target=\"_blank\">paid users</a> only."
117
  msgstr "Zur Aktivierung dieser Funktion müssen Sie einen Sicherheitsschlüssel senden. Diesen Schlüssel finden Sie in Ihrem Ecwid-Steuermenü unter \"Systemeinstellungen > API > Single-Sign-on-API\". Diese Funktion ist nur bei <a href=\"http://www.ecwid.com/compare-plans.html\" target=\"_blank\">kostenpflichtigen Paketen</a> verfügbar."
118
+
119
  msgid "Save changes"
120
  msgstr "Änderungen speichern"
121
+
122
  msgid "Ecwid Shopping Cart — Appearance settings"
123
  msgstr "Ecwid-Onlineshop — Anzeigeneinstellungen"
124
+
125
  msgid "Display search box above products"
126
  msgstr "Suchfeld oberhalb der Artikel anzeigen"
127
+
128
  msgid "Or you can add search box to your website's toolbar using <a href=\"%s\">WordPress native widgets</a>"
129
  msgstr "Oder fügen Sie der Toolbar Ihrer Website mit den <a href=\"%s\">vorhandenen WordPress-Widgets</a> ein Suchfeld hinzu"
130
+
131
  msgid "Display horizontal categories above products"
132
  msgstr "horizontale Kategorien oberhalb der Artikel anzeigen"
133
+
134
  msgid "Or you can add vertical categories to your website's toolbar using <a href=\"%s\">WordPress native widgets</a>"
135
  msgstr "Oder fügen Sie der Toolbar Ihrer Website mit den <a href=\"%s\">vorhandenen WordPress-Widgets</a> vertikale Kategorien hinzu"
136
+
137
  msgid "Enable minicart attached to horizontal categories"
138
  msgstr "Miniwarenkorb Ihres Shops an horizontale Kategorien heften"
139
+
140
  msgid "You should disable this option, if you added minicart to your website's&nbsp;sidebar"
141
  msgstr "Diese Option sollten Sie deaktivieren, wenn Sie den Miniwarenkorb der Seitenleiste Ihrer Website hinzugefügt haben"
142
+
143
  msgid "Number of categories per row"
144
  msgstr "Anzahl Kategorien pro Zeile"
145
+
146
  msgid "Number of products per page"
147
  msgstr "Anzahl Kategorien pro Seite"
148
+
149
  msgid "Grid view"
150
  msgstr "Gitteransicht"
151
+
152
  msgid "List view"
153
  msgstr "Listenansicht"
154
+
155
  msgid "Table view"
156
  msgstr "Tabellenansicht"
157
+
158
  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."
159
  msgstr "Hier können Sie einstellen, wie viele Artikel pro Seite angezeigt werden sollen. Diese Optionen legen Maximalwerte fest. Falls nicht ausreichend Platz ist, um alle Artikelspalten anzuzeigen, passt Ecwid zur Berücksichtigung aller Artikel die Anzahl der Spalten an."
160
+
161
  msgid "Default view mode on product pages"
162
  msgstr "Standardanzeigemodus auf Artikelseiten"
163
+
164
  msgid "Grid"
165
  msgstr "Gitter"
166
+
167
  msgid "List"
168
  msgstr "Liste"
169
+
170
  msgid "Table"
171
  msgstr "Tabelle"
172
+
173
  msgid "Default view mode on search results"
174
  msgstr "Standardanzeigemodus für Suchergebnisse"
175
+
176
  msgid "Store powered by Ecwid"
177
  msgstr ""
178
+
179
  msgid "Ecwid Shopping Cart — General settings"
180
  msgstr "Ecwid-Onlineshop — Allgemeine Einstellungen"
181
+
182
  msgid "Thank you for choosing Ecwid to build your online store"
183
  msgstr "Vielen Dank, dass Sie Ecwid zur Erstellung Ihres Onlineshops gewählt haben"
184
+
185
  msgid "The first step towards opening your online business: <br />Let’s get started and add a store to your WordPress website in <strong>3</strong> simple steps."
186
  msgstr "Der erste Schritt auf dem Weg zur Eröffnung Ihres Onlineshops: <br />Legen Sie jetzt los und stellen Sie in <strong>3</strong> einfachen Schritten einen Onlineshop auf Ihre WordPress-Website."
187
+
188
  msgid "Register at Ecwid"
189
  msgstr "Bei Ecwid anmelden"
190
+
191
  msgid "Create a new Ecwid account which you will use to manage your store and inventory. The registration is free."
192
  msgstr "Erstellen Sie ein neues Ecwid-Konto, mit dem Sie Ihren Shop und Ihren Warenbestand verwalten. Die Anmeldung ist kostenlos."
193
+
194
  msgid "Create new Ecwid account"
195
  msgstr "Neues Ecwid-Konto erstellen"
196
+
197
  msgid "I already have Ecwid account, sign in"
198
  msgstr "Ich habe bereits ein Ecwid-Konto, bitte einloggen"
199
+
200
  msgid "You will be able to sign up through your existing Google, Facebook or PayPal profiles as well."
201
  msgstr "Sie können sich auch über Ihre vorhandenen Google-, Facebook- oder PayPal-Konten anmelden."
202
+
203
  msgid "Find your Store ID"
204
  msgstr "Shop-ID suchen"
205
+
206
  msgid "Store ID is a unique identifier of any Ecwid store, it consists of several digits. You can find it on the \"Dashboard\" page of Ecwid control panel. Also the Store ID will be sent in the Welcome email after the registration."
207
  msgstr "Die Shop-ID ist ein eindeutiges Kennzeichen jedes Ecwid-Onlineshops und besteht aus mehreren Ziffern. Sie finden sie im Hauptmenü des Ecwid-Steuermenüs. Die Shop-ID wird außerdem mit der Begrüßungs-E-Mail nach der Anmeldung versendet."
208
+
209
  msgid "Enter your Store ID"
210
  msgstr "Shop-ID eingeben"
211
+
212
  msgid "Enter your Store ID here:"
213
  msgstr "Geben Sie hier Ihre Shop-ID ein:"
214
+
215
  msgid "Store ID"
216
  msgstr "Shop-ID"
217
+
218
  msgid "Save and connect your Ecwid store to the site"
219
  msgstr "Speichern Sie und verbinden Sie Ihren Ecwid-Onlineshop mit Ihrer Website"
220
+
221
  msgid "Questions? Visit <a href=\"http://help.ecwid.com/?source=wporg\">Ecwid support center</a>"
222
  msgstr "Fragen? Wechseln Sie zum <a href=\"http://help.ecwid.com/?source=wporg\">Ecwid-Supportcenter</a>"
223
+
224
  msgid "Congratulations!"
225
  msgstr "Herzlichen Glückwunsch!"
226
+
227
  msgid "Your Ecwid store is now connected to your WordPress website"
228
  msgstr "Ihr Ecwid-Onlineshop ist jetzt mit Ihrer WordPress-Website verbunden"
229
+
230
  msgid "Greetings!"
231
  msgstr "Hallo!"
232
+
233
  msgid "Your Ecwid store is connected to your WordPress website"
234
  msgstr "Ihr Ecwid-Onlineshop ist mit Ihrer WordPress-Website verbunden"
235
+
236
  msgid "Control panel"
237
  msgstr "Steuermenü"
238
+
239
  msgid "Account status"
240
  msgstr "Kontostatus"
241
+
242
  msgid "Paid"
243
  msgstr "Bezahlpaket"
244
+
245
  msgid "Free"
246
  msgstr "Kostenloses Paket"
247
+
248
  msgid "Thank you for supporting Ecwid!"
249
  msgstr "Vielen Dank, dass Sie Ecwid nutzen!"
250
+
251
  msgid "Upgrade to get access to cool premium features."
252
  msgstr "Holen Sie sich jetzt tolle Premiumfunktionen mit einem Upgrade."
253
+
254
  msgid "Billing and plans"
255
  msgstr ""
256
+
257
  msgid "Upgrade"
258
  msgstr ""
259
+
260
  msgid "If you want to connect another Ecwid store, you can <a %s>disconnect the current one and change Store ID</a>."
261
  msgstr ""
languages/ecwid-shopping-cart-es_ES.po CHANGED
@@ -1,174 +1,261 @@
 
1
  msgid "Ecwid Shopping Cart"
2
  msgstr ""
 
3
  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."
4
  msgstr ""
 
5
  msgid "Ecwid Team"
6
  msgstr ""
 
7
  msgid "Get help"
8
  msgstr "Obtener ayuda"
 
9
  msgid "Go to Ecwid site"
10
  msgstr "Ir al sitio Ecwid"
 
11
  msgid "Visit storefront"
12
  msgstr "Visitar escaparate"
 
13
  msgid "Manage my store"
14
  msgstr "Gestionar mi tienda"
 
15
  msgid "Manage plugin settings"
16
  msgstr "Administrar la configuración de conexión"
 
17
  msgid "→ Sell on Facebook"
18
  msgstr "→ Vender en Facebook"
 
19
  msgid "Online store powered by <a %s>Ecwid</a>"
20
  msgstr ""
 
21
  msgid "Store"
22
  msgstr "Tienda"
 
23
  msgid "<strong>Ecwid shopping cart is almost ready</strong>. Please visit <a target=\"_blank\" href=\"%s\">the created page</a> to see your store with demo products. In order to finish the installation, please go to the <a href=\"admin.php?page=ecwid\"><strong>Ecwid settings</strong></a> and configure the plugin."
24
  msgstr "<strong>Ecwid la tarjeta de compras Ecwid está casi lista </strong>. Por favor visite <a target=\"_blank\" href=\"%s\">la página creada </a> para ver su tienda con productos de demostración. Para finalizar la instalación, por favor vaya a <a href=\"admin.php?page=ecwid\"><strong>ajustes Ecwid</strong></a> y configure la conexión."
 
25
  msgid "Do you like your Ecwid online store? We'd appreciate it if you <a %s>add your review and vote</a> for the plugin on Wordpress site. (<a id=\"hide-vote-message\">Close</a> and do not show this message anymore)"
26
  msgstr ""
 
27
  msgid "Ecwid shopping cart settings"
28
  msgstr ""
 
29
  msgid "Ecwid Store"
30
  msgstr "Tienda Ecwid"
 
31
  msgid "General settings"
32
  msgstr "Configuración general"
 
33
  msgid "General"
34
  msgstr "General"
 
35
  msgid "Appearance settings"
36
  msgstr "Opciones de aspecto"
 
37
  msgid "Appearance"
38
  msgstr "Aspecto"
 
39
  msgid "Advanced settings"
40
  msgstr "Opciones avanzadas"
 
41
  msgid "Advanced"
42
  msgstr "Avanzadas"
 
43
  msgid "Setup"
44
  msgstr ""
 
45
  msgid "Your store's minicart"
46
  msgstr "Mini carro de su tienda"
 
47
  msgid "Ecwid Shopping Bag (Normal)"
48
  msgstr "Bolsa de compras Ecwid (Normal)"
 
49
  msgid "Ecwid Shopping Bag (Mini view)"
50
  msgstr "Bolsa de compras Ecwid (Mini vista)"
 
51
  msgid "Your store's search box"
52
  msgstr "Caja de búsqueda de tu tienda"
 
53
  msgid "Ecwid Search Box"
54
  msgstr "Caja de búsqueda Ecwid"
 
55
  msgid "Vertical menu of categories"
56
  msgstr "Menú vertical de categorías"
 
57
  msgid "Ecwid Vertical Categories"
58
  msgstr "Categorías verticales Ecwid"
 
59
  msgid "Price"
60
  msgstr ""
 
61
  msgid "Ecwid Shopping Cart — Advanced settings"
62
  msgstr "Carro de compras Ecwid — Opciones avanzadas"
 
63
  msgid "Category shown by default"
64
  msgstr "Categoría mostrada por defecto"
 
65
  msgid "Store root category"
66
  msgstr "Categoría raíz de la tienda"
 
67
  msgid "Default category ID"
68
  msgstr "Identificación de categoría estandar"
 
69
  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."
70
  msgstr "Por defecto, la entrada principal muestra una lista de categorías de raíz. Puede anular este comportamiento y mostrar una categoría diferente cuando los clientes abren su tienda por primera vez. Es útil si usted tiene una sola categoría o quiere mostrar un conjunto específico de elementos (por ejemplo, \"productos destacados\") para todos los nuevos visitantes."
 
71
  msgid "In order to set this option, <a %s>find an ID of the necessary category</a> and save it here."
72
  msgstr "Para fijar esta opción, <a %s> encuentre una identificación de la categoría necesaria </a> y guárdela aquí."
 
73
  msgid "Single Sign-On Secret Key"
74
  msgstr "Clave única secreta de registro"
 
75
  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."
76
  msgstr "Esta característica opcional le permite activar la inscripción única: cuando los clientes han iniciado sesión en su página, también inician sesión automáticamente en su tienda Ecwid, incluso si antes no tenían una cuenta en la tienda. Tiene sentido activar esta característica, si sus visitantes en efecto crean cuentas en su página WordPress."
 
77
  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 API\" page. This feature is available for <a href=\"http://www.ecwid.com/compare-plans.html\" target=\"_blank\">paid users</a> only."
78
  msgstr "Para activar esta característica usted debería enviar una clave secreta. Encontrará esta clave en su panel de control Ecwid, en la página \"Configurac​ión del sistema > API > Single Sign-on API\" . Esta característica está disponible sólo para <a href=\"http://www.ecwid.com/compare-plans.html\" target=\"_blank\">utilizadores de pago</a>."
 
79
  msgid "Save changes"
80
  msgstr "Guardar los cambios"
 
81
  msgid "Ecwid Shopping Cart — Appearance settings"
82
  msgstr "Tarjeta de Compras Ecwid — Ajustes de apariencia"
 
83
  msgid "Display search box above products"
84
  msgstr "Mostrar caja de búsqueda de productos de arriba"
 
85
  msgid "Or you can add search box to your website's toolbar using <a href=\"%s\">WordPress native widgets</a>"
86
  msgstr "O puede añadir una caja de búsqueda a la barra de herramientas de su página web utilizando <a href=\"%s\">WordPress native widgets</a>"
 
87
  msgid "Display horizontal categories above products"
88
  msgstr "Mostrar categorías horizontales sobre los productos"
 
89
  msgid "Or you can add vertical categories to your website's toolbar using <a href=\"%s\">WordPress native widgets</a>"
90
  msgstr "O puede añadir categorías verticales a la barra de herramientas de su página utilizando <a href=\"%s\">WordPress native widgets</a>"
 
91
  msgid "Enable minicart attached to horizontal categories"
92
  msgstr "Active minicarrito unido a las categorías horizontales "
 
93
  msgid "You should disable this option, if you added minicart to your website's&nbsp;sidebar"
94
  msgstr "Debería desabilitar esta opción, si añade un minicarro a su página web&nbsp;barra lateral"
 
95
  msgid "Number of categories per row"
96
  msgstr "Número de categorías por fila"
 
97
  msgid "Number of products per page"
98
  msgstr "Número dde productos por página"
 
99
  msgid "Grid view"
100
  msgstr "Vista de cuadro"
 
101
  msgid "List view"
102
  msgstr "Vista de lista"
 
103
  msgid "Table view"
104
  msgstr "Vista de tabla"
 
105
  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."
106
  msgstr "Aquí usted puede controlar cuantos productos serán mostrados por página. Estas opciones definen valores maximos. Si no hay suficiente espacio para mostrar todas las cdolumnas de produtos, Ecwid adaptará el número de columnas para contener todos los productos."
 
107
  msgid "Default view mode on product pages"
108
  msgstr "Vista del modo predefinido en páginas de productos"
 
109
  msgid "Grid"
110
  msgstr "Cuadro"
 
111
  msgid "List"
112
  msgstr "Lista"
 
113
  msgid "Table"
114
  msgstr "Tabla"
 
115
  msgid "Default view mode on search results"
116
  msgstr "Vista del modo predefinido en búsqueda de resultados"
 
117
  msgid "Store powered by Ecwid"
118
  msgstr ""
 
119
  msgid "Ecwid Shopping Cart — General settings"
120
  msgstr "Carro de Compras Ecwid — Configuración general"
 
121
  msgid "Thank you for choosing Ecwid to build your online store"
122
  msgstr "Gracias por elegir Ecwid para cosntruir su tienda online"
 
123
  msgid "The first step towards opening your online business: <br />Let’s get started and add a store to your WordPress website in <strong>3</strong> simple steps."
124
  msgstr "El primer paso para abrir su negocio online: <br /> Vamos a empezar y añadir una tienda a su página web WordPress en <strong>3</strong> simples pasos."
 
125
  msgid "Register at Ecwid"
126
  msgstr "Registrarse en Ecwid"
 
127
  msgid "Create a new Ecwid account which you will use to manage your store and inventory. The registration is free."
128
  msgstr "Crear una nueva cuenta Ecwid que utilizará para gestionar su tienda e inventario. El registro es gratuíto."
 
129
  msgid "Create new Ecwid account"
130
  msgstr "Crear una nueva cuenta Ecwid"
 
131
  msgid "I already have Ecwid account, sign in"
132
  msgstr "Ya tengo una cuenta Ecwid, registrar"
 
133
  msgid "You will be able to sign up through your existing Google, Facebook or PayPal profiles as well."
134
  msgstr "Será además capaz de inscribirse a través de su perfil Google, Facebook o PayPal."
 
135
  msgid "Find your Store ID"
136
  msgstr "Encuentre la Identificación de su tienda"
 
137
  msgid "Store ID is a unique identifier of any Ecwid store, it consists of several digits. You can find it on the \"Dashboard\" page of Ecwid control panel. Also the Store ID will be sent in the Welcome email after the registration."
138
  msgstr "El Identificador de su tienda es un Identificador único de cualquier tienda Ecwid, consiste en varios dígitos. Puede encontrarlo en la página \"Dashboard\" del panel de control Ecwid. Además la Identificación de la Tienda le será enviada en el e-mail de bienvenida después del registro."
 
139
  msgid "Enter your Store ID"
140
  msgstr "Introduzca la Identificación de su tienda "
 
141
  msgid "Enter your Store ID here:"
142
  msgstr "Introduzca la Identificación de su tienda aquí:"
 
143
  msgid "Store ID"
144
  msgstr "Identificación de tienda"
 
145
  msgid "Save and connect your Ecwid store to the site"
146
  msgstr "Guarde y conecte su tienda Ecwid al site"
 
147
  msgid "Questions? Visit <a href=\"http://help.ecwid.com/?source=wporg\">Ecwid support center</a>"
148
  msgstr "Preguntas? Visite <a href=\"http://help.ecwid.com/?source=wporg\">el centro de ayuda Ecwid</a>"
 
149
  msgid "Congratulations!"
150
  msgstr "Enhorabuena!"
 
151
  msgid "Your Ecwid store is now connected to your WordPress website"
152
  msgstr "Su tienda Ecwid está conectada a su página web WordPress"
 
153
  msgid "Greetings!"
154
  msgstr "Saludos!"
 
155
  msgid "Your Ecwid store is connected to your WordPress website"
156
  msgstr "Su tienda Ecwid está conectadaa su página web WordPress"
 
157
  msgid "Control panel"
158
  msgstr "Panel de control"
 
159
  msgid "Account status"
160
  msgstr "Estado de cuenta"
 
161
  msgid "Paid"
162
  msgstr "Pagado"
 
163
  msgid "Free"
164
  msgstr "Gratis"
 
165
  msgid "Thank you for supporting Ecwid!"
166
  msgstr "Gracias por apoyar a Ecwid!"
 
167
  msgid "Upgrade to get access to cool premium features."
168
  msgstr "Actualice para obtener acceso a interesantes funciones avanzadas."
 
169
  msgid "Billing and plans"
170
  msgstr ""
 
171
  msgid "Upgrade"
172
  msgstr ""
 
173
  msgid "If you want to connect another Ecwid store, you can <a %s>disconnect the current one and change Store ID</a>."
174
  msgstr ""
1
+
2
  msgid "Ecwid Shopping Cart"
3
  msgstr ""
4
+
5
  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."
6
  msgstr ""
7
+
8
  msgid "Ecwid Team"
9
  msgstr ""
10
+
11
  msgid "Get help"
12
  msgstr "Obtener ayuda"
13
+
14
  msgid "Go to Ecwid site"
15
  msgstr "Ir al sitio Ecwid"
16
+
17
  msgid "Visit storefront"
18
  msgstr "Visitar escaparate"
19
+
20
  msgid "Manage my store"
21
  msgstr "Gestionar mi tienda"
22
+
23
  msgid "Manage plugin settings"
24
  msgstr "Administrar la configuración de conexión"
25
+
26
  msgid "→ Sell on Facebook"
27
  msgstr "→ Vender en Facebook"
28
+
29
  msgid "Online store powered by <a %s>Ecwid</a>"
30
  msgstr ""
31
+
32
  msgid "Store"
33
  msgstr "Tienda"
34
+
35
  msgid "<strong>Ecwid shopping cart is almost ready</strong>. Please visit <a target=\"_blank\" href=\"%s\">the created page</a> to see your store with demo products. In order to finish the installation, please go to the <a href=\"admin.php?page=ecwid\"><strong>Ecwid settings</strong></a> and configure the plugin."
36
  msgstr "<strong>Ecwid la tarjeta de compras Ecwid está casi lista </strong>. Por favor visite <a target=\"_blank\" href=\"%s\">la página creada </a> para ver su tienda con productos de demostración. Para finalizar la instalación, por favor vaya a <a href=\"admin.php?page=ecwid\"><strong>ajustes Ecwid</strong></a> y configure la conexión."
37
+
38
  msgid "Do you like your Ecwid online store? We'd appreciate it if you <a %s>add your review and vote</a> for the plugin on Wordpress site. (<a id=\"hide-vote-message\">Close</a> and do not show this message anymore)"
39
  msgstr ""
40
+
41
  msgid "Ecwid shopping cart settings"
42
  msgstr ""
43
+
44
  msgid "Ecwid Store"
45
  msgstr "Tienda Ecwid"
46
+
47
  msgid "General settings"
48
  msgstr "Configuración general"
49
+
50
  msgid "General"
51
  msgstr "General"
52
+
53
  msgid "Appearance settings"
54
  msgstr "Opciones de aspecto"
55
+
56
  msgid "Appearance"
57
  msgstr "Aspecto"
58
+
59
  msgid "Advanced settings"
60
  msgstr "Opciones avanzadas"
61
+
62
  msgid "Advanced"
63
  msgstr "Avanzadas"
64
+
65
  msgid "Setup"
66
  msgstr ""
67
+
68
  msgid "Your store's minicart"
69
  msgstr "Mini carro de su tienda"
70
+
71
  msgid "Ecwid Shopping Bag (Normal)"
72
  msgstr "Bolsa de compras Ecwid (Normal)"
73
+
74
  msgid "Ecwid Shopping Bag (Mini view)"
75
  msgstr "Bolsa de compras Ecwid (Mini vista)"
76
+
77
  msgid "Your store's search box"
78
  msgstr "Caja de búsqueda de tu tienda"
79
+
80
  msgid "Ecwid Search Box"
81
  msgstr "Caja de búsqueda Ecwid"
82
+
83
  msgid "Vertical menu of categories"
84
  msgstr "Menú vertical de categorías"
85
+
86
  msgid "Ecwid Vertical Categories"
87
  msgstr "Categorías verticales Ecwid"
88
+
89
  msgid "Price"
90
  msgstr ""
91
+
92
  msgid "Ecwid Shopping Cart — Advanced settings"
93
  msgstr "Carro de compras Ecwid — Opciones avanzadas"
94
+
95
  msgid "Category shown by default"
96
  msgstr "Categoría mostrada por defecto"
97
+
98
  msgid "Store root category"
99
  msgstr "Categoría raíz de la tienda"
100
+
101
  msgid "Default category ID"
102
  msgstr "Identificación de categoría estandar"
103
+
104
  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."
105
  msgstr "Por defecto, la entrada principal muestra una lista de categorías de raíz. Puede anular este comportamiento y mostrar una categoría diferente cuando los clientes abren su tienda por primera vez. Es útil si usted tiene una sola categoría o quiere mostrar un conjunto específico de elementos (por ejemplo, \"productos destacados\") para todos los nuevos visitantes."
106
+
107
  msgid "In order to set this option, <a %s>find an ID of the necessary category</a> and save it here."
108
  msgstr "Para fijar esta opción, <a %s> encuentre una identificación de la categoría necesaria </a> y guárdela aquí."
109
+
110
  msgid "Single Sign-On Secret Key"
111
  msgstr "Clave única secreta de registro"
112
+
113
  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."
114
  msgstr "Esta característica opcional le permite activar la inscripción única: cuando los clientes han iniciado sesión en su página, también inician sesión automáticamente en su tienda Ecwid, incluso si antes no tenían una cuenta en la tienda. Tiene sentido activar esta característica, si sus visitantes en efecto crean cuentas en su página WordPress."
115
+
116
  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 API\" page. This feature is available for <a href=\"http://www.ecwid.com/compare-plans.html\" target=\"_blank\">paid users</a> only."
117
  msgstr "Para activar esta característica usted debería enviar una clave secreta. Encontrará esta clave en su panel de control Ecwid, en la página \"Configurac​ión del sistema > API > Single Sign-on API\" . Esta característica está disponible sólo para <a href=\"http://www.ecwid.com/compare-plans.html\" target=\"_blank\">utilizadores de pago</a>."
118
+
119
  msgid "Save changes"
120
  msgstr "Guardar los cambios"
121
+
122
  msgid "Ecwid Shopping Cart — Appearance settings"
123
  msgstr "Tarjeta de Compras Ecwid — Ajustes de apariencia"
124
+
125
  msgid "Display search box above products"
126
  msgstr "Mostrar caja de búsqueda de productos de arriba"
127
+
128
  msgid "Or you can add search box to your website's toolbar using <a href=\"%s\">WordPress native widgets</a>"
129
  msgstr "O puede añadir una caja de búsqueda a la barra de herramientas de su página web utilizando <a href=\"%s\">WordPress native widgets</a>"
130
+
131
  msgid "Display horizontal categories above products"
132
  msgstr "Mostrar categorías horizontales sobre los productos"
133
+
134
  msgid "Or you can add vertical categories to your website's toolbar using <a href=\"%s\">WordPress native widgets</a>"
135
  msgstr "O puede añadir categorías verticales a la barra de herramientas de su página utilizando <a href=\"%s\">WordPress native widgets</a>"
136
+
137
  msgid "Enable minicart attached to horizontal categories"
138
  msgstr "Active minicarrito unido a las categorías horizontales "
139
+
140
  msgid "You should disable this option, if you added minicart to your website's&nbsp;sidebar"
141
  msgstr "Debería desabilitar esta opción, si añade un minicarro a su página web&nbsp;barra lateral"
142
+
143
  msgid "Number of categories per row"
144
  msgstr "Número de categorías por fila"
145
+
146
  msgid "Number of products per page"
147
  msgstr "Número dde productos por página"
148
+
149
  msgid "Grid view"
150
  msgstr "Vista de cuadro"
151
+
152
  msgid "List view"
153
  msgstr "Vista de lista"
154
+
155
  msgid "Table view"
156
  msgstr "Vista de tabla"
157
+
158
  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."
159
  msgstr "Aquí usted puede controlar cuantos productos serán mostrados por página. Estas opciones definen valores maximos. Si no hay suficiente espacio para mostrar todas las cdolumnas de produtos, Ecwid adaptará el número de columnas para contener todos los productos."
160
+
161
  msgid "Default view mode on product pages"
162
  msgstr "Vista del modo predefinido en páginas de productos"
163
+
164
  msgid "Grid"
165
  msgstr "Cuadro"
166
+
167
  msgid "List"
168
  msgstr "Lista"
169
+
170
  msgid "Table"
171
  msgstr "Tabla"
172
+
173
  msgid "Default view mode on search results"
174
  msgstr "Vista del modo predefinido en búsqueda de resultados"
175
+
176
  msgid "Store powered by Ecwid"
177
  msgstr ""
178
+
179
  msgid "Ecwid Shopping Cart — General settings"
180
  msgstr "Carro de Compras Ecwid — Configuración general"
181
+
182
  msgid "Thank you for choosing Ecwid to build your online store"
183
  msgstr "Gracias por elegir Ecwid para cosntruir su tienda online"
184
+
185
  msgid "The first step towards opening your online business: <br />Let’s get started and add a store to your WordPress website in <strong>3</strong> simple steps."
186
  msgstr "El primer paso para abrir su negocio online: <br /> Vamos a empezar y añadir una tienda a su página web WordPress en <strong>3</strong> simples pasos."
187
+
188
  msgid "Register at Ecwid"
189
  msgstr "Registrarse en Ecwid"
190
+
191
  msgid "Create a new Ecwid account which you will use to manage your store and inventory. The registration is free."
192
  msgstr "Crear una nueva cuenta Ecwid que utilizará para gestionar su tienda e inventario. El registro es gratuíto."
193
+
194
  msgid "Create new Ecwid account"
195
  msgstr "Crear una nueva cuenta Ecwid"
196
+
197
  msgid "I already have Ecwid account, sign in"
198
  msgstr "Ya tengo una cuenta Ecwid, registrar"
199
+
200
  msgid "You will be able to sign up through your existing Google, Facebook or PayPal profiles as well."
201
  msgstr "Será además capaz de inscribirse a través de su perfil Google, Facebook o PayPal."
202
+
203
  msgid "Find your Store ID"
204
  msgstr "Encuentre la Identificación de su tienda"
205
+
206
  msgid "Store ID is a unique identifier of any Ecwid store, it consists of several digits. You can find it on the \"Dashboard\" page of Ecwid control panel. Also the Store ID will be sent in the Welcome email after the registration."
207
  msgstr "El Identificador de su tienda es un Identificador único de cualquier tienda Ecwid, consiste en varios dígitos. Puede encontrarlo en la página \"Dashboard\" del panel de control Ecwid. Además la Identificación de la Tienda le será enviada en el e-mail de bienvenida después del registro."
208
+
209
  msgid "Enter your Store ID"
210
  msgstr "Introduzca la Identificación de su tienda "
211
+
212
  msgid "Enter your Store ID here:"
213
  msgstr "Introduzca la Identificación de su tienda aquí:"
214
+
215
  msgid "Store ID"
216
  msgstr "Identificación de tienda"
217
+
218
  msgid "Save and connect your Ecwid store to the site"
219
  msgstr "Guarde y conecte su tienda Ecwid al site"
220
+
221
  msgid "Questions? Visit <a href=\"http://help.ecwid.com/?source=wporg\">Ecwid support center</a>"
222
  msgstr "Preguntas? Visite <a href=\"http://help.ecwid.com/?source=wporg\">el centro de ayuda Ecwid</a>"
223
+
224
  msgid "Congratulations!"
225
  msgstr "Enhorabuena!"
226
+
227
  msgid "Your Ecwid store is now connected to your WordPress website"
228
  msgstr "Su tienda Ecwid está conectada a su página web WordPress"
229
+
230
  msgid "Greetings!"
231
  msgstr "Saludos!"
232
+
233
  msgid "Your Ecwid store is connected to your WordPress website"
234
  msgstr "Su tienda Ecwid está conectadaa su página web WordPress"
235
+
236
  msgid "Control panel"
237
  msgstr "Panel de control"
238
+
239
  msgid "Account status"
240
  msgstr "Estado de cuenta"
241
+
242
  msgid "Paid"
243
  msgstr "Pagado"
244
+
245
  msgid "Free"
246
  msgstr "Gratis"
247
+
248
  msgid "Thank you for supporting Ecwid!"
249
  msgstr "Gracias por apoyar a Ecwid!"
250
+
251
  msgid "Upgrade to get access to cool premium features."
252
  msgstr "Actualice para obtener acceso a interesantes funciones avanzadas."
253
+
254
  msgid "Billing and plans"
255
  msgstr ""
256
+
257
  msgid "Upgrade"
258
  msgstr ""
259
+
260
  msgid "If you want to connect another Ecwid store, you can <a %s>disconnect the current one and change Store ID</a>."
261
  msgstr ""
languages/ecwid-shopping-cart-fr_FR.po CHANGED
@@ -1,174 +1,261 @@
 
1
  msgid "Ecwid Shopping Cart"
2
  msgstr ""
 
3
  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."
4
  msgstr ""
 
5
  msgid "Ecwid Team"
6
  msgstr ""
 
7
  msgid "Get help"
8
  msgstr "Obtenir de l'assistance"
 
9
  msgid "Go to Ecwid site"
10
  msgstr "Aller au site Ecwid"
 
11
  msgid "Visit storefront"
12
  msgstr "Visiter la vitrine"
 
13
  msgid "Manage my store"
14
  msgstr "Gérer ma boutique"
 
15
  msgid "Manage plugin settings"
16
  msgstr "Gérer mes paramètres de plugin"
 
17
  msgid "→ Sell on Facebook"
18
  msgstr "→ Vendre sur Facebook"
 
19
  msgid "Online store powered by <a %s>Ecwid</a>"
20
  msgstr ""
 
21
  msgid "Store"
22
  msgstr "Boutique"
 
23
  msgid "<strong>Ecwid shopping cart is almost ready</strong>. Please visit <a target=\"_blank\" href=\"%s\">the created page</a> to see your store with demo products. In order to finish the installation, please go to the <a href=\"admin.php?page=ecwid\"><strong>Ecwid settings</strong></a> and configure the plugin."
24
  msgstr "<strong>Le panier virtuel Ecwid est quasiment prêt</strong>. Veuillez visiter <a target=\"_blank\" href=\"%s\">la page créée</a> pour voir votre boutique et des produits de démonstration. Afin de terminer l'installation, veuillez naviguer vers les <a href=\"admin.php?page=ecwid\"><strong>réglages Ecwid</strong></a> et configurer le plugin."
 
25
  msgid "Do you like your Ecwid online store? We'd appreciate it if you <a %s>add your review and vote</a> for the plugin on Wordpress site. (<a id=\"hide-vote-message\">Close</a> and do not show this message anymore)"
26
  msgstr ""
 
27
  msgid "Ecwid shopping cart settings"
28
  msgstr ""
 
29
  msgid "Ecwid Store"
30
  msgstr "Boutique Ecwid"
 
31
  msgid "General settings"
32
  msgstr "Réglages généraux"
 
33
  msgid "General"
34
  msgstr "Général"
 
35
  msgid "Appearance settings"
36
  msgstr "Réglages d'apparence"
 
37
  msgid "Appearance"
38
  msgstr "Apparence"
 
39
  msgid "Advanced settings"
40
  msgstr "Réglages avancés"
 
41
  msgid "Advanced"
42
  msgstr "Avancés"
 
43
  msgid "Setup"
44
  msgstr ""
 
45
  msgid "Your store's minicart"
46
  msgstr "Le mini-panier de votre boutique"
 
47
  msgid "Ecwid Shopping Bag (Normal)"
48
  msgstr "Le Panier Ecwid (Normal)"
 
49
  msgid "Ecwid Shopping Bag (Mini view)"
50
  msgstr "Le Panier Ecwid (Mini-vue)"
 
51
  msgid "Your store's search box"
52
  msgstr "La boîte de recherche de votre boutique"
 
53
  msgid "Ecwid Search Box"
54
  msgstr "Boîte de Recherche Ecwid"
 
55
  msgid "Vertical menu of categories"
56
  msgstr "Menu vertical de catégories"
 
57
  msgid "Ecwid Vertical Categories"
58
  msgstr "Catégories Verticales Ecwid"
 
59
  msgid "Price"
60
  msgstr ""
 
61
  msgid "Ecwid Shopping Cart — Advanced settings"
62
  msgstr "Panier Ecwid — Réglages avancés"
 
63
  msgid "Category shown by default"
64
  msgstr "Catégorie affichée par défaut"
 
65
  msgid "Store root category"
66
  msgstr "Catégorie racine de la boutique"
 
67
  msgid "Default category ID"
68
  msgstr "Numéro de la catégorie par défaut"
 
69
  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."
70
  msgstr "Par défaut, la vitrine présente une liste de catégories racines. Vous pouvez changer ce comportement et afficher une catégorie différente lorsque les clients accèdent à votre boutique pour la première fois. Cette fonction est pratique lorsque vous n'avez qu'une seule catégorie ou si vous souhaitez afficher une gamme spécifique d'articles (par ex. \"Produits Phares\") à tous vos clients."
 
71
  msgid "In order to set this option, <a %s>find an ID of the necessary category</a> and save it here."
72
  msgstr "Afin de régler cette option, <a %s>trouvez le numéro de catégorie nécessaire</a> puis sauvegardez-le ici."
 
73
  msgid "Single Sign-On Secret Key"
74
  msgstr "Clé Secrète Single Sign-on"
 
75
  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."
76
  msgstr "Cette fonction optionnelle permet d'activer Single Sign-on : lorsque les clients sont authentifiés sur votre site, ils sont automatiquement connectés à votre boutique Ecwid, même s'ils n'avaient pas auparavant de compte dans la boutique. Il est logique d'activer cette fonction lorsque vos visiteurs créent typiquement un compte sur votre site WordPress."
 
77
  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 API\" page. This feature is available for <a href=\"http://www.ecwid.com/compare-plans.html\" target=\"_blank\">paid users</a> only."
78
  msgstr "Afin d'activer cette fonction vous devez soumettre une clé secrète. Vous trouverez cette clé dans votre panneau de contrôle Ecwid, sur la page \"Paramètres Système > API > Single Sign-on API\". Cette fonction n'est disponible que pour les <a href=\"http://www.ecwid.com/compare-plans.html\" target=\"_blank\">utilisateurs payants</a>."
 
79
  msgid "Save changes"
80
  msgstr "Sauvegarder les modifications"
 
81
  msgid "Ecwid Shopping Cart — Appearance settings"
82
  msgstr "Panier Ecwid — Réglages d'apparence"
 
83
  msgid "Display search box above products"
84
  msgstr "Afficher la boîte de recherche au-dessus des produits"
 
85
  msgid "Or you can add search box to your website's toolbar using <a href=\"%s\">WordPress native widgets</a>"
86
  msgstr "Vous pouvez aussi ajouter une boîte de recherche à la barre d'outils de votre site via les <a href=\"%s\">widgets natifs de WordPress</a>"
 
87
  msgid "Display horizontal categories above products"
88
  msgstr "Afficher les catégories horizontales au-dessus des produits"
 
89
  msgid "Or you can add vertical categories to your website's toolbar using <a href=\"%s\">WordPress native widgets</a>"
90
  msgstr "Vous pouvez aussi ajouter des catégories verticales à la barre d'outils de votre site via les <a href=\"%s\">widgets natifs de WordPress</a>"
 
91
  msgid "Enable minicart attached to horizontal categories"
92
  msgstr "Activer le mini-panier attaché aux catégories horizontales"
 
93
  msgid "You should disable this option, if you added minicart to your website's&nbsp;sidebar"
94
  msgstr "Cette option devrait être désactivée si vous avez ajouté un mini-panier à la barre latérale de votre site"
 
95
  msgid "Number of categories per row"
96
  msgstr "Nombre de catégories par rangée"
 
97
  msgid "Number of products per page"
98
  msgstr "Nombre de produits par page"
 
99
  msgid "Grid view"
100
  msgstr "Affichage Vignettes"
 
101
  msgid "List view"
102
  msgstr "Affichage Liste"
 
103
  msgid "Table view"
104
  msgstr "Affichage Tableau"
 
105
  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."
106
  msgstr "Vous pouvez contrôler ici le nombre de produits affichés par page. Ces options définissent des valeurs maximales. S'il n'y pas assez de place pour afficher toutes les colonnes de produits, Ecwid modifiera le nombre de colonnes pour conserver tous les produits."
 
107
  msgid "Default view mode on product pages"
108
  msgstr "Mode d'affichage par défaut des pages de produits"
 
109
  msgid "Grid"
110
  msgstr "Vignettes"
 
111
  msgid "List"
112
  msgstr "Liste"
 
113
  msgid "Table"
114
  msgstr "Tableau"
 
115
  msgid "Default view mode on search results"
116
  msgstr "Mode d'affichage par défaut des résultats de recherche"
 
117
  msgid "Store powered by Ecwid"
118
  msgstr ""
 
119
  msgid "Ecwid Shopping Cart — General settings"
120
  msgstr "Panier Ecwid — Réglages généraux"
 
121
  msgid "Thank you for choosing Ecwid to build your online store"
122
  msgstr "Merci d'avoir choisi Ecwid pour construire votre boutique en ligne"
 
123
  msgid "The first step towards opening your online business: <br />Let’s get started and add a store to your WordPress website in <strong>3</strong> simple steps."
124
  msgstr "La première étape vers l'ouverture de votre commerce en ligne : <br />Lançons-nous et ajoutons une boutique à votre site WordPress en <strong>3</strong> étapes faciles."
 
125
  msgid "Register at Ecwid"
126
  msgstr "Inscrivez-vous chez Ecwid"
 
127
  msgid "Create a new Ecwid account which you will use to manage your store and inventory. The registration is free."
128
  msgstr "Créez un nouveau compte Ecwid afin de pouvoir gérer votre boutique et votre inventaire. L'inscription est gratuite."
 
129
  msgid "Create new Ecwid account"
130
  msgstr "Créer un nouveau compte Ecwid"
 
131
  msgid "I already have Ecwid account, sign in"
132
  msgstr "J'ai déjà un compte Ecwid, se connecter"
 
133
  msgid "You will be able to sign up through your existing Google, Facebook or PayPal profiles as well."
134
  msgstr "Vous pourrez aussi vous connecter avec vos comptes Google, Facebook ou PayPal existants."
 
135
  msgid "Find your Store ID"
136
  msgstr "Trouver votre Numéro de Boutique."
 
137
  msgid "Store ID is a unique identifier of any Ecwid store, it consists of several digits. You can find it on the \"Dashboard\" page of Ecwid control panel. Also the Store ID will be sent in the Welcome email after the registration."
138
  msgstr "Le Numéro de Boutique est le code unique de votre boutique Ecwid, il est constitué de plusieurs chiffres. Vous pouvez le trouver sur la page \"Tableau de Bord\" du panneau de contrôle d'Ecwid. Le Numéro de Boutique sera aussi envoyé dans l'email de bienvenu après l'inscription."
 
139
  msgid "Enter your Store ID"
140
  msgstr "Entrer votre Numéro de Boutique"
 
141
  msgid "Enter your Store ID here:"
142
  msgstr "Entrez votre Numéro de Boutique ici :"
 
143
  msgid "Store ID"
144
  msgstr "Numéro de Boutique"
 
145
  msgid "Save and connect your Ecwid store to the site"
146
  msgstr "Sauvegardez et connectez votre boutique Ecwid au site."
 
147
  msgid "Questions? Visit <a href=\"http://help.ecwid.com/?source=wporg\">Ecwid support center</a>"
148
  msgstr "Des questions? Visitez le <a href=\"http://help.ecwid.com/?source=wporg\">centre d'assistance Ecwid</a>"
 
149
  msgid "Congratulations!"
150
  msgstr "Félicitations !"
 
151
  msgid "Your Ecwid store is now connected to your WordPress website"
152
  msgstr "Votre boutique Ecwid est maintenant connectée à votre site WordPress"
 
153
  msgid "Greetings!"
154
  msgstr "Salutations !"
 
155
  msgid "Your Ecwid store is connected to your WordPress website"
156
  msgstr "Votre boutique Ecwid est connectée à votre site WordPress"
 
157
  msgid "Control panel"
158
  msgstr "Panneau de contrôle"
 
159
  msgid "Account status"
160
  msgstr "Statut du compte"
 
161
  msgid "Paid"
162
  msgstr "Payant"
 
163
  msgid "Free"
164
  msgstr "Gratuit"
 
165
  msgid "Thank you for supporting Ecwid!"
166
  msgstr "Merci pour le soutien apporté à Ecwid !"
 
167
  msgid "Upgrade to get access to cool premium features."
168
  msgstr "Surclassez votre compte pour accéder à de super fonctionnalités premium."
 
169
  msgid "Billing and plans"
170
  msgstr ""
 
171
  msgid "Upgrade"
172
  msgstr ""
 
173
  msgid "If you want to connect another Ecwid store, you can <a %s>disconnect the current one and change Store ID</a>."
174
  msgstr ""
1
+
2
  msgid "Ecwid Shopping Cart"
3
  msgstr ""
4
+
5
  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."
6
  msgstr ""
7
+
8
  msgid "Ecwid Team"
9
  msgstr ""
10
+
11
  msgid "Get help"
12
  msgstr "Obtenir de l'assistance"
13
+
14
  msgid "Go to Ecwid site"
15
  msgstr "Aller au site Ecwid"
16
+
17
  msgid "Visit storefront"
18
  msgstr "Visiter la vitrine"
19
+
20
  msgid "Manage my store"
21
  msgstr "Gérer ma boutique"
22
+
23
  msgid "Manage plugin settings"
24
  msgstr "Gérer mes paramètres de plugin"
25
+
26
  msgid "→ Sell on Facebook"
27
  msgstr "→ Vendre sur Facebook"
28
+
29
  msgid "Online store powered by <a %s>Ecwid</a>"
30
  msgstr ""
31
+
32
  msgid "Store"
33
  msgstr "Boutique"
34
+
35
  msgid "<strong>Ecwid shopping cart is almost ready</strong>. Please visit <a target=\"_blank\" href=\"%s\">the created page</a> to see your store with demo products. In order to finish the installation, please go to the <a href=\"admin.php?page=ecwid\"><strong>Ecwid settings</strong></a> and configure the plugin."
36
  msgstr "<strong>Le panier virtuel Ecwid est quasiment prêt</strong>. Veuillez visiter <a target=\"_blank\" href=\"%s\">la page créée</a> pour voir votre boutique et des produits de démonstration. Afin de terminer l'installation, veuillez naviguer vers les <a href=\"admin.php?page=ecwid\"><strong>réglages Ecwid</strong></a> et configurer le plugin."
37
+
38
  msgid "Do you like your Ecwid online store? We'd appreciate it if you <a %s>add your review and vote</a> for the plugin on Wordpress site. (<a id=\"hide-vote-message\">Close</a> and do not show this message anymore)"
39
  msgstr ""
40
+
41
  msgid "Ecwid shopping cart settings"
42
  msgstr ""
43
+
44
  msgid "Ecwid Store"
45
  msgstr "Boutique Ecwid"
46
+
47
  msgid "General settings"
48
  msgstr "Réglages généraux"
49
+
50
  msgid "General"
51
  msgstr "Général"
52
+
53
  msgid "Appearance settings"
54
  msgstr "Réglages d'apparence"
55
+
56
  msgid "Appearance"
57
  msgstr "Apparence"
58
+
59
  msgid "Advanced settings"
60
  msgstr "Réglages avancés"
61
+
62
  msgid "Advanced"
63
  msgstr "Avancés"
64
+
65
  msgid "Setup"
66
  msgstr ""
67
+
68
  msgid "Your store's minicart"
69
  msgstr "Le mini-panier de votre boutique"
70
+
71
  msgid "Ecwid Shopping Bag (Normal)"
72
  msgstr "Le Panier Ecwid (Normal)"
73
+
74
  msgid "Ecwid Shopping Bag (Mini view)"
75
  msgstr "Le Panier Ecwid (Mini-vue)"
76
+
77
  msgid "Your store's search box"
78
  msgstr "La boîte de recherche de votre boutique"
79
+
80
  msgid "Ecwid Search Box"
81
  msgstr "Boîte de Recherche Ecwid"
82
+
83
  msgid "Vertical menu of categories"
84
  msgstr "Menu vertical de catégories"
85
+
86
  msgid "Ecwid Vertical Categories"
87
  msgstr "Catégories Verticales Ecwid"
88
+
89
  msgid "Price"
90
  msgstr ""
91
+
92
  msgid "Ecwid Shopping Cart — Advanced settings"
93
  msgstr "Panier Ecwid — Réglages avancés"
94
+
95
  msgid "Category shown by default"
96
  msgstr "Catégorie affichée par défaut"
97
+
98
  msgid "Store root category"
99
  msgstr "Catégorie racine de la boutique"
100
+
101
  msgid "Default category ID"
102
  msgstr "Numéro de la catégorie par défaut"
103
+
104
  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."
105
  msgstr "Par défaut, la vitrine présente une liste de catégories racines. Vous pouvez changer ce comportement et afficher une catégorie différente lorsque les clients accèdent à votre boutique pour la première fois. Cette fonction est pratique lorsque vous n'avez qu'une seule catégorie ou si vous souhaitez afficher une gamme spécifique d'articles (par ex. \"Produits Phares\") à tous vos clients."
106
+
107
  msgid "In order to set this option, <a %s>find an ID of the necessary category</a> and save it here."
108
  msgstr "Afin de régler cette option, <a %s>trouvez le numéro de catégorie nécessaire</a> puis sauvegardez-le ici."
109
+
110
  msgid "Single Sign-On Secret Key"
111
  msgstr "Clé Secrète Single Sign-on"
112
+
113
  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."
114
  msgstr "Cette fonction optionnelle permet d'activer Single Sign-on : lorsque les clients sont authentifiés sur votre site, ils sont automatiquement connectés à votre boutique Ecwid, même s'ils n'avaient pas auparavant de compte dans la boutique. Il est logique d'activer cette fonction lorsque vos visiteurs créent typiquement un compte sur votre site WordPress."
115
+
116
  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 API\" page. This feature is available for <a href=\"http://www.ecwid.com/compare-plans.html\" target=\"_blank\">paid users</a> only."
117
  msgstr "Afin d'activer cette fonction vous devez soumettre une clé secrète. Vous trouverez cette clé dans votre panneau de contrôle Ecwid, sur la page \"Paramètres Système > API > Single Sign-on API\". Cette fonction n'est disponible que pour les <a href=\"http://www.ecwid.com/compare-plans.html\" target=\"_blank\">utilisateurs payants</a>."
118
+
119
  msgid "Save changes"
120
  msgstr "Sauvegarder les modifications"
121
+
122
  msgid "Ecwid Shopping Cart — Appearance settings"
123
  msgstr "Panier Ecwid — Réglages d'apparence"
124
+
125
  msgid "Display search box above products"
126
  msgstr "Afficher la boîte de recherche au-dessus des produits"
127
+
128
  msgid "Or you can add search box to your website's toolbar using <a href=\"%s\">WordPress native widgets</a>"
129
  msgstr "Vous pouvez aussi ajouter une boîte de recherche à la barre d'outils de votre site via les <a href=\"%s\">widgets natifs de WordPress</a>"
130
+
131
  msgid "Display horizontal categories above products"
132
  msgstr "Afficher les catégories horizontales au-dessus des produits"
133
+
134
  msgid "Or you can add vertical categories to your website's toolbar using <a href=\"%s\">WordPress native widgets</a>"
135
  msgstr "Vous pouvez aussi ajouter des catégories verticales à la barre d'outils de votre site via les <a href=\"%s\">widgets natifs de WordPress</a>"
136
+
137
  msgid "Enable minicart attached to horizontal categories"
138
  msgstr "Activer le mini-panier attaché aux catégories horizontales"
139
+
140
  msgid "You should disable this option, if you added minicart to your website's&nbsp;sidebar"
141
  msgstr "Cette option devrait être désactivée si vous avez ajouté un mini-panier à la barre latérale de votre site"
142
+
143
  msgid "Number of categories per row"
144
  msgstr "Nombre de catégories par rangée"
145
+
146
  msgid "Number of products per page"
147
  msgstr "Nombre de produits par page"
148
+
149
  msgid "Grid view"
150
  msgstr "Affichage Vignettes"
151
+
152
  msgid "List view"
153
  msgstr "Affichage Liste"
154
+
155
  msgid "Table view"
156
  msgstr "Affichage Tableau"
157
+
158
  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."
159
  msgstr "Vous pouvez contrôler ici le nombre de produits affichés par page. Ces options définissent des valeurs maximales. S'il n'y pas assez de place pour afficher toutes les colonnes de produits, Ecwid modifiera le nombre de colonnes pour conserver tous les produits."
160
+
161
  msgid "Default view mode on product pages"
162
  msgstr "Mode d'affichage par défaut des pages de produits"
163
+
164
  msgid "Grid"
165
  msgstr "Vignettes"
166
+
167
  msgid "List"
168
  msgstr "Liste"
169
+
170
  msgid "Table"
171
  msgstr "Tableau"
172
+
173
  msgid "Default view mode on search results"
174
  msgstr "Mode d'affichage par défaut des résultats de recherche"
175
+
176
  msgid "Store powered by Ecwid"
177
  msgstr ""
178
+
179
  msgid "Ecwid Shopping Cart — General settings"
180
  msgstr "Panier Ecwid — Réglages généraux"
181
+
182
  msgid "Thank you for choosing Ecwid to build your online store"
183
  msgstr "Merci d'avoir choisi Ecwid pour construire votre boutique en ligne"
184
+
185
  msgid "The first step towards opening your online business: <br />Let’s get started and add a store to your WordPress website in <strong>3</strong> simple steps."
186
  msgstr "La première étape vers l'ouverture de votre commerce en ligne : <br />Lançons-nous et ajoutons une boutique à votre site WordPress en <strong>3</strong> étapes faciles."
187
+
188
  msgid "Register at Ecwid"
189
  msgstr "Inscrivez-vous chez Ecwid"
190
+
191
  msgid "Create a new Ecwid account which you will use to manage your store and inventory. The registration is free."
192
  msgstr "Créez un nouveau compte Ecwid afin de pouvoir gérer votre boutique et votre inventaire. L'inscription est gratuite."
193
+
194
  msgid "Create new Ecwid account"
195
  msgstr "Créer un nouveau compte Ecwid"
196
+
197
  msgid "I already have Ecwid account, sign in"
198
  msgstr "J'ai déjà un compte Ecwid, se connecter"
199
+
200
  msgid "You will be able to sign up through your existing Google, Facebook or PayPal profiles as well."
201
  msgstr "Vous pourrez aussi vous connecter avec vos comptes Google, Facebook ou PayPal existants."
202
+
203
  msgid "Find your Store ID"
204
  msgstr "Trouver votre Numéro de Boutique."
205
+
206
  msgid "Store ID is a unique identifier of any Ecwid store, it consists of several digits. You can find it on the \"Dashboard\" page of Ecwid control panel. Also the Store ID will be sent in the Welcome email after the registration."
207
  msgstr "Le Numéro de Boutique est le code unique de votre boutique Ecwid, il est constitué de plusieurs chiffres. Vous pouvez le trouver sur la page \"Tableau de Bord\" du panneau de contrôle d'Ecwid. Le Numéro de Boutique sera aussi envoyé dans l'email de bienvenu après l'inscription."
208
+
209
  msgid "Enter your Store ID"
210
  msgstr "Entrer votre Numéro de Boutique"
211
+
212
  msgid "Enter your Store ID here:"
213
  msgstr "Entrez votre Numéro de Boutique ici :"
214
+
215
  msgid "Store ID"
216
  msgstr "Numéro de Boutique"
217
+
218
  msgid "Save and connect your Ecwid store to the site"
219
  msgstr "Sauvegardez et connectez votre boutique Ecwid au site."
220
+
221
  msgid "Questions? Visit <a href=\"http://help.ecwid.com/?source=wporg\">Ecwid support center</a>"
222
  msgstr "Des questions? Visitez le <a href=\"http://help.ecwid.com/?source=wporg\">centre d'assistance Ecwid</a>"
223
+
224
  msgid "Congratulations!"
225
  msgstr "Félicitations !"
226
+
227
  msgid "Your Ecwid store is now connected to your WordPress website"
228
  msgstr "Votre boutique Ecwid est maintenant connectée à votre site WordPress"
229
+
230
  msgid "Greetings!"
231
  msgstr "Salutations !"
232
+
233
  msgid "Your Ecwid store is connected to your WordPress website"
234
  msgstr "Votre boutique Ecwid est connectée à votre site WordPress"
235
+
236
  msgid "Control panel"
237
  msgstr "Panneau de contrôle"
238
+
239
  msgid "Account status"
240
  msgstr "Statut du compte"
241
+
242
  msgid "Paid"
243
  msgstr "Payant"
244
+
245
  msgid "Free"
246
  msgstr "Gratuit"
247
+
248
  msgid "Thank you for supporting Ecwid!"
249
  msgstr "Merci pour le soutien apporté à Ecwid !"
250
+
251
  msgid "Upgrade to get access to cool premium features."
252
  msgstr "Surclassez votre compte pour accéder à de super fonctionnalités premium."
253
+
254
  msgid "Billing and plans"
255
  msgstr ""
256
+
257
  msgid "Upgrade"
258
  msgstr ""
259
+
260
  msgid "If you want to connect another Ecwid store, you can <a %s>disconnect the current one and change Store ID</a>."
261
  msgstr ""
languages/ecwid-shopping-cart-pt_BR.po CHANGED
@@ -6,177 +6,264 @@
6
  # Your Locale: ru_RU (MO: /languages/ecwid-shopping-cart-ru_RU.mo)
7
  # Your Language: ru-RU
8
  #, fuzzy
 
9
  msgid "Ecwid Shopping Cart"
10
  msgstr ""
 
11
  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."
12
  msgstr ""
 
13
  msgid "Ecwid Team"
14
  msgstr ""
 
15
  msgid "Get help"
16
  msgstr "Obter Ajuda"
 
17
  msgid "Go to Ecwid site"
18
  msgstr "Ir para o sítio Ecwid"
 
19
  msgid "Visit storefront"
20
  msgstr "Visitar frente da loja"
 
21
  msgid "Manage my store"
22
  msgstr "Gerir a minha loja"
 
23
  msgid "Manage plugin settings"
24
  msgstr "Gerir definições de plugin"
 
25
  msgid "→ Sell on Facebook"
26
  msgstr "→ Vender no Facebook"
 
27
  msgid "Online store powered by <a %s>Ecwid</a>"
28
  msgstr ""
 
29
  msgid "Store"
30
  msgstr "Loja"
 
31
  msgid "<strong>Ecwid shopping cart is almost ready</strong>. Please visit <a target=\"_blank\" href=\"%s\">the created page</a> to see your store with demo products. In order to finish the installation, please go to the <a href=\"admin.php?page=ecwid\"><strong>Ecwid settings</strong></a> and configure the plugin."
32
  msgstr "<strong> O carrinho de compras Ecwid está quase pronto </strong> Por favor visite <a target=\"_blank\" href=\"%s\">a página criada</a> para ver os produtos demonstração na sua loja. De modo a terminar a instalação, por favor vá a <a href=\"admin.php?page=ecwid\"><strong>definições Ecwid </strong></a> e configure o plugin."
 
33
  msgid "Do you like your Ecwid online store? We'd appreciate it if you <a %s>add your review and vote</a> for the plugin on Wordpress site. (<a id=\"hide-vote-message\">Close</a> and do not show this message anymore)"
34
  msgstr ""
 
35
  msgid "Ecwid shopping cart settings"
36
  msgstr ""
 
37
  msgid "Ecwid Store"
38
  msgstr "Loja Ecwid"
 
39
  msgid "General settings"
40
  msgstr "Definições Gerais"
 
41
  msgid "General"
42
  msgstr "Geral"
 
43
  msgid "Appearance settings"
44
  msgstr "Definições de Aparência"
 
45
  msgid "Appearance"
46
  msgstr "Aparência"
 
47
  msgid "Advanced settings"
48
  msgstr "Definições Avançadas"
 
49
  msgid "Advanced"
50
  msgstr "Avançadas"
 
51
  msgid "Setup"
52
  msgstr ""
 
53
  msgid "Your store's minicart"
54
  msgstr "O minicart da sua loja"
 
55
  msgid "Ecwid Shopping Bag (Normal)"
56
  msgstr "Saco de compras Ecwid (Normal)"
 
57
  msgid "Ecwid Shopping Bag (Mini view)"
58
  msgstr "Saco de compras Ecwid (Vista mini)"
 
59
  msgid "Your store's search box"
60
  msgstr "A barra de pesquisa da sua loja"
 
61
  msgid "Ecwid Search Box"
62
  msgstr "Barra de pesquisa Ecwid"
 
63
  msgid "Vertical menu of categories"
64
  msgstr "Menu vertical de categorias"
 
65
  msgid "Ecwid Vertical Categories"
66
  msgstr "Categorias verticais Ecwid"
 
67
  msgid "Price"
68
  msgstr ""
 
69
  msgid "Ecwid Shopping Cart — Advanced settings"
70
  msgstr "Carrinho de compras Ecwid — Definições Avançadas"
 
71
  msgid "Category shown by default"
72
  msgstr "Categoria mostrada por defeito"
 
73
  msgid "Store root category"
74
  msgstr "Categoria de raiz de loja"
 
75
  msgid "Default category ID"
76
  msgstr "Identificação de categoria por defeito"
 
77
  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."
78
  msgstr "Por defeito, a frente de loja mostra uma lista de categorias de raiz. Você pode ignorar este comportamento e mostrar uma categoria diferente quando os clientes abrirem a sua loja pela primeira vez. É util se você tem apenas uma categoria ou quer mostrar produtos especifícos (e.g. \"Produtos em Destaque\") para todos os novos visitantes."
 
79
  msgid "In order to set this option, <a %s>find an ID of the necessary category</a> and save it here."
80
  msgstr "De modo a configurar esta opção, <a %s> encontra um ID da categoria necessária</a>, salvando-a."
 
81
  msgid "Single Sign-On Secret Key"
82
  msgstr "Chave Secreta e Iniciar Sessão Único"
 
83
  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."
84
  msgstr "Esta característica opcional permite ativar o Iniciar Sessão Único: Quando os clientes estão inscritos no seu sítio, eles automaticamente se ligam na sua loja Ecwid, mesmo que eles não tenham conta na loja antes. Faz sentido ativar esta característica, se os seus visitantes realmente criarem contas no seu sítio WordPress."
 
85
  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 API\" page. This feature is available for <a href=\"http://www.ecwid.com/compare-plans.html\" target=\"_blank\">paid users</a> only."
86
  msgstr "De modo a ativar esta caracterísitca você deverá submeter uma chave secreta. Você encontrará essa chave no painel de controle Ecwid, nas \"Definições de Sistema\" > API > Iniciar Sessão Único na página API. Esta característica está disponível para <a href=\"http://www.ecwid.com/compare-plans.html\" target=\"_blank\">usuários pagos</a> apenas."
 
87
  msgid "Save changes"
88
  msgstr "Salvar alterações"
 
89
  msgid "Ecwid Shopping Cart — Appearance settings"
90
  msgstr "Carrinho de compras Ecwid — Definições Aparência"
 
91
  msgid "Display search box above products"
92
  msgstr "Mostrar barra de pesquisa acima dos produtos"
 
93
  msgid "Or you can add search box to your website's toolbar using <a href=\"%s\">WordPress native widgets</a>"
94
  msgstr "Ou você pode adicionar uma barra de pesquisa no seu sítio usando <a href=\"%s\">widgets nativos do WordPress</a>"
 
95
  msgid "Display horizontal categories above products"
96
  msgstr "Mostrar categorias horizontais acima dos produtos"
 
97
  msgid "Or you can add vertical categories to your website's toolbar using <a href=\"%s\">WordPress native widgets</a>"
98
  msgstr "Ou você pode adicionar categorias verticais na barra de ferramentas do seu sítio através de <a href=\"%s\">widgets nativos do WordPress</a>"
 
99
  msgid "Enable minicart attached to horizontal categories"
100
  msgstr "Ativar minicart anexado às categorias horizontais"
 
101
  msgid "You should disable this option, if you added minicart to your website's&nbsp;sidebar"
102
  msgstr "Deverá desativar esta opção se você adicionou o minicart à barra lateral do seu sítio"
 
103
  msgid "Number of categories per row"
104
  msgstr "Número de categorias por fila"
 
105
  msgid "Number of products per page"
106
  msgstr "Número de produtos por página"
 
107
  msgid "Grid view"
108
  msgstr "Vista Grelha"
 
109
  msgid "List view"
110
  msgstr "Vista Lista"
 
111
  msgid "Table view"
112
  msgstr "Vista Tabela"
 
113
  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."
114
  msgstr "Aqui você poderá controlar quando produtos quer que sejam mostrados por página. Estas opções definem valores máximos. Se não houver espaço suficiente para mostrar todas as colunas de produtos, a Ecwid irá adaptar o número de colunas a mostrar todos os produtos."
 
115
  msgid "Default view mode on product pages"
116
  msgstr "Vista padrão nas páginas de produtos"
 
117
  msgid "Grid"
118
  msgstr "Grelha"
 
119
  msgid "List"
120
  msgstr "Lista"
 
121
  msgid "Table"
122
  msgstr "Tabela"
 
123
  msgid "Default view mode on search results"
124
  msgstr "Vista Padrão nos resultados de pesquisa"
 
125
  msgid "Store powered by Ecwid"
126
  msgstr ""
 
127
  msgid "Ecwid Shopping Cart — General settings"
128
  msgstr "Carrinho de Compras Ecwid — Definições Gerais"
 
129
  msgid "Thank you for choosing Ecwid to build your online store"
130
  msgstr "Obrigado por escolher Ecwid para construir a sua loja online"
 
131
  msgid "The first step towards opening your online business: <br />Let’s get started and add a store to your WordPress website in <strong>3</strong> simple steps."
132
  msgstr "Os primeiros passos para abrir o seu negócio online<br />Vamos começar e adicionar uma loja no seu sítio WordPress em <strong>3</strong> passos simples."
 
133
  msgid "Register at Ecwid"
134
  msgstr "Registe-se na Ecwid"
 
135
  msgid "Create a new Ecwid account which you will use to manage your store and inventory. The registration is free."
136
  msgstr "Crie uma nova conta Ecwid que você utilizará para gerir a sua loja e inventário. O registo é grátis."
 
137
  msgid "Create new Ecwid account"
138
  msgstr "Crie uma nova conta Ecwid"
 
139
  msgid "I already have Ecwid account, sign in"
140
  msgstr "Já tenho uma conta Ecwid, iniciar sessão"
 
141
  msgid "You will be able to sign up through your existing Google, Facebook or PayPal profiles as well."
142
  msgstr "Você conseguirá iniciar sessão atráves dos seus perfis existentes do Google, Facebook ou PayPal."
 
143
  msgid "Find your Store ID"
144
  msgstr "Obtenha a sua ID de loja"
 
145
  msgid "Store ID is a unique identifier of any Ecwid store, it consists of several digits. You can find it on the \"Dashboard\" page of Ecwid control panel. Also the Store ID will be sent in the Welcome email after the registration."
146
  msgstr "ID de loja é um identificador único de qualquer loja Ecwid, consiste em vários digitos. Poderá encontrá-lo no \"Painel\" da página \"Painel de Controle\" da Ecwid. Mais, a ID de loja será enviada na mensagem de correio eletrônico de boas-vindas após o registo. "
 
147
  msgid "Enter your Store ID"
148
  msgstr "Insira a sua ID de Loja"
 
149
  msgid "Enter your Store ID here:"
150
  msgstr "Insira a sua ID de Loja aqui:"
 
151
  msgid "Store ID"
152
  msgstr "ID de Loja "
 
153
  msgid "Save and connect your Ecwid store to the site"
154
  msgstr "Salve e conete a sua loja Ecwid ao sítio"
 
155
  msgid "Questions? Visit <a href=\"http://help.ecwid.com/?source=wporg\">Ecwid support center</a>"
156
  msgstr "Questões? Visite <a href=\"http://help.ecwid.com/?source=wporg\"> Centro de Apoio Ecwid</a>"
 
157
  msgid "Congratulations!"
158
  msgstr "Parabéns!"
 
159
  msgid "Your Ecwid store is now connected to your WordPress website"
160
  msgstr "A sua loja Ecwid está agora conetada ao seu sítio WorkPress"
 
161
  msgid "Greetings!"
162
  msgstr "Saudações!"
 
163
  msgid "Your Ecwid store is connected to your WordPress website"
164
  msgstr "A sua loja Ecwid está agora conetada ao seu sítio WorkPress"
 
165
  msgid "Control panel"
166
  msgstr "Painel de Controle"
 
167
  msgid "Account status"
168
  msgstr "Estado de Conta"
 
169
  msgid "Paid"
170
  msgstr "Pago"
 
171
  msgid "Free"
172
  msgstr "Grátis"
 
173
  msgid "Thank you for supporting Ecwid!"
174
  msgstr "Obrigado por apoiar Ecwid!"
 
175
  msgid "Upgrade to get access to cool premium features."
176
  msgstr "Atualize para ter acesso a características premium convenientes."
 
177
  msgid "Billing and plans"
178
  msgstr ""
 
179
  msgid "Upgrade"
180
  msgstr ""
 
181
  msgid "If you want to connect another Ecwid store, you can <a %s>disconnect the current one and change Store ID</a>."
182
  msgstr ""
6
  # Your Locale: ru_RU (MO: /languages/ecwid-shopping-cart-ru_RU.mo)
7
  # Your Language: ru-RU
8
  #, fuzzy
9
+
10
  msgid "Ecwid Shopping Cart"
11
  msgstr ""
12
+
13
  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."
14
  msgstr ""
15
+
16
  msgid "Ecwid Team"
17
  msgstr ""
18
+
19
  msgid "Get help"
20
  msgstr "Obter Ajuda"
21
+
22
  msgid "Go to Ecwid site"
23
  msgstr "Ir para o sítio Ecwid"
24
+
25
  msgid "Visit storefront"
26
  msgstr "Visitar frente da loja"
27
+
28
  msgid "Manage my store"
29
  msgstr "Gerir a minha loja"
30
+
31
  msgid "Manage plugin settings"
32
  msgstr "Gerir definições de plugin"
33
+
34
  msgid "→ Sell on Facebook"
35
  msgstr "→ Vender no Facebook"
36
+
37
  msgid "Online store powered by <a %s>Ecwid</a>"
38
  msgstr ""
39
+
40
  msgid "Store"
41
  msgstr "Loja"
42
+
43
  msgid "<strong>Ecwid shopping cart is almost ready</strong>. Please visit <a target=\"_blank\" href=\"%s\">the created page</a> to see your store with demo products. In order to finish the installation, please go to the <a href=\"admin.php?page=ecwid\"><strong>Ecwid settings</strong></a> and configure the plugin."
44
  msgstr "<strong> O carrinho de compras Ecwid está quase pronto </strong> Por favor visite <a target=\"_blank\" href=\"%s\">a página criada</a> para ver os produtos demonstração na sua loja. De modo a terminar a instalação, por favor vá a <a href=\"admin.php?page=ecwid\"><strong>definições Ecwid </strong></a> e configure o plugin."
45
+
46
  msgid "Do you like your Ecwid online store? We'd appreciate it if you <a %s>add your review and vote</a> for the plugin on Wordpress site. (<a id=\"hide-vote-message\">Close</a> and do not show this message anymore)"
47
  msgstr ""
48
+
49
  msgid "Ecwid shopping cart settings"
50
  msgstr ""
51
+
52
  msgid "Ecwid Store"
53
  msgstr "Loja Ecwid"
54
+
55
  msgid "General settings"
56
  msgstr "Definições Gerais"
57
+
58
  msgid "General"
59
  msgstr "Geral"
60
+
61
  msgid "Appearance settings"
62
  msgstr "Definições de Aparência"
63
+
64
  msgid "Appearance"
65
  msgstr "Aparência"
66
+
67
  msgid "Advanced settings"
68
  msgstr "Definições Avançadas"
69
+
70
  msgid "Advanced"
71
  msgstr "Avançadas"
72
+
73
  msgid "Setup"
74
  msgstr ""
75
+
76
  msgid "Your store's minicart"
77
  msgstr "O minicart da sua loja"
78
+
79
  msgid "Ecwid Shopping Bag (Normal)"
80
  msgstr "Saco de compras Ecwid (Normal)"
81
+
82
  msgid "Ecwid Shopping Bag (Mini view)"
83
  msgstr "Saco de compras Ecwid (Vista mini)"
84
+
85
  msgid "Your store's search box"
86
  msgstr "A barra de pesquisa da sua loja"
87
+
88
  msgid "Ecwid Search Box"
89
  msgstr "Barra de pesquisa Ecwid"
90
+
91
  msgid "Vertical menu of categories"
92
  msgstr "Menu vertical de categorias"
93
+
94
  msgid "Ecwid Vertical Categories"
95
  msgstr "Categorias verticais Ecwid"
96
+
97
  msgid "Price"
98
  msgstr ""
99
+
100
  msgid "Ecwid Shopping Cart — Advanced settings"
101
  msgstr "Carrinho de compras Ecwid — Definições Avançadas"
102
+
103
  msgid "Category shown by default"
104
  msgstr "Categoria mostrada por defeito"
105
+
106
  msgid "Store root category"
107
  msgstr "Categoria de raiz de loja"
108
+
109
  msgid "Default category ID"
110
  msgstr "Identificação de categoria por defeito"
111
+
112
  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."
113
  msgstr "Por defeito, a frente de loja mostra uma lista de categorias de raiz. Você pode ignorar este comportamento e mostrar uma categoria diferente quando os clientes abrirem a sua loja pela primeira vez. É util se você tem apenas uma categoria ou quer mostrar produtos especifícos (e.g. \"Produtos em Destaque\") para todos os novos visitantes."
114
+
115
  msgid "In order to set this option, <a %s>find an ID of the necessary category</a> and save it here."
116
  msgstr "De modo a configurar esta opção, <a %s> encontra um ID da categoria necessária</a>, salvando-a."
117
+
118
  msgid "Single Sign-On Secret Key"
119
  msgstr "Chave Secreta e Iniciar Sessão Único"
120
+
121
  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."
122
  msgstr "Esta característica opcional permite ativar o Iniciar Sessão Único: Quando os clientes estão inscritos no seu sítio, eles automaticamente se ligam na sua loja Ecwid, mesmo que eles não tenham conta na loja antes. Faz sentido ativar esta característica, se os seus visitantes realmente criarem contas no seu sítio WordPress."
123
+
124
  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 API\" page. This feature is available for <a href=\"http://www.ecwid.com/compare-plans.html\" target=\"_blank\">paid users</a> only."
125
  msgstr "De modo a ativar esta caracterísitca você deverá submeter uma chave secreta. Você encontrará essa chave no painel de controle Ecwid, nas \"Definições de Sistema\" > API > Iniciar Sessão Único na página API. Esta característica está disponível para <a href=\"http://www.ecwid.com/compare-plans.html\" target=\"_blank\">usuários pagos</a> apenas."
126
+
127
  msgid "Save changes"
128
  msgstr "Salvar alterações"
129
+
130
  msgid "Ecwid Shopping Cart — Appearance settings"
131
  msgstr "Carrinho de compras Ecwid — Definições Aparência"
132
+
133
  msgid "Display search box above products"
134
  msgstr "Mostrar barra de pesquisa acima dos produtos"
135
+
136
  msgid "Or you can add search box to your website's toolbar using <a href=\"%s\">WordPress native widgets</a>"
137
  msgstr "Ou você pode adicionar uma barra de pesquisa no seu sítio usando <a href=\"%s\">widgets nativos do WordPress</a>"
138
+
139
  msgid "Display horizontal categories above products"
140
  msgstr "Mostrar categorias horizontais acima dos produtos"
141
+
142
  msgid "Or you can add vertical categories to your website's toolbar using <a href=\"%s\">WordPress native widgets</a>"
143
  msgstr "Ou você pode adicionar categorias verticais na barra de ferramentas do seu sítio através de <a href=\"%s\">widgets nativos do WordPress</a>"
144
+
145
  msgid "Enable minicart attached to horizontal categories"
146
  msgstr "Ativar minicart anexado às categorias horizontais"
147
+
148
  msgid "You should disable this option, if you added minicart to your website's&nbsp;sidebar"
149
  msgstr "Deverá desativar esta opção se você adicionou o minicart à barra lateral do seu sítio"
150
+
151
  msgid "Number of categories per row"
152
  msgstr "Número de categorias por fila"
153
+
154
  msgid "Number of products per page"
155
  msgstr "Número de produtos por página"
156
+
157
  msgid "Grid view"
158
  msgstr "Vista Grelha"
159
+
160
  msgid "List view"
161
  msgstr "Vista Lista"
162
+
163
  msgid "Table view"
164
  msgstr "Vista Tabela"
165
+
166
  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."
167
  msgstr "Aqui você poderá controlar quando produtos quer que sejam mostrados por página. Estas opções definem valores máximos. Se não houver espaço suficiente para mostrar todas as colunas de produtos, a Ecwid irá adaptar o número de colunas a mostrar todos os produtos."
168
+
169
  msgid "Default view mode on product pages"
170
  msgstr "Vista padrão nas páginas de produtos"
171
+
172
  msgid "Grid"
173
  msgstr "Grelha"
174
+
175
  msgid "List"
176
  msgstr "Lista"
177
+
178
  msgid "Table"
179
  msgstr "Tabela"
180
+
181
  msgid "Default view mode on search results"
182
  msgstr "Vista Padrão nos resultados de pesquisa"
183
+
184
  msgid "Store powered by Ecwid"
185
  msgstr ""
186
+
187
  msgid "Ecwid Shopping Cart — General settings"
188
  msgstr "Carrinho de Compras Ecwid — Definições Gerais"
189
+
190
  msgid "Thank you for choosing Ecwid to build your online store"
191
  msgstr "Obrigado por escolher Ecwid para construir a sua loja online"
192
+
193
  msgid "The first step towards opening your online business: <br />Let’s get started and add a store to your WordPress website in <strong>3</strong> simple steps."
194
  msgstr "Os primeiros passos para abrir o seu negócio online<br />Vamos começar e adicionar uma loja no seu sítio WordPress em <strong>3</strong> passos simples."
195
+
196
  msgid "Register at Ecwid"
197
  msgstr "Registe-se na Ecwid"
198
+
199
  msgid "Create a new Ecwid account which you will use to manage your store and inventory. The registration is free."
200
  msgstr "Crie uma nova conta Ecwid que você utilizará para gerir a sua loja e inventário. O registo é grátis."
201
+
202
  msgid "Create new Ecwid account"
203
  msgstr "Crie uma nova conta Ecwid"
204
+
205
  msgid "I already have Ecwid account, sign in"
206
  msgstr "Já tenho uma conta Ecwid, iniciar sessão"
207
+
208
  msgid "You will be able to sign up through your existing Google, Facebook or PayPal profiles as well."
209
  msgstr "Você conseguirá iniciar sessão atráves dos seus perfis existentes do Google, Facebook ou PayPal."
210
+
211
  msgid "Find your Store ID"
212
  msgstr "Obtenha a sua ID de loja"
213
+
214
  msgid "Store ID is a unique identifier of any Ecwid store, it consists of several digits. You can find it on the \"Dashboard\" page of Ecwid control panel. Also the Store ID will be sent in the Welcome email after the registration."
215
  msgstr "ID de loja é um identificador único de qualquer loja Ecwid, consiste em vários digitos. Poderá encontrá-lo no \"Painel\" da página \"Painel de Controle\" da Ecwid. Mais, a ID de loja será enviada na mensagem de correio eletrônico de boas-vindas após o registo. "
216
+
217
  msgid "Enter your Store ID"
218
  msgstr "Insira a sua ID de Loja"
219
+
220
  msgid "Enter your Store ID here:"
221
  msgstr "Insira a sua ID de Loja aqui:"
222
+
223
  msgid "Store ID"
224
  msgstr "ID de Loja "
225
+
226
  msgid "Save and connect your Ecwid store to the site"
227
  msgstr "Salve e conete a sua loja Ecwid ao sítio"
228
+
229
  msgid "Questions? Visit <a href=\"http://help.ecwid.com/?source=wporg\">Ecwid support center</a>"
230
  msgstr "Questões? Visite <a href=\"http://help.ecwid.com/?source=wporg\"> Centro de Apoio Ecwid</a>"
231
+
232
  msgid "Congratulations!"
233
  msgstr "Parabéns!"
234
+
235
  msgid "Your Ecwid store is now connected to your WordPress website"
236
  msgstr "A sua loja Ecwid está agora conetada ao seu sítio WorkPress"
237
+
238
  msgid "Greetings!"
239
  msgstr "Saudações!"
240
+
241
  msgid "Your Ecwid store is connected to your WordPress website"
242
  msgstr "A sua loja Ecwid está agora conetada ao seu sítio WorkPress"
243
+
244
  msgid "Control panel"
245
  msgstr "Painel de Controle"
246
+
247
  msgid "Account status"
248
  msgstr "Estado de Conta"
249
+
250
  msgid "Paid"
251
  msgstr "Pago"
252
+
253
  msgid "Free"
254
  msgstr "Grátis"
255
+
256
  msgid "Thank you for supporting Ecwid!"
257
  msgstr "Obrigado por apoiar Ecwid!"
258
+
259
  msgid "Upgrade to get access to cool premium features."
260
  msgstr "Atualize para ter acesso a características premium convenientes."
261
+
262
  msgid "Billing and plans"
263
  msgstr ""
264
+
265
  msgid "Upgrade"
266
  msgstr ""
267
+
268
  msgid "If you want to connect another Ecwid store, you can <a %s>disconnect the current one and change Store ID</a>."
269
  msgstr ""
lib/EcwidCatalog.php CHANGED
@@ -19,6 +19,17 @@ class EcwidCatalog
19
  $this->__construct($store_id);
20
  }
21
 
 
 
 
 
 
 
 
 
 
 
 
22
  function get_product($id)
23
  {
24
  $params = array
@@ -31,22 +42,26 @@ class EcwidCatalog
31
  $product = $batch_result["p"];
32
  $profile = $batch_result["pf"];
33
 
34
- $return = '';
35
 
36
  if (is_array($product))
37
  {
38
 
39
- $return = '<div itemscope itemtype="http://schema.org/Product">';
40
- $return .= '<h2 class="ecwid_catalog_product_name" itemprop="name">' . esc_html($product["name"]) . '</h2>';
41
- $return .= '<p class="ecwid_catalog_product_sku" itemprop="sku">' . esc_html($product["sku"]) . '</p>';
42
 
43
  if (!empty($product["thumbnailUrl"]))
44
  {
45
- $return .= sprintf(
46
- '<div class="ecwid_catalog_product_image"><img itemprop="image" src="%s" alt="%s" /></div>',
47
- esc_attr($product['thumbnailUrl']),
48
- esc_attr($product['name'] . ' ' . $product['sku'])
 
 
 
49
  );
 
50
  }
51
 
52
  if(is_array($product["categories"]))
@@ -55,36 +70,40 @@ class EcwidCatalog
55
  {
56
  if($ecwid_category["defaultCategory"] == true)
57
  {
58
- $return .= '<div class="ecwid_catalog_product_category">' . esc_html($ecwid_category['name']) . '</div>';
59
  }
60
  }
61
  }
62
 
63
- $return .= '<div class="ecwid_catalog_product_price" itemprop="offers" itemscope itemtype="http://schema.org/Offer">';
64
- $return .= __('Price', 'ecwid-shopping-cart') . ': <span itemprop="price">' . esc_html($product["price"]) . '</span>&nbsp;';
65
 
66
- if (!isset($product['quantity']) || (isset($product['quantity']) && $product['quantity'] > 0))
67
- {
68
- $return .= '<div class="ecwid_catalog_quantity" itemprop="availability" itemscope itemtype="http://schema.org/InStock"><span>In Stock</span></div>';
69
  }
 
70
 
71
- $return .= '<span itemprop="priceCurrency">' . esc_html($profile['currency']) . '</span></div>';
72
-
73
- $return .= '<div class="ecwid_catalog_product_description" itemprop="description">'
74
- . $product['description']
75
- . '</div>';
76
 
77
  if (is_array($product['attributes']) && !empty($product['attributes'])) {
78
 
79
  foreach ($product['attributes'] as $attribute) {
80
  if (trim($attribute['value']) != '') {
81
- $return .= '<div class="ecwid_catalog_product_attribute">' . $attribute['name'] . ':';
 
 
 
82
  if (isset($attribute['internalName']) && $attribute['internalName'] == 'Brand') {
83
- $return .= '<span itemprop="brand">' . $attribute['value'] . '</span>';
84
  } else {
85
- $return .= $attribute['value'];
86
  }
87
- $return .= '</div>';
 
 
88
  }
89
  }
90
  }
@@ -94,45 +113,47 @@ class EcwidCatalog
94
  $allowed_types = array('TEXTFIELD', 'DATE', 'TEXTAREA', 'SELECT', 'RADIO', 'CHECKBOX');
95
  foreach($product["options"] as $product_options)
96
  {
97
- if (in_array($product_options['type'], $allowed_types)) {
98
- $return .= '<div class="ecwid_catalog_product_options"><span>'
99
- . esc_html($product_options["name"])
100
- . '</span></div>';
101
- } else {
102
- continue;
103
- }
104
  if($product_options["type"] == "TEXTFIELD" || $product_options["type"] == "DATE")
105
  {
106
- $return .='<input type="text" size="40" name="'. esc_attr($product_options["name"]) . '">';
107
  }
108
  if($product_options["type"] == "TEXTAREA")
109
  {
110
- $return .='<textarea name="' . esc_attr($product_options["name"]) . '></textarea>';
111
  }
112
  if ($product_options["type"] == "SELECT")
113
  {
114
- $return .= '<select name='. $product_options["name"].'>';
115
  foreach ($product_options["choices"] as $options_param)
116
  {
117
- $return .= sprintf(
118
- '<option value="%s">%s (%s)</option>',
119
- esc_attr($options_param['text']),
120
- esc_html($options_param['text']),
121
- esc_html($options_param['priceModifier'])
 
 
122
  );
123
  }
124
- $return .= '</select>';
125
  }
126
  if($product_options["type"] == "RADIO")
127
  {
128
  foreach ($product_options["choices"] as $options_param)
129
  {
130
- $return .= sprintf(
131
- '<input type="radio" name="%s" value="%s" />%s (%s)<br />',
132
- esc_attr($product_options['name']),
133
- esc_attr($options_param['text']),
134
- esc_html($options_param['text']),
135
- esc_html($options_param['priceModifier'])
 
 
136
  );
137
  }
138
  }
@@ -140,15 +161,19 @@ class EcwidCatalog
140
  {
141
  foreach ($product_options["choices"] as $options_param)
142
  {
143
- $return .= sprintf(
144
- '<input type="checkbox" name="%s" value="%s" />%s (%s)<br />',
145
- esc_attr($product_options['name']),
146
- esc_attr($options_param['text']),
147
- esc_html($options_param['text']),
148
- esc_html($options_param['priceModifier'])
149
- );
 
 
150
  }
151
  }
 
 
152
  }
153
  }
154
 
@@ -157,16 +182,18 @@ class EcwidCatalog
157
  foreach ($product["galleryImages"] as $galleryimage)
158
  {
159
  if (empty($galleryimage["alt"])) $galleryimage["alt"] = htmlspecialchars($product["name"]);
160
- $return .= sprintf(
161
- '<img src="%s" alt="%s" title="%s" /><br />',
162
- esc_attr($galleryimage['url']),
163
- esc_attr($galleryimage['alt']),
164
- esc_attr($galleryimage['alt'])
 
 
165
  );
166
  }
167
  }
168
 
169
- $return .= "</div>" . PHP_EOL;
170
  }
171
 
172
  return $return;
@@ -191,11 +218,11 @@ class EcwidCatalog
191
  $products = $batch_result["p"];
192
  $profile = $batch_result["pf"];
193
 
194
- $return = '';
195
 
196
  if (!is_null($category)) {
197
- $return .= '<h2>' . esc_html($category['name']) . '</h2>';
198
- $return .= '<div>' . $category['description'] . '</div>';
199
  }
200
 
201
  if (is_array($categories))
@@ -205,11 +232,9 @@ class EcwidCatalog
205
  $category_url = ecwid_get_category_url($category);
206
 
207
  $category_name = $category["name"];
208
- $return .= sprintf(
209
- '<div class="ecwid_catalog_category_name"><a href="%s">%s</a></div>' . PHP_EOL,
210
- esc_attr($category_url),
211
- esc_html($category_name)
212
- );
213
  }
214
  }
215
 
@@ -220,12 +245,14 @@ class EcwidCatalog
220
 
221
  $product_url = ecwid_get_product_url($product);
222
 
223
- $product_name = $product["name"];
224
- $product_price = $product["price"] . "&nbsp;" . $profile["currency"];
225
- $return .= "<div>";
226
- $return .= "<span class='ecwid_product_name'><a href='" . esc_attr($product_url) . "'>" . esc_html($product_name) . "</a></span>";
227
- $return .= "&nbsp;&nbsp;<span class='ecwid_product_price'>" . esc_html($product_price) . "</span>";
228
- $return .= "</div>" . PHP_EOL;
 
 
229
  }
230
  }
231
 
19
  $this->__construct($store_id);
20
  }
21
 
22
+ function _l($code, $indent_change = 0)
23
+ {
24
+ static $indent = 0;
25
+
26
+ if ($indent_change < 0) $indent -= 1;
27
+ $str = str_repeat(' ', $indent) . $code . "\n";
28
+ if ($indent_change > 0) $indent += 1;
29
+
30
+ return $str;
31
+ }
32
+
33
  function get_product($id)
34
  {
35
  $params = array
42
  $product = $batch_result["p"];
43
  $profile = $batch_result["pf"];
44
 
45
+ $return = $this->_l('');
46
 
47
  if (is_array($product))
48
  {
49
 
50
+ $return .= $this->_l('<div itemscope itemtype="http://schema.org/Product">', 1);
51
+ $return .= $this->_l('<h2 class="ecwid_catalog_product_name" itemprop="name">' . esc_html($product["name"]) . '</h2>');
52
+ $return .= $this->_l('<p class="ecwid_catalog_product_sku" itemprop="sku">' . esc_html($product["sku"]) . '</p>');
53
 
54
  if (!empty($product["thumbnailUrl"]))
55
  {
56
+ $return .= $this->_l('<div class="ecwid_catalog_product_image">', 1);
57
+ $return .= $this->_l(
58
+ sprintf(
59
+ '<img itemprop="image" src="%s" alt="%s" />',
60
+ esc_attr($product['thumbnailUrl']),
61
+ esc_attr($product['name'] . ' ' . $product['sku'])
62
+ )
63
  );
64
+ $return .= $this->_l('</div>', -1);
65
  }
66
 
67
  if(is_array($product["categories"]))
70
  {
71
  if($ecwid_category["defaultCategory"] == true)
72
  {
73
+ $return .= $this->_l('<div class="ecwid_catalog_product_category">' . esc_html($ecwid_category['name']) . '</div>');
74
  }
75
  }
76
  }
77
 
78
+ $return .= $this->_l('<div class="ecwid_catalog_product_price" itemprop="offers" itemscope itemtype="http://schema.org/Offer">', 1);
79
+ $return .= $this->_l(__('Price', 'ecwid-shopping-cart') . ': <span itemprop="price">' . esc_html($product["price"]) . '</span>');
80
 
81
+ $return .= $this->_l('<span itemprop="priceCurrency">' . esc_html($profile['currency']) . '</span>');
82
+ if (!isset($product['quantity']) || (isset($product['quantity']) && $product['quantity'] > 0)) {
83
+ $return .= $this->_l('<link itemprop="availability" href="http://schema.org/InStock" />In stock');
84
  }
85
+ $return .= $this->_l('</div>', -1);
86
 
87
+ $return .= $this->_l('<div class="ecwid_catalog_product_description" itemprop="description">', 1);
88
+ $return .= $this->_l($product['description']);
89
+ $return .= $this->_l('</div>', -1);
 
 
90
 
91
  if (is_array($product['attributes']) && !empty($product['attributes'])) {
92
 
93
  foreach ($product['attributes'] as $attribute) {
94
  if (trim($attribute['value']) != '') {
95
+ $return .= $this->_l('<div class="ecwid_catalog_product_attribute">', 1);
96
+
97
+ $attr_string = $attribute['name'] . ':';
98
+
99
  if (isset($attribute['internalName']) && $attribute['internalName'] == 'Brand') {
100
+ $attr_string .= '<span itemprop="brand">' . $attribute['value'] . '</span>';
101
  } else {
102
+ $attr_string .= $attribute['value'];
103
  }
104
+
105
+ $return .= $this->_l($attr_string);
106
+ $return .= $this->_l('</div>', -1);
107
  }
108
  }
109
  }
113
  $allowed_types = array('TEXTFIELD', 'DATE', 'TEXTAREA', 'SELECT', 'RADIO', 'CHECKBOX');
114
  foreach($product["options"] as $product_options)
115
  {
116
+ if (!in_array($product_options['type'], $allowed_types)) continue;
117
+
118
+ $return .= $this->_l('<div class="ecwid_catalog_product_options">', 1);
119
+ $return .=$this->_l('<span>' . esc_html($product_options["name"]) . '</span>');
120
+
 
 
121
  if($product_options["type"] == "TEXTFIELD" || $product_options["type"] == "DATE")
122
  {
123
+ $return .=$this->_l('<input type="text" size="40" name="'. esc_attr($product_options["name"]) . '">');
124
  }
125
  if($product_options["type"] == "TEXTAREA")
126
  {
127
+ $return .=$this->_l('<textarea name="' . esc_attr($product_options["name"]) . '></textarea>');
128
  }
129
  if ($product_options["type"] == "SELECT")
130
  {
131
+ $return .= $this->_l('<select name='. $product_options["name"].'>', 1);
132
  foreach ($product_options["choices"] as $options_param)
133
  {
134
+ $return .= $this->_l(
135
+ sprintf(
136
+ '<option value="%s">%s (%s)</option>',
137
+ esc_attr($options_param['text']),
138
+ esc_html($options_param['text']),
139
+ esc_html($options_param['priceModifier'])
140
+ )
141
  );
142
  }
143
+ $return .= $this->_l('</select>', -1);
144
  }
145
  if($product_options["type"] == "RADIO")
146
  {
147
  foreach ($product_options["choices"] as $options_param)
148
  {
149
+ $return .= $this->_l(
150
+ sprintf(
151
+ '<input type="radio" name="%s" value="%s" />%s (%s)',
152
+ esc_attr($product_options['name']),
153
+ esc_attr($options_param['text']),
154
+ esc_html($options_param['text']),
155
+ esc_html($options_param['priceModifier'])
156
+ )
157
  );
158
  }
159
  }
161
  {
162
  foreach ($product_options["choices"] as $options_param)
163
  {
164
+ $return .= $this->_l(
165
+ sprintf(
166
+ '<input type="checkbox" name="%s" value="%s" />%s (%s)',
167
+ esc_attr($product_options['name']),
168
+ esc_attr($options_param['text']),
169
+ esc_html($options_param['text']),
170
+ esc_html($options_param['priceModifier'])
171
+ )
172
+ );
173
  }
174
  }
175
+
176
+ $return .= $this->_l('</div>', -1);
177
  }
178
  }
179
 
182
  foreach ($product["galleryImages"] as $galleryimage)
183
  {
184
  if (empty($galleryimage["alt"])) $galleryimage["alt"] = htmlspecialchars($product["name"]);
185
+ $return .= $this->_l(
186
+ sprintf(
187
+ '<img src="%s" alt="%s" title="%s" />',
188
+ esc_attr($galleryimage['url']),
189
+ esc_attr($galleryimage['alt']),
190
+ esc_attr($galleryimage['alt'])
191
+ )
192
  );
193
  }
194
  }
195
 
196
+ $return .= $this->_l("</div>", -1);
197
  }
198
 
199
  return $return;
218
  $products = $batch_result["p"];
219
  $profile = $batch_result["pf"];
220
 
221
+ $return = $this->_l('');
222
 
223
  if (!is_null($category)) {
224
+ $return .= $this->_l('<h2>' . esc_html($category['name']) . '</h2>');
225
+ $return .= $this->_l('<div>' . $category['description'] . '</div>');
226
  }
227
 
228
  if (is_array($categories))
232
  $category_url = ecwid_get_category_url($category);
233
 
234
  $category_name = $category["name"];
235
+ $return .= $this->_l('<div class="ecwid_catalog_category_name">', 1);
236
+ $return .= $this->_l('<a href="' . esc_attr($category_url) . '">' . esc_html($category_name) . '</a>');
237
+ $return .= $this->_l('</div>', -1);
 
 
238
  }
239
  }
240
 
245
 
246
  $product_url = ecwid_get_product_url($product);
247
 
248
+ $product_name = $product['name'];
249
+ $product_price = $product['price'] . ' ' . $profile['currency'];
250
+ $return .= $this->_l('<div>', 1);
251
+ $return .= $this->_l('<span class="ecwid_product_name">', 1);
252
+ $return .= $this->_l('<a href="' . esc_attr($product_url) . '">' . esc_html($product_name) . '</a>');
253
+ $return .= $this->_l('</span>', -1);
254
+ $return .= $this->_l('<span class="ecwid_product_price">' . esc_html($product_price) . '</span>');
255
+ $return .= $this->_l('</div>', -1);
256
  }
257
  }
258
 
lib/themes/class-ecwid-theme-2014.php CHANGED
@@ -12,7 +12,9 @@ class Ecwid_Theme_2014 extends Ecwid_Theme_Base
12
  {
13
  parent::__construct();
14
 
15
- wp_enqueue_style( 'ecwid-theme', 'ecwid-shopping-cart/css/themes/2014.css', array('twentyfourteen-style') );
 
 
16
  }
17
  }
18
 
12
  {
13
  parent::__construct();
14
 
15
+ if (ecwid_page_has_productbrowser()) {
16
+ wp_enqueue_style( 'ecwid-theme', plugins_url( 'ecwid-shopping-cart/css/themes/2014.css' ), array('twentyfourteen-style') );
17
+ }
18
  }
19
  }
20
 
lib/themes/class-ecwid-theme-responsive.php CHANGED
@@ -23,7 +23,7 @@ class Ecwid_Theme_Responsive extends Ecwid_Theme_Base
23
 
24
  add_filter('body_class', array($this, 'body_class'));
25
 
26
- add_action('ecwid_shop_page_created', array($this, 'on_create_store_page'));
27
  add_action('switch_theme', array($this, 'switch_theme'));
28
  }
29
 
23
 
24
  add_filter('body_class', array($this, 'body_class'));
25
 
26
+ add_action('ecwid_store_page_created', array($this, 'on_create_store_page'));
27
  add_action('switch_theme', array($this, 'switch_theme'));
28
  }
29
 
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.0
6
- Stable tag: 2.5
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
 
@@ -51,7 +51,7 @@ New-gen technologies make Ecwid much faster than usual shopping carts regardless
51
 
52
  = Free =
53
 
54
- Although Ecwid is packed with high-value features, Free plan is always available with no setup charges and no transaction fees. Get your store up and running without paying anything. As your business grows, you can consider upgrading to one of our premium plans to get more great features. See also: Ecwid plan and pricing (www.ecwid.com/pricing?source=wporg-plugin-site)
55
 
56
  = See In Action =
57
 
@@ -110,6 +110,11 @@ http://codex.wordpress.org/Managing_Plugins#Installing_Plugins
110
  * [Ecwid site](http://www.ecwid.com/?source=wporg-plugin-site "Ecwid Site")
111
 
112
  == Changelog ==
 
 
 
 
 
113
  = 2.5 =
114
  - **Extended compatibility with the "Responsive" WordPress theme.** Ecwid plugin is by design compatible with any theme and automatically adapts itself to any layout and screen size. This makes your store looks good on any device your customers use. One of the most popular free themes for Wordpress -- Responsive -- is also famous for its responsive design. In this update, we adjusted our plugin to better integrate with Responsive theme and Ecwid stores now look a way better on WordPress sites with Responsive themes to provide better user experience on any device and to generate more sales. If you're thinking which WP theme to choose for your site, you should definitely try the "Responsive" theme with Ecwid.
115
  - **Added compatibility with WordPress 4.0.** WordPress 4.0 is just around the corner and we already prepared our plugin for it. We enhanced the plugin installation process to be compatible with the new plugins management coming with WordPress 4.0 and tested every plugin's function to make sure your stores are ready for the upcoming WordPress update.
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.0
6
+ Stable tag: 2.6
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
 
51
 
52
  = Free =
53
 
54
+ Although Ecwid is packed with high-value features, Free plan is always available with no setup charges and no transaction fees. Get your store up and running without paying anything. As your business grows, you can consider upgrading to one of our premium plans to get more great features. See also: [Ecwid plan and pricing](http://www.ecwid.com/pricing?source=wporg-plugin-site)
55
 
56
  = See In Action =
57
 
110
  * [Ecwid site](http://www.ecwid.com/?source=wporg-plugin-site "Ecwid Site")
111
 
112
  == Changelog ==
113
+ = 2.6 =
114
+ - **Ecwid's new SEO URLs compatibility.** The new Ecwid clean URLs have been released a few days ago for all Ecwid users. Our WordPress plugin is already fully compatible with the new URLs. Your store pages will be better indexed by search engines and the search results will look more attractive as the links themselves will mention the product/category they lead to. Of course, Ecwid will handle all redirects, backward compatibility with the old URL scheme and avoid any duplicate issues. Enjoy the new SE-friendly URLs with no trouble.
115
+ - **Improved formatting of product snippets markup.** In this update we tidied up in the product HTML representations generated for search engines and fixes a few issues in the products data markup. In particular, the price and availability tags have been re-formatted according to the Google recommendations to ensure better search engine results.
116
+ - **A few improvements and fixes for Twenty Fourteen and Responsive themes layout.** Ecwid looks nice on the vast majority of WordPress themes. Additionally, we strive to make it look even better on the most popular themes. This update brings a few more minor layout fixes for the sites with "Responsive" and "Twenty Fourteen" themes installed.
117
+
118
  = 2.5 =
119
  - **Extended compatibility with the "Responsive" WordPress theme.** Ecwid plugin is by design compatible with any theme and automatically adapts itself to any layout and screen size. This makes your store looks good on any device your customers use. One of the most popular free themes for Wordpress -- Responsive -- is also famous for its responsive design. In this update, we adjusted our plugin to better integrate with Responsive theme and Ecwid stores now look a way better on WordPress sites with Responsive themes to provide better user experience on any device and to generate more sales. If you're thinking which WP theme to choose for your site, you should definitely try the "Responsive" theme with Ecwid.
120
  - **Added compatibility with WordPress 4.0.** WordPress 4.0 is just around the corner and we already prepared our plugin for it. We enhanced the plugin installation process to be compatible with the new plugins management coming with WordPress 4.0 and tested every plugin's function to make sure your stores are ready for the upcoming WordPress update.