Version Description
- Updated Italian and Turkish translations.
Download this release
Release Info
Developer | Ecwid |
Plugin | Ecwid Ecommerce Shopping Cart |
Version | 3.4.3 |
Comparing to | |
See all releases |
Code changes from version 3.4.1 to 3.4.3
- ecwid-shopping-cart.php +16 -10
- fonts/ecwid-logo.eot +0 -0
- languages/ecwid-shopping-cart-it_IT.mo +0 -0
- languages/ecwid-shopping-cart-it_IT.po +89 -32
- languages/ecwid-shopping-cart-tr_TR.mo +0 -0
- languages/ecwid-shopping-cart-tr_TR.po +132 -78
- readme.txt +7 -1
ecwid-shopping-cart.php
CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://www.ecwid.com?source=wporg
|
|
5 |
Description: Ecwid is a free full-featured shopping cart. It can be easily integrated with any Wordpress blog and takes less than 5 minutes to set up.
|
6 |
Text Domain: ecwid-shopping-cart
|
7 |
Author: Ecwid Team
|
8 |
-
Version: 3.4.
|
9 |
Author URI: http://www.ecwid.com?source=wporg
|
10 |
*/
|
11 |
|
@@ -417,12 +417,6 @@ function ecwid_check_version()
|
|
417 |
$current_version = $plugin_data['Version'];
|
418 |
$stored_version = get_option('ecwid_plugin_version', null);
|
419 |
|
420 |
-
|
421 |
-
$migration_since_version = get_option('ecwid_plugin_migration_since_version', null);
|
422 |
-
if (is_null($migration_since_version)) {
|
423 |
-
update_option('ecwid_plugin_migration_since_version', $current_version);
|
424 |
-
}
|
425 |
-
|
426 |
$fresh_install = !$stored_version;
|
427 |
$upgrade = $stored_version && version_compare($current_version, $stored_version) > 0;
|
428 |
|
@@ -447,6 +441,19 @@ function ecwid_check_version()
|
|
447 |
|
448 |
add_option('ecwid_use_new_horizontal_categories', '');
|
449 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
450 |
}
|
451 |
|
452 |
function ecwid_migrations_is_original_plugin_version_older_than($version)
|
@@ -846,10 +853,10 @@ function ecwid_content_started($content)
|
|
846 |
|
847 |
function ecwid_wrap_shortcode_content($content, $name, $attrs)
|
848 |
{
|
849 |
-
return "<!-- Ecwid shopping cart plugin v 3.4.
|
850 |
. ecwid_get_scriptjs_code(@$attrs['lang'])
|
851 |
. "<div class=\"ecwid-shopping-cart-$name\">$content</div>"
|
852 |
-
. "<!-- /noptimize --><!-- END Ecwid Shopping Cart v 3.4.
|
853 |
}
|
854 |
|
855 |
function ecwid_get_scriptjs_code($force_lang = null) {
|
@@ -1377,7 +1384,6 @@ function ecwid_uninstall() {
|
|
1377 |
delete_option('ecwid_api_check_time');
|
1378 |
delete_option('ecwid_show_vote_message');
|
1379 |
delete_option("ecwid_sso_secret_key");
|
1380 |
-
delete_option("ecwid_installation_date");
|
1381 |
delete_option('ecwid_hide_appearance_menu');
|
1382 |
delete_option("ecwid_advanced_theme_layout");
|
1383 |
|
5 |
Description: Ecwid is a free full-featured shopping cart. It can be easily integrated with any Wordpress blog and takes less than 5 minutes to set up.
|
6 |
Text Domain: ecwid-shopping-cart
|
7 |
Author: Ecwid Team
|
8 |
+
Version: 3.4.3
|
9 |
Author URI: http://www.ecwid.com?source=wporg
|
10 |
*/
|
11 |
|
417 |
$current_version = $plugin_data['Version'];
|
418 |
$stored_version = get_option('ecwid_plugin_version', null);
|
419 |
|
|
|
|
|
|
|
|
|
|
|
|
|
420 |
$fresh_install = !$stored_version;
|
421 |
$upgrade = $stored_version && version_compare($current_version, $stored_version) > 0;
|
422 |
|
441 |
|
442 |
add_option('ecwid_use_new_horizontal_categories', '');
|
443 |
}
|
444 |
+
|
445 |
+
$migration_since_version = get_option('ecwid_plugin_migration_since_version', null);
|
446 |
+
|
447 |
+
if ($migration_since_version == '3.4' || $migration_since_version == '3.4.1' || is_null($migration_since_version)) {
|
448 |
+
|
449 |
+
$install_date = get_option('ecwid_installation_date');
|
450 |
+
if ($install_date < strtotime("18 September 2015")) {
|
451 |
+
update_option('ecwid_plugin_migration_since_version', '0');
|
452 |
+
} elseif (is_null($migration_since_version)) {
|
453 |
+
update_option('ecwid_plugin_migration_since_version', $current_version);
|
454 |
+
}
|
455 |
+
}
|
456 |
+
|
457 |
}
|
458 |
|
459 |
function ecwid_migrations_is_original_plugin_version_older_than($version)
|
853 |
|
854 |
function ecwid_wrap_shortcode_content($content, $name, $attrs)
|
855 |
{
|
856 |
+
return "<!-- Ecwid shopping cart plugin v 3.4.3 --><!-- noptimize -->"
|
857 |
. ecwid_get_scriptjs_code(@$attrs['lang'])
|
858 |
. "<div class=\"ecwid-shopping-cart-$name\">$content</div>"
|
859 |
+
. "<!-- /noptimize --><!-- END Ecwid Shopping Cart v 3.4.3 -->";
|
860 |
}
|
861 |
|
862 |
function ecwid_get_scriptjs_code($force_lang = null) {
|
1384 |
delete_option('ecwid_api_check_time');
|
1385 |
delete_option('ecwid_show_vote_message');
|
1386 |
delete_option("ecwid_sso_secret_key");
|
|
|
1387 |
delete_option('ecwid_hide_appearance_menu');
|
1388 |
delete_option("ecwid_advanced_theme_layout");
|
1389 |
|
fonts/ecwid-logo.eot
DELETED
Binary file
|
languages/ecwid-shopping-cart-it_IT.mo
CHANGED
Binary file
|
languages/ecwid-shopping-cart-it_IT.po
CHANGED
@@ -58,8 +58,11 @@ msgstr "Avanzate"
|
|
58 |
msgid "Hidden category"
|
59 |
msgstr "Categoria nascosta"
|
60 |
|
61 |
-
msgid "
|
62 |
-
msgstr "
|
|
|
|
|
|
|
63 |
|
64 |
msgid "Ecwid Badge"
|
65 |
msgstr "Ecwid Badge"
|
@@ -79,42 +82,51 @@ msgstr "Ecwid shopping cart"
|
|
79 |
msgid "Ecwid e-commerce widgets"
|
80 |
msgstr "Widget Ecwid e-commerce "
|
81 |
|
82 |
-
msgid "
|
83 |
-
msgstr "
|
|
|
|
|
|
|
84 |
|
85 |
-
msgid "
|
86 |
-
msgstr "
|
87 |
|
88 |
-
msgid "
|
89 |
-
msgstr "
|
90 |
|
91 |
-
msgid "
|
92 |
-
msgstr "
|
93 |
|
94 |
-
msgid "
|
95 |
-
msgstr "
|
96 |
|
97 |
-
msgid "
|
98 |
-
msgstr "
|
99 |
|
100 |
-
msgid "
|
101 |
-
msgstr "
|
102 |
|
103 |
-
msgid "
|
104 |
-
msgstr "
|
105 |
|
106 |
-
msgid "
|
107 |
-
msgstr "
|
108 |
|
109 |
msgid "Shop"
|
110 |
msgstr "Negozio"
|
111 |
|
112 |
-
msgid "
|
113 |
-
msgstr "
|
114 |
|
115 |
msgid "Recently Viewed Products"
|
116 |
msgstr "Prodotti visti recentemente"
|
117 |
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
msgid "Number of products to show"
|
119 |
msgstr "Numero di prodotti da mostrare"
|
120 |
|
@@ -202,6 +214,21 @@ msgstr "Questa funzione opzionale consente di abilitare la Sign-on Secret Key, q
|
|
202 |
msgid "In order to enable this feature, opt to use a secret key. You will find this key in your Ecwid control panel, at \"System Settings > Apps > Legacy API Keys > Single Sign-On Secret Key\" page. This feature is available for <a href=\"http://www.ecwid.com/compare-plans.html\" target=\"_blank\">paid users</a> only."
|
203 |
msgstr "Per abilitare questa funzione è necessario essere in possesso di una chiave segreta. Troverai questo pulsante nel pannello di controllo Ecwid, in \"Impostazioni di sistema > Apps > Single Sign-on API secret key\" . Questa funzione è disponibile per tutti gli <a href=\"http://www.ecwid.com/compare-plans.html\" target=\"_blank\">utenti paganti</a>."
|
204 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
205 |
msgid "Save changes"
|
206 |
msgstr "Salva modifiche"
|
207 |
|
@@ -214,14 +241,14 @@ msgstr "Mostra casella di ricerca sopra prodotti"
|
|
214 |
msgid "Or you can add search box to your website's toolbar using <a href=\"%s\">WordPress native widgets</a>"
|
215 |
msgstr "Puoi anche aggiungere alla barra degli strumenti la casella di ricerca del tuo sito web utilizzando i <a href=\"%s\">widgets nativi di WordPress</a>"
|
216 |
|
217 |
-
msgid "Display
|
218 |
-
msgstr "
|
219 |
|
220 |
msgid "Or you can add vertical categories to your website's toolbar using <a href=\"%s\">WordPress native widgets</a>"
|
221 |
msgstr "Puoi anche aggiungere alla barra degli strumenti le categorie verticali utilizzando i <a href=\"%s\">widgets nativi di WordPress</a>"
|
222 |
|
223 |
-
msgid "Enable minicart attached to
|
224 |
-
msgstr "
|
225 |
|
226 |
msgid "You should disable this option, if you added minicart to your website's sidebar"
|
227 |
msgstr "È necessario disattivare questa opzione, se hai aggiunto il carrello al tuo sito web sidebar"
|
@@ -262,15 +289,27 @@ msgstr "Modalità di visualizzazione predefinita nei risultati di ricerca"
|
|
262 |
msgid "Connect your store<br /> to this WordPress site"
|
263 |
msgstr "Collega il tuo negozio<br /> a questo sito WordPress"
|
264 |
|
|
|
|
|
|
|
265 |
msgid "Connect Ecwid store"
|
266 |
msgstr "Collega Ecwid store"
|
267 |
|
|
|
|
|
|
|
268 |
msgid "After clicking button you need to login and accept permissions to use our plugin"
|
269 |
msgstr "Dopo aver cliccato il pulsante devi accedere e accettare le autorizzazioni necessarie per utilizzare il nostro plugin"
|
270 |
|
271 |
msgid "Connection error - after clicking button you need to login and accept permissions to use our plugin. Please, try again."
|
272 |
msgstr "Errore di connessione - dopo aver cliccato il pulsante, è necessario accedere e accettare le autorizzazioni necessarie per utilizzare il nostro plugin. Per favore, riprova."
|
273 |
|
|
|
|
|
|
|
|
|
|
|
|
|
274 |
msgid "Don't have Ecwid account? Create it here"
|
275 |
msgstr "Non hai un accont Ecwid? Crealo qui"
|
276 |
|
@@ -382,8 +421,8 @@ msgstr "Ecwid i comatibile con il tuo<br>“%s” tema WordPress<br>e altri temi
|
|
382 |
msgid "Free and always up to date"
|
383 |
msgstr "Gratuito e sempre aggiornato"
|
384 |
|
385 |
-
msgid "Free plan always available with tons of features<br>at no additional cost.
|
386 |
-
msgstr "
|
387 |
|
388 |
msgid "Responsive design"
|
389 |
msgstr "Design eccezionale"
|
@@ -400,8 +439,8 @@ msgstr "Checkout sicuro con oltre 40<br />opzioni di pagamento"
|
|
400 |
msgid "Global Reach"
|
401 |
msgstr "Portata globale"
|
402 |
|
403 |
-
msgid "More than
|
404 |
-
msgstr "
|
405 |
|
406 |
msgid "Start selling <br>on your WordPress <nobr>site for free</nobr>"
|
407 |
msgstr "Inizia a vendere <br>sul tuo WordPress <nobr>sito gratis</nobr>"
|
@@ -439,8 +478,8 @@ msgstr "Mostra ricerca"
|
|
439 |
msgid "Show minicart"
|
440 |
msgstr "Mostra carrello"
|
441 |
|
442 |
-
msgid "Show
|
443 |
-
msgstr "
|
444 |
|
445 |
msgid "Additionally, you can add store controls to your website's toolbar using <a %s>WordPress native widgets</a>"
|
446 |
msgstr "Inoltre, è possibile aggiungere altri controlli alla barra degli strumenti del tuo sito Web utilizzando i <a %s>widgets nativi WordPress</a>"
|
@@ -457,3 +496,21 @@ msgstr "Qui verrà mostrato il tuo negozio!"
|
|
457 |
msgid "Demo Store"
|
458 |
msgstr "Negozio demo"
|
459 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
msgid "Hidden category"
|
59 |
msgstr "Categoria nascosta"
|
60 |
|
61 |
+
msgid "Recommendations for Your Online Store"
|
62 |
+
msgstr "Consigli per il tuo negozio Online"
|
63 |
+
|
64 |
+
msgid "Do you like Ecwid and want to help it grow? You can add this fancy 'Powered by Ecwid' badge on your site to show your visitors that you're a proud user of Ecwid."
|
65 |
+
msgstr "Do you like Ecwid and want to help it grow? You can add this fancy 'Powered by Ecwid' badge on your site to show your visitors that you're a proud user of Ecwid."
|
66 |
|
67 |
msgid "Ecwid Badge"
|
68 |
msgstr "Ecwid Badge"
|
82 |
msgid "Ecwid e-commerce widgets"
|
83 |
msgstr "Widget Ecwid e-commerce "
|
84 |
|
85 |
+
msgid "Adds a cart widget for customer to see the products they added to the cart."
|
86 |
+
msgstr "Adds a cart widget for customer to see the products they added to the cart."
|
87 |
+
|
88 |
+
msgid "Shopping Cart"
|
89 |
+
msgstr "Shopping Cart"
|
90 |
|
91 |
+
msgid "Adds a compact cart widget for customer to see the products they added to the cart."
|
92 |
+
msgstr "Adds a compact cart widget for customer to see the products they added to the cart."
|
93 |
|
94 |
+
msgid "Shopping Cart (Mini)"
|
95 |
+
msgstr "Shopping Cart (Mini)"
|
96 |
|
97 |
+
msgid "Displays a simple search box for your customers to find a product in your storex"
|
98 |
+
msgstr "Displays a simple search box for your customers to find a product in your storex"
|
99 |
|
100 |
+
msgid "Product Search"
|
101 |
+
msgstr "Product Search"
|
102 |
|
103 |
+
msgid "Adds vertical categories block to let the customer navigate your store."
|
104 |
+
msgstr "Adds vertical categories block to let the customer navigate your store."
|
105 |
|
106 |
+
msgid "Store Categories"
|
107 |
+
msgstr "Store Categories"
|
108 |
|
109 |
+
msgid "Displays a link to the store page in sidebar for customer to quickly access your store from any page on the site."
|
110 |
+
msgstr "Displays a link to the store page in sidebar for customer to quickly access your store from any page on the site."
|
111 |
|
112 |
+
msgid "Store Page Link"
|
113 |
+
msgstr "Store Page Link"
|
114 |
|
115 |
msgid "Shop"
|
116 |
msgstr "Negozio"
|
117 |
|
118 |
+
msgid "Displays a list of products recently viewed by the customer to easily return to the products they saw in your shop."
|
119 |
+
msgstr "Displays a list of products recently viewed by the customer to easily return to the products they saw in your shop."
|
120 |
|
121 |
msgid "Recently Viewed Products"
|
122 |
msgstr "Prodotti visti recentemente"
|
123 |
|
124 |
+
msgid "You have not viewed any product yet. Open store."
|
125 |
+
msgstr "You have not viewed any product yet. Open store."
|
126 |
+
|
127 |
+
msgid "Store Link Title"
|
128 |
+
msgstr "Titolo link per il negozio"
|
129 |
+
|
130 |
msgid "Number of products to show"
|
131 |
msgstr "Numero di prodotti da mostrare"
|
132 |
|
214 |
msgid "In order to enable this feature, opt to use a secret key. You will find this key in your Ecwid control panel, at \"System Settings > Apps > Legacy API Keys > Single Sign-On Secret Key\" page. This feature is available for <a href=\"http://www.ecwid.com/compare-plans.html\" target=\"_blank\">paid users</a> only."
|
215 |
msgstr "Per abilitare questa funzione è necessario essere in possesso di una chiave segreta. Troverai questo pulsante nel pannello di controllo Ecwid, in \"Impostazioni di sistema > Apps > Single Sign-on API secret key\" . Questa funzione è disponibile per tutti gli <a href=\"http://www.ecwid.com/compare-plans.html\" target=\"_blank\">utenti paganti</a>."
|
216 |
|
217 |
+
msgid "Chameleon skin <sup>beta</sup>"
|
218 |
+
msgstr "Tema Chameleon <sup>beta</sup>"
|
219 |
+
|
220 |
+
msgid "Automatic adjustment of your store design to your Wordpress theme. Whatever Wordpress theme you use, Ecwid will detect predominant colors and font and use them in your product catalog."
|
221 |
+
msgstr "Regolazione automatica del design del tuo negozio per il tema Wordpress. Qualsiasi tema Wordpress utilizzi, Ecwid rileverà font e colori predominanti e li utilizzerà nel tuo catalogo prodotti."
|
222 |
+
|
223 |
+
msgid "Please note this functionality is in beta. So if you run into difficulties or find problems with Chameleon, please <a %s>let us know</a>."
|
224 |
+
msgstr "Please note this functionality is in beta. So if you run into difficulties or find problems with Chameleon, please <a %s>let us know</a>."
|
225 |
+
|
226 |
+
msgid "Enable the new category menu"
|
227 |
+
msgstr "Enable the new category menu"
|
228 |
+
|
229 |
+
msgid "The new category menu looks better and is more mobile-friendly. If you haven't yet added category menu to your store page, you can do that in the <a %s>store page editor</a> (enable the \"Show categories\" option)"
|
230 |
+
msgstr "The new category menu looks better and is more mobile-friendly. If you haven't yet added category menu to your store page, you can do that in the <a %s>store page editor</a> (enable the \"Show categories\" option)"
|
231 |
+
|
232 |
msgid "Save changes"
|
233 |
msgstr "Salva modifiche"
|
234 |
|
241 |
msgid "Or you can add search box to your website's toolbar using <a href=\"%s\">WordPress native widgets</a>"
|
242 |
msgstr "Puoi anche aggiungere alla barra degli strumenti la casella di ricerca del tuo sito web utilizzando i <a href=\"%s\">widgets nativi di WordPress</a>"
|
243 |
|
244 |
+
msgid "Display categories above products"
|
245 |
+
msgstr "Display categories above products"
|
246 |
|
247 |
msgid "Or you can add vertical categories to your website's toolbar using <a href=\"%s\">WordPress native widgets</a>"
|
248 |
msgstr "Puoi anche aggiungere alla barra degli strumenti le categorie verticali utilizzando i <a href=\"%s\">widgets nativi di WordPress</a>"
|
249 |
|
250 |
+
msgid "Enable minicart attached to categories"
|
251 |
+
msgstr "Enable minicart attached to categories"
|
252 |
|
253 |
msgid "You should disable this option, if you added minicart to your website's sidebar"
|
254 |
msgstr "È necessario disattivare questa opzione, se hai aggiunto il carrello al tuo sito web sidebar"
|
289 |
msgid "Connect your store<br /> to this WordPress site"
|
290 |
msgstr "Collega il tuo negozio<br /> a questo sito WordPress"
|
291 |
|
292 |
+
msgid "Enter your Store ID"
|
293 |
+
msgstr "Enter your Store ID"
|
294 |
+
|
295 |
msgid "Connect Ecwid store"
|
296 |
msgstr "Collega Ecwid store"
|
297 |
|
298 |
+
msgid "Save and connect"
|
299 |
+
msgstr "Save and connect"
|
300 |
+
|
301 |
msgid "After clicking button you need to login and accept permissions to use our plugin"
|
302 |
msgstr "Dopo aver cliccato il pulsante devi accedere e accettare le autorizzazioni necessarie per utilizzare il nostro plugin"
|
303 |
|
304 |
msgid "Connection error - after clicking button you need to login and accept permissions to use our plugin. Please, try again."
|
305 |
msgstr "Errore di connessione - dopo aver cliccato il pulsante, è necessario accedere e accettare le autorizzazioni necessarie per utilizzare il nostro plugin. Per favore, riprova."
|
306 |
|
307 |
+
msgid "Where to find your Store ID:"
|
308 |
+
msgstr "Where to find your Store ID:"
|
309 |
+
|
310 |
+
msgid "Store ID is a unique identifier of your Ecwid account. You can find it in your Ecwid control panel: open the <a %s>Dashboard page</a> and find the \"<b>Store ID: NNNNNNN</b>\" text, where <b>NNNNNNN</b> is your Store ID."
|
311 |
+
msgstr "Store ID is a unique identifier of your Ecwid account. You can find it in your Ecwid control panel: open the <a %s>Dashboard page</a> and find the \"<b>Store ID: NNNNNNN</b>\" text, where <b>NNNNNNN</b> is your Store ID."
|
312 |
+
|
313 |
msgid "Don't have Ecwid account? Create it here"
|
314 |
msgstr "Non hai un accont Ecwid? Crealo qui"
|
315 |
|
421 |
msgid "Free and always up to date"
|
422 |
msgstr "Gratuito e sempre aggiornato"
|
423 |
|
424 |
+
msgid "Free plan always available with tons of features<br>at no additional cost. Updates are seamless, automatic<br>and free of charge."
|
425 |
+
msgstr "Free plan always available with tons of features<br>at no additional cost. Updates are seamless, automatic<br>and free of charge."
|
426 |
|
427 |
msgid "Responsive design"
|
428 |
msgstr "Design eccezionale"
|
439 |
msgid "Global Reach"
|
440 |
msgstr "Portata globale"
|
441 |
|
442 |
+
msgid "More than 800,000 merchants in 175 countries"
|
443 |
+
msgstr "More than 800,000 merchants in 175 countries"
|
444 |
|
445 |
msgid "Start selling <br>on your WordPress <nobr>site for free</nobr>"
|
446 |
msgstr "Inizia a vendere <br>sul tuo WordPress <nobr>sito gratis</nobr>"
|
478 |
msgid "Show minicart"
|
479 |
msgstr "Mostra carrello"
|
480 |
|
481 |
+
msgid "Show categories"
|
482 |
+
msgstr "Show categories"
|
483 |
|
484 |
msgid "Additionally, you can add store controls to your website's toolbar using <a %s>WordPress native widgets</a>"
|
485 |
msgstr "Inoltre, è possibile aggiungere altri controlli alla barra degli strumenti del tuo sito Web utilizzando i <a %s>widgets nativi WordPress</a>"
|
496 |
msgid "Demo Store"
|
497 |
msgstr "Negozio demo"
|
498 |
|
499 |
+
msgid "Sell On The Go with Ecwid iOS Application"
|
500 |
+
msgstr "Sell On The Go with Ecwid iOS Application"
|
501 |
+
|
502 |
+
msgid "Ecwid iOS app allows you to manage your online store, sell your products on the go, and accept payments with your phone. Just download the Ecwid app, connect it to your Ecwid shop and have your sales at your fingertips!"
|
503 |
+
msgstr "Ecwid iOS app allows you to manage your online store, sell your products on the go, and accept payments with your phone. Just download the Ecwid app, connect it to your Ecwid shop and have your sales at your fingertips!"
|
504 |
+
|
505 |
+
msgid "Get Your Products Found on Google using XML Sitemap"
|
506 |
+
msgstr "Get Your Products Found on Google using XML Sitemap"
|
507 |
+
|
508 |
+
msgid "Free Google XML Sitemaps plugin creates a sitemap that includes your store product links. This makes your product pages more visible to search engines and appear in the search results."
|
509 |
+
msgstr "Free Google XML Sitemaps plugin creates a sitemap that includes your store product links. This makes your product pages more visible to search engines and appear in the search results."
|
510 |
+
|
511 |
+
msgid "Add Product Slider to Your Store"
|
512 |
+
msgstr "Add Product Slider to Your Store"
|
513 |
+
|
514 |
+
msgid "Add a fancy product slider to your site using a free WP Widgets Avalanche plugin which works perfectly with Ecwid"
|
515 |
+
msgstr "Add a fancy product slider to your site using a free WP Widgets Avalanche plugin which works perfectly with Ecwid"
|
516 |
+
|
languages/ecwid-shopping-cart-tr_TR.mo
CHANGED
Binary file
|
languages/ecwid-shopping-cart-tr_TR.po
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
msgid "Ecwid Shopping Cart"
|
2 |
-
msgstr "Ecwid
|
3 |
|
4 |
msgid "Ecwid Team"
|
5 |
msgstr "Ecwid Team"
|
6 |
|
7 |
msgid "Ecwid is a free full-featured shopping cart. It can be easily integrated with any Wordpress blog and takes less than 5 minutes to set up."
|
8 |
-
msgstr "Ecwid
|
9 |
|
10 |
msgid "Get help"
|
11 |
msgstr "Yardım alın"
|
@@ -35,13 +35,13 @@ msgid "Ecwid shopping cart settings"
|
|
35 |
msgstr "Ecwid alışveriş sepeti ayarları"
|
36 |
|
37 |
msgid "Ecwid Store"
|
38 |
-
msgstr "
|
39 |
|
40 |
msgid "Setup"
|
41 |
msgstr "Kurulum"
|
42 |
|
43 |
msgid "Dashboard"
|
44 |
-
msgstr "
|
45 |
|
46 |
msgid "Appearance settings"
|
47 |
msgstr "Görünüm ayarları"
|
@@ -58,8 +58,11 @@ msgstr "Gelişmiş"
|
|
58 |
msgid "Hidden category"
|
59 |
msgstr "Gizli kategori"
|
60 |
|
61 |
-
msgid "
|
62 |
-
msgstr "
|
|
|
|
|
|
|
63 |
|
64 |
msgid "Ecwid Badge"
|
65 |
msgstr "Ecwid Yaması"
|
@@ -79,42 +82,51 @@ msgstr "Ecwid alışveriş sepeti"
|
|
79 |
msgid "Ecwid e-commerce widgets"
|
80 |
msgstr "Ecwid e-ticaret widgetleri"
|
81 |
|
82 |
-
msgid "
|
83 |
-
msgstr "
|
84 |
|
85 |
-
msgid "
|
86 |
-
msgstr "
|
87 |
|
88 |
-
msgid "
|
89 |
-
msgstr "
|
90 |
|
91 |
-
msgid "
|
92 |
-
msgstr "
|
93 |
|
94 |
-
msgid "
|
95 |
-
msgstr "
|
96 |
|
97 |
-
msgid "
|
98 |
-
msgstr "
|
99 |
|
100 |
-
msgid "
|
101 |
-
msgstr "
|
102 |
|
103 |
-
msgid "
|
104 |
-
msgstr "
|
105 |
|
106 |
-
msgid "
|
107 |
-
msgstr "
|
|
|
|
|
|
|
108 |
|
109 |
msgid "Shop"
|
110 |
-
msgstr "
|
111 |
|
112 |
-
msgid "
|
113 |
-
msgstr "
|
114 |
|
115 |
msgid "Recently Viewed Products"
|
116 |
msgstr "Recently Viewed Products"
|
117 |
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
msgid "Number of products to show"
|
119 |
msgstr "Number of products to show"
|
120 |
|
@@ -161,13 +173,13 @@ msgid "Rate Ecwid at WordPress.org"
|
|
161 |
msgstr "WordPress.org sitesinde Ecwid uygulamasını oylayın"
|
162 |
|
163 |
msgid "Add Store"
|
164 |
-
msgstr "
|
165 |
|
166 |
msgid "Edit Store"
|
167 |
-
msgstr "
|
168 |
|
169 |
msgid "Edit Appearance"
|
170 |
-
msgstr "
|
171 |
|
172 |
msgid "Price"
|
173 |
msgstr "Fiyat"
|
@@ -199,8 +211,23 @@ msgstr "Tek giriş (Single Sign-On) Gizli Anahtarı"
|
|
199 |
msgid "Single Sign-On Secret Key is an option that allows your customers access to your WordPress site as well as the Ecwid shopping cart. When customers log in to your site, they will automatically be logged in to your Ecwid store as well. It makes sense to enable this feature if your visitors actually create accounts in your WordPress website."
|
200 |
msgstr "Tek giriş (Single Sign-On) gizli anahtarı müşterilerinizin WordPress sayfanızı Ecwid sayfanızı ziyaret eder gibi görüntülemelerini sağlar. Müşteriler sitenize giriş yaptıklarında otomatik olarak Ecwid mağazanıza da giriş yaparlar. Ziyaretçileriniz WordPress sayfanızda hesap oluşturmaya başladığında bu özelliği kullanabilirsiniz."
|
201 |
|
202 |
-
msgid "In order to enable this feature, opt to use a secret key. You will find this key in your Ecwid control panel, at \"System Settings > API > Single Sign-On
|
203 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
204 |
|
205 |
msgid "Save changes"
|
206 |
msgstr "Değişiklikleri kaydet"
|
@@ -214,14 +241,14 @@ msgstr "Arama kutusunu ürünlerin üzerinde göster"
|
|
214 |
msgid "Or you can add search box to your website's toolbar using <a href=\"%s\">WordPress native widgets</a>"
|
215 |
msgstr "Ya da arama kutusunu <a href=\"%s\">WordPress yerleşik widgetlerını</a> kullanarak ekleyebilirsiniz"
|
216 |
|
217 |
-
msgid "Display
|
218 |
-
msgstr "
|
219 |
|
220 |
msgid "Or you can add vertical categories to your website's toolbar using <a href=\"%s\">WordPress native widgets</a>"
|
221 |
msgstr "Ya da dikey kategorileri sitenin araç çubuğuna <a href=\"%s\">WordPress yerleşik widgetlerını</a> kullanarak ekleyebilirsiniz"
|
222 |
|
223 |
-
msgid "Enable minicart attached to
|
224 |
-
msgstr "
|
225 |
|
226 |
msgid "You should disable this option, if you added minicart to your website's sidebar"
|
227 |
msgstr "Web sitenize küçük alışveriş sepeti eklediyseniz bu ayarı devre dışı bırakınız"
|
@@ -262,26 +289,38 @@ msgstr "Arama sonuçlarının varsayılan görünümü"
|
|
262 |
msgid "Connect your store<br /> to this WordPress site"
|
263 |
msgstr "Connect your store<br /> to this WordPress site"
|
264 |
|
|
|
|
|
|
|
265 |
msgid "Connect Ecwid store"
|
266 |
msgstr "Connect Ecwid store"
|
267 |
|
|
|
|
|
|
|
268 |
msgid "After clicking button you need to login and accept permissions to use our plugin"
|
269 |
-
msgstr "
|
270 |
|
271 |
msgid "Connection error - after clicking button you need to login and accept permissions to use our plugin. Please, try again."
|
272 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
273 |
|
274 |
msgid "Don't have Ecwid account? Create it here"
|
275 |
-
msgstr "
|
276 |
|
277 |
-
msgid "Questions? Visit <a
|
278 |
-
msgstr "
|
279 |
|
280 |
msgid "Store ID"
|
281 |
msgstr "Mağaza ID"
|
282 |
|
283 |
msgid "Disconnect store"
|
284 |
-
msgstr "
|
285 |
|
286 |
msgid "Congratulations!"
|
287 |
msgstr "Tebrikler!"
|
@@ -296,46 +335,46 @@ msgid "Your Ecwid store is connected<br /> to your WordPress website"
|
|
296 |
msgstr "Your Ecwid store is connected<br /> to your WordPress website"
|
297 |
|
298 |
msgid "Open control panel"
|
299 |
-
msgstr "
|
300 |
|
301 |
msgid "Plugin is installed successfully!"
|
302 |
-
msgstr "
|
303 |
|
304 |
-
msgid "There are just a few steps left to start selling<br />on your WordPress site"
|
305 |
-
msgstr "There are just a few steps left to start selling<br />on your WordPress site"
|
306 |
|
307 |
-
msgid "There are few little steps left to start selling<br />on your WordPress site"
|
308 |
-
msgstr "There are few little steps left to start selling<br />on your WordPress site"
|
309 |
|
310 |
msgid "Register"
|
311 |
-
msgstr "
|
312 |
|
313 |
-
msgid "Create a free Ecwid account to manage your
|
314 |
-
msgstr "Create a free Ecwid account to manage your
|
315 |
|
316 |
msgid "Connect"
|
317 |
-
msgstr "
|
318 |
|
319 |
-
msgid "Add your Ecwid store to your site<
|
320 |
-
msgstr "Add your Ecwid store to your site<
|
321 |
|
322 |
-
msgid "Connect your Ecwid store to this site<
|
323 |
-
msgstr "Connect your Ecwid store to this site<
|
324 |
|
325 |
msgid "Start selling"
|
326 |
-
msgstr "
|
327 |
|
328 |
msgid "Your storefront is ready"
|
329 |
msgstr "Your storefront is ready"
|
330 |
|
331 |
msgid "Create Ecwid store"
|
332 |
-
msgstr "
|
333 |
|
334 |
msgid "Connect your store"
|
335 |
-
msgstr "
|
336 |
|
337 |
msgid "Free registration, No credit card required"
|
338 |
-
msgstr "
|
339 |
|
340 |
msgid "Connection error: please click the button again and give permissions for this plugin<br /> to show your Ecwid store on this site."
|
341 |
msgstr "Connection error: please click the button again and give permissions for this plugin<br /> to show your Ecwid store on this site."
|
@@ -353,16 +392,16 @@ msgid "Don't have an Ecwid account?"
|
|
353 |
msgstr "Don't have an Ecwid account?"
|
354 |
|
355 |
msgid "Register at Ecwid for free"
|
356 |
-
msgstr "
|
357 |
|
358 |
msgid "No credit card required"
|
359 |
-
msgstr "
|
360 |
|
361 |
msgid "Get ready to sell online"
|
362 |
msgstr "Get ready to sell online"
|
363 |
|
364 |
msgid "Sell Everywhere<br>with your Ecwid store"
|
365 |
-
msgstr "
|
366 |
|
367 |
msgid "Start selling on your WordPress site. Then mirror your shop on your Facebook page, blog and marketplaces like Google Shopping, Yahoo and Shopping.com."
|
368 |
msgstr "Start selling on your WordPress site. Then mirror your shop on your Facebook page, blog and marketplaces like Google Shopping, Yahoo and Shopping.com."
|
@@ -376,14 +415,14 @@ msgstr "Features"
|
|
376 |
msgid "Compatible with your theme"
|
377 |
msgstr "Compatible with your theme"
|
378 |
|
379 |
-
msgid "Ecwid is compatible with your<br
|
380 |
-
msgstr "Ecwid is compatible with your<br
|
381 |
|
382 |
msgid "Free and always up to date"
|
383 |
msgstr "Free and always up to date"
|
384 |
|
385 |
-
msgid "Free plan always available with tons of features<br>at no additional cost.
|
386 |
-
msgstr "Free plan always available with tons of features<br>at no additional cost.
|
387 |
|
388 |
msgid "Responsive design"
|
389 |
msgstr "Responsive design"
|
@@ -400,8 +439,8 @@ msgstr "Secure checkout with over 40<br />payment options"
|
|
400 |
msgid "Global Reach"
|
401 |
msgstr "Global Reach"
|
402 |
|
403 |
-
msgid "More than
|
404 |
-
msgstr "More than
|
405 |
|
406 |
msgid "Start selling <br>on your WordPress <nobr>site for free</nobr>"
|
407 |
msgstr "Start selling <br>on your WordPress <nobr>site for free</nobr>"
|
@@ -421,8 +460,8 @@ msgstr "Reconnect Ecwid store"
|
|
421 |
msgid "New features available, reconnect to be in touch with our updates"
|
422 |
msgstr "New features available, reconnect to be in touch with our updates"
|
423 |
|
424 |
-
msgid "
|
425 |
-
msgstr "
|
426 |
|
427 |
msgid "Store settings"
|
428 |
msgstr "Store settings"
|
@@ -439,8 +478,8 @@ msgstr "Show search"
|
|
439 |
msgid "Show minicart"
|
440 |
msgstr "Show minicart"
|
441 |
|
442 |
-
msgid "Show
|
443 |
-
msgstr "Show
|
444 |
|
445 |
msgid "Additionally, you can add store controls to your website's toolbar using <a %s>WordPress native widgets</a>"
|
446 |
msgstr "Additionally, you can add store controls to your website's toolbar using <a %s>WordPress native widgets</a>"
|
@@ -451,12 +490,27 @@ msgstr "Demo store"
|
|
451 |
msgid "Ecwid plugin settings"
|
452 |
msgstr "Ecwid plugin settings"
|
453 |
|
454 |
-
msgid "Save and close"
|
455 |
-
msgstr "Save and close"
|
456 |
-
|
457 |
msgid "Your store will be shown here!"
|
458 |
-
msgstr "
|
459 |
|
460 |
msgid "Demo Store"
|
461 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
462 |
|
1 |
msgid "Ecwid Shopping Cart"
|
2 |
+
msgstr "Ecwid alışveriş sepeti"
|
3 |
|
4 |
msgid "Ecwid Team"
|
5 |
msgstr "Ecwid Team"
|
6 |
|
7 |
msgid "Ecwid is a free full-featured shopping cart. It can be easily integrated with any Wordpress blog and takes less than 5 minutes to set up."
|
8 |
+
msgstr "Ecwid, ücretsiz ve tam özellikli bir alışveriş sepetidir. Beş dakikadan daha kısa bir sürede kurulabilir ve her hangi bir Wordpress bloğuyla bütünleştirilebilir."
|
9 |
|
10 |
msgid "Get help"
|
11 |
msgstr "Yardım alın"
|
35 |
msgstr "Ecwid alışveriş sepeti ayarları"
|
36 |
|
37 |
msgid "Ecwid Store"
|
38 |
+
msgstr "Eсwid Mağazası"
|
39 |
|
40 |
msgid "Setup"
|
41 |
msgstr "Kurulum"
|
42 |
|
43 |
msgid "Dashboard"
|
44 |
+
msgstr "Kontrol paneli"
|
45 |
|
46 |
msgid "Appearance settings"
|
47 |
msgstr "Görünüm ayarları"
|
58 |
msgid "Hidden category"
|
59 |
msgstr "Gizli kategori"
|
60 |
|
61 |
+
msgid "Recommendations for Your Online Store"
|
62 |
+
msgstr "Çevrimiçi Mağazanız için Öneriler"
|
63 |
+
|
64 |
+
msgid "Do you like Ecwid and want to help it grow? You can add this fancy 'Powered by Ecwid' badge on your site to show your visitors that you're a proud user of Ecwid."
|
65 |
+
msgstr "Do you like Ecwid and want to help it grow? You can add this fancy 'Powered by Ecwid' badge on your site to show your visitors that you're a proud user of Ecwid."
|
66 |
|
67 |
msgid "Ecwid Badge"
|
68 |
msgstr "Ecwid Yaması"
|
82 |
msgid "Ecwid e-commerce widgets"
|
83 |
msgstr "Ecwid e-ticaret widgetleri"
|
84 |
|
85 |
+
msgid "Adds a cart widget for customer to see the products they added to the cart."
|
86 |
+
msgstr "Adds a cart widget for customer to see the products they added to the cart."
|
87 |
|
88 |
+
msgid "Shopping Cart"
|
89 |
+
msgstr "Shopping Cart"
|
90 |
|
91 |
+
msgid "Adds a compact cart widget for customer to see the products they added to the cart."
|
92 |
+
msgstr "Adds a compact cart widget for customer to see the products they added to the cart."
|
93 |
|
94 |
+
msgid "Shopping Cart (Mini)"
|
95 |
+
msgstr "Shopping Cart (Mini)"
|
96 |
|
97 |
+
msgid "Displays a simple search box for your customers to find a product in your storex"
|
98 |
+
msgstr "Displays a simple search box for your customers to find a product in your storex"
|
99 |
|
100 |
+
msgid "Product Search"
|
101 |
+
msgstr "Product Search"
|
102 |
|
103 |
+
msgid "Adds vertical categories block to let the customer navigate your store."
|
104 |
+
msgstr "Adds vertical categories block to let the customer navigate your store."
|
105 |
|
106 |
+
msgid "Store Categories"
|
107 |
+
msgstr "Store Categories"
|
108 |
|
109 |
+
msgid "Displays a link to the store page in sidebar for customer to quickly access your store from any page on the site."
|
110 |
+
msgstr "Displays a link to the store page in sidebar for customer to quickly access your store from any page on the site."
|
111 |
+
|
112 |
+
msgid "Store Page Link"
|
113 |
+
msgstr "Store Page Link"
|
114 |
|
115 |
msgid "Shop"
|
116 |
+
msgstr "Mağaza"
|
117 |
|
118 |
+
msgid "Displays a list of products recently viewed by the customer to easily return to the products they saw in your shop."
|
119 |
+
msgstr "Displays a list of products recently viewed by the customer to easily return to the products they saw in your shop."
|
120 |
|
121 |
msgid "Recently Viewed Products"
|
122 |
msgstr "Recently Viewed Products"
|
123 |
|
124 |
+
msgid "You have not viewed any product yet. Open store."
|
125 |
+
msgstr "You have not viewed any product yet. Open store."
|
126 |
+
|
127 |
+
msgid "Store Link Title"
|
128 |
+
msgstr "Store Link Title"
|
129 |
+
|
130 |
msgid "Number of products to show"
|
131 |
msgstr "Number of products to show"
|
132 |
|
173 |
msgstr "WordPress.org sitesinde Ecwid uygulamasını oylayın"
|
174 |
|
175 |
msgid "Add Store"
|
176 |
+
msgstr "Mağaza Ekle"
|
177 |
|
178 |
msgid "Edit Store"
|
179 |
+
msgstr "Mağazayı Düzenle"
|
180 |
|
181 |
msgid "Edit Appearance"
|
182 |
+
msgstr "Görünümü Düzenle"
|
183 |
|
184 |
msgid "Price"
|
185 |
msgstr "Fiyat"
|
211 |
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."
|
212 |
msgstr "Tek giriş (Single Sign-On) gizli anahtarı müşterilerinizin WordPress sayfanızı Ecwid sayfanızı ziyaret eder gibi görüntülemelerini sağlar. Müşteriler sitenize giriş yaptıklarında otomatik olarak Ecwid mağazanıza da giriş yaparlar. Ziyaretçileriniz WordPress sayfanızda hesap oluşturmaya başladığında bu özelliği kullanabilirsiniz."
|
213 |
|
214 |
+
msgid "In order to enable this feature, opt to use a secret key. You will find this key in your Ecwid control panel, at \"System Settings > Apps > Legacy API Keys > Single Sign-On Secret Key\" page. This feature is available for <a href=\"http://www.ecwid.com/compare-plans.html\" target=\"_blank\">paid users</a> only."
|
215 |
+
msgstr "In order to enable this feature, opt to use a secret key. You will find this key in your Ecwid control panel, at \"System Settings > Apps > Legacy API Keys > Single Sign-On Secret Key\" page. This feature is available for <a href=\"http://www.ecwid.com/compare-plans.html\" target=\"_blank\">paid users</a> only."
|
216 |
+
|
217 |
+
msgid "Chameleon skin <sup>beta</sup>"
|
218 |
+
msgstr "Chameleon skin <sup>beta</sup>"
|
219 |
+
|
220 |
+
msgid "Automatic adjustment of your store design to your Wordpress theme. Whatever Wordpress theme you use, Ecwid will detect predominant colors and font and use them in your product catalog."
|
221 |
+
msgstr "Automatic adjustment of your store design to your Wordpress theme. Whatever Wordpress theme you use, Ecwid will detect predominant colors and font and use them in your product catalog."
|
222 |
+
|
223 |
+
msgid "Please note this functionality is in beta. So if you run into difficulties or find problems with Chameleon, please <a %s>let us know</a>."
|
224 |
+
msgstr "Please note this functionality is in beta. So if you run into difficulties or find problems with Chameleon, please <a %s>let us know</a>."
|
225 |
+
|
226 |
+
msgid "Enable the new category menu"
|
227 |
+
msgstr "Enable the new category menu"
|
228 |
+
|
229 |
+
msgid "The new category menu looks better and is more mobile-friendly. If you haven't yet added category menu to your store page, you can do that in the <a %s>store page editor</a> (enable the \"Show categories\" option)"
|
230 |
+
msgstr "The new category menu looks better and is more mobile-friendly. If you haven't yet added category menu to your store page, you can do that in the <a %s>store page editor</a> (enable the \"Show categories\" option)"
|
231 |
|
232 |
msgid "Save changes"
|
233 |
msgstr "Değişiklikleri kaydet"
|
241 |
msgid "Or you can add search box to your website's toolbar using <a href=\"%s\">WordPress native widgets</a>"
|
242 |
msgstr "Ya da arama kutusunu <a href=\"%s\">WordPress yerleşik widgetlerını</a> kullanarak ekleyebilirsiniz"
|
243 |
|
244 |
+
msgid "Display categories above products"
|
245 |
+
msgstr "Display categories above products"
|
246 |
|
247 |
msgid "Or you can add vertical categories to your website's toolbar using <a href=\"%s\">WordPress native widgets</a>"
|
248 |
msgstr "Ya da dikey kategorileri sitenin araç çubuğuna <a href=\"%s\">WordPress yerleşik widgetlerını</a> kullanarak ekleyebilirsiniz"
|
249 |
|
250 |
+
msgid "Enable minicart attached to categories"
|
251 |
+
msgstr "Enable minicart attached to categories"
|
252 |
|
253 |
msgid "You should disable this option, if you added minicart to your website's sidebar"
|
254 |
msgstr "Web sitenize küçük alışveriş sepeti eklediyseniz bu ayarı devre dışı bırakınız"
|
289 |
msgid "Connect your store<br /> to this WordPress site"
|
290 |
msgstr "Connect your store<br /> to this WordPress site"
|
291 |
|
292 |
+
msgid "Enter your Store ID"
|
293 |
+
msgstr "Enter your Store ID"
|
294 |
+
|
295 |
msgid "Connect Ecwid store"
|
296 |
msgstr "Connect Ecwid store"
|
297 |
|
298 |
+
msgid "Save and connect"
|
299 |
+
msgstr "Save and connect"
|
300 |
+
|
301 |
msgid "After clicking button you need to login and accept permissions to use our plugin"
|
302 |
+
msgstr "Düğmeye tıkladıktan sonra eklentiyi kullanmak için giriş yapıp izinleri onaylamalısınız"
|
303 |
|
304 |
msgid "Connection error - after clicking button you need to login and accept permissions to use our plugin. Please, try again."
|
305 |
+
msgstr "Bağlantı hatası - düğmeye tıkladıktan sonra eklentiyi kullanmak için giriş yapıp izinleri onaylamalısınız. Lütfen tekrar deneyin."
|
306 |
+
|
307 |
+
msgid "Where to find your Store ID:"
|
308 |
+
msgstr "Where to find your Store ID:"
|
309 |
+
|
310 |
+
msgid "Store ID is a unique identifier of your Ecwid account. You can find it in your Ecwid control panel: open the <a %s>Dashboard page</a> and find the \"<b>Store ID: NNNNNNN</b>\" text, where <b>NNNNNNN</b> is your Store ID."
|
311 |
+
msgstr "Store ID is a unique identifier of your Ecwid account. You can find it in your Ecwid control panel: open the <a %s>Dashboard page</a> and find the \"<b>Store ID: NNNNNNN</b>\" text, where <b>NNNNNNN</b> is your Store ID."
|
312 |
|
313 |
msgid "Don't have Ecwid account? Create it here"
|
314 |
+
msgstr "Ecwid hesabınız yok mu? Burada oluşturun"
|
315 |
|
316 |
+
msgid "Questions? Visit <a %s>Ecwid support center</a>"
|
317 |
+
msgstr "Questions? Visit <a %s>Ecwid support center</a>"
|
318 |
|
319 |
msgid "Store ID"
|
320 |
msgstr "Mağaza ID"
|
321 |
|
322 |
msgid "Disconnect store"
|
323 |
+
msgstr "Mağaza bağlantısını kes"
|
324 |
|
325 |
msgid "Congratulations!"
|
326 |
msgstr "Tebrikler!"
|
335 |
msgstr "Your Ecwid store is connected<br /> to your WordPress website"
|
336 |
|
337 |
msgid "Open control panel"
|
338 |
+
msgstr "Kontrol panelini aç"
|
339 |
|
340 |
msgid "Plugin is installed successfully!"
|
341 |
+
msgstr "Eklenti başarıyla yüklendi!"
|
342 |
|
343 |
+
msgid "There are just a few steps left to start selling<br /> on your WordPress site"
|
344 |
+
msgstr "There are just a few steps left to start selling<br /> on your WordPress site"
|
345 |
|
346 |
+
msgid "There are few little steps left to start selling<br /> on your WordPress site"
|
347 |
+
msgstr "There are few little steps left to start selling<br /> on your WordPress site"
|
348 |
|
349 |
msgid "Register"
|
350 |
+
msgstr "Kayıt Ol"
|
351 |
|
352 |
+
msgid "Create a free Ecwid account to manage your store and inventory.<br /> No credit card required"
|
353 |
+
msgstr "Create a free Ecwid account to manage your store and inventory.<br /> No credit card required"
|
354 |
|
355 |
msgid "Connect"
|
356 |
+
msgstr "Bağlan"
|
357 |
|
358 |
+
msgid "Add your Ecwid store to your site <nobr>in two clicks</nobr>"
|
359 |
+
msgstr "Add your Ecwid store to your site <nobr>in two clicks</nobr>"
|
360 |
|
361 |
+
msgid "Connect your Ecwid store to this site <nobr>in two clicks</nobr>"
|
362 |
+
msgstr "Connect your Ecwid store to this site <nobr>in two clicks</nobr>"
|
363 |
|
364 |
msgid "Start selling"
|
365 |
+
msgstr "Satmaya başlayın"
|
366 |
|
367 |
msgid "Your storefront is ready"
|
368 |
msgstr "Your storefront is ready"
|
369 |
|
370 |
msgid "Create Ecwid store"
|
371 |
+
msgstr "Ecwid Mağazası oluştur"
|
372 |
|
373 |
msgid "Connect your store"
|
374 |
+
msgstr "Mağazanızı bağlayın"
|
375 |
|
376 |
msgid "Free registration, No credit card required"
|
377 |
+
msgstr "Ücretsiz kayıt, kredi kartı gerekli değil"
|
378 |
|
379 |
msgid "Connection error: please click the button again and give permissions for this plugin<br /> to show your Ecwid store on this site."
|
380 |
msgstr "Connection error: please click the button again and give permissions for this plugin<br /> to show your Ecwid store on this site."
|
392 |
msgstr "Don't have an Ecwid account?"
|
393 |
|
394 |
msgid "Register at Ecwid for free"
|
395 |
+
msgstr "Ecwid'e ücretsiz kayıt olun"
|
396 |
|
397 |
msgid "No credit card required"
|
398 |
+
msgstr "Kredi kartı gerekmez"
|
399 |
|
400 |
msgid "Get ready to sell online"
|
401 |
msgstr "Get ready to sell online"
|
402 |
|
403 |
msgid "Sell Everywhere<br>with your Ecwid store"
|
404 |
+
msgstr "Ecwid mağazası<br>ile Her Yerde Satın"
|
405 |
|
406 |
msgid "Start selling on your WordPress site. Then mirror your shop on your Facebook page, blog and marketplaces like Google Shopping, Yahoo and Shopping.com."
|
407 |
msgstr "Start selling on your WordPress site. Then mirror your shop on your Facebook page, blog and marketplaces like Google Shopping, Yahoo and Shopping.com."
|
415 |
msgid "Compatible with your theme"
|
416 |
msgstr "Compatible with your theme"
|
417 |
|
418 |
+
msgid "Ecwid is compatible with your<br>“%s” WordPress theme<br>out of the box."
|
419 |
+
msgstr "Ecwid is compatible with your<br>“%s” WordPress theme<br>out of the box."
|
420 |
|
421 |
msgid "Free and always up to date"
|
422 |
msgstr "Free and always up to date"
|
423 |
|
424 |
+
msgid "Free plan always available with tons of features<br>at no additional cost. Updates are seamless, automatic<br>and free of charge."
|
425 |
+
msgstr "Free plan always available with tons of features<br>at no additional cost. Updates are seamless, automatic<br>and free of charge."
|
426 |
|
427 |
msgid "Responsive design"
|
428 |
msgstr "Responsive design"
|
439 |
msgid "Global Reach"
|
440 |
msgstr "Global Reach"
|
441 |
|
442 |
+
msgid "More than 800,000 merchants in 175 countries"
|
443 |
+
msgstr "More than 800,000 merchants in 175 countries"
|
444 |
|
445 |
msgid "Start selling <br>on your WordPress <nobr>site for free</nobr>"
|
446 |
msgstr "Start selling <br>on your WordPress <nobr>site for free</nobr>"
|
460 |
msgid "New features available, reconnect to be in touch with our updates"
|
461 |
msgstr "New features available, reconnect to be in touch with our updates"
|
462 |
|
463 |
+
msgid "Questions? Visit <a href=\"http://help.ecwid.com/?source=wporg\">Ecwid support center</a>"
|
464 |
+
msgstr "Sorun mu yaşıyorsunuz? <a href=\"http://help.ecwid.com/?source=wporg\">Ecwid destek merkezini</a> ziyaret edin"
|
465 |
|
466 |
msgid "Store settings"
|
467 |
msgstr "Store settings"
|
478 |
msgid "Show minicart"
|
479 |
msgstr "Show minicart"
|
480 |
|
481 |
+
msgid "Show categories"
|
482 |
+
msgstr "Show categories"
|
483 |
|
484 |
msgid "Additionally, you can add store controls to your website's toolbar using <a %s>WordPress native widgets</a>"
|
485 |
msgstr "Additionally, you can add store controls to your website's toolbar using <a %s>WordPress native widgets</a>"
|
490 |
msgid "Ecwid plugin settings"
|
491 |
msgstr "Ecwid plugin settings"
|
492 |
|
|
|
|
|
|
|
493 |
msgid "Your store will be shown here!"
|
494 |
+
msgstr "Mağazanız burada görünecek!"
|
495 |
|
496 |
msgid "Demo Store"
|
497 |
+
msgstr "Deneme mağazası"
|
498 |
+
|
499 |
+
msgid "Sell On The Go with Ecwid iOS Application"
|
500 |
+
msgstr "Ecwid iOS uygulamasıyla Hareket Halinde Satın"
|
501 |
+
|
502 |
+
msgid "Ecwid iOS app allows you to manage your online store, sell your products on the go, and accept payments with your phone. Just download the Ecwid app, connect it to your Ecwid shop and have your sales at your fingertips!"
|
503 |
+
msgstr "Ecwid iOS app allows you to manage your online store, sell your products on the go, and accept payments with your phone. Just download the Ecwid app, connect it to your Ecwid shop and have your sales at your fingertips!"
|
504 |
+
|
505 |
+
msgid "Get Your Products Found on Google using XML Sitemap"
|
506 |
+
msgstr "Get Your Products Found on Google using XML Sitemap"
|
507 |
+
|
508 |
+
msgid "Free Google XML Sitemaps plugin creates a sitemap that includes your store product links. This makes your product pages more visible to search engines and appear in the search results."
|
509 |
+
msgstr "Free Google XML Sitemaps plugin creates a sitemap that includes your store product links. This makes your product pages more visible to search engines and appear in the search results."
|
510 |
+
|
511 |
+
msgid "Add Product Slider to Your Store"
|
512 |
+
msgstr "Mağazanıza Ürün Kaydırıcı Ekleyin"
|
513 |
+
|
514 |
+
msgid "Add a fancy product slider to your site using a free WP Widgets Avalanche plugin which works perfectly with Ecwid"
|
515 |
+
msgstr "Ecwid ile mükemmel bir şekilde çalışan WP Widgets Avalanche eklentisini indirerek sitenize süslü bir ürün kaydırıcısı ekleyin"
|
516 |
|
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.3
|
6 |
-
Stable tag: 3.4.
|
7 |
|
8 |
Ecwid is a full-featured shopping cart that can be added to any Wordpress site in less than 5 minutes. Start using Ecwid for free today.
|
9 |
|
@@ -107,6 +107,12 @@ http://codex.wordpress.org/Managing_Plugins#Installing_Plugins
|
|
107 |
* [Ecwid site](http://www.ecwid.com/?source=wporg-plugin-site "Ecwid Site")
|
108 |
|
109 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
110 |
= 3.4.1 =
|
111 |
- Minor fix for the "Twenty Sixteen” Wordpress theme
|
112 |
|
3 |
Tags: ecwid, shopping cart, ecommerce, wordpress ecommerce, wp e-commerce, paypal, e-commerce, online store, store, shop, cart, online shop, shopping, digital goods, downloadable products, product catalog, ecomerce, products, facebook, f-commerce
|
4 |
Requires at least: 2.8
|
5 |
Tested up to: 4.3
|
6 |
+
Stable tag: 3.4.3
|
7 |
|
8 |
Ecwid is a full-featured shopping cart that can be added to any Wordpress site in less than 5 minutes. Start using Ecwid for free today.
|
9 |
|
107 |
* [Ecwid site](http://www.ecwid.com/?source=wporg-plugin-site "Ecwid Site")
|
108 |
|
109 |
== Changelog ==
|
110 |
+
= 3.4.3 =
|
111 |
+
- Updated Italian and Turkish translations.
|
112 |
+
|
113 |
+
= 3.4.2 =
|
114 |
+
- Fixed option to enable the new categories widget released in the v.3.4 .
|
115 |
+
|
116 |
= 3.4.1 =
|
117 |
- Minor fix for the "Twenty Sixteen” Wordpress theme
|
118 |
|