WordPress Simple PayPal Shopping Cart - Version 4.0.8

Version Description

  • Added Turkish Language translation to the plugin. The Turkish translation file was submitted by Vural Pamir.
  • WordPress 4.2 compatibility
Download this release

Release Info

Developer mra13
Plugin Icon 128x128 WordPress Simple PayPal Shopping Cart
Version 4.0.8
Comparing to
See all releases

Code changes from version 4.0.1 to 4.0.8

class-coupon.php CHANGED
@@ -21,7 +21,7 @@ class WPSPSC_Coupons_Collection
21
  }
22
  foreach($this->coupon_items as $key => $coupon)
23
  {
24
- if($coupon->coupon_code == $coupon_code){
25
  return $coupon;
26
  }
27
  }
21
  }
22
  foreach($this->coupon_items as $key => $coupon)
23
  {
24
+ if(strtolower($coupon->coupon_code) == strtolower($coupon_code)){
25
  return $coupon;
26
  }
27
  }
includes/wspsc-cart-functions.php ADDED
@@ -0,0 +1,201 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ function print_wp_shopping_cart($args = array()) {
4
+ $output = "";
5
+ if (!cart_not_empty()) {
6
+ $empty_cart_text = get_option('wp_cart_empty_text');
7
+ if (!empty($empty_cart_text)) {
8
+ $output .= '<div class="wp_cart_empty_cart_section">';
9
+ if (preg_match("/http/", $empty_cart_text)) {
10
+ $output .= '<img src="' . $empty_cart_text . '" alt="' . $empty_cart_text . '" class="wp_cart_empty_cart_image" />';
11
+ } else {
12
+ $output .= $empty_cart_text;
13
+ }
14
+ $output .= '</div>';
15
+ }
16
+ $cart_products_page_url = get_option('cart_products_page_url');
17
+ if (!empty($cart_products_page_url)) {
18
+ $output .= '<div class="wp_cart_visit_shop_link"><a rel="nofollow" href="' . $cart_products_page_url . '">' . (__("Visit The Shop", "WSPSC")) . '</a></div>';
19
+ }
20
+ return $output;
21
+ }
22
+ $email = get_bloginfo('admin_email');
23
+ $use_affiliate_platform = get_option('wp_use_aff_platform');
24
+ $defaultCurrency = get_option('cart_payment_currency');
25
+ $defaultSymbol = get_option('cart_currency_symbol');
26
+ $defaultEmail = get_option('cart_paypal_email');
27
+ if (!empty($defaultCurrency))
28
+ $paypal_currency = $defaultCurrency;
29
+ else
30
+ $paypal_currency = __("USD", "WSPSC");
31
+ if (!empty($defaultSymbol))
32
+ $paypal_symbol = $defaultSymbol;
33
+ else
34
+ $paypal_symbol = __("$", "WSPSC");
35
+
36
+ if (!empty($defaultEmail))
37
+ $email = $defaultEmail;
38
+
39
+ $decimal = '.';
40
+ $urls = '';
41
+
42
+ $return = get_option('cart_return_from_paypal_url');
43
+ if (empty($return)) {
44
+ $return = WP_CART_SITE_URL . '/';
45
+ }
46
+ $return_url = add_query_arg('reset_wp_cart', '1', $return);
47
+
48
+ $urls .= '<input type="hidden" name="return" value="' . $return_url . '" />';
49
+
50
+ $notify = WP_CART_SITE_URL . '/?simple_cart_ipn=1';
51
+ $urls .= '<input type="hidden" name="notify_url" value="' . $notify . '" />';
52
+
53
+ $title = get_option('wp_cart_title');
54
+ //if (empty($title)) $title = __("Your Shopping Cart", "WSPSC");
55
+
56
+ global $plugin_dir_name;
57
+ $output .= '<div class="shopping_cart">';
58
+ if (!get_option('wp_shopping_cart_image_hide')) {
59
+ $output .= "<img src='" . WP_CART_URL . "/images/shopping_cart_icon.png' value='" . (__("Cart", "WSPSC")) . "' title='" . (__("Cart", "WSPSC")) . "' />";
60
+ }
61
+ if (!empty($title)) {
62
+ $output .= '<h2>';
63
+ $output .= $title;
64
+ $output .= '</h2>';
65
+ }
66
+
67
+ $output .= '<br /><span id="pinfo" style="display: none; font-weight: bold; color: red;">' . (__("Hit enter to submit new Quantity.", "WSPSC")) . '</span>';
68
+ $output .= '<table style="width: 100%;">';
69
+
70
+ $count = 1;
71
+ $total_items = 0;
72
+ $total = 0;
73
+ $form = '';
74
+ if ($_SESSION['simpleCart'] && is_array($_SESSION['simpleCart'])) {
75
+ $output .= '
76
+ <tr>
77
+ <th class="wspsc_cart_item_name_th">' . (__("Item Name", "WSPSC")) . '</th><th class="wspsc_cart_qty_th">' . (__("Quantity", "WSPSC")) . '</th><th class="wspsc_cart_price_th">' . (__("Price", "WSPSC")) . '</th><th></th>
78
+ </tr>';
79
+ $item_total_shipping = 0;
80
+ $postage_cost = 0;
81
+ foreach ($_SESSION['simpleCart'] as $item) {
82
+ $total += $item['price'] * $item['quantity'];
83
+ $item_total_shipping += $item['shipping'] * $item['quantity'];
84
+ $total_items += $item['quantity'];
85
+ }
86
+ if (!empty($item_total_shipping)) {
87
+ $baseShipping = get_option('cart_base_shipping_cost');
88
+ $postage_cost = $item_total_shipping + $baseShipping;
89
+ }
90
+
91
+ $cart_free_shipping_threshold = get_option('cart_free_shipping_threshold');
92
+ if (!empty($cart_free_shipping_threshold) && $total > $cart_free_shipping_threshold) {
93
+ $postage_cost = 0;
94
+ }
95
+
96
+ foreach ($_SESSION['simpleCart'] as $item) {
97
+
98
+ $output .= "<tr><td style='overflow: hidden;'>";
99
+ $output .= '<div class="wp_cart_item_info">';
100
+ if(isset($args['show_thumbnail'])){
101
+ $output .= '<span class="wp_cart_item_thumbnail"><img src="'.$item['thumbnail'].'" class="wp_cart_thumb_image" ></span>';
102
+ }
103
+ $item_info = apply_filters('wspsc_cart_item_name', '<a href="'.$item['cartLink'].'">'.$item['name'].'</a>', $item);
104
+ $output .= '<span class="wp_cart_item_name">'.$item_info.'</span>';
105
+ $output .= '<span class="wp_cart_clear_float"></span>';
106
+ $output .= '</div>';
107
+ $output .= '</td>';
108
+
109
+ $output .= "<td style='text-align: center'><form method=\"post\" action=\"\" name='pcquantity' style='display: inline'>
110
+ <input type=\"hidden\" name=\"product\" value=\"" . htmlspecialchars($item['name']) . "\" />
111
+ <input type='hidden' name='cquantity' value='1' /><input type='text' name='quantity' value='" . $item['quantity'] . "' size='1' onchange='document.pcquantity.submit();' onkeypress='document.getElementById(\"pinfo\").style.display = \"\";' /></form></td>
112
+ <td style='text-align: center'>" . print_payment_currency(($item['price'] * $item['quantity']), $paypal_symbol, $decimal) . "</td>
113
+ <td><form method=\"post\" action=\"\" class=\"wp_cart_remove_item_form\">
114
+ <input type=\"hidden\" name=\"product\" value=\"" . $item['name'] . "\" />
115
+ <input type='hidden' name='delcart' value='1' />
116
+ <input type='image' src='" . WP_CART_URL . "/images/Shoppingcart_delete.png' value='" . (__("Remove", "WSPSC")) . "' title='" . (__("Remove", "WSPSC")) . "' /></form></td></tr>
117
+ ";
118
+
119
+ $form .= "
120
+ <input type=\"hidden\" name=\"item_name_$count\" value=\"" . $item['name'] . "\" />
121
+ <input type=\"hidden\" name=\"amount_$count\" value='" . wpspsc_number_format_price($item['price']) . "' />
122
+ <input type=\"hidden\" name=\"quantity_$count\" value=\"" . $item['quantity'] . "\" />
123
+ <input type='hidden' name='item_number_$count' value='" . $item['item_number'] . "' />
124
+ ";
125
+ $count++;
126
+ }
127
+ if (!get_option('wp_shopping_cart_use_profile_shipping')) {
128
+ $postage_cost = wpspsc_number_format_price($postage_cost);
129
+ $form .= "<input type=\"hidden\" name=\"shipping_1\" value='" . $postage_cost . "' />"; //You can also use "handling_cart" variable to use shipping and handling here
130
+ }
131
+ if (get_option('wp_shopping_cart_collect_address')) {//force address collection
132
+ $form .= "<input type=\"hidden\" name=\"no_shipping\" value=\"2\" />";
133
+ }
134
+ }
135
+
136
+ $count--;
137
+
138
+ if ($count) {
139
+ if ($postage_cost != 0) {
140
+ $output .= "
141
+ <tr><td colspan='2' style='font-weight: bold; text-align: right;'>" . (__("Subtotal", "WSPSC")) . ": </td><td style='text-align: center'>" . print_payment_currency($total, $paypal_symbol, $decimal) . "</td><td></td></tr>
142
+ <tr><td colspan='2' style='font-weight: bold; text-align: right;'>" . (__("Shipping", "WSPSC")) . ": </td><td style='text-align: center'>" . print_payment_currency($postage_cost, $paypal_symbol, $decimal) . "</td><td></td></tr>";
143
+ }
144
+
145
+ $output .= "<tr><td colspan='2' style='font-weight: bold; text-align: right;'>" . (__("Total", "WSPSC")) . ": </td><td style='text-align: center'>" . print_payment_currency(($total + $postage_cost), $paypal_symbol, $decimal) . "</td><td></td></tr>";
146
+
147
+ if (isset($_SESSION['wpspsc_cart_action_msg']) && !empty($_SESSION['wpspsc_cart_action_msg'])) {
148
+ $output .= '<tr><td colspan="4"><span class="wpspsc_cart_action_msg">' . $_SESSION['wpspsc_cart_action_msg'] . '</span></td></tr>';
149
+ }
150
+
151
+ if (get_option('wpspsc_enable_coupon') == '1') {
152
+ $output .= '<tr><td colspan="4">
153
+ <div class="wpspsc_coupon_section">
154
+ <span class="wpspsc_coupon_label">' . (__("Enter Coupon Code", "WSPSC")) . '</span>
155
+ <form method="post" action="" >
156
+ <input type="text" name="wpspsc_coupon_code" value="" size="10" />
157
+ <span class="wpspsc_coupon_apply_button"><input type="submit" name="wpspsc_apply_coupon" class="wpspsc_apply_coupon" value="' . (__("Apply", "WSPSC")) . '" /></span>
158
+ </form>
159
+ </div>
160
+ </td></tr>';
161
+ }
162
+
163
+ $paypal_checkout_url = WP_CART_LIVE_PAYPAL_URL;
164
+ if (get_option('wp_shopping_cart_enable_sandbox')) {
165
+ $paypal_checkout_url = WP_CART_SANDBOX_PAYPAL_URL;
166
+ }
167
+
168
+ $form_target_code = '';
169
+ if (get_option('wspsc_open_pp_checkout_in_new_tab')) {
170
+ $form_target_code = 'target="_blank"';
171
+ }
172
+
173
+ $output .= "<tr class='wpspsc_checkout_form'><td colspan='4'>";
174
+ $output .= '<form action="' . $paypal_checkout_url . '" method="post" ' . $form_target_code . '>';
175
+ $output .= $form;
176
+ if ($count)
177
+ $output .= '<input type="image" src="' . WP_CART_URL . '/images/' . (__("paypal_checkout_EN.png", "WSPSC")) . '" name="submit" class="wp_cart_checkout_button" alt="' . (__("Make payments with PayPal - it\'s fast, free and secure!", "WSPSC")) . '" />';
178
+
179
+ $output .= $urls . '
180
+ <input type="hidden" name="business" value="' . $email . '" />
181
+ <input type="hidden" name="currency_code" value="' . $paypal_currency . '" />
182
+ <input type="hidden" name="cmd" value="_cart" />
183
+ <input type="hidden" name="upload" value="1" />
184
+ <input type="hidden" name="rm" value="2" />
185
+ <input type="hidden" name="charset" value="utf-8" />
186
+ <input type="hidden" name="bn" value="TipsandTricks_SP" />';
187
+ $wp_cart_note_to_seller_text = get_option('wp_cart_note_to_seller_text');
188
+ if (!empty($wp_cart_note_to_seller_text)) {
189
+ $output .= '<input type="hidden" name="no_note" value="0" /><input type="hidden" name="cn" value="' . $wp_cart_note_to_seller_text . '" />';
190
+ }
191
+ $page_style_name = get_option('wp_cart_paypal_co_page_style');
192
+ if (!empty($page_style_name)) {
193
+ $output .= '<input type="hidden" name="page_style" value="' . $page_style_name . '" />';
194
+ }
195
+ $output .= wp_cart_add_custom_field();
196
+ $output .= '</form>';
197
+ $output .= '</td></tr>';
198
+ }
199
+ $output .= "</table></div>";
200
+ return $output;
201
+ }
languages/WSPSC-dk_DK.mo ADDED
Binary file
languages/WSPSC-dk_DK.po ADDED
@@ -0,0 +1,391 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WSPSC v2.8.9\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-03-16 21:49+0100\n"
6
+ "PO-Revision-Date: 2014-11-10 02:12+0100\n"
7
+ "Language-Team: Ruhul Amin\n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=UTF-8\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+ "X-Poedit-KeywordsList: _e;__\n"
12
+ "X-Poedit-Basepath: .\n"
13
+ "Last-Translator: \n"
14
+ "Language: en_US\n"
15
+ "X-Generator: Poedit 1.6.10\n"
16
+ "X-Poedit-SearchPath-0: ..\n"
17
+
18
+ #: ../wp_shopping_cart.php:33
19
+ msgid "Your Shopping Cart"
20
+ msgstr "Din indkøbskurv"
21
+
22
+ #: ../wp_shopping_cart.php:34
23
+ msgid "Your cart is empty"
24
+ msgstr "Din indkøbskurv er tom"
25
+
26
+ #: ../wp_shopping_cart.php:140
27
+ msgid ""
28
+ "Shopping Cart Configuration Error! You must specify a value in the 'Checkout "
29
+ "Page URL' field for the automatic redirection feature to work!"
30
+ msgstr ""
31
+ "Indkøbskurv Konfiguration Error! Du skal angive en værdi i feltet 'Checkout "
32
+ "Page URL' feltet for automatisk omdirigering funktion til at arbejde!"
33
+
34
+ #: ../wp_shopping_cart.php:197
35
+ msgid "Visit The Shop"
36
+ msgstr "Besøge butikken"
37
+
38
+ #: ../wp_shopping_cart.php:209 ../wp_shopping_cart.php:606
39
+ msgid "USD"
40
+ msgstr "DKK"
41
+
42
+ #: ../wp_shopping_cart.php:213 ../wp_shopping_cart.php:609
43
+ msgid "$"
44
+ msgstr "DKK"
45
+
46
+ #: ../wp_shopping_cart.php:242
47
+ msgid "Cart"
48
+ msgstr "Kurv"
49
+
50
+ #: ../wp_shopping_cart.php:251
51
+ msgid "Hit enter to submit new Quantity."
52
+ msgstr "Tryk enter for at indsende ny mængde."
53
+
54
+ #: ../wp_shopping_cart.php:262
55
+ msgid "Item Name"
56
+ msgstr "Produktnavn"
57
+
58
+ #: ../wp_shopping_cart.php:262
59
+ msgid "Quantity"
60
+ msgstr "Mængde"
61
+
62
+ #: ../wp_shopping_cart.php:262
63
+ msgid "Price"
64
+ msgstr "Pris"
65
+
66
+ #: ../wp_shopping_cart.php:299
67
+ msgid "Remove"
68
+ msgstr "fjern"
69
+
70
+ #: ../wp_shopping_cart.php:329
71
+ msgid "Subtotal"
72
+ msgstr "Subtotal"
73
+
74
+ #: ../wp_shopping_cart.php:330
75
+ msgid "Shipping"
76
+ msgstr "Forsendelse"
77
+
78
+ #: ../wp_shopping_cart.php:334
79
+ msgid "Total"
80
+ msgstr "Total"
81
+
82
+ #: ../wp_shopping_cart.php:339
83
+ msgid "paypal_checkout_EN.png"
84
+ msgstr "paypal_checkout_EN.png"
85
+
86
+ #: ../wp_shopping_cart.php:339
87
+ msgid "Make payments with PayPal - it\\'s fast, free and secure!"
88
+ msgstr "Foretag betalinger med PayPal - er hurtig, gratis og sikkert!"
89
+
90
+ #: ../wp_shopping_cart.php:387 ../wp_shopping_cart.php:469
91
+ #: ../wp_shopping_cart.php:528 ../wp_shopping_cart.php:534
92
+ #: ../wp_shopping_cart.php:622
93
+ msgid "Add to Cart"
94
+ msgstr "Tilføj til indkøbsvogn"
95
+
96
+ #: ../wp_shopping_cart.php:602
97
+ msgid "Options Updated!"
98
+ msgstr "Options Updated!"
99
+
100
+ #: ../wp_shopping_cart.php:662
101
+ msgid "Simple Paypal Shopping Cart Settings"
102
+ msgstr "Simple Paypal indkøbskurv Indstillinger"
103
+
104
+ #: ../wp_shopping_cart.php:664
105
+ msgid "For information, updates and detailed documentation, please visit:"
106
+ msgstr ""
107
+ "For information, opdateringer og detaljeret dokumentation, kan du besøge:"
108
+
109
+ #: ../wp_shopping_cart.php:668
110
+ msgid "Usage:"
111
+ msgstr "Anvendelse:"
112
+
113
+ #: ../wp_shopping_cart.php:670
114
+ msgid "1. To add the 'Add to Cart' button simply add the trigger text"
115
+ msgstr ""
116
+ "1. For at tilføje knappen 'indkøbskurven' blot tilføje aftrækkeren tekst"
117
+
118
+ #: ../wp_shopping_cart.php:670
119
+ msgid "PRODUCT-NAME"
120
+ msgstr "PRODUCT-NAME"
121
+
122
+ #: ../wp_shopping_cart.php:670
123
+ msgid "PRODUCT-PRICE"
124
+ msgstr "PRODUCT-PRICE"
125
+
126
+ #: ../wp_shopping_cart.php:670
127
+ msgid ""
128
+ "to a post or page next to the product. Replace PRODUCT-NAME and PRODUCT-"
129
+ "PRICE with the actual name and price. For example: [wp_cart:Test Product:"
130
+ "price:15.00:end]"
131
+ msgstr ""
132
+ "til et indlæg eller side ved siden af produktet. Udskift produktnavn og "
133
+ "PRODUCT-pris med det faktiske navn og pris. For eksempel: [wp_cart: Test "
134
+ "Produkt: pris: 15.00: afslutning]"
135
+
136
+ #: ../wp_shopping_cart.php:671
137
+ msgid ""
138
+ "2. To add the shopping cart to a post or page (eg. checkout page) simply add "
139
+ "the shortcode"
140
+ msgstr ""
141
+ "2. Du kan tilføje indkøbskurv til et indlæg eller side (f.eks. Kassen side) "
142
+ "blot tilføje kortkode"
143
+
144
+ #: ../wp_shopping_cart.php:671
145
+ msgid ""
146
+ "to a post or page or use the sidebar widget to add the shopping cart to the "
147
+ "sidebar."
148
+ msgstr ""
149
+ "til et indlæg eller side eller bruge sidebar widget til at tilføje "
150
+ "indkøbskurv til indholdsoversigten."
151
+
152
+ #: ../wp_shopping_cart.php:679
153
+ msgid "PayPal and Shopping Cart Settings"
154
+ msgstr "PayPal og indkøbskurv Indstillinger"
155
+
156
+ #: ../wp_shopping_cart.php:685
157
+ msgid "Paypal Email Address"
158
+ msgstr "Paypal e-mail adresse"
159
+
160
+ #: ../wp_shopping_cart.php:689
161
+ msgid "Shopping Cart title"
162
+ msgstr "Indkøbskurv titel"
163
+
164
+ #: ../wp_shopping_cart.php:693
165
+ msgid "Text/Image to Show When Cart Empty"
166
+ msgstr "Tekst / billede at vise, hvornår Indkøbskurven er tom"
167
+
168
+ #: ../wp_shopping_cart.php:694
169
+ msgid ""
170
+ "You can either enter plain text or the URL of an image that you want to show "
171
+ "when the shopping cart is empty"
172
+ msgstr ""
173
+ "Du kan enten indtaste almindelig tekst eller en URL til et billede, som du "
174
+ "vil vise, når Indkøbskurven er tom"
175
+
176
+ #: ../wp_shopping_cart.php:697
177
+ msgid "Currency"
178
+ msgstr "Valuta"
179
+
180
+ #: ../wp_shopping_cart.php:698 ../wp_shopping_cart.php:702
181
+ #: ../wp_shopping_cart.php:728
182
+ msgid "e.g."
183
+ msgstr "fx"
184
+
185
+ #: ../wp_shopping_cart.php:701
186
+ msgid "Currency Symbol"
187
+ msgstr "Valuta Symbol"
188
+
189
+ #: ../wp_shopping_cart.php:707
190
+ msgid "Base Shipping Cost"
191
+ msgstr "Almindelig Forsendelse"
192
+
193
+ #: ../wp_shopping_cart.php:708
194
+ msgid ""
195
+ "This is the base shipping cost that will be added to the total of individual "
196
+ "products shipping cost. Put 0 if you do not want to charge shipping cost or "
197
+ "use base shipping cost."
198
+ msgstr ""
199
+ "Dette er shipping cost base, der vil blive tilføjet til den samlede "
200
+ "individuelle produkter shipping cost. Put 0, hvis du ikke ønsker at opkræve "
201
+ "fragtpris eller bruge basen shipping cost."
202
+
203
+ #: ../wp_shopping_cart.php:708
204
+ msgid "Learn More on Shipping Calculation"
205
+ msgstr "Lær mere om Forsendelse Beregning"
206
+
207
+ #: ../wp_shopping_cart.php:712
208
+ msgid "Free Shipping for Orders Over"
209
+ msgstr "Gratis levering på køb over"
210
+
211
+ #: ../wp_shopping_cart.php:713
212
+ msgid ""
213
+ "When a customer orders more than this amount he/she will get free shipping. "
214
+ "Leave empty if you do not want to use it."
215
+ msgstr ""
216
+ "Når en kunde bestiller mere end dette beløb, han / hun vil få gratis "
217
+ "forsendelse. Efterlad tom, hvis du ikke ønsker at bruge det."
218
+
219
+ #: ../wp_shopping_cart.php:717
220
+ msgid "Must Collect Shipping Address on PayPal"
221
+ msgstr "Skal indsamle Forsendelsesadresse om PayPal"
222
+
223
+ #: ../wp_shopping_cart.php:718
224
+ msgid ""
225
+ "If checked the customer will be forced to enter a shipping address on PayPal "
226
+ "when checking out."
227
+ msgstr ""
228
+ "Hvis markeret vil kunden blive tvunget til at indtaste en leveringsadresse "
229
+ "på PayPal, når du tjekker."
230
+
231
+ #: ../wp_shopping_cart.php:722
232
+ msgid "Use PayPal Profile Based Shipping"
233
+ msgstr "Brug PayPal Profile Baseret Shipping"
234
+
235
+ #: ../wp_shopping_cart.php:723
236
+ msgid "Check this if you want to use"
237
+ msgstr "Markér dette hvis du ønsker at bruge"
238
+
239
+ #: ../wp_shopping_cart.php:723
240
+ msgid "PayPal profile based shipping"
241
+ msgstr "PayPal-profil baseret skibsfart"
242
+
243
+ #: ../wp_shopping_cart.php:723
244
+ msgid ""
245
+ "Using this will ignore any other shipping options that you have specified in "
246
+ "this plugin."
247
+ msgstr ""
248
+ "Brug af denne vil ignorere alle andre shipping muligheder, som du har "
249
+ "angivet i dette plugin."
250
+
251
+ #: ../wp_shopping_cart.php:727
252
+ msgid "Add to Cart button text or Image"
253
+ msgstr "Indkøbskurven knap tekst eller billede"
254
+
255
+ #: ../wp_shopping_cart.php:728
256
+ msgid ""
257
+ "To use a customized image as the button simply enter the URL of the image "
258
+ "file."
259
+ msgstr ""
260
+ "For at bruge et tilpasset billede som knap blot indtaste webadressen på "
261
+ "billedfilen."
262
+
263
+ #: ../wp_shopping_cart.php:732
264
+ msgid "Return URL"
265
+ msgstr "Tilbage URL"
266
+
267
+ #: ../wp_shopping_cart.php:733
268
+ msgid ""
269
+ "This is the URL the customer will be redirected to after a successful payment"
270
+ msgstr ""
271
+ "Dette er URL kunden vil blive omdirigeret til efter en vellykket betaling"
272
+
273
+ #: ../wp_shopping_cart.php:737
274
+ msgid "Products Page URL"
275
+ msgstr "Produkter side URL"
276
+
277
+ #: ../wp_shopping_cart.php:738
278
+ msgid ""
279
+ "This is the URL of your products page if you have any. If used, the shopping "
280
+ "cart widget will display a link to this page when cart is empty"
281
+ msgstr ""
282
+ "Dette er URL af dine produkter side, hvis du har nogen. Hvis det bruges, vil "
283
+ "indkøbskurv widget vise et link til denne side, når vognen er tom"
284
+
285
+ #: ../wp_shopping_cart.php:742
286
+ msgid "Automatic redirection to checkout page"
287
+ msgstr "Automatisk omdirigering til kassen side"
288
+
289
+ #: ../wp_shopping_cart.php:744
290
+ msgid "Checkout Page URL"
291
+ msgstr "Tjek ud side URL"
292
+
293
+ #: ../wp_shopping_cart.php:745
294
+ msgid ""
295
+ "If checked the visitor will be redirected to the Checkout page after a "
296
+ "product is added to the cart. You must enter a URL in the Checkout Page URL "
297
+ "field for this to work."
298
+ msgstr ""
299
+ "Hvis markeret den besøgende vil blive omdirigeret til kassen siden efter et "
300
+ "produkt er tilføjet til indkøbskurven. Du skal indtaste en URL i feltet "
301
+ "Checkout Page URL for at dette virker."
302
+
303
+ #: ../wp_shopping_cart.php:749
304
+ msgid "Reset Cart After Redirection to Return Page"
305
+ msgstr "Nulstil Kurv Efter omdirigering til Return Side"
306
+
307
+ #: ../wp_shopping_cart.php:751
308
+ msgid ""
309
+ "If checked the shopping cart will be reset when the customer lands on the "
310
+ "return URL (Thank You) page."
311
+ msgstr ""
312
+ "Hvis markeret indkøbskurv, vil blive nulstillet når kunden lander på "
313
+ "afkastet URL (tak) side."
314
+
315
+ #: ../wp_shopping_cart.php:758
316
+ msgid "Hide Shopping Cart Image"
317
+ msgstr "Skjul Indkøbskurv Billede"
318
+
319
+ #: ../wp_shopping_cart.php:759
320
+ msgid "If ticked the shopping cart image will not be shown."
321
+ msgstr "Hvis afkrydset indkøbsvognen billedet vil ikke blive vist."
322
+
323
+ #: ../wp_shopping_cart.php:765
324
+ msgid "Use WP Affiliate Platform"
325
+ msgstr "Brug WP Affiliate Platform"
326
+
327
+ #: ../wp_shopping_cart.php:767
328
+ msgid "Check this if using with the"
329
+ msgstr "Markér dette hvis du bruger den med"
330
+
331
+ #: ../wp_shopping_cart.php:767
332
+ msgid ""
333
+ "This plugin lets you run your own affiliate campaign/program and allows you "
334
+ "to reward (pay commission) your affiliates for referred sales"
335
+ msgstr ""
336
+ "Dette plugin kan du køre dit eget affiliate kampagne / program og giver dig "
337
+ "mulighed for at belønne (pay provision) din søsterselskaber for omhandlede "
338
+ "salg"
339
+
340
+ #: ../wp_shopping_cart.php:772
341
+ msgid "Update Options &raquo;"
342
+ msgstr "Opdater Options &raquo;"
343
+
344
+ #: ../wp_shopping_cart.php:776
345
+ msgid "Like the Simple WordPress Shopping Cart Plugin?"
346
+ msgstr "Ligesom Simple WordPress Indkøbskurv Plugin?"
347
+
348
+ #: ../wp_shopping_cart.php:776
349
+ msgid "Give it a good rating"
350
+ msgstr "Giv det en god rating"
351
+
352
+ #: ../wp_shopping_cart.php:781
353
+ msgid "WP Paypal Shopping Cart Options"
354
+ msgstr "WP Paypal indkøbskurv Options"
355
+
356
+ #: ../wp_shopping_cart.php:791 ../wp_shopping_cart.php:819
357
+ #: ../wp_shopping_cart.php:820
358
+ msgid "WP Paypal Shopping Cart"
359
+ msgstr "WP Paypal indkøbskurv"
360
+
361
+ #: ../wp_shopping_cart.php:791
362
+ msgid "WP Shopping Cart"
363
+ msgstr "WP Indkøbskurv"
364
+
365
+ #: ../wp_shopping_cart.php:799
366
+ msgid "Shopping Cart"
367
+ msgstr "Indkøbskurv"
368
+
369
+ #: ../wp_shopping_cart.php:811
370
+ msgid "Set the Plugin Settings from the Settings menu"
371
+ msgstr "Indstil plugin-indstillinger fra menuen Indstillinger"
372
+
373
+ #: ../wp_shopping_cart.php:818
374
+ msgid "Display WP Paypal Shopping Cart."
375
+ msgstr "Display WP Paypal indkøbskurv."
376
+
377
+ #: ../wp_shopping_cart.php:832
378
+ msgid "Settings"
379
+ msgstr "Indstillinger"
380
+
381
+ #~ msgid "show-wp-shopping-cart"
382
+ #~ msgstr "show-wp-shopping-cart"
383
+
384
+ #~ msgid ""
385
+ #~ "2. To add the shopping cart to a post or page (eg. checkout page) simply "
386
+ #~ "add the shortcode <strong>[show_wp_shopping_cart]</strong> to a post or "
387
+ #~ "page or use the sidebar widget to add the shopping cart to the sidebar."
388
+ #~ msgstr ""
389
+ #~ "2. To add the shopping cart to a post or page (eg. checkout page) simply "
390
+ #~ "add the shortcode <strong>[show_wp_shopping_cart]</strong> to a post or "
391
+ #~ "page or use the sidebar widget to add the shopping cart to the sidebar."
languages/WSPSC-it_IT.mo CHANGED
Binary file
languages/WSPSC-it_IT.po CHANGED
@@ -1,383 +1,897 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: WSPSC v2.8.9\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-03-16 21:49+0100\n"
6
- "PO-Revision-Date: 2013-11-04 11:46+0100\n"
7
- "Language-Team: Ruhul Amin\n"
 
 
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
  "X-Poedit-KeywordsList: _e;__\n"
12
  "X-Poedit-Basepath: .\n"
13
- "Last-Translator: \n"
14
- "Language: en_US\n"
15
- "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
- #: ../wp_shopping_cart.php:33
19
- msgid "Your Shopping Cart"
20
- msgstr "Il tuo Carrello della spesa"
 
 
21
 
22
- #: ../wp_shopping_cart.php:34
23
- msgid "Your cart is empty"
24
- msgstr "Il tuo carrello è vuoto"
25
 
26
- #: ../wp_shopping_cart.php:140
27
- msgid ""
28
- "Shopping Cart Configuration Error! You must specify a value in the 'Checkout "
29
- "Page URL' field for the automatic redirection feature to work!"
30
- msgstr ""
31
- "Errore di configurazione Carrello! È necessario specificare un valore nel "
32
- "campo 'URL della pagina Carrello' per la funzione di reindirizzamento "
33
- "automatico per lavorare correttamente!"
 
 
 
 
 
 
 
34
 
35
- #: ../wp_shopping_cart.php:197
 
 
 
 
 
 
 
 
 
 
 
 
36
  msgid "Visit The Shop"
37
  msgstr "Visita lo Shop"
38
 
39
- #: ../wp_shopping_cart.php:209 ../wp_shopping_cart.php:606
 
40
  msgid "USD"
41
  msgstr "EUR"
42
 
43
- #: ../wp_shopping_cart.php:213 ../wp_shopping_cart.php:609
 
44
  msgid "$"
45
- msgstr "$"
46
 
47
- #: ../wp_shopping_cart.php:242
48
  msgid "Cart"
49
  msgstr "Carrello"
50
 
51
- #: ../wp_shopping_cart.php:251
52
  msgid "Hit enter to submit new Quantity."
53
- msgstr "Premere Invio per presentare nuovi pezzi."
54
 
55
- #: ../wp_shopping_cart.php:262
56
  msgid "Item Name"
57
  msgstr "Nome Oggetto"
58
 
59
- #: ../wp_shopping_cart.php:262
60
  msgid "Quantity"
61
  msgstr "Quantità"
62
 
63
- #: ../wp_shopping_cart.php:262
64
  msgid "Price"
65
  msgstr "Prezzo"
66
 
67
- #: ../wp_shopping_cart.php:299
68
  msgid "Remove"
69
  msgstr "Rimuovi"
70
 
71
- #: ../wp_shopping_cart.php:329
72
  msgid "Subtotal"
73
  msgstr "Subtotale"
74
 
75
- #: ../wp_shopping_cart.php:330
76
  msgid "Shipping"
77
  msgstr "Spedizione"
78
 
79
- #: ../wp_shopping_cart.php:334
 
80
  msgid "Total"
81
  msgstr "Totale"
82
 
83
- #: ../wp_shopping_cart.php:339
 
 
 
 
 
 
 
 
84
  msgid "paypal_checkout_EN.png"
85
  msgstr "paypal_checkout_EN.png"
86
 
87
- #: ../wp_shopping_cart.php:339
88
  msgid "Make payments with PayPal - it\\'s fast, free and secure!"
89
- msgstr "Make payments with PayPal - it\\'s fast, free and secure!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
 
91
- #: ../wp_shopping_cart.php:387 ../wp_shopping_cart.php:469
92
- #: ../wp_shopping_cart.php:528 ../wp_shopping_cart.php:534
93
- #: ../wp_shopping_cart.php:622
94
  msgid "Add to Cart"
95
- msgstr "Aggiungi al carrello"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
96
 
97
- #: ../wp_shopping_cart.php:602
 
 
 
 
 
 
 
 
 
 
 
 
98
  msgid "Options Updated!"
99
- msgstr "Opzioni aggiornate!"
100
 
101
- #: ../wp_shopping_cart.php:662
102
- msgid "Simple Paypal Shopping Cart Settings"
103
- msgstr "Impostazioni Carrello Paypal Semplice"
104
 
105
- #: ../wp_shopping_cart.php:664
106
- msgid "For information, updates and detailed documentation, please visit:"
107
- msgstr "Per informazioni, per favore visitare il sito:"
108
 
109
- #: ../wp_shopping_cart.php:668
110
- msgid "Usage:"
111
- msgstr "Istruzioni:"
112
 
113
- #: ../wp_shopping_cart.php:670
114
- msgid "1. To add the 'Add to Cart' button simply add the trigger text"
115
- msgstr "1. Aggiungi il bottone 'Aggiungi al Carrello'"
 
 
116
 
117
- #: ../wp_shopping_cart.php:670
118
  msgid "PRODUCT-NAME"
119
  msgstr "PRODOTTO-NOME"
120
 
121
- #: ../wp_shopping_cart.php:670
122
  msgid "PRODUCT-PRICE"
123
  msgstr "PRODOTTO-PREZZO"
124
 
125
- #: ../wp_shopping_cart.php:670
126
  msgid ""
127
  "to a post or page next to the product. Replace PRODUCT-NAME and PRODUCT-"
128
- "PRICE with the actual name and price. For example: [wp_cart:Test Product:"
129
- "price:15.00:end]"
130
  msgstr ""
131
- "ad un articolo od a una pagina accanto al prodotto. Sostituire PRODOTTO-NOME "
132
- "e di PRODOTTO-PREZZO con il nome e prezzo effettivo. Per esempio: [wp_cart: "
133
- "Test di prodotto: Prezzo: 15.00:fine]"
 
 
 
134
 
135
- #: ../wp_shopping_cart.php:671
 
 
 
 
136
  msgid ""
137
- "2. To add the shopping cart to a post or page (eg. checkout page) simply add "
138
- "the shortcode"
139
  msgstr ""
140
- "2. Per aggiungere il carrello di un articolo od una pagina (es. checkout "
141
- "pagina) semplicemente aggiungere il shortcode"
142
 
143
- #: ../wp_shopping_cart.php:671
144
  msgid ""
145
  "to a post or page or use the sidebar widget to add the shopping cart to the "
146
  "sidebar."
147
  msgstr ""
148
- "a un articolo od una pagina oppure utilizzare il widget sidebar per "
149
- "aggiungere il carrello per la sidebar."
 
 
 
 
150
 
151
- #: ../wp_shopping_cart.php:679
152
  msgid "PayPal and Shopping Cart Settings"
153
- msgstr "Impostazioni Carrello PayPal"
154
 
155
- #: ../wp_shopping_cart.php:685
156
  msgid "Paypal Email Address"
157
- msgstr "Indirizzo Email Paypal"
158
 
159
- #: ../wp_shopping_cart.php:689
160
  msgid "Shopping Cart title"
161
- msgstr "Titolo Shop"
162
 
163
- #: ../wp_shopping_cart.php:693
164
  msgid "Text/Image to Show When Cart Empty"
165
- msgstr "Testo/Immagine quando il carrello è vuoto"
166
 
167
- #: ../wp_shopping_cart.php:694
168
  msgid ""
169
  "You can either enter plain text or the URL of an image that you want to show "
170
  "when the shopping cart is empty"
171
  msgstr ""
172
- "È possibile inserire testo o l'URL di un'immagine che si desidera "
173
- "visualizzare quando il carrello è vuoto"
174
 
175
- #: ../wp_shopping_cart.php:697
176
  msgid "Currency"
177
  msgstr "Valuta"
178
 
179
- #: ../wp_shopping_cart.php:698 ../wp_shopping_cart.php:702
180
- #: ../wp_shopping_cart.php:728
181
  msgid "e.g."
182
  msgstr "es."
183
 
184
- #: ../wp_shopping_cart.php:701
185
  msgid "Currency Symbol"
186
  msgstr "Simbolo Valuta"
187
 
188
- #: ../wp_shopping_cart.php:707
189
  msgid "Base Shipping Cost"
190
- msgstr "Costo Spedizione di base"
191
 
192
- #: ../wp_shopping_cart.php:708
193
  msgid ""
194
  "This is the base shipping cost that will be added to the total of individual "
195
  "products shipping cost. Put 0 if you do not want to charge shipping cost or "
196
  "use base shipping cost."
197
  msgstr ""
198
- "Questo è il costo di trasporto di base che verrà aggiunto al totale dei "
199
- "singoli prodotti costo di trasporto. Mettere 0 se non si vuole far pagare il "
200
- "costo di trasporto o l'uso di costo di trasporto di base."
201
 
202
- #: ../wp_shopping_cart.php:708
203
  msgid "Learn More on Shipping Calculation"
204
- msgstr "Per saperne di più sul calcolo di trasporto"
205
 
206
- #: ../wp_shopping_cart.php:712
207
  msgid "Free Shipping for Orders Over"
208
- msgstr "Spedizione gratuita per ordini superiori"
209
 
210
- #: ../wp_shopping_cart.php:713
211
  msgid ""
212
  "When a customer orders more than this amount he/she will get free shipping. "
213
  "Leave empty if you do not want to use it."
214
  msgstr ""
215
- "Quando un cliente ordina più di questo importo otterrà la spedizione "
216
- "gratuita. Lascia vuoto se non si desidera utilizzarlo."
217
 
218
- #: ../wp_shopping_cart.php:717
219
  msgid "Must Collect Shipping Address on PayPal"
220
- msgstr "Deve raccogliere indirizzo di spedizione su PayPal"
221
 
222
- #: ../wp_shopping_cart.php:718
223
  msgid ""
224
  "If checked the customer will be forced to enter a shipping address on PayPal "
225
  "when checking out."
226
  msgstr ""
227
  "Se selezionato il cliente sarà costretto a inserire un indirizzo di "
228
- "spedizione su PayPal al momento del check out."
229
 
230
- #: ../wp_shopping_cart.php:722
231
  msgid "Use PayPal Profile Based Shipping"
232
- msgstr "Utilizzare Profilo di spedizione base di PayPal "
233
 
234
- #: ../wp_shopping_cart.php:723
235
  msgid "Check this if you want to use"
236
- msgstr "Selezionare questa se si desidera utilizzare"
237
 
238
- #: ../wp_shopping_cart.php:723
239
  msgid "PayPal profile based shipping"
240
  msgstr "Spedizione basata sul profilo PayPal"
241
 
242
- #: ../wp_shopping_cart.php:723
243
  msgid ""
244
  "Using this will ignore any other shipping options that you have specified in "
245
  "this plugin."
246
  msgstr ""
247
- "L'utilizzo di questo ignorerà le altre opzioni di spedizione che avete "
248
- "specificato in questo plugin."
249
 
250
- #: ../wp_shopping_cart.php:727
251
  msgid "Add to Cart button text or Image"
252
- msgstr "Testo del pulsante e/o immagine Aggiungi al Carrello"
253
 
254
- #: ../wp_shopping_cart.php:728
255
  msgid ""
256
  "To use a customized image as the button simply enter the URL of the image "
257
  "file."
258
  msgstr ""
259
- "Per utilizzare un'immagine personalizzata come il pulsante è sufficiente "
260
- "inserire l'URL del file di immagine."
261
 
262
- #: ../wp_shopping_cart.php:732
263
  msgid "Return URL"
264
- msgstr "URL ritorno"
265
 
266
- #: ../wp_shopping_cart.php:733
267
  msgid ""
268
  "This is the URL the customer will be redirected to after a successful payment"
269
  msgstr ""
270
- "Questo è l'URL del cliente che verrà reindirizzato dopo un pagamento di "
271
- "successo"
272
 
273
- #: ../wp_shopping_cart.php:737
274
  msgid "Products Page URL"
275
  msgstr "URL Pagina Prodotti"
276
 
277
- #: ../wp_shopping_cart.php:738
278
  msgid ""
279
  "This is the URL of your products page if you have any. If used, the shopping "
280
  "cart widget will display a link to this page when cart is empty"
281
  msgstr ""
282
- "Questo è l'URL della pagina di prodotti, se ne avete. Se utilizzato, il "
283
- "widget carrello della spesa verrà visualizzato un link a questa pagina, "
284
- "quando è vuoto"
285
 
286
- #: ../wp_shopping_cart.php:742
287
  msgid "Automatic redirection to checkout page"
288
  msgstr "Reindirizzamento automatico alla pagina di checkout"
289
 
290
- #: ../wp_shopping_cart.php:744
291
  msgid "Checkout Page URL"
292
- msgstr "URL Pagina Checkout "
293
 
294
- #: ../wp_shopping_cart.php:745
295
  msgid ""
296
  "If checked the visitor will be redirected to the Checkout page after a "
297
  "product is added to the cart. You must enter a URL in the Checkout Page URL "
298
  "field for this to work."
299
  msgstr ""
300
  "Se selezionato il visitatore verrà reindirizzato alla pagina di checkout "
301
- "dopo che un prodotto viene aggiunto al carrello. È necessario immettere un "
302
- "URL nel campo URL pagina Checkout per questo al lavoro."
 
 
 
 
 
 
 
 
 
 
 
 
303
 
304
- #: ../wp_shopping_cart.php:749
305
  msgid "Reset Cart After Redirection to Return Page"
306
- msgstr "Ripristinare Carrello Dopo reindirizzamento alla pagina di ritorno"
307
 
308
- #: ../wp_shopping_cart.php:751
309
  msgid ""
310
  "If checked the shopping cart will be reset when the customer lands on the "
311
  "return URL (Thank You) page."
312
  msgstr ""
313
- "Se selezionata verrà ripristinato il carrello della spesa, quando le i "
314
- "clienti ritorneranno sulla pagina URL di ritorno (grazie per l'acquisto)."
315
 
316
- #: ../wp_shopping_cart.php:758
317
  msgid "Hide Shopping Cart Image"
318
  msgstr "Nascondi Immagine Carrello"
319
 
320
- #: ../wp_shopping_cart.php:759
321
  msgid "If ticked the shopping cart image will not be shown."
322
- msgstr "Se selezionato non verrà mostrato l 'immagine del carrello."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
323
 
324
- #: ../wp_shopping_cart.php:765
325
  msgid "Use WP Affiliate Platform"
326
- msgstr "Utilizza Piattaforma Affiliazione WP"
327
 
328
- #: ../wp_shopping_cart.php:767
329
  msgid "Check this if using with the"
330
- msgstr "Controllare questo se si utilizza con il"
331
 
332
- #: ../wp_shopping_cart.php:767
333
  msgid ""
334
  "This plugin lets you run your own affiliate campaign/program and allows you "
335
  "to reward (pay commission) your affiliates for referred sales"
336
  msgstr ""
337
- "Questo plugin consente di eseguire la propria campagna / programma di "
338
- "affiliazione e ti permette di premiare (pagare le commissioni) i tuoi "
339
- "affiliati per le vendite di cui"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
340
 
341
- #: ../wp_shopping_cart.php:772
342
  msgid "Update Options &raquo;"
343
- msgstr "Aggiorna opzioni &raquo;"
344
 
345
- #: ../wp_shopping_cart.php:776
346
  msgid "Like the Simple WordPress Shopping Cart Plugin?"
347
- msgstr "Ti piace il Plugin Shop Paypal?"
348
 
349
- #: ../wp_shopping_cart.php:776
350
  msgid "Give it a good rating"
351
- msgstr "Dategli un buon rating"
352
 
353
- #: ../wp_shopping_cart.php:781
354
- msgid "WP Paypal Shopping Cart Options"
355
- msgstr "Opzioni Carrello della Spesa WP Paypal"
356
 
357
- #: ../wp_shopping_cart.php:791 ../wp_shopping_cart.php:819
358
- #: ../wp_shopping_cart.php:820
359
- msgid "WP Paypal Shopping Cart"
360
- msgstr "Carrello Spesa WP Paypal"
 
 
 
361
 
362
- #: ../wp_shopping_cart.php:791
363
- msgid "WP Shopping Cart"
364
- msgstr "WP Carrello Spesa"
365
 
366
- #: ../wp_shopping_cart.php:799
367
- msgid "Shopping Cart"
368
- msgstr "Carrello della Spesa"
 
 
 
 
 
 
369
 
370
- #: ../wp_shopping_cart.php:811
371
- msgid "Set the Plugin Settings from the Settings menu"
372
- msgstr "Impostare le impostazioni del plugin dal menu Impostazioni"
373
 
374
- #: ../wp_shopping_cart.php:818
375
- msgid "Display WP Paypal Shopping Cart."
376
- msgstr "Visualizzare WP Carrello PayPal."
 
 
 
 
 
 
377
 
378
- #: ../wp_shopping_cart.php:832
379
- msgid "Settings"
380
- msgstr "Impostazioni"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
381
 
382
  #~ msgid "show-wp-shopping-cart"
383
  #~ msgstr "show-wp-shopping-cart"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: WSPSC v4.0.5\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-21 23:24+0100\n"
6
+ "PO-Revision-Date: 2015-01-22 22:36+0100\n"
7
+ "Last-Translator: Giangiacomo Fanizzi <uomomacchina@gmail.com>\n"
8
+ "Language-Team: Giangiacomo Fanizzi <uomomacchina@gmail.com>\n"
9
+ "Language: it_IT\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: .\n"
15
+ "X-Generator: Poedit 1.7.3\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
+ #: ../class-coupon.php:19
20
+ msgid "Admin needs to configure some discount coupons before it can be used"
21
+ msgstr ""
22
+ "L'amministratore deve configurare alcuni buoni sconto prima di poter essere "
23
+ "utilizzato"
24
 
25
+ #: ../class-coupon.php:86
26
+ msgid "Coupon ID: "
27
+ msgstr "ID del Coupon: "
28
 
29
+ #: ../class-coupon.php:87
30
+ msgid "Coupon Code: "
31
+ msgstr "Codice del Coupon: "
32
+
33
+ #: ../class-coupon.php:88
34
+ msgid "Discount Amt: "
35
+ msgstr "Ammontare Sconto: "
36
+
37
+ #: ../class-coupon.php:89
38
+ msgid "Expiry date: "
39
+ msgstr "Data di scadenza: "
40
+
41
+ #: ../class-coupon.php:98
42
+ msgid "Coupon code used does not exist!"
43
+ msgstr "Il Codice del Coupon utilizzato non esiste!"
44
 
45
+ #: ../class-coupon.php:105
46
+ msgid "Coupon code expired!"
47
+ msgstr "Codice del Coupon scaduto!"
48
+
49
+ #: ../class-coupon.php:110
50
+ msgid "Discount can only be applied once per checkout!"
51
+ msgstr "Discount can only be applied once per checkout!"
52
+
53
+ #: ../class-coupon.php:132
54
+ msgid "Discount applied successfully! Total Discount: "
55
+ msgstr "Sconto applicato con successo! Totale Sconto: "
56
+
57
+ #: ../includes/wspsc-cart-functions.php:18
58
  msgid "Visit The Shop"
59
  msgstr "Visita lo Shop"
60
 
61
+ #: ../includes/wspsc-cart-functions.php:30
62
+ #: ../wp_shopping_cart_settings.php:104
63
  msgid "USD"
64
  msgstr "EUR"
65
 
66
+ #: ../includes/wspsc-cart-functions.php:34
67
+ #: ../wp_shopping_cart_settings.php:107
68
  msgid "$"
69
+ msgstr ""
70
 
71
+ #: ../includes/wspsc-cart-functions.php:59
72
  msgid "Cart"
73
  msgstr "Carrello"
74
 
75
+ #: ../includes/wspsc-cart-functions.php:67
76
  msgid "Hit enter to submit new Quantity."
77
+ msgstr "Premi Invio per confermare la nuova Quantità."
78
 
79
+ #: ../includes/wspsc-cart-functions.php:77
80
  msgid "Item Name"
81
  msgstr "Nome Oggetto"
82
 
83
+ #: ../includes/wspsc-cart-functions.php:77
84
  msgid "Quantity"
85
  msgstr "Quantità"
86
 
87
+ #: ../includes/wspsc-cart-functions.php:77
88
  msgid "Price"
89
  msgstr "Prezzo"
90
 
91
+ #: ../includes/wspsc-cart-functions.php:116
92
  msgid "Remove"
93
  msgstr "Rimuovi"
94
 
95
+ #: ../includes/wspsc-cart-functions.php:141
96
  msgid "Subtotal"
97
  msgstr "Subtotale"
98
 
99
+ #: ../includes/wspsc-cart-functions.php:142 ../wp_shopping_cart_orders.php:95
100
  msgid "Shipping"
101
  msgstr "Spedizione"
102
 
103
+ #: ../includes/wspsc-cart-functions.php:145 ../wp_shopping_cart_orders.php:91
104
+ #: ../wp_shopping_cart_orders.php:168
105
  msgid "Total"
106
  msgstr "Totale"
107
 
108
+ #: ../includes/wspsc-cart-functions.php:154
109
+ msgid "Enter Coupon Code"
110
+ msgstr "Inserisci il Codice Coupon"
111
+
112
+ #: ../includes/wspsc-cart-functions.php:157
113
+ msgid "Apply"
114
+ msgstr "Applica"
115
+
116
+ #: ../includes/wspsc-cart-functions.php:177
117
  msgid "paypal_checkout_EN.png"
118
  msgstr "paypal_checkout_EN.png"
119
 
120
+ #: ../includes/wspsc-cart-functions.php:177
121
  msgid "Make payments with PayPal - it\\'s fast, free and secure!"
122
+ msgstr "Paga con PayPal - è veloce, gratuito e sicuro!"
123
+
124
+ #: ../lib/gallery-wp-cart.php:32
125
+ msgid "[View with PicLens]"
126
+ msgstr "[Visualizza Con PicLens]"
127
+
128
+ #: ../wp_shopping_cart.php:175
129
+ msgid "Error! Your session is out of sync. Please reset your session."
130
+ msgstr ""
131
+ "Errore! La tua sessione non è sincronizzata. Prego, resetta la sessione."
132
+
133
+ #: ../wp_shopping_cart.php:183
134
+ msgid ""
135
+ "Shopping Cart Configuration Error! You must specify a value in the 'Checkout "
136
+ "Page URL' field for the automatic redirection feature to work!"
137
+ msgstr ""
138
+ "Errore di Configurazione Carrello! È necessario specificare un valore nel "
139
+ "campo 'URL della pagina Cassa' affinché il reindirizzamento automatico "
140
+ "funzioni!"
141
 
142
+ #: ../wp_shopping_cart.php:272 ../wp_shopping_cart.php:347
143
+ #: ../wp_shopping_cart.php:412 ../wp_shopping_cart.php:454
144
+ #: ../wp_shopping_cart.php:458 ../wp_shopping_cart_settings.php:120
145
  msgid "Add to Cart"
146
+ msgstr "Aggiungi al Carrello"
147
+
148
+ #: ../wp_shopping_cart.php:540
149
+ msgid "WP Paypal Shopping Cart"
150
+ msgstr "WP Paypal Shopping Cart"
151
+
152
+ #: ../wp_shopping_cart.php:540
153
+ msgid "WP Shopping Cart"
154
+ msgstr "WP Shopping Cart"
155
+
156
+ #: ../wp_shopping_cart.php:567
157
+ msgid "Shopping Cart"
158
+ msgstr "Carrello della Spesa"
159
+
160
+ #: ../wp_shopping_cart.php:592
161
+ msgid "Settings"
162
+ msgstr "Impostazioni"
163
+
164
+ #: ../wp_shopping_cart_discounts_menu.php:52
165
+ #: ../wp_shopping_cart_settings.php:186 ../wp_shopping_cart_settings.php:422
166
+ msgid ""
167
+ "For more information, updates, detailed documentation and video tutorial, "
168
+ "please visit:"
169
+ msgstr ""
170
+ "Per maggiori informazioni, aggiornamenti, documentazione dettagliata e video "
171
+ "tutorial, prego visita il sito:"
172
+
173
+ #: ../wp_shopping_cart_discounts_menu.php:53
174
+ #: ../wp_shopping_cart_settings.php:187 ../wp_shopping_cart_settings.php:423
175
+ msgid "WP Simple Cart Homepage"
176
+ msgstr "WP Simple Cart Homepage"
177
+
178
+ #: ../wp_shopping_cart_discounts_menu.php:61
179
+ msgid "Coupon/Discount Settings"
180
+ msgstr "Opzioni Coupon/Sconto"
181
+
182
+ #: ../wp_shopping_cart_discounts_menu.php:68
183
+ msgid "Enable Discount Coupon Feature"
184
+ msgstr "Abilita Opzione Coupon Sconto"
185
+
186
+ #: ../wp_shopping_cart_discounts_menu.php:71
187
+ msgid ""
188
+ "When checked your customers will be able to enter a coupon code in the "
189
+ "shopping cart before checkout."
190
+ msgstr ""
191
+ "Se selezionato il cliente potrà inserire un Codice Coupon nel Carrello prima "
192
+ "del checkout."
193
+
194
+ #: ../wp_shopping_cart_discounts_menu.php:78
195
+ msgid "Update &raquo;"
196
+ msgstr "Aggiorna &raquo;"
197
+
198
+ #: ../wp_shopping_cart_discounts_menu.php:94
199
+ msgid "Add Coupon/Discount"
200
+ msgstr "Aggiungi Coupon/Sconto"
201
+
202
+ #: ../wp_shopping_cart_discounts_menu.php:119
203
+ msgid "Save Coupon &raquo;"
204
+ msgstr "Salva Coupon &raquo;"
205
+
206
+ #: ../wp_shopping_cart_discounts_menu.php:137
207
+ msgid "Coupon Code"
208
+ msgstr "Codice Coupon"
209
+
210
+ #: ../wp_shopping_cart_discounts_menu.php:138
211
+ msgid "Discount Rate (%)"
212
+ msgstr "Percentuale Sconto (%)"
213
+
214
+ #: ../wp_shopping_cart_discounts_menu.php:139
215
+ msgid "Expiry Date"
216
+ msgstr "Data di Scadenza"
217
+
218
+ #: ../wp_shopping_cart_discounts_menu.php:158
219
+ msgid "No Expiry"
220
+ msgstr "Nessuna Scadenza"
221
+
222
+ #: ../wp_shopping_cart_discounts_menu.php:174
223
+ msgid "No Coupons Configured."
224
+ msgstr "Nessun Coupon Configurato"
225
+
226
+ #: ../wp_shopping_cart_discounts_menu.php:179
227
+ msgid "No Record found"
228
+ msgstr "Nessun Record trovato"
229
+
230
+ #: ../wp_shopping_cart_misc_functions.php:169
231
+ msgid "Your Shopping Cart"
232
+ msgstr "Il tuo Carrello della Spesa"
233
+
234
+ #: ../wp_shopping_cart_misc_functions.php:170
235
+ msgid "Your cart is empty"
236
+ msgstr "Il tuo carrello è vuoto"
237
+
238
+ #: ../wp_shopping_cart_misc_functions.php:200
239
+ msgid ""
240
+ "Need a shopping cart plugin with a lot of features and good support? Check "
241
+ "out our "
242
+ msgstr ""
243
+ "Hai bisogno di un plugin per il Carrello della Spesa con un sacco di "
244
+ "funzioni e un buon supporto? Valuta il nostro "
245
+
246
+ #: ../wp_shopping_cart_misc_functions.php:201
247
+ msgid "WP eStore Plugin"
248
+ msgstr "WP eStore Plugin"
249
+
250
+ #: ../wp_shopping_cart_orders.php:10
251
+ msgid "Cart Orders"
252
+ msgstr "Ordini Carrello"
253
+
254
+ #: ../wp_shopping_cart_orders.php:11
255
+ msgid "Cart Order"
256
+ msgstr "Ordine Carrello"
257
+
258
+ #: ../wp_shopping_cart_orders.php:12
259
+ msgid "Add New"
260
+ msgstr "Aggiungi Nuovo"
261
+
262
+ #: ../wp_shopping_cart_orders.php:13
263
+ msgid "Add New Order"
264
+ msgstr "Aggiungi Nuovo Ordine"
265
+
266
+ #: ../wp_shopping_cart_orders.php:14
267
+ msgid "Edit"
268
+ msgstr "Modifica"
269
+
270
+ #: ../wp_shopping_cart_orders.php:15
271
+ msgid "Edit Order"
272
+ msgstr "Modifica Ordine"
273
+
274
+ #: ../wp_shopping_cart_orders.php:16
275
+ msgid "New Order"
276
+ msgstr "Nuovo Ordine"
277
+
278
+ #: ../wp_shopping_cart_orders.php:17
279
+ msgid "View"
280
+ msgstr "Visualizza"
281
+
282
+ #: ../wp_shopping_cart_orders.php:18
283
+ msgid "View Order"
284
+ msgstr "Visualizza Ordine"
285
+
286
+ #: ../wp_shopping_cart_orders.php:19
287
+ msgid "Search Order"
288
+ msgstr "Cerca Ordine"
289
+
290
+ #: ../wp_shopping_cart_orders.php:20
291
+ msgid "No order found"
292
+ msgstr "Nessun ordine trovato"
293
+
294
+ #: ../wp_shopping_cart_orders.php:21
295
+ msgid "No order found in Trash"
296
+ msgstr "Nessun Ordine trovato nel Cestino"
297
+
298
+ #: ../wp_shopping_cart_orders.php:22
299
+ msgid "Parent Order"
300
+ msgstr "Ordine Originale"
301
+
302
+ #: ../wp_shopping_cart_orders.php:38
303
+ msgid "Order Review"
304
+ msgstr "Recensione Ordine"
305
+
306
+ #: ../wp_shopping_cart_orders.php:70
307
+ msgid "Order ID: #"
308
+ msgstr "ID Ordine: #"
309
+
310
+ #: ../wp_shopping_cart_orders.php:72
311
+ msgid "Transaction ID: #"
312
+ msgstr "ID Transazione: #"
313
+
314
+ #: ../wp_shopping_cart_orders.php:75 ../wp_shopping_cart_orders.php:165
315
+ msgid "First Name"
316
+ msgstr "Nome"
317
+
318
+ #: ../wp_shopping_cart_orders.php:79 ../wp_shopping_cart_orders.php:166
319
+ msgid "Last Name"
320
+ msgstr "Cognome"
321
+
322
+ #: ../wp_shopping_cart_orders.php:83
323
+ msgid "Email Address"
324
+ msgstr "Indirizzo email"
325
+
326
+ #: ../wp_shopping_cart_orders.php:87
327
+ msgid "IP Address"
328
+ msgstr "Indirizzo IP"
329
+
330
+ #: ../wp_shopping_cart_orders.php:99
331
+ msgid "Address"
332
+ msgstr "Indirizzo"
333
+
334
+ #: ../wp_shopping_cart_orders.php:103
335
+ msgid "Phone"
336
+ msgstr "Telefono"
337
+
338
+ #: ../wp_shopping_cart_orders.php:107
339
+ msgid "Buyer Email Sent?"
340
+ msgstr "Email Acquirente Inviata?"
341
+
342
+ #: ../wp_shopping_cart_orders.php:111
343
+ msgid "Item(s) Ordered:"
344
+ msgstr "Articolo/i Ordinato/i:"
345
+
346
+ #: ../wp_shopping_cart_orders.php:115
347
+ msgid "Applied Coupon Code:"
348
+ msgstr "Applicato Codice Coupon:"
349
+
350
+ #: ../wp_shopping_cart_orders.php:164
351
+ msgid "Order ID"
352
+ msgstr "ID Ordine"
353
+
354
+ #: ../wp_shopping_cart_orders.php:167
355
+ msgid "Email"
356
+ msgstr "Email"
357
 
358
+ #: ../wp_shopping_cart_orders.php:169
359
+ msgid "Status"
360
+ msgstr "Stato"
361
+
362
+ #: ../wp_shopping_cart_orders.php:170
363
+ msgid "Date"
364
+ msgstr "Data"
365
+
366
+ #: ../wp_shopping_cart_settings.php:10
367
+ msgid "WP Paypal Shopping Cart Options"
368
+ msgstr "Opzioni di WP Paypal Shopping Cart"
369
+
370
+ #: ../wp_shopping_cart_settings.php:100
371
  msgid "Options Updated!"
372
+ msgstr "Opzioni Aggiornate!"
373
 
374
+ #: ../wp_shopping_cart_settings.php:183
375
+ msgid "Simple PayPal Shopping Cart Settings"
376
+ msgstr "Impostazioni di Simple Paypal Shopping Cart"
377
 
378
+ #: ../wp_shopping_cart_settings.php:191
379
+ msgid "Quick Usage Guide"
380
+ msgstr "Guida Rapida"
381
 
382
+ #: ../wp_shopping_cart_settings.php:194
383
+ msgid "Step 1) "
384
+ msgstr "Step 1) "
385
 
386
+ #: ../wp_shopping_cart_settings.php:194
387
+ msgid "To add an 'Add to Cart' button for a product simply add the shortcode"
388
+ msgstr ""
389
+ "Per aggiungere un pulsante 'Aggiungi al Carrello' per un prodotto trascrivi "
390
+ "semplicemente lo shortcode"
391
 
392
+ #: ../wp_shopping_cart_settings.php:194
393
  msgid "PRODUCT-NAME"
394
  msgstr "PRODOTTO-NOME"
395
 
396
+ #: ../wp_shopping_cart_settings.php:194
397
  msgid "PRODUCT-PRICE"
398
  msgstr "PRODOTTO-PREZZO"
399
 
400
+ #: ../wp_shopping_cart_settings.php:194
401
  msgid ""
402
  "to a post or page next to the product. Replace PRODUCT-NAME and PRODUCT-"
403
+ "PRICE with the actual name and price of your product."
 
404
  msgstr ""
405
+ "ad un articolo o ad una pagina accanto al prodotto. Sostituisci PRODOTTO-"
406
+ "NOME e PRODOTTO-PREZZO con il nome e il prezzo effettivo."
407
+
408
+ #: ../wp_shopping_cart_settings.php:195
409
+ msgid "Example add to cart button shortcode usage:"
410
+ msgstr "Esempio di utilizzo di shortcode per il pulsante Aggiungi al Carrello:"
411
 
412
+ #: ../wp_shopping_cart_settings.php:196
413
+ msgid "Step 2) "
414
+ msgstr "Step 2) "
415
+
416
+ #: ../wp_shopping_cart_settings.php:196
417
  msgid ""
418
+ "To add the shopping cart to a post or page (example: a checkout page) simply "
419
+ "add the shortcode"
420
  msgstr ""
421
+ "Per aggiungere il Carrello di un articolo o ad una pagina (esempio: una "
422
+ "pagina di checkout) semplicemente aggiungi lo shortcode"
423
 
424
+ #: ../wp_shopping_cart_settings.php:196
425
  msgid ""
426
  "to a post or page or use the sidebar widget to add the shopping cart to the "
427
  "sidebar."
428
  msgstr ""
429
+ "ad un Articolo o ad una Pagina oppure utilizzare il Sidecar Widget per "
430
+ "aggiungere il Carrello alla sidebar."
431
+
432
+ #: ../wp_shopping_cart_settings.php:197
433
+ msgid "Example shopping cart shortcode usage:"
434
+ msgstr "Esempio di utilizzo dello shortcode per il Carrello:"
435
 
436
+ #: ../wp_shopping_cart_settings.php:206
437
  msgid "PayPal and Shopping Cart Settings"
438
+ msgstr "Impostazioni PayPal e Carrello"
439
 
440
+ #: ../wp_shopping_cart_settings.php:212
441
  msgid "Paypal Email Address"
442
+ msgstr "Indirizzo email Paypal"
443
 
444
+ #: ../wp_shopping_cart_settings.php:216
445
  msgid "Shopping Cart title"
446
+ msgstr "Titolo del Carrello"
447
 
448
+ #: ../wp_shopping_cart_settings.php:220
449
  msgid "Text/Image to Show When Cart Empty"
450
+ msgstr "Testo/Immagine da visualizzare quando il Carrello è vuoto"
451
 
452
+ #: ../wp_shopping_cart_settings.php:221
453
  msgid ""
454
  "You can either enter plain text or the URL of an image that you want to show "
455
  "when the shopping cart is empty"
456
  msgstr ""
457
+ "Puoi inserire un testo o l'URL di un'immagine che desideri visualizzare "
458
+ "quando il Carrello è vuoto"
459
 
460
+ #: ../wp_shopping_cart_settings.php:224
461
  msgid "Currency"
462
  msgstr "Valuta"
463
 
464
+ #: ../wp_shopping_cart_settings.php:225 ../wp_shopping_cart_settings.php:229
465
+ #: ../wp_shopping_cart_settings.php:256
466
  msgid "e.g."
467
  msgstr "es."
468
 
469
+ #: ../wp_shopping_cart_settings.php:228
470
  msgid "Currency Symbol"
471
  msgstr "Simbolo Valuta"
472
 
473
+ #: ../wp_shopping_cart_settings.php:234
474
  msgid "Base Shipping Cost"
475
+ msgstr "Costo base per la Spedizione"
476
 
477
+ #: ../wp_shopping_cart_settings.php:235
478
  msgid ""
479
  "This is the base shipping cost that will be added to the total of individual "
480
  "products shipping cost. Put 0 if you do not want to charge shipping cost or "
481
  "use base shipping cost."
482
  msgstr ""
483
+ "Questo è il costo di trasporto di base che verrà aggiunto al totale del "
484
+ "costo di spedizione di ogni singolo prodotto. Scrivi 0 se non vuoi far "
485
+ "pagare alcun costo di spedizione o comunque un costo base per la spedizione."
486
 
487
+ #: ../wp_shopping_cart_settings.php:235
488
  msgid "Learn More on Shipping Calculation"
489
+ msgstr "Leggi altro sul Calcolo delle Spese di Spedizione"
490
 
491
+ #: ../wp_shopping_cart_settings.php:239
492
  msgid "Free Shipping for Orders Over"
493
+ msgstr "Spedizione Gratuita per Ordini Superiori"
494
 
495
+ #: ../wp_shopping_cart_settings.php:240
496
  msgid ""
497
  "When a customer orders more than this amount he/she will get free shipping. "
498
  "Leave empty if you do not want to use it."
499
  msgstr ""
500
+ "Quando un cliente ordina per più di questo importo otterrà la spedizione "
501
+ "gratuita. Lascia vuoto se non desideri utilizzarlo."
502
 
503
+ #: ../wp_shopping_cart_settings.php:244
504
  msgid "Must Collect Shipping Address on PayPal"
505
+ msgstr "Deve raccogliere l'Indirizzo di Spedizione su PayPal"
506
 
507
+ #: ../wp_shopping_cart_settings.php:245
508
  msgid ""
509
  "If checked the customer will be forced to enter a shipping address on PayPal "
510
  "when checking out."
511
  msgstr ""
512
  "Se selezionato il cliente sarà costretto a inserire un indirizzo di "
513
+ "spedizione su PayPal al momento del checkout."
514
 
515
+ #: ../wp_shopping_cart_settings.php:249
516
  msgid "Use PayPal Profile Based Shipping"
517
+ msgstr "Utilizza Profilo di Spedizione Base di PayPal"
518
 
519
+ #: ../wp_shopping_cart_settings.php:250
520
  msgid "Check this if you want to use"
521
+ msgstr "Seleziona se desideri utilizzare"
522
 
523
+ #: ../wp_shopping_cart_settings.php:250
524
  msgid "PayPal profile based shipping"
525
  msgstr "Spedizione basata sul profilo PayPal"
526
 
527
+ #: ../wp_shopping_cart_settings.php:250
528
  msgid ""
529
  "Using this will ignore any other shipping options that you have specified in "
530
  "this plugin."
531
  msgstr ""
532
+ "L'utilizzando questa funzione verrà ignorata ogni altra opzione di "
533
+ "spedizione che hai specificato in questo plugin."
534
 
535
+ #: ../wp_shopping_cart_settings.php:254
536
  msgid "Add to Cart button text or Image"
537
+ msgstr "Testo del pulsante o immagine Aggiungi al Carrello"
538
 
539
+ #: ../wp_shopping_cart_settings.php:256
540
  msgid ""
541
  "To use a customized image as the button simply enter the URL of the image "
542
  "file."
543
  msgstr ""
544
+ "Per utilizzare un'immagine personalizzata come pulsante è sufficiente "
545
+ "inserire l'URL del file immagine."
546
 
547
+ #: ../wp_shopping_cart_settings.php:262
548
  msgid "Return URL"
549
+ msgstr "URL di ritorno"
550
 
551
+ #: ../wp_shopping_cart_settings.php:263
552
  msgid ""
553
  "This is the URL the customer will be redirected to after a successful payment"
554
  msgstr ""
555
+ "Questo è l'URL cui il cliente che verrà reindirizzato dopo un pagamento "
556
+ "confermato"
557
 
558
+ #: ../wp_shopping_cart_settings.php:267
559
  msgid "Products Page URL"
560
  msgstr "URL Pagina Prodotti"
561
 
562
+ #: ../wp_shopping_cart_settings.php:268
563
  msgid ""
564
  "This is the URL of your products page if you have any. If used, the shopping "
565
  "cart widget will display a link to this page when cart is empty"
566
  msgstr ""
567
+ "Questo è l'URL della pagina dei prodotti, se ne hai. Se utilizzato, il "
568
+ "Widget del Carrello visualizzerà un link a questa pagina quando è vuoto"
 
569
 
570
+ #: ../wp_shopping_cart_settings.php:272
571
  msgid "Automatic redirection to checkout page"
572
  msgstr "Reindirizzamento automatico alla pagina di checkout"
573
 
574
+ #: ../wp_shopping_cart_settings.php:274
575
  msgid "Checkout Page URL"
576
+ msgstr "URL Pagina Checkout"
577
 
578
+ #: ../wp_shopping_cart_settings.php:275
579
  msgid ""
580
  "If checked the visitor will be redirected to the Checkout page after a "
581
  "product is added to the cart. You must enter a URL in the Checkout Page URL "
582
  "field for this to work."
583
  msgstr ""
584
  "Se selezionato il visitatore verrà reindirizzato alla pagina di checkout "
585
+ "dopo che un prodotto viene aggiunto al Carrello. Devi inserire un URL nel "
586
+ "campo URL Pagina Checkout affinché ciò funzioni."
587
+
588
+ #: ../wp_shopping_cart_settings.php:279
589
+ msgid "Open PayPal Checkout Page in a New Tab"
590
+ msgstr "Apri la Pagina di Checkout di PayPal in una Nuova Scheda"
591
+
592
+ #: ../wp_shopping_cart_settings.php:281
593
+ msgid ""
594
+ "If checked the PayPal checkout page will be opened in a new tab/window when "
595
+ "the user clicks the checkout button."
596
+ msgstr ""
597
+ "Se selezionato la pagina di checkout PayPal verrà aperta in una nuova scheda/"
598
+ "finestra quando l'utente fa clic sul pulsante di checkout."
599
 
600
+ #: ../wp_shopping_cart_settings.php:285
601
  msgid "Reset Cart After Redirection to Return Page"
602
+ msgstr "Ripristina Carrello dopo reindirizzamento alla pagina di ritorno"
603
 
604
+ #: ../wp_shopping_cart_settings.php:287
605
  msgid ""
606
  "If checked the shopping cart will be reset when the customer lands on the "
607
  "return URL (Thank You) page."
608
  msgstr ""
609
+ "Se selezionata il Carrello verrà svuotato quando i clienti saranno "
610
+ "reindirizzati sulla pagina di ritorno (grazie per l'acquisto)."
611
 
612
+ #: ../wp_shopping_cart_settings.php:294
613
  msgid "Hide Shopping Cart Image"
614
  msgstr "Nascondi Immagine Carrello"
615
 
616
+ #: ../wp_shopping_cart_settings.php:295
617
  msgid "If ticked the shopping cart image will not be shown."
618
+ msgstr "Se selezionato non verrà mostrata l'immagine del Carrello."
619
+
620
+ #: ../wp_shopping_cart_settings.php:301
621
+ msgid "Customize the Note to Seller Text"
622
+ msgstr "Personalizza il testo della Nota per il Venditore"
623
+
624
+ #: ../wp_shopping_cart_settings.php:303
625
+ msgid ""
626
+ "Specify the text that you want to use for the note field on PayPal checkout "
627
+ "page to collect special instruction (leave this field empty if you don't "
628
+ "need to customize it). The default label for the note field is \"Add special "
629
+ "instructions to merchant\"."
630
+ msgstr ""
631
+ "Specifica il testo che desideri utilizzare per il campo nota sulla pagina di "
632
+ "checkout di PayPal per raccogliere istruzioni speciali (lascia il campo "
633
+ "vuoto se non è necessario personalizzarlo). L'etichetta di default per il "
634
+ "campo della nota è \"Aggiungi istruzioni speciali per il venditore\"."
635
+
636
+ #: ../wp_shopping_cart_settings.php:309
637
+ msgid "Custom Checkout Page Style Name"
638
+ msgstr "Nome dello Stile personalizzato per la Pagina Checkout"
639
+
640
+ #: ../wp_shopping_cart_settings.php:311
641
+ msgid ""
642
+ "Specify the page style name here if you want to customize the paypal "
643
+ "checkout page with custom page style otherwise leave this field empty."
644
+ msgstr ""
645
+ "Specifica il nome dello stile pagina qui se desideri personalizzare la "
646
+ "pagina di checkout di PayPal con stile di pagina personalizzata, altrimenti "
647
+ "lascia vuoto questo campo."
648
+
649
+ #: ../wp_shopping_cart_settings.php:317
650
+ msgid "Use Strict PayPal Email Address Checking"
651
+ msgstr "Utilizza controllo rigoroso dell'indirizzo email Paypal"
652
+
653
+ #: ../wp_shopping_cart_settings.php:318
654
+ msgid ""
655
+ "If checked the script will check to make sure that the PayPal email address "
656
+ "specified is the same as the account where the payment was deposited (Usage "
657
+ "of PayPal Email Alias will fail too)."
658
+ msgstr ""
659
+ "Se selezionato lo script controllerà per assicurarsi che l'indirizzo email "
660
+ "di PayPal specificato sia lo stesso del conto su cui è stato depositato il "
661
+ "pagamento (l'utilizzo di PayPal Email Alias darà ugualmente esito negativo)."
662
 
663
+ #: ../wp_shopping_cart_settings.php:324
664
  msgid "Use WP Affiliate Platform"
665
+ msgstr "Utilizza WP Affiliate Platform (piattaforma di affiliazione)"
666
 
667
+ #: ../wp_shopping_cart_settings.php:326
668
  msgid "Check this if using with the"
669
+ msgstr "Seleziona questo se si utilizza con il"
670
 
671
+ #: ../wp_shopping_cart_settings.php:326
672
  msgid ""
673
  "This plugin lets you run your own affiliate campaign/program and allows you "
674
  "to reward (pay commission) your affiliates for referred sales"
675
  msgstr ""
676
+ "Questo plugin consente di eseguire la propria campagna/programma di "
677
+ "affiliazione e ti permette di premiare i tuoi affiliati (pagare le "
678
+ "commissioni) per le vendite sponsorizzate"
679
+
680
+ #: ../wp_shopping_cart_settings.php:332
681
+ msgid "Testing and Debugging Settings"
682
+ msgstr "Opzioni di Testing e Debugging"
683
+
684
+ #: ../wp_shopping_cart_settings.php:338
685
+ msgid "Enable Debug"
686
+ msgstr "Abilita Debug"
687
+
688
+ #: ../wp_shopping_cart_settings.php:340
689
+ msgid ""
690
+ "If checked, debug output will be written to the log file. This is useful for "
691
+ "troubleshooting post payment failures"
692
+ msgstr ""
693
+ "Se selezionato, l'output di debug verrà scritto nel file di registro. Questo "
694
+ "è utile per la risoluzione di problemi ed errori successivi al pagamento."
695
+
696
+ #: ../wp_shopping_cart_settings.php:351
697
+ msgid "Enable Sandbox Testing"
698
+ msgstr "Abilita Sandbox Testing"
699
+
700
+ #: ../wp_shopping_cart_settings.php:353
701
+ msgid ""
702
+ "Check this option if you want to do PayPal sandbox testing. You will need to "
703
+ "create a PayPal sandbox account from PayPal Developer site"
704
+ msgstr ""
705
+ "Spunta questa opzione se vuoi fare il test sandbox PayPal. Sarà necessario "
706
+ "creare un account PayPal sandbox dal sito Paypal Developer."
707
 
708
+ #: ../wp_shopping_cart_settings.php:362 ../wp_shopping_cart_settings.php:506
709
  msgid "Update Options &raquo;"
710
+ msgstr "Aggiorna Opzioni &raquo;"
711
 
712
+ #: ../wp_shopping_cart_settings.php:366
713
  msgid "Like the Simple WordPress Shopping Cart Plugin?"
714
+ msgstr "Ti piace il plugin Simple WordPress Shopping Cart?"
715
 
716
+ #: ../wp_shopping_cart_settings.php:366
717
  msgid "Give it a good rating"
718
+ msgstr "Attribuiscigli una buona valutazione"
719
 
720
+ #: ../wp_shopping_cart_settings.php:431
721
+ msgid "Purchase Confirmation Email Settings"
722
+ msgstr "Impostazioni Email di Conferma del Pagamento"
723
 
724
+ #: ../wp_shopping_cart_settings.php:434
725
+ msgid ""
726
+ "The following options affect the emails that gets sent to your buyers after "
727
+ "a purchase."
728
+ msgstr ""
729
+ "Le seguenti opzioni riguardano l'email che viene inviata agli acquirenti "
730
+ "dopo un acquisto."
731
 
732
+ #: ../wp_shopping_cart_settings.php:439
733
+ msgid "Send Emails to Buyer After Purchase"
734
+ msgstr "Invia Email all'Acquirente dopo l'Acquisto"
735
 
736
+ #: ../wp_shopping_cart_settings.php:440
737
+ msgid ""
738
+ "If checked the plugin will send an email to the buyer with the sale details. "
739
+ "If digital goods are purchased then the email will contain the download "
740
+ "links for the purchased products."
741
+ msgstr ""
742
+ "Se selezionato il plugin invierà un'email all'acquirente con i dettagli di "
743
+ "vendita. Se vengono acquistati beni digitali allora l'email conterrà i link "
744
+ "di download per i prodotti acquistati."
745
 
746
+ #: ../wp_shopping_cart_settings.php:444
747
+ msgid "From Email Address"
748
+ msgstr "Da Indirizzo Email"
749
 
750
+ #: ../wp_shopping_cart_settings.php:446
751
+ msgid ""
752
+ "Example: Your Name &lt;sales@your-domain.com&gt; This is the email address "
753
+ "that will be used to send the email to the buyer. This name and email "
754
+ "address will appear in the from field of the email."
755
+ msgstr ""
756
+ "Esempio: Tuo Nome &lt;vendite@tuo-dominio.com&gt; Questo è l'indirizzo email "
757
+ "che verrà utilizzato per inviare l'email all'acquirente. Questo nome e "
758
+ "indirizzo email appariranno nei campi dell'email inviata."
759
 
760
+ #: ../wp_shopping_cart_settings.php:450
761
+ msgid "Buyer Email Subject"
762
+ msgstr "Oggetto dell'Email per l'Acquirente"
763
+
764
+ #: ../wp_shopping_cart_settings.php:452
765
+ msgid "This is the subject of the email that will be sent to the buyer."
766
+ msgstr "Questo è l'oggetto dell'email che verrà inviata all'acquirente."
767
+
768
+ #: ../wp_shopping_cart_settings.php:456
769
+ msgid "Buyer Email Body"
770
+ msgstr "Messaggio dell'Email per l'Acquirente"
771
+
772
+ #: ../wp_shopping_cart_settings.php:459
773
+ msgid ""
774
+ "This is the body of the email that will be sent to the buyer. Do not change "
775
+ "the text within the braces {}. You can use the following email tags in this "
776
+ "email body field:"
777
+ msgstr ""
778
+ "Questo è il corpo dell'email che verrà inviata all'acquirente. Non "
779
+ "modificare il testo all'interno delle parentesi graffe {}. È possibile "
780
+ "utilizzare i seguenti tag email in questo campo per il messaggio:"
781
+
782
+ #: ../wp_shopping_cart_settings.php:460 ../wp_shopping_cart_settings.php:491
783
+ msgid "First name of the buyer"
784
+ msgstr "Nome dell'acquirente"
785
+
786
+ #: ../wp_shopping_cart_settings.php:461 ../wp_shopping_cart_settings.php:492
787
+ msgid "Last name of the buyer"
788
+ msgstr "Cognome dell'acquirente"
789
+
790
+ #: ../wp_shopping_cart_settings.php:462 ../wp_shopping_cart_settings.php:494
791
+ msgid ""
792
+ "The item details of the purchased product (this will include the download "
793
+ "link for digital items)."
794
+ msgstr ""
795
+ "I dettagli del prodotto acquistato (questi includeranno il link per "
796
+ "scaricare oggetti digitali)."
797
+
798
+ #: ../wp_shopping_cart_settings.php:463 ../wp_shopping_cart_settings.php:495
799
+ msgid "The unique transaction ID of the purchase"
800
+ msgstr "L'ID univoco della transazione di acquisto"
801
+
802
+ #: ../wp_shopping_cart_settings.php:464 ../wp_shopping_cart_settings.php:496
803
+ msgid "The amount paid for the current transaction"
804
+ msgstr "L'importo pagato per la transazione corrente"
805
+
806
+ #: ../wp_shopping_cart_settings.php:465 ../wp_shopping_cart_settings.php:497
807
+ msgid "The date of the purchase"
808
+ msgstr "La data di acquisto"
809
+
810
+ #: ../wp_shopping_cart_settings.php:470
811
+ msgid "Send Emails to Seller After Purchase"
812
+ msgstr "Invia Emails al Venditore dopo gli Acquisti"
813
+
814
+ #: ../wp_shopping_cart_settings.php:471
815
+ msgid ""
816
+ "If checked the plugin will send an email to the seller with the sale details"
817
+ msgstr ""
818
+ "Se selezionato il plugin invierà un'email al venditore con i dettagli di "
819
+ "vendita"
820
+
821
+ #: ../wp_shopping_cart_settings.php:475
822
+ msgid "Notification Email Address*"
823
+ msgstr "Indirizzo Email di Notifica*"
824
+
825
+ #: ../wp_shopping_cart_settings.php:477
826
+ msgid ""
827
+ "This is the email address where the seller will be notified of product "
828
+ "sales. You can put multiple email addresses separated by comma (,) in the "
829
+ "above field to send the notification to multiple email addresses."
830
+ msgstr ""
831
+ "Questo è l'indirizzo email presso il quale il venditore sarà informato delle "
832
+ "vendite dei prodotti. È possibile inserire più indirizzi email separati da "
833
+ "virgola (,) nel campo sopra per inviare la notifica a più indirizzi email."
834
+
835
+ #: ../wp_shopping_cart_settings.php:481
836
+ msgid "Seller Email Subject*"
837
+ msgstr "Oggetto Email per il Venditore*"
838
+
839
+ #: ../wp_shopping_cart_settings.php:483
840
+ msgid ""
841
+ "This is the subject of the email that will be sent to the seller for record."
842
+ msgstr ""
843
+ "Questo è l'oggetto dell'email che verrà inviata al venditore per la notifica."
844
+
845
+ #: ../wp_shopping_cart_settings.php:487
846
+ msgid "Seller Email Body*"
847
+ msgstr "Messaggio Email per il Venditore*"
848
+
849
+ #: ../wp_shopping_cart_settings.php:490
850
+ msgid ""
851
+ "This is the body of the email that will be sent to the seller for record. Do "
852
+ "not change the text within the braces {}. You can use the following email "
853
+ "tags in this email body field:"
854
+ msgstr ""
855
+ "Questo è il corpo dell'email che verrà inviata al venditore per la notifica. "
856
+ "Non modificare il testo all'interno delle parentesi graffe {}. È possibile "
857
+ "utilizzare i seguenti tag email in questo campo per il messaggio dell'email:"
858
+
859
+ #: ../wp_shopping_cart_settings.php:493
860
+ msgid "Email Address of the buyer"
861
+ msgstr "Indirizzo Email dell'Acquirente"
862
+
863
+ #: ../wp_shopping_cart_shortcodes.php:19 ../wp_shopping_cart_shortcodes.php:48
864
+ msgid "Error! You must specify a product name in the shortcode."
865
+ msgstr "Errore! È necessario specificare il nome del prodotto nello shortcode."
866
+
867
+ #: ../wp_shopping_cart_shortcodes.php:22 ../wp_shopping_cart_shortcodes.php:51
868
+ msgid "Error! You must specify a price for your product in the shortcode."
869
+ msgstr ""
870
+ "Errore! È necessario specificare il prezzo del prodotto nello shortcode."
871
+
872
+ #: ../wp_shopping_cart_shortcodes.php:54
873
+ msgid ""
874
+ "Error! You must specify a thumbnail image for your product in the shortcode."
875
+ msgstr ""
876
+ "Errore! È necessario specificare l'immagine miniatura del prodotto nello "
877
+ "shortcode."
878
+
879
+ #: ../wp_shopping_cart_shortcodes.php:103
880
+ msgid "View Cart"
881
+ msgstr "Visualizza Carrello"
882
+
883
+ #: ../wp_shopping_cart_shortcodes.php:108
884
+ msgid "Cart is empty"
885
+ msgstr "Il Carrello è vuoto"
886
+
887
+ #~ msgid "Usage:"
888
+ #~ msgstr "Istruzioni:"
889
+
890
+ #~ msgid "Set the Plugin Settings from the Settings menu"
891
+ #~ msgstr "Imposta le opzioni del plugin dal Menu Impostazioni"
892
+
893
+ #~ msgid "Display WP Paypal Shopping Cart."
894
+ #~ msgstr "Visualizza WP Paypal Shopping Cart."
895
 
896
  #~ msgid "show-wp-shopping-cart"
897
  #~ msgstr "show-wp-shopping-cart"
languages/WSPSC-no_NO.mo ADDED
Binary file
languages/WSPSC-no_NO.po ADDED
@@ -0,0 +1,727 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WordPress Simple PayPal Shopping Cart\n"
4
+ "POT-Creation-Date: 2014-01-24 16:14+1000\n"
5
+ "PO-Revision-Date: 2014-09-25 23:14+0100\n"
6
+ "Last-Translator: R. F. Sivertsen <sivertsenIKT@gmail.com>\n"
7
+ "Language-Team: \n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=UTF-8\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+ "X-Generator: Poedit 1.6.9\n"
12
+ "X-Poedit-KeywordsList: _e;__\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "Language: nb_NO\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: class-coupon.php:19
19
+ msgid "Admin needs to configure some discount coupons before it can be used"
20
+ msgstr "Sideadministrtor må sette opp rabattkuponger før de kan benyttes!"
21
+
22
+ #: class-coupon.php:85
23
+ msgid "Coupon ID: "
24
+ msgstr "Kupong ID:"
25
+
26
+ #: class-coupon.php:86
27
+ msgid "Coupon Code: "
28
+ msgstr "Kupongkode:"
29
+
30
+ #: class-coupon.php:87
31
+ msgid "Discount Amt: "
32
+ msgstr "Rabatt:"
33
+
34
+ #: class-coupon.php:96
35
+ msgid "Coupon code used does not exist!"
36
+ msgstr "Kupongkoden finns ikke!"
37
+
38
+ #: class-coupon.php:101
39
+ msgid "Discount can only be applied once per checkout!"
40
+ msgstr "Rabatt kan bare gjelde en gang pr bestilling!"
41
+
42
+ #: class-coupon.php:123
43
+ msgid "Discount applied successfully! Total Discount: "
44
+ msgstr "Rabatten er trukket fra. Total rabatt:"
45
+
46
+ #: wp_shopping_cart.php:167
47
+ msgid "Error! Your session is out of sync. Please reset your session."
48
+ msgstr "Ups! Sesjonene er blitt avbrutt. Vennligst begynn på nytt.."
49
+
50
+ #: wp_shopping_cart.php:177
51
+ msgid ""
52
+ "Shopping Cart Configuration Error! You must specify a value in the 'Checkout "
53
+ "Page URL' field for the automatic redirection feature to work!"
54
+ msgstr ""
55
+ "Feil i konfigureringen av plugin. Det må spesifiseres verdi i feltet "
56
+ "'Bestillingssidens URL' slik at automatisk sideåpning kan fungere!"
57
+
58
+ #: wp_shopping_cart.php:259
59
+ msgid "Visit The Shop"
60
+ msgstr "Besøk butikken"
61
+
62
+ #: wp_shopping_cart.php:271 wp_shopping_cart_settings.php:101
63
+ msgid "USD"
64
+ msgstr "usd"
65
+
66
+ #: wp_shopping_cart.php:275 wp_shopping_cart_settings.php:104
67
+ msgid "$"
68
+ msgstr "$"
69
+
70
+ #: wp_shopping_cart.php:301
71
+ msgid "Cart"
72
+ msgstr "Handlevogn"
73
+
74
+ #: wp_shopping_cart.php:310
75
+ msgid "Hit enter to submit new Quantity."
76
+ msgstr "Taste Enter for å oppdatere antall"
77
+
78
+ #: wp_shopping_cart.php:321
79
+ msgid "Item Name"
80
+ msgstr "Produkt"
81
+
82
+ #: wp_shopping_cart.php:321
83
+ msgid "Quantity"
84
+ msgstr "Antall"
85
+
86
+ #: wp_shopping_cart.php:321
87
+ msgid "Price"
88
+ msgstr "Pris"
89
+
90
+ #: wp_shopping_cart.php:355
91
+ msgid "Remove"
92
+ msgstr "Ta bort"
93
+
94
+ #: wp_shopping_cart.php:384
95
+ msgid "Subtotal"
96
+ msgstr "Subtotal"
97
+
98
+ #: wp_shopping_cart.php:385
99
+ msgid "Shipping"
100
+ msgstr "Frakt"
101
+
102
+ #: wp_shopping_cart.php:388 wp_shopping_cart_orders.php:89
103
+ #: wp_shopping_cart_orders.php:152
104
+ msgid "Total"
105
+ msgstr "Total"
106
+
107
+ #: wp_shopping_cart.php:397
108
+ msgid "Enter Coupon Code"
109
+ msgstr "Oppgi kupong-kode"
110
+
111
+ #: wp_shopping_cart.php:400
112
+ msgid "Apply"
113
+ msgstr "Velg"
114
+
115
+ #: wp_shopping_cart.php:414
116
+ msgid "paypal_checkout_EN.png"
117
+ msgstr "paypal_checkout_EN.png"
118
+
119
+ #: wp_shopping_cart.php:414
120
+ msgid "Make payments with PayPal - it\\'s fast, free and secure!"
121
+ msgstr "Betal gjennom Pay-Pal! Det er raskt, gratis og sikkert!"
122
+
123
+ #: wp_shopping_cart.php:476 wp_shopping_cart.php:559 wp_shopping_cart.php:618
124
+ #: wp_shopping_cart.php:666 wp_shopping_cart.php:672
125
+ #: wp_shopping_cart_settings.php:117
126
+ msgid "Add to Cart"
127
+ msgstr "Legg i handlevogn"
128
+
129
+ #: wp_shopping_cart.php:744
130
+ msgid "WP Paypal Shopping Cart"
131
+ msgstr "WP Paypal handlevogn"
132
+
133
+ #: wp_shopping_cart.php:744
134
+ msgid "WP Shopping Cart"
135
+ msgstr "WP handlevogn"
136
+
137
+ #: wp_shopping_cart.php:767
138
+ msgid "Shopping Cart"
139
+ msgstr "Handlevogn"
140
+
141
+ #: wp_shopping_cart.php:793
142
+ msgid "Settings"
143
+ msgstr "Instillinger"
144
+
145
+ #: wp_shopping_cart_discounts_menu.php:51 wp_shopping_cart_settings.php:172
146
+ #: wp_shopping_cart_settings.php:366
147
+ msgid ""
148
+ "For more information, updates, detailed documentation and video tutorial, "
149
+ "please visit:"
150
+ msgstr "For mer informasjon, oppdateringer og detaljert dokumentasjon gå til"
151
+
152
+ #: wp_shopping_cart_discounts_menu.php:52 wp_shopping_cart_settings.php:173
153
+ #: wp_shopping_cart_settings.php:367
154
+ msgid "WP Simple Cart Homepage"
155
+ msgstr "WP Simple Cart Homepage"
156
+
157
+ #: wp_shopping_cart_discounts_menu.php:60
158
+ msgid "Coupon/Discount Settings"
159
+ msgstr "Kupong- og rabattinstillinger"
160
+
161
+ #: wp_shopping_cart_discounts_menu.php:67
162
+ msgid "Enable Discount Coupon Feature"
163
+ msgstr "Slå på rabatt/kupongfunksjon"
164
+
165
+ #: wp_shopping_cart_discounts_menu.php:70
166
+ msgid ""
167
+ "When checked your customers will be able to enter a coupon code in the "
168
+ "shopping cart before checkout."
169
+ msgstr ""
170
+ "Når kunden sjekker ut vil de kunne oppgi kupongkode i handlevogn før "
171
+ "betaling."
172
+
173
+ #: wp_shopping_cart_discounts_menu.php:77
174
+ msgid "Update &raquo;"
175
+ msgstr "Oppdatere &raquo;"
176
+
177
+ #: wp_shopping_cart_discounts_menu.php:93
178
+ msgid "Add Coupon/Discount"
179
+ msgstr "Legg til kupong/rabatt"
180
+
181
+ #: wp_shopping_cart_discounts_menu.php:113
182
+ msgid "Save Coupon &raquo;"
183
+ msgstr "Lagre kupong &raquo;"
184
+
185
+ #: wp_shopping_cart_discounts_menu.php:131
186
+ msgid "Coupon Code"
187
+ msgstr "Kupongkode"
188
+
189
+ #: wp_shopping_cart_discounts_menu.php:132
190
+ msgid "Discount Rate (%)"
191
+ msgstr "Rabatt i %"
192
+
193
+ #: wp_shopping_cart_discounts_menu.php:161
194
+ msgid "No Coupons Configured."
195
+ msgstr "Ingen kuponger er definert"
196
+
197
+ #: wp_shopping_cart_discounts_menu.php:166
198
+ msgid "No Record found"
199
+ msgstr "Ingen data funnet"
200
+
201
+ #: wp_shopping_cart_misc_functions.php:155
202
+ msgid "Your Shopping Cart"
203
+ msgstr "Din handlevogn"
204
+
205
+ #: wp_shopping_cart_misc_functions.php:156
206
+ msgid "Your cart is empty"
207
+ msgstr "Handlevognen er tom"
208
+
209
+ #: wp_shopping_cart_orders.php:10
210
+ msgid "Cart Orders"
211
+ msgstr "Bestillinger"
212
+
213
+ #: wp_shopping_cart_orders.php:11
214
+ msgid "Cart Order"
215
+ msgstr "Bestilling"
216
+
217
+ #: wp_shopping_cart_orders.php:12
218
+ msgid "Add New"
219
+ msgstr "Legg til ny"
220
+
221
+ #: wp_shopping_cart_orders.php:13
222
+ msgid "Add New Order"
223
+ msgstr "Legg til ny bestilling"
224
+
225
+ #: wp_shopping_cart_orders.php:14
226
+ msgid "Edit"
227
+ msgstr "Rediger"
228
+
229
+ #: wp_shopping_cart_orders.php:15
230
+ msgid "Edit Order"
231
+ msgstr "Rediger bestilling"
232
+
233
+ #: wp_shopping_cart_orders.php:16
234
+ msgid "New Order"
235
+ msgstr "Ny bestilling"
236
+
237
+ #: wp_shopping_cart_orders.php:17
238
+ msgid "View"
239
+ msgstr "Vis"
240
+
241
+ #: wp_shopping_cart_orders.php:18
242
+ msgid "View Order"
243
+ msgstr "Se bestilling"
244
+
245
+ #: wp_shopping_cart_orders.php:19
246
+ msgid "Search Order"
247
+ msgstr "Søk etter bestilling"
248
+
249
+ #: wp_shopping_cart_orders.php:20
250
+ msgid "No order found"
251
+ msgstr "Ingen bestilling funnet"
252
+
253
+ #: wp_shopping_cart_orders.php:21
254
+ msgid "No order found in Trash"
255
+ msgstr "Ingen bestilling i søppelkurv"
256
+
257
+ #: wp_shopping_cart_orders.php:22
258
+ msgid "Parent Order"
259
+ msgstr "Overordnet bestilling"
260
+
261
+ #: wp_shopping_cart_orders.php:38
262
+ msgid "Order Review"
263
+ msgstr "Bestillingsoversikt"
264
+
265
+ #: wp_shopping_cart_orders.php:68
266
+ msgid "Order ID: #"
267
+ msgstr "Bestillingsnr: #"
268
+
269
+ #: wp_shopping_cart_orders.php:70
270
+ msgid "Transaction ID: #"
271
+ msgstr "TransaksjonsID: #"
272
+
273
+ #: wp_shopping_cart_orders.php:73 wp_shopping_cart_orders.php:149
274
+ msgid "First Name"
275
+ msgstr "Fornavn"
276
+
277
+ #: wp_shopping_cart_orders.php:77 wp_shopping_cart_orders.php:150
278
+ msgid "Last Name"
279
+ msgstr "Etternavn"
280
+
281
+ #: wp_shopping_cart_orders.php:81
282
+ msgid "Email Address"
283
+ msgstr "Mailadresse"
284
+
285
+ #: wp_shopping_cart_orders.php:85
286
+ msgid "IP Address"
287
+ msgstr "IP - adresse"
288
+
289
+ #: wp_shopping_cart_orders.php:93
290
+ msgid "Address"
291
+ msgstr "Postadresse"
292
+
293
+ #: wp_shopping_cart_orders.php:97
294
+ msgid "Buyer Email Sent?"
295
+ msgstr "Kundemail sendt?"
296
+
297
+ #: wp_shopping_cart_orders.php:101
298
+ msgid "Item(s) Ordered:"
299
+ msgstr "Bestilte produkter:"
300
+
301
+ #: wp_shopping_cart_orders.php:105
302
+ msgid "Applied Coupon Code:"
303
+ msgstr "Kupongkode benyttet:"
304
+
305
+ #: wp_shopping_cart_orders.php:148
306
+ msgid "Order ID"
307
+ msgstr "Ordrenummer"
308
+
309
+ #: wp_shopping_cart_orders.php:151
310
+ msgid "Email"
311
+ msgstr "Email"
312
+
313
+ #: wp_shopping_cart_orders.php:153
314
+ msgid "Status"
315
+ msgstr "Status"
316
+
317
+ #: wp_shopping_cart_orders.php:154
318
+ msgid "Date"
319
+ msgstr "Dato"
320
+
321
+ #: wp_shopping_cart_settings.php:10
322
+ msgid "WP Paypal Shopping Cart Options"
323
+ msgstr "Instillinger for WP Paypal Shopping Cart"
324
+
325
+ #: wp_shopping_cart_settings.php:97
326
+ msgid "Options Updated!"
327
+ msgstr "Instillinger Oppdatert!"
328
+
329
+ #: wp_shopping_cart_settings.php:169
330
+ msgid "Simple PayPal Shopping Cart Settings"
331
+ msgstr "Instillinger for Simple PayPal Shopping Cart"
332
+
333
+ #: wp_shopping_cart_settings.php:177
334
+ msgid "Quick Usage Guide"
335
+ msgstr "Hurtig-guide"
336
+
337
+ #: wp_shopping_cart_settings.php:180
338
+ msgid "Step 1) "
339
+ msgstr "Trinn 1)"
340
+
341
+ #: wp_shopping_cart_settings.php:180
342
+ msgid "To add an 'Add to Cart' button for a product simply add the shortcode"
343
+ msgstr "Legg til 'short-code' for å legge til en 'Add to Cart' - knapp "
344
+
345
+ #: wp_shopping_cart_settings.php:180
346
+ msgid "PRODUCT-NAME"
347
+ msgstr "PRODUCT-NAME"
348
+
349
+ #: wp_shopping_cart_settings.php:180
350
+ msgid "PRODUCT-PRICE"
351
+ msgstr "PRODUCT-PRICE"
352
+
353
+ #: wp_shopping_cart_settings.php:180
354
+ msgid ""
355
+ "to a post or page next to the product. Replace PRODUCT-NAME and PRODUCT-"
356
+ "PRICE with the actual name and price of your product."
357
+ msgstr ""
358
+ "ved produktet i et innlegg eller på en side. Bytt ut PRODUCT-NAME og "
359
+ "PRODUCT-PRICE med faktisk navn og pris på produktet."
360
+
361
+ #: wp_shopping_cart_settings.php:181
362
+ msgid "Example add to cart button shortcode usage:"
363
+ msgstr "Eksempel på legge til shortcode for 'Add to Cart' - knapp"
364
+
365
+ #: wp_shopping_cart_settings.php:182
366
+ msgid "Step 2) "
367
+ msgstr "Trinn 2)"
368
+
369
+ #: wp_shopping_cart_settings.php:182
370
+ msgid ""
371
+ "To add the shopping cart to a post or page (example: a checkout page) simply "
372
+ "add the shortcode"
373
+ msgstr ""
374
+ "For å legge til handlevogn til en side eller et innlegg (f.eks. Din Ordre) "
375
+ "legger du ganske enkelt til shortcode"
376
+
377
+ #: wp_shopping_cart_settings.php:182
378
+ msgid ""
379
+ "to a post or page or use the sidebar widget to add the shopping cart to the "
380
+ "sidebar."
381
+ msgstr ""
382
+ "til et innlegg eller en side bruker du 'sidebar widget' for å legge "
383
+ "handlevogn til sidebaren."
384
+
385
+ #: wp_shopping_cart_settings.php:183
386
+ msgid "Example shopping cart shortcode usage:"
387
+ msgstr "Eksempel på bruk av shortcode:"
388
+
389
+ #: wp_shopping_cart_settings.php:192
390
+ msgid "PayPal and Shopping Cart Settings"
391
+ msgstr "Instillinger for PayPal handlevogn"
392
+
393
+ #: wp_shopping_cart_settings.php:198
394
+ msgid "Paypal Email Address"
395
+ msgstr "PayPal e-mail adresse"
396
+
397
+ #: wp_shopping_cart_settings.php:202
398
+ msgid "Shopping Cart title"
399
+ msgstr "Handlevognstittel"
400
+
401
+ #: wp_shopping_cart_settings.php:206
402
+ msgid "Text/Image to Show When Cart Empty"
403
+ msgstr "Tekst eller bilde som vises om handlevogn er tom"
404
+
405
+ #: wp_shopping_cart_settings.php:207
406
+ msgid ""
407
+ "You can either enter plain text or the URL of an image that you want to show "
408
+ "when the shopping cart is empty"
409
+ msgstr ""
410
+ "Bruk enten enkel tekst eller URL til et bilde for å vise at handlevognen er "
411
+ "tom"
412
+
413
+ #: wp_shopping_cart_settings.php:210
414
+ msgid "Currency"
415
+ msgstr "Valuta"
416
+
417
+ #: wp_shopping_cart_settings.php:211 wp_shopping_cart_settings.php:215
418
+ #: wp_shopping_cart_settings.php:242
419
+ msgid "e.g."
420
+ msgstr "f.eks."
421
+
422
+ #: wp_shopping_cart_settings.php:214
423
+ msgid "Currency Symbol"
424
+ msgstr "Valutasymbol"
425
+
426
+ #: wp_shopping_cart_settings.php:220
427
+ msgid "Base Shipping Cost"
428
+ msgstr "Standard fraktomkostninger"
429
+
430
+ #: wp_shopping_cart_settings.php:221
431
+ msgid ""
432
+ "This is the base shipping cost that will be added to the total of individual "
433
+ "products shipping cost. Put 0 if you do not want to charge shipping cost or "
434
+ "use base shipping cost."
435
+ msgstr ""
436
+ "Dette er standard fraktomkostninger som vil bli lagt til de enkelte "
437
+ "produktenes fraktkostnad. Sett inn 0 om du ikke vil benytte fraktkostnad "
438
+ "eller standard fraktkostnad"
439
+
440
+ #: wp_shopping_cart_settings.php:221
441
+ msgid "Learn More on Shipping Calculation"
442
+ msgstr "Lær mer om beregning av fraktkostnad"
443
+
444
+ #: wp_shopping_cart_settings.php:225
445
+ msgid "Free Shipping for Orders Over"
446
+ msgstr "Gratis frakt for ordreverdi over "
447
+
448
+ #: wp_shopping_cart_settings.php:226
449
+ msgid ""
450
+ "When a customer orders more than this amount he/she will get free shipping. "
451
+ "Leave empty if you do not want to use it."
452
+ msgstr ""
453
+ "Om en kunde handler for mer enn dette beløpet leveres varene fraktfritt. "
454
+ "Sett dette feltet tomt om du ikke vil bruke dette alternativet."
455
+
456
+ #: wp_shopping_cart_settings.php:230
457
+ msgid "Must Collect Shipping Address on PayPal"
458
+ msgstr "Må hente leveringsadresse fra PayPal"
459
+
460
+ #: wp_shopping_cart_settings.php:231
461
+ msgid ""
462
+ "If checked the customer will be forced to enter a shipping address on PayPal "
463
+ "when checking out."
464
+ msgstr ""
465
+ "Hvis huket av blir kunden tvunget til å oppgi leveringsadresse på PayPal."
466
+
467
+ #: wp_shopping_cart_settings.php:235
468
+ msgid "Use PayPal Profile Based Shipping"
469
+ msgstr "Bruk frakt basert på profil i PayPal"
470
+
471
+ #: wp_shopping_cart_settings.php:236
472
+ msgid "Check this if you want to use"
473
+ msgstr "Huk av for denne dersom du vil"
474
+
475
+ #: wp_shopping_cart_settings.php:236
476
+ msgid "PayPal profile based shipping"
477
+ msgstr "frakt basert på profil i PayPal"
478
+
479
+ #: wp_shopping_cart_settings.php:236
480
+ msgid ""
481
+ "Using this will ignore any other shipping options that you have specified in "
482
+ "this plugin."
483
+ msgstr ""
484
+ "Denne opsjonen vil ignorere alle andre fraktinstillinger du har spesifisert"
485
+
486
+ #: wp_shopping_cart_settings.php:240
487
+ msgid "Add to Cart button text or Image"
488
+ msgstr "Tekst eller bilde for å legge til handlevogn"
489
+
490
+ #: wp_shopping_cart_settings.php:242
491
+ msgid ""
492
+ "To use a customized image as the button simply enter the URL of the image "
493
+ "file."
494
+ msgstr "Oppgi URL for å bruke et selvvalgt bilde til knappen"
495
+
496
+ #: wp_shopping_cart_settings.php:248
497
+ msgid "Return URL"
498
+ msgstr "URL å sendes tilbake til"
499
+
500
+ #: wp_shopping_cart_settings.php:249
501
+ msgid ""
502
+ "This is the URL the customer will be redirected to after a successful payment"
503
+ msgstr ""
504
+ "Kunden sendes tilbake til denne URL når betalingen er gjennomført og godkjent"
505
+
506
+ #: wp_shopping_cart_settings.php:253
507
+ msgid "Products Page URL"
508
+ msgstr "Produktsidens URL"
509
+
510
+ #: wp_shopping_cart_settings.php:254
511
+ msgid ""
512
+ "This is the URL of your products page if you have any. If used, the shopping "
513
+ "cart widget will display a link to this page when cart is empty"
514
+ msgstr ""
515
+ "Dette er URL til produktsiden - om du benytter dette. Hvis brukt vil widget "
516
+ "for handlevogn vise en link til denne siden om handlevognen er tom"
517
+
518
+ #: wp_shopping_cart_settings.php:258
519
+ msgid "Automatic redirection to checkout page"
520
+ msgstr "Automatisk retur til siden for dine ordre"
521
+
522
+ #: wp_shopping_cart_settings.php:260
523
+ msgid "Checkout Page URL"
524
+ msgstr "URL for dine ordre"
525
+
526
+ #: wp_shopping_cart_settings.php:261
527
+ msgid ""
528
+ "If checked the visitor will be redirected to the Checkout page after a "
529
+ "product is added to the cart. You must enter a URL in the Checkout Page URL "
530
+ "field for this to work."
531
+ msgstr ""
532
+ "Om huket av, vil kunden sendes til siden for sine ordre etter at et produkt "
533
+ "er lagt til handlevognen. Du må legge til en URL i 'URL for dine ordre' for "
534
+ "å dette skal fungere."
535
+
536
+ #: wp_shopping_cart_settings.php:265
537
+ msgid "Reset Cart After Redirection to Return Page"
538
+ msgstr "Nullstill handlevogn etter retur til websiden"
539
+
540
+ #: wp_shopping_cart_settings.php:267
541
+ msgid ""
542
+ "If checked the shopping cart will be reset when the customer lands on the "
543
+ "return URL (Thank You) page."
544
+ msgstr ""
545
+ "Om huket av vil handlevognen tømmes når kunden returnerer til Takk for ordre "
546
+ "- side"
547
+
548
+ #: wp_shopping_cart_settings.php:274
549
+ msgid "Hide Shopping Cart Image"
550
+ msgstr "Skjul bilde av handlevogn"
551
+
552
+ #: wp_shopping_cart_settings.php:275
553
+ msgid "If ticked the shopping cart image will not be shown."
554
+ msgstr "Om huket av vil ikke bilde av handlevogn vises"
555
+
556
+ #: wp_shopping_cart_settings.php:281
557
+ msgid "Customize the Note to Seller Text"
558
+ msgstr "Tilpass melding til selger"
559
+
560
+ #: wp_shopping_cart_settings.php:283
561
+ msgid ""
562
+ "Specify the text that you want to use for the note field on PayPal checkout "
563
+ "page to collect special instruction (leave this field empty if you don't "
564
+ "need to customize it). The default label for the note field is \"Add special "
565
+ "instructions to merchant\"."
566
+ msgstr ""
567
+ "Spesifiser teksten du vil bruke for notatfeltet på PayPals utsjekkingsside "
568
+ "for å samle spesielle instruksjoner (la feltet være tomt om du ikke trenger "
569
+ "å tilpasse det). Standardteksten for notatfeltet er \"Add special "
570
+ "instructions to merchant\"."
571
+
572
+ #: wp_shopping_cart_settings.php:289
573
+ msgid "Use WP Affiliate Platform"
574
+ msgstr "Bruk WP Affiliate Platform"
575
+
576
+ #: wp_shopping_cart_settings.php:291
577
+ msgid "Check this if using with the"
578
+ msgstr "Huk av for denne dersom du bruker med"
579
+
580
+ #: wp_shopping_cart_settings.php:291
581
+ msgid ""
582
+ "This plugin lets you run your own affiliate campaign/program and allows you "
583
+ "to reward (pay commission) your affiliates for referred sales"
584
+ msgstr ""
585
+ "This plugin lets you run your own affiliate campaign/program and allows you "
586
+ "to reward (pay commission) your affiliates for referred sales"
587
+
588
+ #: wp_shopping_cart_settings.php:297
589
+ msgid "Testing and Debugging Settings"
590
+ msgstr "Instillinger for test og debugging"
591
+
592
+ #: wp_shopping_cart_settings.php:303
593
+ msgid "Enable Debug"
594
+ msgstr "Slå på debugging"
595
+
596
+ #: wp_shopping_cart_settings.php:305
597
+ msgid ""
598
+ "If checked, debug output will be written to the log file. This is useful for "
599
+ "troubleshooting post payment failures"
600
+ msgstr ""
601
+ "Huk av for at debugging vil skrives til logfilen. Dette er nyttig for å "
602
+ "feilsøke de fleste betalingsfeil."
603
+
604
+ #: wp_shopping_cart_settings.php:315
605
+ msgid "Enable Sandbox Testing"
606
+ msgstr "Slå på testing i Sandbox"
607
+
608
+ #: wp_shopping_cart_settings.php:317
609
+ msgid ""
610
+ "Check this option if you want to do PayPal sandbox testing. You will need to "
611
+ "create a PayPal sandbox account from PayPal Developer site"
612
+ msgstr ""
613
+ "Huk av for dette dersom du vil foreta testing i PayPal Sandbox. Du må da "
614
+ "opprette en PayPal Sandbox - konto på PayPal utviklersiden"
615
+
616
+ #: wp_shopping_cart_settings.php:326 wp_shopping_cart_settings.php:415
617
+ msgid "Update Options &raquo;"
618
+ msgstr "Oppdateringsalternativer&raquo;"
619
+
620
+ #: wp_shopping_cart_settings.php:330
621
+ msgid "Like the Simple WordPress Shopping Cart Plugin?"
622
+ msgstr "Liker du tillegget Simple WordPress Shopping Cart Plugin?"
623
+
624
+ #: wp_shopping_cart_settings.php:330
625
+ msgid "Give it a good rating"
626
+ msgstr "Gi tillegget god vurdering"
627
+
628
+ #: wp_shopping_cart_settings.php:333
629
+ msgid "Need a shopping cart plugin with more features? Checkout my "
630
+ msgstr "Trenger du en handlevogn med flere muligheter? Se min"
631
+
632
+ #: wp_shopping_cart_settings.php:334
633
+ msgid "WP eStore Plugin"
634
+ msgstr "WP eStore Plugin"
635
+
636
+ #: wp_shopping_cart_settings.php:375
637
+ msgid "Purchase Confirmation Email Settings"
638
+ msgstr "Instillinger for email med bekreftelse av kjøp"
639
+
640
+ #: wp_shopping_cart_settings.php:378
641
+ msgid ""
642
+ "The following options affect the emails that gets sent to your buyers after "
643
+ "a purchase."
644
+ msgstr "De følgende valgene gjelder mail som blir sendt til kunden etter kjøp"
645
+
646
+ #: wp_shopping_cart_settings.php:383
647
+ msgid "Send Emails to Buyer After Purchase"
648
+ msgstr "Send mail til kunden etter kjøp"
649
+
650
+ #: wp_shopping_cart_settings.php:384
651
+ msgid ""
652
+ "If checked the plugin will send an email to the buyer with the sale details. "
653
+ "If digital goods are purchased then the email will contain the download "
654
+ "links for the purchased products."
655
+ msgstr ""
656
+ "Om huket av vil det bli sendt en mail til kunden med detaljer om kjøpet. Om "
657
+ "digitale produkter er kjøpt, vil mailen inneholde link til det eller de "
658
+ "kjøpte produktene."
659
+
660
+ #: wp_shopping_cart_settings.php:388
661
+ msgid "From Email Address"
662
+ msgstr "Fra adresse i mailen"
663
+
664
+ #: wp_shopping_cart_settings.php:390
665
+ msgid ""
666
+ "Example: Your Name &lt;sales@your-domain.com&gt; This is the email address "
667
+ "that will be used to send the email to the buyer. This name and email "
668
+ "address will appear in the from field of the email."
669
+ msgstr ""
670
+ "Eksepel: Your Name &lt;sales@your-domain.com&gt; Dette er mailadressen som "
671
+ "vil bli brukt for å sende mail til kunden. Navnet og mailadressen vil vises "
672
+ "i fra - feltet i mailen"
673
+
674
+ #: wp_shopping_cart_settings.php:394
675
+ msgid "Buyer Email Subject"
676
+ msgstr "Kundens mail-tittel"
677
+
678
+ #: wp_shopping_cart_settings.php:396
679
+ msgid "This is the subject of the email that will be sent to the buyer."
680
+ msgstr "Dette er tittelen i mailen som blir sendt til kunden"
681
+
682
+ #: wp_shopping_cart_settings.php:400
683
+ msgid "Buyer Email Body"
684
+ msgstr "Kundens mail-melding"
685
+
686
+ #: wp_shopping_cart_settings.php:403
687
+ msgid ""
688
+ "This is the body of the email that will be sent to the buyer. Do not change "
689
+ "the text within the braces {}. You can use the following email tags in this "
690
+ "email body field:"
691
+ msgstr ""
692
+ "Meldingsteksten som vil bli sendt til kunden. Endre ikke tekst i klammer "
693
+ "{}. Du kan bruke følgede tags i meldingsteksten:"
694
+
695
+ #: wp_shopping_cart_settings.php:404
696
+ msgid "First name of the buyer"
697
+ msgstr "Kjøperens fornavn"
698
+
699
+ #: wp_shopping_cart_settings.php:405
700
+ msgid "Last name of the buyer"
701
+ msgstr "Kjøperens etternavn"
702
+
703
+ #: wp_shopping_cart_settings.php:406
704
+ msgid ""
705
+ "The item details of the purchased product (this will include the download "
706
+ "link for digital items)."
707
+ msgstr ""
708
+ "Detaljer om produktet som er kjøpt (inkludert ev. link til digitale produkt)."
709
+
710
+ #: wp_shopping_cart_shortcodes.php:16 wp_shopping_cart_shortcodes.php:40
711
+ msgid "Error! You must specify a product name in the shortcode."
712
+ msgstr "Feil! Du må spesifisere et produktnavn i Shortcode"
713
+
714
+ #: wp_shopping_cart_shortcodes.php:19 wp_shopping_cart_shortcodes.php:43
715
+ msgid "Error! You must specify a price for your product in the shortcode."
716
+ msgstr "Feil! Du må spesifisere en pris for produktet i Shortcode"
717
+
718
+ #: wp_shopping_cart_shortcodes.php:46
719
+ msgid ""
720
+ "Error! You must specify a thumbnail image for your product in the shortcode."
721
+ msgstr ""
722
+ "Feil! Du må spsifisere et miniatyrbilde (Thumbnail) for produktet i "
723
+ "Shortcode."
724
+
725
+ #: lib/gallery-wp-cart.php:32
726
+ msgid "[View with PicLens]"
727
+ msgstr "[Vis med PicLens]"
languages/WSPSC-tr_TR.mo ADDED
Binary file
languages/WSPSC-tr_TR.po ADDED
@@ -0,0 +1,743 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WordPress Simple PayPal Shopping Cart\n"
4
+ "POT-Creation-Date: 2014-01-24 16:14+1000\n"
5
+ "PO-Revision-Date: 2015-04-15 15:51+0200\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: \n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=UTF-8\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+ "X-Generator: Poedit 1.7.5\n"
12
+ "X-Poedit-KeywordsList: _e;__\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "Plural-Forms: nplurals=1; plural=0;\n"
15
+ "Language: tr_TR\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: class-coupon.php:19
19
+ msgid "Admin needs to configure some discount coupons before it can be used"
20
+ msgstr ""
21
+ "İndirim kuponlarının kullanılabilmesi için öncelikle Yönetici tarafından "
22
+ "tanımlanmaları gerekiyor"
23
+
24
+ #: class-coupon.php:85
25
+ msgid "Coupon ID: "
26
+ msgstr "Kupon ID: "
27
+
28
+ #: class-coupon.php:86
29
+ msgid "Coupon Code: "
30
+ msgstr "Kupon Kodu: "
31
+
32
+ #: class-coupon.php:87
33
+ msgid "Discount Amt: "
34
+ msgstr "İndirim Miktarı: "
35
+
36
+ #: class-coupon.php:96
37
+ msgid "Coupon code used does not exist!"
38
+ msgstr "Kullanılan kupon kodu geçersiz!"
39
+
40
+ #: class-coupon.php:101
41
+ msgid "Discount can only be applied once per checkout!"
42
+ msgstr "Her alışverişinizde yalnızca bir defa indirim kullanılabilir!"
43
+
44
+ #: class-coupon.php:123
45
+ msgid "Discount applied successfully! Total Discount: "
46
+ msgstr "İndirim başarıyla uygulandı! Toplam İndirim: "
47
+
48
+ #: wp_shopping_cart.php:167
49
+ msgid "Error! Your session is out of sync. Please reset your session."
50
+ msgstr ""
51
+ "Hata! Oturumunuz eşzamanlılığını kaybetti. Lütfen oturumunuzu yenileyin."
52
+
53
+ #: wp_shopping_cart.php:177
54
+ msgid ""
55
+ "Shopping Cart Configuration Error! You must specify a value in the 'Checkout "
56
+ "Page URL' field for the automatic redirection feature to work!"
57
+ msgstr ""
58
+ "Alışveriş Sepeti Konfigürasyon Hatası! Otomatik yönlendirme özelliğinin "
59
+ "çalışabilmesi için 'Checkout Page URL' alanında bir değer tanımlamalısınız."
60
+
61
+ #: wp_shopping_cart.php:259
62
+ msgid "Visit The Shop"
63
+ msgstr "Mağazayı Ziyaret Et"
64
+
65
+ #: wp_shopping_cart.php:271 wp_shopping_cart_settings.php:101
66
+ msgid "USD"
67
+ msgstr "USD"
68
+
69
+ #: wp_shopping_cart.php:275 wp_shopping_cart_settings.php:104
70
+ msgid "$"
71
+ msgstr "$"
72
+
73
+ #: wp_shopping_cart.php:301
74
+ msgid "Cart"
75
+ msgstr "Sepet"
76
+
77
+ #: wp_shopping_cart.php:310
78
+ msgid "Hit enter to submit new Quantity."
79
+ msgstr "Yeni miktarı belirlemek için Enter'a basın."
80
+
81
+ #: wp_shopping_cart.php:321
82
+ msgid "Item Name"
83
+ msgstr "Ürün Adı"
84
+
85
+ #: wp_shopping_cart.php:321
86
+ msgid "Quantity"
87
+ msgstr "Miktar"
88
+
89
+ #: wp_shopping_cart.php:321
90
+ msgid "Price"
91
+ msgstr "Fiyat"
92
+
93
+ #: wp_shopping_cart.php:355
94
+ msgid "Remove"
95
+ msgstr "Kaldır"
96
+
97
+ #: wp_shopping_cart.php:384
98
+ msgid "Subtotal"
99
+ msgstr "Alt Toplam"
100
+
101
+ #: wp_shopping_cart.php:385
102
+ msgid "Shipping"
103
+ msgstr "Nakliye"
104
+
105
+ #: wp_shopping_cart.php:388 wp_shopping_cart_orders.php:89
106
+ #: wp_shopping_cart_orders.php:152
107
+ msgid "Total"
108
+ msgstr "Toplam"
109
+
110
+ #: wp_shopping_cart.php:397
111
+ msgid "Enter Coupon Code"
112
+ msgstr "Kupon Kodunu Girin"
113
+
114
+ #: wp_shopping_cart.php:400
115
+ msgid "Apply"
116
+ msgstr "Uygula"
117
+
118
+ #: wp_shopping_cart.php:414
119
+ msgid "paypal_checkout_EN.png"
120
+ msgstr "paypal_checkout_TR.png"
121
+
122
+ #: wp_shopping_cart.php:414
123
+ msgid "Make payments with PayPal - it\\'s fast, free and secure!"
124
+ msgstr "Ödemelerinizi Paypal ile yapın - Hızlı, ücretsiz ve güvenli!"
125
+
126
+ #: wp_shopping_cart.php:476 wp_shopping_cart.php:559 wp_shopping_cart.php:618
127
+ #: wp_shopping_cart.php:666 wp_shopping_cart.php:672
128
+ #: wp_shopping_cart_settings.php:117
129
+ msgid "Add to Cart"
130
+ msgstr "Sepete Ekle"
131
+
132
+ #: wp_shopping_cart.php:744
133
+ msgid "WP Paypal Shopping Cart"
134
+ msgstr "WP Paypal Alışveriş Sepeti"
135
+
136
+ #: wp_shopping_cart.php:744
137
+ msgid "WP Shopping Cart"
138
+ msgstr "WP Alışveriş Sepeti"
139
+
140
+ #: wp_shopping_cart.php:767
141
+ msgid "Shopping Cart"
142
+ msgstr "Alışveriş Sepeti"
143
+
144
+ #: wp_shopping_cart.php:793
145
+ msgid "Settings"
146
+ msgstr "Ayarlar"
147
+
148
+ #: wp_shopping_cart_discounts_menu.php:51 wp_shopping_cart_settings.php:172
149
+ #: wp_shopping_cart_settings.php:366
150
+ msgid ""
151
+ "For more information, updates, detailed documentation and video tutorial, "
152
+ "please visit:"
153
+ msgstr ""
154
+ "Daha fazla bilgi, güncellemeler, detaylı dokümantasyon ve video kursları "
155
+ "için lütfen ziyaret edin:"
156
+
157
+ #: wp_shopping_cart_discounts_menu.php:52 wp_shopping_cart_settings.php:173
158
+ #: wp_shopping_cart_settings.php:367
159
+ msgid "WP Simple Cart Homepage"
160
+ msgstr "WP Basit Sepet Anasayfası"
161
+
162
+ #: wp_shopping_cart_discounts_menu.php:60
163
+ msgid "Coupon/Discount Settings"
164
+ msgstr "Kupon/İndirim Ayarları"
165
+
166
+ #: wp_shopping_cart_discounts_menu.php:67
167
+ msgid "Enable Discount Coupon Feature"
168
+ msgstr "İndirim Kuponu Özelliğini Etkinleştirin"
169
+
170
+ #: wp_shopping_cart_discounts_menu.php:70
171
+ msgid ""
172
+ "When checked your customers will be able to enter a coupon code in the "
173
+ "shopping cart before checkout."
174
+ msgstr ""
175
+ "İşaretliyken müşterileriniz ödemeden önce alışveriş sepetlerine kupon kodu "
176
+ "uygulayabilecekler."
177
+
178
+ #: wp_shopping_cart_discounts_menu.php:77
179
+ msgid "Update &raquo;"
180
+ msgstr "Güncelle &raquo;"
181
+
182
+ #: wp_shopping_cart_discounts_menu.php:93
183
+ msgid "Add Coupon/Discount"
184
+ msgstr "Kupon/İndirim Ekle"
185
+
186
+ #: wp_shopping_cart_discounts_menu.php:113
187
+ msgid "Save Coupon &raquo;"
188
+ msgstr "Kuponu Kaydet &raquo;"
189
+
190
+ #: wp_shopping_cart_discounts_menu.php:131
191
+ msgid "Coupon Code"
192
+ msgstr "Kupon Kodu"
193
+
194
+ #: wp_shopping_cart_discounts_menu.php:132
195
+ msgid "Discount Rate (%)"
196
+ msgstr "İndirim Oranı (%)"
197
+
198
+ #: wp_shopping_cart_discounts_menu.php:161
199
+ msgid "No Coupons Configured."
200
+ msgstr "Tanımlanan Kupon Bulunmuyor."
201
+
202
+ #: wp_shopping_cart_discounts_menu.php:166
203
+ msgid "No Record found"
204
+ msgstr "Kayıt bulunamadı"
205
+
206
+ #: wp_shopping_cart_misc_functions.php:155
207
+ msgid "Your Shopping Cart"
208
+ msgstr "Alışveriş Sepetiniz"
209
+
210
+ #: wp_shopping_cart_misc_functions.php:156
211
+ msgid "Your cart is empty"
212
+ msgstr "Sepetiniz boş"
213
+
214
+ #: wp_shopping_cart_orders.php:10
215
+ msgid "Cart Orders"
216
+ msgstr "Sepet Siparişleri"
217
+
218
+ #: wp_shopping_cart_orders.php:11
219
+ msgid "Cart Order"
220
+ msgstr "Sepet Siparişi"
221
+
222
+ #: wp_shopping_cart_orders.php:12
223
+ msgid "Add New"
224
+ msgstr "Yeni Ekle"
225
+
226
+ #: wp_shopping_cart_orders.php:13
227
+ msgid "Add New Order"
228
+ msgstr "Yeni Sipariş Ekle"
229
+
230
+ #: wp_shopping_cart_orders.php:14
231
+ msgid "Edit"
232
+ msgstr "Düzenle"
233
+
234
+ #: wp_shopping_cart_orders.php:15
235
+ msgid "Edit Order"
236
+ msgstr "Siparişi Düzenle"
237
+
238
+ #: wp_shopping_cart_orders.php:16
239
+ msgid "New Order"
240
+ msgstr "Yeni Sipariş"
241
+
242
+ #: wp_shopping_cart_orders.php:17
243
+ msgid "View"
244
+ msgstr "Görüntüle"
245
+
246
+ #: wp_shopping_cart_orders.php:18
247
+ msgid "View Order"
248
+ msgstr "Siparişi Görüntüle"
249
+
250
+ #: wp_shopping_cart_orders.php:19
251
+ msgid "Search Order"
252
+ msgstr "Sipariş Ara"
253
+
254
+ #: wp_shopping_cart_orders.php:20
255
+ msgid "No order found"
256
+ msgstr "Sipariş bulunamadı."
257
+
258
+ #: wp_shopping_cart_orders.php:21
259
+ msgid "No order found in Trash"
260
+ msgstr "Çöpte sipariş bulunamadı."
261
+
262
+ #: wp_shopping_cart_orders.php:22
263
+ msgid "Parent Order"
264
+ msgstr "Ana Sipariş"
265
+
266
+ #: wp_shopping_cart_orders.php:38
267
+ msgid "Order Review"
268
+ msgstr "Sipariş İncelemesi"
269
+
270
+ #: wp_shopping_cart_orders.php:68
271
+ msgid "Order ID: #"
272
+ msgstr "Sipariş ID: #"
273
+
274
+ #: wp_shopping_cart_orders.php:70
275
+ msgid "Transaction ID: #"
276
+ msgstr "İşlem ID: #"
277
+
278
+ #: wp_shopping_cart_orders.php:73 wp_shopping_cart_orders.php:149
279
+ msgid "First Name"
280
+ msgstr "Ad"
281
+
282
+ #: wp_shopping_cart_orders.php:77 wp_shopping_cart_orders.php:150
283
+ msgid "Last Name"
284
+ msgstr "Soyad"
285
+
286
+ #: wp_shopping_cart_orders.php:81
287
+ msgid "Email Address"
288
+ msgstr "Eposta Adresi"
289
+
290
+ #: wp_shopping_cart_orders.php:85
291
+ msgid "IP Address"
292
+ msgstr "IP Adresi"
293
+
294
+ #: wp_shopping_cart_orders.php:93
295
+ msgid "Address"
296
+ msgstr "Adres"
297
+
298
+ #: wp_shopping_cart_orders.php:97
299
+ msgid "Buyer Email Sent?"
300
+ msgstr "Alıcı Eposta\\'sı gönderildi mi?"
301
+
302
+ #: wp_shopping_cart_orders.php:101
303
+ msgid "Item(s) Ordered:"
304
+ msgstr "Şipariş Edilen Ürün(ler):"
305
+
306
+ #: wp_shopping_cart_orders.php:105
307
+ msgid "Applied Coupon Code:"
308
+ msgstr "Uygulanan Kupon Kodu:"
309
+
310
+ #: wp_shopping_cart_orders.php:148
311
+ msgid "Order ID"
312
+ msgstr "Sipariş ID"
313
+
314
+ #: wp_shopping_cart_orders.php:151
315
+ msgid "Email"
316
+ msgstr "Eposta"
317
+
318
+ #: wp_shopping_cart_orders.php:153
319
+ msgid "Status"
320
+ msgstr "Durum"
321
+
322
+ #: wp_shopping_cart_orders.php:154
323
+ msgid "Date"
324
+ msgstr "Tarih"
325
+
326
+ #: wp_shopping_cart_settings.php:10
327
+ msgid "WP Paypal Shopping Cart Options"
328
+ msgstr "WP Paypal Alışveriş Sepeti Seçenekleri"
329
+
330
+ #: wp_shopping_cart_settings.php:97
331
+ msgid "Options Updated!"
332
+ msgstr "Seçenekler Güncellendi!"
333
+
334
+ #: wp_shopping_cart_settings.php:169
335
+ msgid "Simple PayPal Shopping Cart Settings"
336
+ msgstr "Basit Paypal Alışveriş Sepeti Ayarları"
337
+
338
+ #: wp_shopping_cart_settings.php:177
339
+ msgid "Quick Usage Guide"
340
+ msgstr "Hızlı Kullanım Kılavuzu"
341
+
342
+ #: wp_shopping_cart_settings.php:180
343
+ msgid "Step 1) "
344
+ msgstr "Adım 1) "
345
+
346
+ #: wp_shopping_cart_settings.php:180
347
+ msgid "To add an 'Add to Cart' button for a product simply add the shortcode"
348
+ msgstr "Bir ürüne 'Sepete Ekle' butonu eklemek için verilen kısa kodu"
349
+
350
+ #: wp_shopping_cart_settings.php:180
351
+ msgid "PRODUCT-NAME"
352
+ msgstr "ÜRÜN-ADI"
353
+
354
+ #: wp_shopping_cart_settings.php:180
355
+ msgid "PRODUCT-PRICE"
356
+ msgstr "ÜRÜN-FİYATI"
357
+
358
+ #: wp_shopping_cart_settings.php:180
359
+ msgid ""
360
+ "to a post or page next to the product. Replace PRODUCT-NAME and PRODUCT-"
361
+ "PRICE with the actual name and price of your product."
362
+ msgstr ""
363
+ "ürünün yer aldığı sayfada uygun yere yerleştirin. ÜRÜN-ADI ve ÜRÜN-FİYATI "
364
+ "kısımlarını ürünün gerçek adı ve fiyatı ile değiştirin."
365
+
366
+ #: wp_shopping_cart_settings.php:181
367
+ msgid "Example add to cart button shortcode usage:"
368
+ msgstr "Örnek sepete ekle butonu kısa kodu kullanımı:"
369
+
370
+ #: wp_shopping_cart_settings.php:182
371
+ msgid "Step 2) "
372
+ msgstr "Adım 2) "
373
+
374
+ #: wp_shopping_cart_settings.php:182
375
+ msgid ""
376
+ "To add the shopping cart to a post or page (example: a checkout page) simply "
377
+ "add the shortcode"
378
+ msgstr ""
379
+ "Alışveriş sepetini bir sayfaya eklemek için (örnek: ödeme sayfası) verilen "
380
+ "kısa kodu"
381
+
382
+ #: wp_shopping_cart_settings.php:182
383
+ msgid ""
384
+ "to a post or page or use the sidebar widget to add the shopping cart to the "
385
+ "sidebar."
386
+ msgstr ""
387
+ "sayfanıza ekleyin veya alışveriş sepetini yan çubuğa eklemek için yan çubuk "
388
+ "aygıtını kullanın."
389
+
390
+ #: wp_shopping_cart_settings.php:183
391
+ msgid "Example shopping cart shortcode usage:"
392
+ msgstr "ALışveriş sepeti kısa kodu kullanım örneği:"
393
+
394
+ #: wp_shopping_cart_settings.php:192
395
+ msgid "PayPal and Shopping Cart Settings"
396
+ msgstr "PayPal ve Alışveriş Sepeti Ayarları"
397
+
398
+ #: wp_shopping_cart_settings.php:198
399
+ msgid "Paypal Email Address"
400
+ msgstr "Paypal Eposta Adresi"
401
+
402
+ #: wp_shopping_cart_settings.php:202
403
+ msgid "Shopping Cart title"
404
+ msgstr "Alışveriş Sepeti başlığı"
405
+
406
+ #: wp_shopping_cart_settings.php:206
407
+ msgid "Text/Image to Show When Cart Empty"
408
+ msgstr "Sepet Boşken Gösterilecek Metin/Görsel"
409
+
410
+ #: wp_shopping_cart_settings.php:207
411
+ msgid ""
412
+ "You can either enter plain text or the URL of an image that you want to show "
413
+ "when the shopping cart is empty"
414
+ msgstr ""
415
+ "Alışveriş sepeti boşken gösterilmek üzere düz bir metin ya da bir görsele "
416
+ "işaret eden bir URL girebilirsiniz"
417
+
418
+ #: wp_shopping_cart_settings.php:210
419
+ msgid "Currency"
420
+ msgstr "Para Birimi"
421
+
422
+ #: wp_shopping_cart_settings.php:211 wp_shopping_cart_settings.php:215
423
+ #: wp_shopping_cart_settings.php:242
424
+ msgid "e.g."
425
+ msgstr "ör."
426
+
427
+ #: wp_shopping_cart_settings.php:214
428
+ msgid "Currency Symbol"
429
+ msgstr "Para Birimi Sembolü"
430
+
431
+ #: wp_shopping_cart_settings.php:220
432
+ msgid "Base Shipping Cost"
433
+ msgstr "Baz Nakliye Masrafı"
434
+
435
+ #: wp_shopping_cart_settings.php:221
436
+ msgid ""
437
+ "This is the base shipping cost that will be added to the total of individual "
438
+ "products shipping cost. Put 0 if you do not want to charge shipping cost or "
439
+ "use base shipping cost."
440
+ msgstr ""
441
+ "Bu, her ürün için ayrı ayrı hesaplanan nakliye ücretlerine eklenecek olan "
442
+ "baz nakliye ücretidir. Nakliye ücreti talep etmeyecekseniz ya da baz nakliye "
443
+ "ücretini kullanmayacaksanız 0 yazın."
444
+
445
+ #: wp_shopping_cart_settings.php:221
446
+ msgid "Learn More on Shipping Calculation"
447
+ msgstr "Nakliye Tutarı Hesaplaması İle İlgili Daha Fazla Bilgi Edinin"
448
+
449
+ #: wp_shopping_cart_settings.php:225
450
+ msgid "Free Shipping for Orders Over"
451
+ msgstr "Üzeri Siparişlerde Ücretsiz Nakliye"
452
+
453
+ #: wp_shopping_cart_settings.php:226
454
+ msgid ""
455
+ "When a customer orders more than this amount he/she will get free shipping. "
456
+ "Leave empty if you do not want to use it."
457
+ msgstr ""
458
+ "Müşteri bu tutardan daha fazla sipariş ettiğinde ücretsiz nakliyeye hak "
459
+ "kazanacak. Kullanmak istemiyorsanız boş bırakın."
460
+
461
+ #: wp_shopping_cart_settings.php:230
462
+ msgid "Must Collect Shipping Address on PayPal"
463
+ msgstr "PayPal üzerinde Adres Bilgisi Girilmeli"
464
+
465
+ #: wp_shopping_cart_settings.php:231
466
+ msgid ""
467
+ "If checked the customer will be forced to enter a shipping address on PayPal "
468
+ "when checking out."
469
+ msgstr ""
470
+ "Eğer işaretlenirse, müşteri PayPal üzerinden ödeme adımında adresini girmeye "
471
+ "mecbur bırakılır."
472
+
473
+ #: wp_shopping_cart_settings.php:235
474
+ msgid "Use PayPal Profile Based Shipping"
475
+ msgstr "PayPal Profilinizdeki Nakliye Seçeneklerini Kullan"
476
+
477
+ #: wp_shopping_cart_settings.php:236
478
+ msgid "Check this if you want to use"
479
+ msgstr "PayPal profilinizdeki nakliye seçeneklerini kullanmak için"
480
+
481
+ #: wp_shopping_cart_settings.php:236
482
+ msgid "PayPal profile based shipping"
483
+ msgstr "burayı işaretleyin."
484
+
485
+ #: wp_shopping_cart_settings.php:236
486
+ msgid ""
487
+ "Using this will ignore any other shipping options that you have specified in "
488
+ "this plugin."
489
+ msgstr ""
490
+ "Bunu kullanmak bu plugin içerisinde tanımladığınız tüm nakliye seçeneklerini "
491
+ "göz ardı eder."
492
+
493
+ #: wp_shopping_cart_settings.php:240
494
+ msgid "Add to Cart button text or Image"
495
+ msgstr "Sepete Ekle butonu metni ya da Görseli"
496
+
497
+ #: wp_shopping_cart_settings.php:242
498
+ msgid ""
499
+ "To use a customized image as the button simply enter the URL of the image "
500
+ "file."
501
+ msgstr ""
502
+ "Buton olarak kişiselleştirilmiş bir görsel kullanmak istiyorsanız bu görsele "
503
+ "işaret eden URL\\'yi girin."
504
+
505
+ #: wp_shopping_cart_settings.php:248
506
+ msgid "Return URL"
507
+ msgstr "Geri Dönüş URL\\'si"
508
+
509
+ #: wp_shopping_cart_settings.php:249
510
+ msgid ""
511
+ "This is the URL the customer will be redirected to after a successful payment"
512
+ msgstr ""
513
+ "Bu, müşteri başarılı bir ödeme yaptıktan sonra onu yönlendireceğiniz "
514
+ "sayfanın URL\\'sidir."
515
+
516
+ #: wp_shopping_cart_settings.php:253
517
+ msgid "Products Page URL"
518
+ msgstr "Ürünler Sayfası URL\\'si"
519
+
520
+ #: wp_shopping_cart_settings.php:254
521
+ msgid ""
522
+ "This is the URL of your products page if you have any. If used, the shopping "
523
+ "cart widget will display a link to this page when cart is empty"
524
+ msgstr ""
525
+ "Bu, eğer önceden hazırladığınız bir ürünler sayfanız varsa o sayfanın URL"
526
+ "\\'sidir. Eğer kullanılırsa, alışveriş sepeti aygıtı sepet boş iken bu "
527
+ "sayfaya bir bağlantı görüntüler."
528
+
529
+ #: wp_shopping_cart_settings.php:258
530
+ msgid "Automatic redirection to checkout page"
531
+ msgstr "Ödeme sayfasına otomatik yönlendirme"
532
+
533
+ #: wp_shopping_cart_settings.php:260
534
+ msgid "Checkout Page URL"
535
+ msgstr "Ödeme Sayfası URL\\'si"
536
+
537
+ #: wp_shopping_cart_settings.php:261
538
+ msgid ""
539
+ "If checked the visitor will be redirected to the Checkout page after a "
540
+ "product is added to the cart. You must enter a URL in the Checkout Page URL "
541
+ "field for this to work."
542
+ msgstr ""
543
+ "Eğer işaretlenirse, sepete bir ürün eklendiğinde ziyaretçi ödeme sayfasına "
544
+ "yönlendirilecektir. Bunun çalışabilmesi için Ödeme Sayfası URL\\'si alanına "
545
+ "bir URL yazmış olmanız gerekir."
546
+
547
+ #: wp_shopping_cart_settings.php:265
548
+ msgid "Reset Cart After Redirection to Return Page"
549
+ msgstr "Geri Dönüş Sayfası yönlendirmesinden sonra Sepeti Sıfırla"
550
+
551
+ #: wp_shopping_cart_settings.php:267
552
+ msgid ""
553
+ "If checked the shopping cart will be reset when the customer lands on the "
554
+ "return URL (Thank You) page."
555
+ msgstr ""
556
+ "Eğer işaretlenirse, müşteri geri dönüş sayfası URL\\'sine (Teşekkürler "
557
+ "sayfası) geldiğinde alışveriş sepeti sıfırlanacaktır."
558
+
559
+ #: wp_shopping_cart_settings.php:274
560
+ msgid "Hide Shopping Cart Image"
561
+ msgstr "Alışveriş Sepeti Görselini Gizle"
562
+
563
+ #: wp_shopping_cart_settings.php:275
564
+ msgid "If ticked the shopping cart image will not be shown."
565
+ msgstr "Eğer işaretlenirse Alışveriş Sepeti görseli gösterilmeyecektir."
566
+
567
+ #: wp_shopping_cart_settings.php:281
568
+ msgid "Customize the Note to Seller Text"
569
+ msgstr "Satıcıya Not Metnini Kişiselleştir"
570
+
571
+ #: wp_shopping_cart_settings.php:283
572
+ msgid ""
573
+ "Specify the text that you want to use for the note field on PayPal checkout "
574
+ "page to collect special instruction (leave this field empty if you don't "
575
+ "need to customize it). The default label for the note field is \"Add special "
576
+ "instructions to merchant\"."
577
+ msgstr ""
578
+ "PayPal ödeme sayfasındaki Not alanı için kullanmak istediğiniz metni "
579
+ "belirtin (özelleştirmek istemiyorsanız bu alanı boş bırakın). Not alanının "
580
+ "varsayılan etiketi \"Satıcıya, özel talimat ekle\" \\'dir."
581
+
582
+ #: wp_shopping_cart_settings.php:289
583
+ msgid "Use WP Affiliate Platform"
584
+ msgstr "WP Üyelik Platformu\\'nu Kullan"
585
+
586
+ #: wp_shopping_cart_settings.php:291
587
+ msgid "Check this if using with the"
588
+ msgstr "ile birlikte kullanıyorsanız işaret koyun"
589
+
590
+ #: wp_shopping_cart_settings.php:291
591
+ msgid ""
592
+ "This plugin lets you run your own affiliate campaign/program and allows you "
593
+ "to reward (pay commission) your affiliates for referred sales"
594
+ msgstr ""
595
+ "Bu eklenti kendi üyelik/ortaklık kampanyanızı yürütmenizi ve üyelerinize/"
596
+ "ortaklarınıza satışlar üzerinden komisyon ödemenizi olanaklı kılar"
597
+
598
+ #: wp_shopping_cart_settings.php:297
599
+ msgid "Testing and Debugging Settings"
600
+ msgstr "Test Etme ve Hata Ayıklama Ayarları"
601
+
602
+ #: wp_shopping_cart_settings.php:303
603
+ msgid "Enable Debug"
604
+ msgstr "Hata Ayıklamayı Etkinleştir"
605
+
606
+ #: wp_shopping_cart_settings.php:305
607
+ msgid ""
608
+ "If checked, debug output will be written to the log file. This is useful for "
609
+ "troubleshooting post payment failures"
610
+ msgstr ""
611
+ "Eğer işaretlenirse, hata ayıklama çıktısı kayıt dosyasına yazılacaktır. Bu, "
612
+ "ödeme sonrası hatalarını ayıklamak için kullanışlıdır."
613
+
614
+ #: wp_shopping_cart_settings.php:315
615
+ msgid "Enable Sandbox Testing"
616
+ msgstr "Sandbox Test Etmeyi Etkinleştir"
617
+
618
+ #: wp_shopping_cart_settings.php:317
619
+ msgid ""
620
+ "Check this option if you want to do PayPal sandbox testing. You will need to "
621
+ "create a PayPal sandbox account from PayPal Developer site"
622
+ msgstr ""
623
+ "PayPal Sandbox test etmeyi etkinleştirmek için bu seçeneği işaretleyin. "
624
+ "PayPal Geliştirici sitesinden bir PayPal sandbox hesabı oluşturmanız "
625
+ "gerekecek"
626
+
627
+ #: wp_shopping_cart_settings.php:326 wp_shopping_cart_settings.php:415
628
+ msgid "Update Options &raquo;"
629
+ msgstr "Seçenekleri Güncelle &raquo;"
630
+
631
+ #: wp_shopping_cart_settings.php:330
632
+ msgid "Like the Simple WordPress Shopping Cart Plugin?"
633
+ msgstr "WordPress Alışveriş Sepeti Eklentisini Beğendiniz mi?"
634
+
635
+ #: wp_shopping_cart_settings.php:330
636
+ msgid "Give it a good rating"
637
+ msgstr "İyi bir puan verin"
638
+
639
+ #: wp_shopping_cart_settings.php:333
640
+ msgid "Need a shopping cart plugin with more features? Checkout my "
641
+ msgstr ""
642
+ "Daha fazla özelliğe sahip bir alışveriş sepeti eklentisine mi ihtiyacınız "
643
+ "var? Ziyaret edin"
644
+
645
+ #: wp_shopping_cart_settings.php:334
646
+ msgid "WP eStore Plugin"
647
+ msgstr "WP eStore Plugin"
648
+
649
+ #: wp_shopping_cart_settings.php:375
650
+ msgid "Purchase Confirmation Email Settings"
651
+ msgstr "Satış Onayı Eposta Ayarları"
652
+
653
+ #: wp_shopping_cart_settings.php:378
654
+ msgid ""
655
+ "The following options affect the emails that gets sent to your buyers after "
656
+ "a purchase."
657
+ msgstr ""
658
+ "Aşağıdaki seçenekler ödeme sonrasında müşterilerinize gönderilecek olan "
659
+ "epostaları etkiler."
660
+
661
+ #: wp_shopping_cart_settings.php:383
662
+ msgid "Send Emails to Buyer After Purchase"
663
+ msgstr "Ödeme Sonrasında Alıcıya E-posta Gönder"
664
+
665
+ #: wp_shopping_cart_settings.php:384
666
+ msgid ""
667
+ "If checked the plugin will send an email to the buyer with the sale details. "
668
+ "If digital goods are purchased then the email will contain the download "
669
+ "links for the purchased products."
670
+ msgstr ""
671
+ "Eğer işaretlenirse, eklenti alıcıya satış detaylarını içeren bir eposta "
672
+ "gönderir. Eğer dijital ürünler satın alındıysa eposta içinde satın alınan "
673
+ "ürünler için indirme bağlantıları bulunacaktır."
674
+
675
+ #: wp_shopping_cart_settings.php:388
676
+ msgid "From Email Address"
677
+ msgstr "Gönderen Eposta Adresi"
678
+
679
+ #: wp_shopping_cart_settings.php:390
680
+ msgid ""
681
+ "Example: Your Name &lt;sales@your-domain.com&gt; This is the email address "
682
+ "that will be used to send the email to the buyer. This name and email "
683
+ "address will appear in the from field of the email."
684
+ msgstr ""
685
+ "Örnek: İsminiz &lt;satis@alanadiniz.com&gt; Bu, müşteriye epostanın "
686
+ "gönderilecek olduğu eposta adresidir. Buradaki isim ve eposta adresi, "
687
+ "gönderilecek epostanın kimden alanında görünecektir."
688
+
689
+ #: wp_shopping_cart_settings.php:394
690
+ msgid "Buyer Email Subject"
691
+ msgstr "Müşteri Eposta Konusu"
692
+
693
+ #: wp_shopping_cart_settings.php:396
694
+ msgid "This is the subject of the email that will be sent to the buyer."
695
+ msgstr "Bu, müşteriye gönderilecek olan epostanın konusudur."
696
+
697
+ #: wp_shopping_cart_settings.php:400
698
+ msgid "Buyer Email Body"
699
+ msgstr "Müşteri Eposta Gövdesi"
700
+
701
+ #: wp_shopping_cart_settings.php:403
702
+ msgid ""
703
+ "This is the body of the email that will be sent to the buyer. Do not change "
704
+ "the text within the braces {}. You can use the following email tags in this "
705
+ "email body field:"
706
+ msgstr ""
707
+ "Bu, müşteriye gönderilecek olan epostanın gövde metnidir. {} arasındaki "
708
+ "metinleri değiştirmeyin. Aşağıda verilen eposta etiketlerini bu eposta gövde "
709
+ "metni alanında kullanabilirsiniz."
710
+
711
+ #: wp_shopping_cart_settings.php:404
712
+ msgid "First name of the buyer"
713
+ msgstr "Müşteri Adı"
714
+
715
+ #: wp_shopping_cart_settings.php:405
716
+ msgid "Last name of the buyer"
717
+ msgstr "Müşteri Soyadı"
718
+
719
+ #: wp_shopping_cart_settings.php:406
720
+ msgid ""
721
+ "The item details of the purchased product (this will include the download "
722
+ "link for digital items)."
723
+ msgstr ""
724
+ "Satın alınan ürün detayları (bu, dijital ürünler için indirme bağlantılarını "
725
+ "içerecektir)."
726
+
727
+ #: wp_shopping_cart_shortcodes.php:16 wp_shopping_cart_shortcodes.php:40
728
+ msgid "Error! You must specify a product name in the shortcode."
729
+ msgstr "Hata! Kısa kod içinde ürün adını belirtmelisiniz."
730
+
731
+ #: wp_shopping_cart_shortcodes.php:19 wp_shopping_cart_shortcodes.php:43
732
+ msgid "Error! You must specify a price for your product in the shortcode."
733
+ msgstr "Hata! Kısa kod içinde ürün fiyatını belirtmelisiniz."
734
+
735
+ #: wp_shopping_cart_shortcodes.php:46
736
+ msgid ""
737
+ "Error! You must specify a thumbnail image for your product in the shortcode."
738
+ msgstr ""
739
+ "Hata! Kısa kod içinde ürününüz için bir ön izleme görseli belirtmelisiniz."
740
+
741
+ #: lib/gallery-wp-cart.php:32
742
+ msgid "[View with PicLens]"
743
+ msgstr "[PicLens ile Görüntüle]"
languages/WSPSC.pot CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: WordPress Simple PayPal Shopping Cart\n"
4
- "POT-Creation-Date: 2014-01-24 16:14+1000\n"
5
- "PO-Revision-Date: 2014-01-24 16:15+1000\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "X-Generator: Poedit 1.5.5\n"
12
- "X-Poedit-KeywordsList: _e;__\n"
13
  "X-Poedit-Basepath: .\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
@@ -17,189 +17,150 @@ msgstr ""
17
  msgid "Admin needs to configure some discount coupons before it can be used"
18
  msgstr ""
19
 
20
- #: class-coupon.php:85
21
  msgid "Coupon ID: "
22
  msgstr ""
23
 
24
- #: class-coupon.php:86
25
  msgid "Coupon Code: "
26
  msgstr ""
27
 
28
- #: class-coupon.php:87
29
  msgid "Discount Amt: "
30
  msgstr ""
31
 
32
- #: class-coupon.php:96
 
 
 
 
33
  msgid "Coupon code used does not exist!"
34
  msgstr ""
35
 
36
- #: class-coupon.php:101
 
 
 
 
37
  msgid "Discount can only be applied once per checkout!"
38
  msgstr ""
39
 
40
- #: class-coupon.php:123
41
  msgid "Discount applied successfully! Total Discount: "
42
  msgstr ""
43
 
44
- #: wp_shopping_cart.php:167
45
  msgid "Error! Your session is out of sync. Please reset your session."
46
  msgstr ""
47
 
48
- #: wp_shopping_cart.php:177
49
  msgid ""
50
  "Shopping Cart Configuration Error! You must specify a value in the 'Checkout "
51
  "Page URL' field for the automatic redirection feature to work!"
52
  msgstr ""
53
 
54
- #: wp_shopping_cart.php:259
55
- msgid "Visit The Shop"
56
- msgstr ""
57
-
58
- #: wp_shopping_cart.php:271 wp_shopping_cart_settings.php:101
59
- msgid "USD"
60
- msgstr ""
61
-
62
- #: wp_shopping_cart.php:275 wp_shopping_cart_settings.php:104
63
- msgid "$"
64
- msgstr ""
65
-
66
- #: wp_shopping_cart.php:301
67
- msgid "Cart"
68
- msgstr ""
69
-
70
- #: wp_shopping_cart.php:310
71
- msgid "Hit enter to submit new Quantity."
72
- msgstr ""
73
-
74
- #: wp_shopping_cart.php:321
75
- msgid "Item Name"
76
- msgstr ""
77
-
78
- #: wp_shopping_cart.php:321
79
- msgid "Quantity"
80
- msgstr ""
81
-
82
- #: wp_shopping_cart.php:321
83
- msgid "Price"
84
- msgstr ""
85
-
86
- #: wp_shopping_cart.php:355
87
- msgid "Remove"
88
- msgstr ""
89
-
90
- #: wp_shopping_cart.php:384
91
- msgid "Subtotal"
92
- msgstr ""
93
-
94
- #: wp_shopping_cart.php:385
95
- msgid "Shipping"
96
- msgstr ""
97
-
98
- #: wp_shopping_cart.php:388 wp_shopping_cart_orders.php:89
99
- #: wp_shopping_cart_orders.php:152
100
- msgid "Total"
101
- msgstr ""
102
-
103
- #: wp_shopping_cart.php:397
104
- msgid "Enter Coupon Code"
105
- msgstr ""
106
-
107
- #: wp_shopping_cart.php:400
108
- msgid "Apply"
109
- msgstr ""
110
-
111
- #: wp_shopping_cart.php:414
112
- msgid "paypal_checkout_EN.png"
113
- msgstr ""
114
-
115
- #: wp_shopping_cart.php:414
116
- msgid "Make payments with PayPal - it\\'s fast, free and secure!"
117
- msgstr ""
118
-
119
- #: wp_shopping_cart.php:476 wp_shopping_cart.php:559 wp_shopping_cart.php:618
120
- #: wp_shopping_cart.php:666 wp_shopping_cart.php:672
121
- #: wp_shopping_cart_settings.php:117
122
  msgid "Add to Cart"
123
  msgstr ""
124
 
125
- #: wp_shopping_cart.php:744
126
  msgid "WP Paypal Shopping Cart"
127
  msgstr ""
128
 
129
- #: wp_shopping_cart.php:744
130
  msgid "WP Shopping Cart"
131
  msgstr ""
132
 
133
- #: wp_shopping_cart.php:767
134
  msgid "Shopping Cart"
135
  msgstr ""
136
 
137
- #: wp_shopping_cart.php:793
138
  msgid "Settings"
139
  msgstr ""
140
 
141
- #: wp_shopping_cart_discounts_menu.php:51 wp_shopping_cart_settings.php:172
142
- #: wp_shopping_cart_settings.php:366
143
  msgid ""
144
  "For more information, updates, detailed documentation and video tutorial, "
145
  "please visit:"
146
  msgstr ""
147
 
148
- #: wp_shopping_cart_discounts_menu.php:52 wp_shopping_cart_settings.php:173
149
- #: wp_shopping_cart_settings.php:367
150
  msgid "WP Simple Cart Homepage"
151
  msgstr ""
152
 
153
- #: wp_shopping_cart_discounts_menu.php:60
154
  msgid "Coupon/Discount Settings"
155
  msgstr ""
156
 
157
- #: wp_shopping_cart_discounts_menu.php:67
158
  msgid "Enable Discount Coupon Feature"
159
  msgstr ""
160
 
161
- #: wp_shopping_cart_discounts_menu.php:70
162
  msgid ""
163
  "When checked your customers will be able to enter a coupon code in the "
164
  "shopping cart before checkout."
165
  msgstr ""
166
 
167
- #: wp_shopping_cart_discounts_menu.php:77
168
  msgid "Update &raquo;"
169
  msgstr ""
170
 
171
- #: wp_shopping_cart_discounts_menu.php:93
172
  msgid "Add Coupon/Discount"
173
  msgstr ""
174
 
175
- #: wp_shopping_cart_discounts_menu.php:113
176
  msgid "Save Coupon &raquo;"
177
  msgstr ""
178
 
179
- #: wp_shopping_cart_discounts_menu.php:131
180
  msgid "Coupon Code"
181
  msgstr ""
182
 
183
- #: wp_shopping_cart_discounts_menu.php:132
184
  msgid "Discount Rate (%)"
185
  msgstr ""
186
 
187
- #: wp_shopping_cart_discounts_menu.php:161
 
 
 
 
 
 
 
 
188
  msgid "No Coupons Configured."
189
  msgstr ""
190
 
191
- #: wp_shopping_cart_discounts_menu.php:166
192
  msgid "No Record found"
193
  msgstr ""
194
 
195
- #: wp_shopping_cart_misc_functions.php:155
196
  msgid "Your Shopping Cart"
197
  msgstr ""
198
 
199
- #: wp_shopping_cart_misc_functions.php:156
200
  msgid "Your cart is empty"
201
  msgstr ""
202
 
 
 
 
 
 
 
 
 
 
 
203
  #: wp_shopping_cart_orders.php:10
204
  msgid "Cart Orders"
205
  msgstr ""
@@ -256,59 +217,72 @@ msgstr ""
256
  msgid "Order Review"
257
  msgstr ""
258
 
259
- #: wp_shopping_cart_orders.php:68
260
  msgid "Order ID: #"
261
  msgstr ""
262
 
263
- #: wp_shopping_cart_orders.php:70
264
  msgid "Transaction ID: #"
265
  msgstr ""
266
 
267
- #: wp_shopping_cart_orders.php:73 wp_shopping_cart_orders.php:149
268
  msgid "First Name"
269
  msgstr ""
270
 
271
- #: wp_shopping_cart_orders.php:77 wp_shopping_cart_orders.php:150
272
  msgid "Last Name"
273
  msgstr ""
274
 
275
- #: wp_shopping_cart_orders.php:81
276
  msgid "Email Address"
277
  msgstr ""
278
 
279
- #: wp_shopping_cart_orders.php:85
280
  msgid "IP Address"
281
  msgstr ""
282
 
283
- #: wp_shopping_cart_orders.php:93
 
 
 
 
 
 
 
 
 
284
  msgid "Address"
285
  msgstr ""
286
 
287
- #: wp_shopping_cart_orders.php:97
 
 
 
 
288
  msgid "Buyer Email Sent?"
289
  msgstr ""
290
 
291
- #: wp_shopping_cart_orders.php:101
292
  msgid "Item(s) Ordered:"
293
  msgstr ""
294
 
295
- #: wp_shopping_cart_orders.php:105
296
  msgid "Applied Coupon Code:"
297
  msgstr ""
298
 
299
- #: wp_shopping_cart_orders.php:148
300
  msgid "Order ID"
301
  msgstr ""
302
 
303
- #: wp_shopping_cart_orders.php:151
304
  msgid "Email"
305
  msgstr ""
306
 
307
- #: wp_shopping_cart_orders.php:153
308
  msgid "Status"
309
  msgstr ""
310
 
311
- #: wp_shopping_cart_orders.php:154
312
  msgid "Date"
313
  msgstr ""
314
 
@@ -316,219 +290,237 @@ msgstr ""
316
  msgid "WP Paypal Shopping Cart Options"
317
  msgstr ""
318
 
319
- #: wp_shopping_cart_settings.php:97
320
  msgid "Options Updated!"
321
  msgstr ""
322
 
323
- #: wp_shopping_cart_settings.php:169
 
 
 
 
 
 
 
 
324
  msgid "Simple PayPal Shopping Cart Settings"
325
  msgstr ""
326
 
327
- #: wp_shopping_cart_settings.php:177
328
  msgid "Quick Usage Guide"
329
  msgstr ""
330
 
331
- #: wp_shopping_cart_settings.php:180
332
  msgid "Step 1) "
333
  msgstr ""
334
 
335
- #: wp_shopping_cart_settings.php:180
336
  msgid "To add an 'Add to Cart' button for a product simply add the shortcode"
337
  msgstr ""
338
 
339
- #: wp_shopping_cart_settings.php:180
340
  msgid "PRODUCT-NAME"
341
  msgstr ""
342
 
343
- #: wp_shopping_cart_settings.php:180
344
  msgid "PRODUCT-PRICE"
345
  msgstr ""
346
 
347
- #: wp_shopping_cart_settings.php:180
348
  msgid ""
349
  "to a post or page next to the product. Replace PRODUCT-NAME and PRODUCT-"
350
  "PRICE with the actual name and price of your product."
351
  msgstr ""
352
 
353
- #: wp_shopping_cart_settings.php:181
354
  msgid "Example add to cart button shortcode usage:"
355
  msgstr ""
356
 
357
- #: wp_shopping_cart_settings.php:182
358
  msgid "Step 2) "
359
  msgstr ""
360
 
361
- #: wp_shopping_cart_settings.php:182
362
  msgid ""
363
  "To add the shopping cart to a post or page (example: a checkout page) simply "
364
  "add the shortcode"
365
  msgstr ""
366
 
367
- #: wp_shopping_cart_settings.php:182
368
  msgid ""
369
  "to a post or page or use the sidebar widget to add the shopping cart to the "
370
  "sidebar."
371
  msgstr ""
372
 
373
- #: wp_shopping_cart_settings.php:183
374
  msgid "Example shopping cart shortcode usage:"
375
  msgstr ""
376
 
377
- #: wp_shopping_cart_settings.php:192
378
  msgid "PayPal and Shopping Cart Settings"
379
  msgstr ""
380
 
381
- #: wp_shopping_cart_settings.php:198
382
  msgid "Paypal Email Address"
383
  msgstr ""
384
 
385
- #: wp_shopping_cart_settings.php:202
386
  msgid "Shopping Cart title"
387
  msgstr ""
388
 
389
- #: wp_shopping_cart_settings.php:206
390
  msgid "Text/Image to Show When Cart Empty"
391
  msgstr ""
392
 
393
- #: wp_shopping_cart_settings.php:207
394
  msgid ""
395
  "You can either enter plain text or the URL of an image that you want to show "
396
  "when the shopping cart is empty"
397
  msgstr ""
398
 
399
- #: wp_shopping_cart_settings.php:210
400
  msgid "Currency"
401
  msgstr ""
402
 
403
- #: wp_shopping_cart_settings.php:211 wp_shopping_cart_settings.php:215
404
- #: wp_shopping_cart_settings.php:242
405
  msgid "e.g."
406
  msgstr ""
407
 
408
- #: wp_shopping_cart_settings.php:214
409
  msgid "Currency Symbol"
410
  msgstr ""
411
 
412
- #: wp_shopping_cart_settings.php:220
413
  msgid "Base Shipping Cost"
414
  msgstr ""
415
 
416
- #: wp_shopping_cart_settings.php:221
417
  msgid ""
418
  "This is the base shipping cost that will be added to the total of individual "
419
  "products shipping cost. Put 0 if you do not want to charge shipping cost or "
420
  "use base shipping cost."
421
  msgstr ""
422
 
423
- #: wp_shopping_cart_settings.php:221
424
  msgid "Learn More on Shipping Calculation"
425
  msgstr ""
426
 
427
- #: wp_shopping_cart_settings.php:225
428
  msgid "Free Shipping for Orders Over"
429
  msgstr ""
430
 
431
- #: wp_shopping_cart_settings.php:226
432
  msgid ""
433
  "When a customer orders more than this amount he/she will get free shipping. "
434
  "Leave empty if you do not want to use it."
435
  msgstr ""
436
 
437
- #: wp_shopping_cart_settings.php:230
438
  msgid "Must Collect Shipping Address on PayPal"
439
  msgstr ""
440
 
441
- #: wp_shopping_cart_settings.php:231
442
  msgid ""
443
  "If checked the customer will be forced to enter a shipping address on PayPal "
444
  "when checking out."
445
  msgstr ""
446
 
447
- #: wp_shopping_cart_settings.php:235
448
  msgid "Use PayPal Profile Based Shipping"
449
  msgstr ""
450
 
451
- #: wp_shopping_cart_settings.php:236
452
  msgid "Check this if you want to use"
453
  msgstr ""
454
 
455
- #: wp_shopping_cart_settings.php:236
456
  msgid "PayPal profile based shipping"
457
  msgstr ""
458
 
459
- #: wp_shopping_cart_settings.php:236
460
  msgid ""
461
  "Using this will ignore any other shipping options that you have specified in "
462
  "this plugin."
463
  msgstr ""
464
 
465
- #: wp_shopping_cart_settings.php:240
466
  msgid "Add to Cart button text or Image"
467
  msgstr ""
468
 
469
- #: wp_shopping_cart_settings.php:242
470
  msgid ""
471
  "To use a customized image as the button simply enter the URL of the image "
472
  "file."
473
  msgstr ""
474
 
475
- #: wp_shopping_cart_settings.php:248
476
  msgid "Return URL"
477
  msgstr ""
478
 
479
- #: wp_shopping_cart_settings.php:249
480
  msgid ""
481
  "This is the URL the customer will be redirected to after a successful payment"
482
  msgstr ""
483
 
484
- #: wp_shopping_cart_settings.php:253
485
  msgid "Products Page URL"
486
  msgstr ""
487
 
488
- #: wp_shopping_cart_settings.php:254
489
  msgid ""
490
  "This is the URL of your products page if you have any. If used, the shopping "
491
  "cart widget will display a link to this page when cart is empty"
492
  msgstr ""
493
 
494
- #: wp_shopping_cart_settings.php:258
495
  msgid "Automatic redirection to checkout page"
496
  msgstr ""
497
 
498
- #: wp_shopping_cart_settings.php:260
499
  msgid "Checkout Page URL"
500
  msgstr ""
501
 
502
- #: wp_shopping_cart_settings.php:261
503
  msgid ""
504
  "If checked the visitor will be redirected to the Checkout page after a "
505
  "product is added to the cart. You must enter a URL in the Checkout Page URL "
506
  "field for this to work."
507
  msgstr ""
508
 
509
- #: wp_shopping_cart_settings.php:265
 
 
 
 
 
 
 
 
 
 
510
  msgid "Reset Cart After Redirection to Return Page"
511
  msgstr ""
512
 
513
- #: wp_shopping_cart_settings.php:267
514
  msgid ""
515
  "If checked the shopping cart will be reset when the customer lands on the "
516
  "return URL (Thank You) page."
517
  msgstr ""
518
 
519
- #: wp_shopping_cart_settings.php:274
520
  msgid "Hide Shopping Cart Image"
521
  msgstr ""
522
 
523
- #: wp_shopping_cart_settings.php:275
524
  msgid "If ticked the shopping cart image will not be shown."
525
  msgstr ""
526
 
527
- #: wp_shopping_cart_settings.php:281
528
  msgid "Customize the Note to Seller Text"
529
  msgstr ""
530
 
531
- #: wp_shopping_cart_settings.php:283
532
  msgid ""
533
  "Specify the text that you want to use for the note field on PayPal checkout "
534
  "page to collect special instruction (leave this field empty if you don't "
@@ -536,142 +528,271 @@ msgid ""
536
  "instructions to merchant\"."
537
  msgstr ""
538
 
539
- #: wp_shopping_cart_settings.php:289
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
540
  msgid "Use WP Affiliate Platform"
541
  msgstr ""
542
 
543
- #: wp_shopping_cart_settings.php:291
544
  msgid "Check this if using with the"
545
  msgstr ""
546
 
547
- #: wp_shopping_cart_settings.php:291
548
  msgid ""
549
  "This plugin lets you run your own affiliate campaign/program and allows you "
550
  "to reward (pay commission) your affiliates for referred sales"
551
  msgstr ""
552
 
553
- #: wp_shopping_cart_settings.php:297
554
  msgid "Testing and Debugging Settings"
555
  msgstr ""
556
 
557
- #: wp_shopping_cart_settings.php:303
558
  msgid "Enable Debug"
559
  msgstr ""
560
 
561
- #: wp_shopping_cart_settings.php:305
562
  msgid ""
563
  "If checked, debug output will be written to the log file. This is useful for "
564
  "troubleshooting post payment failures"
565
  msgstr ""
566
 
567
- #: wp_shopping_cart_settings.php:315
568
  msgid "Enable Sandbox Testing"
569
  msgstr ""
570
 
571
- #: wp_shopping_cart_settings.php:317
572
  msgid ""
573
  "Check this option if you want to do PayPal sandbox testing. You will need to "
574
  "create a PayPal sandbox account from PayPal Developer site"
575
  msgstr ""
576
 
577
- #: wp_shopping_cart_settings.php:326 wp_shopping_cart_settings.php:415
578
  msgid "Update Options &raquo;"
579
  msgstr ""
580
 
581
- #: wp_shopping_cart_settings.php:330
582
  msgid "Like the Simple WordPress Shopping Cart Plugin?"
583
  msgstr ""
584
 
585
- #: wp_shopping_cart_settings.php:330
586
  msgid "Give it a good rating"
587
  msgstr ""
588
 
589
- #: wp_shopping_cart_settings.php:333
590
- msgid "Need a shopping cart plugin with more features? Checkout my "
591
- msgstr ""
592
-
593
- #: wp_shopping_cart_settings.php:334
594
- msgid "WP eStore Plugin"
595
- msgstr ""
596
-
597
- #: wp_shopping_cart_settings.php:375
598
  msgid "Purchase Confirmation Email Settings"
599
  msgstr ""
600
 
601
- #: wp_shopping_cart_settings.php:378
602
  msgid ""
603
  "The following options affect the emails that gets sent to your buyers after "
604
  "a purchase."
605
  msgstr ""
606
 
607
- #: wp_shopping_cart_settings.php:383
608
  msgid "Send Emails to Buyer After Purchase"
609
  msgstr ""
610
 
611
- #: wp_shopping_cart_settings.php:384
612
  msgid ""
613
  "If checked the plugin will send an email to the buyer with the sale details. "
614
  "If digital goods are purchased then the email will contain the download "
615
  "links for the purchased products."
616
  msgstr ""
617
 
618
- #: wp_shopping_cart_settings.php:388
619
  msgid "From Email Address"
620
  msgstr ""
621
 
622
- #: wp_shopping_cart_settings.php:390
623
  msgid ""
624
  "Example: Your Name &lt;sales@your-domain.com&gt; This is the email address "
625
  "that will be used to send the email to the buyer. This name and email "
626
  "address will appear in the from field of the email."
627
  msgstr ""
628
 
629
- #: wp_shopping_cart_settings.php:394
630
  msgid "Buyer Email Subject"
631
  msgstr ""
632
 
633
- #: wp_shopping_cart_settings.php:396
634
  msgid "This is the subject of the email that will be sent to the buyer."
635
  msgstr ""
636
 
637
- #: wp_shopping_cart_settings.php:400
638
  msgid "Buyer Email Body"
639
  msgstr ""
640
 
641
- #: wp_shopping_cart_settings.php:403
642
  msgid ""
643
  "This is the body of the email that will be sent to the buyer. Do not change "
644
  "the text within the braces {}. You can use the following email tags in this "
645
  "email body field:"
646
  msgstr ""
647
 
648
- #: wp_shopping_cart_settings.php:404
649
  msgid "First name of the buyer"
650
  msgstr ""
651
 
652
- #: wp_shopping_cart_settings.php:405
653
  msgid "Last name of the buyer"
654
  msgstr ""
655
 
656
- #: wp_shopping_cart_settings.php:406
657
  msgid ""
658
  "The item details of the purchased product (this will include the download "
659
  "link for digital items)."
660
  msgstr ""
661
 
662
- #: wp_shopping_cart_shortcodes.php:16 wp_shopping_cart_shortcodes.php:40
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
663
  msgid "Error! You must specify a product name in the shortcode."
664
  msgstr ""
665
 
666
- #: wp_shopping_cart_shortcodes.php:19 wp_shopping_cart_shortcodes.php:43
667
  msgid "Error! You must specify a price for your product in the shortcode."
668
  msgstr ""
669
 
670
- #: wp_shopping_cart_shortcodes.php:46
671
  msgid ""
672
  "Error! You must specify a thumbnail image for your product in the shortcode."
673
  msgstr ""
674
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
675
  #: lib/gallery-wp-cart.php:32
676
  msgid "[View with PicLens]"
677
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Simple Shopping Cart\n"
4
+ "POT-Creation-Date: 2015-05-29 16:46+1000\n"
5
+ "PO-Revision-Date: 2015-05-29 16:47+1000\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
+ "X-Generator: Poedit 1.5.7\n"
12
+ "X-Poedit-KeywordsList: __;_e\n"
13
  "X-Poedit-Basepath: .\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
17
  msgid "Admin needs to configure some discount coupons before it can be used"
18
  msgstr ""
19
 
20
+ #: class-coupon.php:86
21
  msgid "Coupon ID: "
22
  msgstr ""
23
 
24
+ #: class-coupon.php:87
25
  msgid "Coupon Code: "
26
  msgstr ""
27
 
28
+ #: class-coupon.php:88
29
  msgid "Discount Amt: "
30
  msgstr ""
31
 
32
+ #: class-coupon.php:89
33
+ msgid "Expiry date: "
34
+ msgstr ""
35
+
36
+ #: class-coupon.php:98
37
  msgid "Coupon code used does not exist!"
38
  msgstr ""
39
 
40
+ #: class-coupon.php:105
41
+ msgid "Coupon code expired!"
42
+ msgstr ""
43
+
44
+ #: class-coupon.php:110
45
  msgid "Discount can only be applied once per checkout!"
46
  msgstr ""
47
 
48
+ #: class-coupon.php:132
49
  msgid "Discount applied successfully! Total Discount: "
50
  msgstr ""
51
 
52
+ #: wp_shopping_cart.php:182
53
  msgid "Error! Your session is out of sync. Please reset your session."
54
  msgstr ""
55
 
56
+ #: wp_shopping_cart.php:190
57
  msgid ""
58
  "Shopping Cart Configuration Error! You must specify a value in the 'Checkout "
59
  "Page URL' field for the automatic redirection feature to work!"
60
  msgstr ""
61
 
62
+ #: wp_shopping_cart.php:279 wp_shopping_cart.php:354 wp_shopping_cart.php:411
63
+ #: wp_shopping_cart.php:453 wp_shopping_cart.php:457
64
+ #: wp_shopping_cart_settings.php:120
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
65
  msgid "Add to Cart"
66
  msgstr ""
67
 
68
+ #: wp_shopping_cart.php:539
69
  msgid "WP Paypal Shopping Cart"
70
  msgstr ""
71
 
72
+ #: wp_shopping_cart.php:539
73
  msgid "WP Shopping Cart"
74
  msgstr ""
75
 
76
+ #: wp_shopping_cart.php:573
77
  msgid "Shopping Cart"
78
  msgstr ""
79
 
80
+ #: wp_shopping_cart.php:606
81
  msgid "Settings"
82
  msgstr ""
83
 
84
+ #: wp_shopping_cart_discounts_menu.php:52 wp_shopping_cart_settings.php:186
85
+ #: wp_shopping_cart_settings.php:422
86
  msgid ""
87
  "For more information, updates, detailed documentation and video tutorial, "
88
  "please visit:"
89
  msgstr ""
90
 
91
+ #: wp_shopping_cart_discounts_menu.php:53 wp_shopping_cart_settings.php:187
92
+ #: wp_shopping_cart_settings.php:423
93
  msgid "WP Simple Cart Homepage"
94
  msgstr ""
95
 
96
+ #: wp_shopping_cart_discounts_menu.php:61
97
  msgid "Coupon/Discount Settings"
98
  msgstr ""
99
 
100
+ #: wp_shopping_cart_discounts_menu.php:68
101
  msgid "Enable Discount Coupon Feature"
102
  msgstr ""
103
 
104
+ #: wp_shopping_cart_discounts_menu.php:71
105
  msgid ""
106
  "When checked your customers will be able to enter a coupon code in the "
107
  "shopping cart before checkout."
108
  msgstr ""
109
 
110
+ #: wp_shopping_cart_discounts_menu.php:78
111
  msgid "Update &raquo;"
112
  msgstr ""
113
 
114
+ #: wp_shopping_cart_discounts_menu.php:94
115
  msgid "Add Coupon/Discount"
116
  msgstr ""
117
 
118
+ #: wp_shopping_cart_discounts_menu.php:119
119
  msgid "Save Coupon &raquo;"
120
  msgstr ""
121
 
122
+ #: wp_shopping_cart_discounts_menu.php:137
123
  msgid "Coupon Code"
124
  msgstr ""
125
 
126
+ #: wp_shopping_cart_discounts_menu.php:138
127
  msgid "Discount Rate (%)"
128
  msgstr ""
129
 
130
+ #: wp_shopping_cart_discounts_menu.php:139
131
+ msgid "Expiry Date"
132
+ msgstr ""
133
+
134
+ #: wp_shopping_cart_discounts_menu.php:158
135
+ msgid "No Expiry"
136
+ msgstr ""
137
+
138
+ #: wp_shopping_cart_discounts_menu.php:174
139
  msgid "No Coupons Configured."
140
  msgstr ""
141
 
142
+ #: wp_shopping_cart_discounts_menu.php:179
143
  msgid "No Record found"
144
  msgstr ""
145
 
146
+ #: wp_shopping_cart_misc_functions.php:169
147
  msgid "Your Shopping Cart"
148
  msgstr ""
149
 
150
+ #: wp_shopping_cart_misc_functions.php:170
151
  msgid "Your cart is empty"
152
  msgstr ""
153
 
154
+ #: wp_shopping_cart_misc_functions.php:200
155
+ msgid ""
156
+ "Need a shopping cart plugin with a lot of features and good support? Check "
157
+ "out our "
158
+ msgstr ""
159
+
160
+ #: wp_shopping_cart_misc_functions.php:201
161
+ msgid "WP eStore Plugin"
162
+ msgstr ""
163
+
164
  #: wp_shopping_cart_orders.php:10
165
  msgid "Cart Orders"
166
  msgstr ""
217
  msgid "Order Review"
218
  msgstr ""
219
 
220
+ #: wp_shopping_cart_orders.php:70
221
  msgid "Order ID: #"
222
  msgstr ""
223
 
224
+ #: wp_shopping_cart_orders.php:72
225
  msgid "Transaction ID: #"
226
  msgstr ""
227
 
228
+ #: wp_shopping_cart_orders.php:75 wp_shopping_cart_orders.php:165
229
  msgid "First Name"
230
  msgstr ""
231
 
232
+ #: wp_shopping_cart_orders.php:79 wp_shopping_cart_orders.php:166
233
  msgid "Last Name"
234
  msgstr ""
235
 
236
+ #: wp_shopping_cart_orders.php:83
237
  msgid "Email Address"
238
  msgstr ""
239
 
240
+ #: wp_shopping_cart_orders.php:87
241
  msgid "IP Address"
242
  msgstr ""
243
 
244
+ #: wp_shopping_cart_orders.php:91 wp_shopping_cart_orders.php:168
245
+ #: includes/wspsc-cart-functions.php:145
246
+ msgid "Total"
247
+ msgstr ""
248
+
249
+ #: wp_shopping_cart_orders.php:95 includes/wspsc-cart-functions.php:142
250
+ msgid "Shipping"
251
+ msgstr ""
252
+
253
+ #: wp_shopping_cart_orders.php:99
254
  msgid "Address"
255
  msgstr ""
256
 
257
+ #: wp_shopping_cart_orders.php:103
258
+ msgid "Phone"
259
+ msgstr ""
260
+
261
+ #: wp_shopping_cart_orders.php:107
262
  msgid "Buyer Email Sent?"
263
  msgstr ""
264
 
265
+ #: wp_shopping_cart_orders.php:111
266
  msgid "Item(s) Ordered:"
267
  msgstr ""
268
 
269
+ #: wp_shopping_cart_orders.php:115
270
  msgid "Applied Coupon Code:"
271
  msgstr ""
272
 
273
+ #: wp_shopping_cart_orders.php:164
274
  msgid "Order ID"
275
  msgstr ""
276
 
277
+ #: wp_shopping_cart_orders.php:167
278
  msgid "Email"
279
  msgstr ""
280
 
281
+ #: wp_shopping_cart_orders.php:169
282
  msgid "Status"
283
  msgstr ""
284
 
285
+ #: wp_shopping_cart_orders.php:170
286
  msgid "Date"
287
  msgstr ""
288
 
290
  msgid "WP Paypal Shopping Cart Options"
291
  msgstr ""
292
 
293
+ #: wp_shopping_cart_settings.php:100
294
  msgid "Options Updated!"
295
  msgstr ""
296
 
297
+ #: wp_shopping_cart_settings.php:104 includes/wspsc-cart-functions.php:30
298
+ msgid "USD"
299
+ msgstr ""
300
+
301
+ #: wp_shopping_cart_settings.php:107 includes/wspsc-cart-functions.php:34
302
+ msgid "$"
303
+ msgstr ""
304
+
305
+ #: wp_shopping_cart_settings.php:183
306
  msgid "Simple PayPal Shopping Cart Settings"
307
  msgstr ""
308
 
309
+ #: wp_shopping_cart_settings.php:191
310
  msgid "Quick Usage Guide"
311
  msgstr ""
312
 
313
+ #: wp_shopping_cart_settings.php:194
314
  msgid "Step 1) "
315
  msgstr ""
316
 
317
+ #: wp_shopping_cart_settings.php:194
318
  msgid "To add an 'Add to Cart' button for a product simply add the shortcode"
319
  msgstr ""
320
 
321
+ #: wp_shopping_cart_settings.php:194
322
  msgid "PRODUCT-NAME"
323
  msgstr ""
324
 
325
+ #: wp_shopping_cart_settings.php:194
326
  msgid "PRODUCT-PRICE"
327
  msgstr ""
328
 
329
+ #: wp_shopping_cart_settings.php:194
330
  msgid ""
331
  "to a post or page next to the product. Replace PRODUCT-NAME and PRODUCT-"
332
  "PRICE with the actual name and price of your product."
333
  msgstr ""
334
 
335
+ #: wp_shopping_cart_settings.php:195
336
  msgid "Example add to cart button shortcode usage:"
337
  msgstr ""
338
 
339
+ #: wp_shopping_cart_settings.php:196
340
  msgid "Step 2) "
341
  msgstr ""
342
 
343
+ #: wp_shopping_cart_settings.php:196
344
  msgid ""
345
  "To add the shopping cart to a post or page (example: a checkout page) simply "
346
  "add the shortcode"
347
  msgstr ""
348
 
349
+ #: wp_shopping_cart_settings.php:196
350
  msgid ""
351
  "to a post or page or use the sidebar widget to add the shopping cart to the "
352
  "sidebar."
353
  msgstr ""
354
 
355
+ #: wp_shopping_cart_settings.php:197
356
  msgid "Example shopping cart shortcode usage:"
357
  msgstr ""
358
 
359
+ #: wp_shopping_cart_settings.php:206
360
  msgid "PayPal and Shopping Cart Settings"
361
  msgstr ""
362
 
363
+ #: wp_shopping_cart_settings.php:212
364
  msgid "Paypal Email Address"
365
  msgstr ""
366
 
367
+ #: wp_shopping_cart_settings.php:216
368
  msgid "Shopping Cart title"
369
  msgstr ""
370
 
371
+ #: wp_shopping_cart_settings.php:220
372
  msgid "Text/Image to Show When Cart Empty"
373
  msgstr ""
374
 
375
+ #: wp_shopping_cart_settings.php:221
376
  msgid ""
377
  "You can either enter plain text or the URL of an image that you want to show "
378
  "when the shopping cart is empty"
379
  msgstr ""
380
 
381
+ #: wp_shopping_cart_settings.php:224
382
  msgid "Currency"
383
  msgstr ""
384
 
385
+ #: wp_shopping_cart_settings.php:225 wp_shopping_cart_settings.php:229
386
+ #: wp_shopping_cart_settings.php:256
387
  msgid "e.g."
388
  msgstr ""
389
 
390
+ #: wp_shopping_cart_settings.php:228
391
  msgid "Currency Symbol"
392
  msgstr ""
393
 
394
+ #: wp_shopping_cart_settings.php:234
395
  msgid "Base Shipping Cost"
396
  msgstr ""
397
 
398
+ #: wp_shopping_cart_settings.php:235
399
  msgid ""
400
  "This is the base shipping cost that will be added to the total of individual "
401
  "products shipping cost. Put 0 if you do not want to charge shipping cost or "
402
  "use base shipping cost."
403
  msgstr ""
404
 
405
+ #: wp_shopping_cart_settings.php:235
406
  msgid "Learn More on Shipping Calculation"
407
  msgstr ""
408
 
409
+ #: wp_shopping_cart_settings.php:239
410
  msgid "Free Shipping for Orders Over"
411
  msgstr ""
412
 
413
+ #: wp_shopping_cart_settings.php:240
414
  msgid ""
415
  "When a customer orders more than this amount he/she will get free shipping. "
416
  "Leave empty if you do not want to use it."
417
  msgstr ""
418
 
419
+ #: wp_shopping_cart_settings.php:244
420
  msgid "Must Collect Shipping Address on PayPal"
421
  msgstr ""
422
 
423
+ #: wp_shopping_cart_settings.php:245
424
  msgid ""
425
  "If checked the customer will be forced to enter a shipping address on PayPal "
426
  "when checking out."
427
  msgstr ""
428
 
429
+ #: wp_shopping_cart_settings.php:249
430
  msgid "Use PayPal Profile Based Shipping"
431
  msgstr ""
432
 
433
+ #: wp_shopping_cart_settings.php:250
434
  msgid "Check this if you want to use"
435
  msgstr ""
436
 
437
+ #: wp_shopping_cart_settings.php:250
438
  msgid "PayPal profile based shipping"
439
  msgstr ""
440
 
441
+ #: wp_shopping_cart_settings.php:250
442
  msgid ""
443
  "Using this will ignore any other shipping options that you have specified in "
444
  "this plugin."
445
  msgstr ""
446
 
447
+ #: wp_shopping_cart_settings.php:254
448
  msgid "Add to Cart button text or Image"
449
  msgstr ""
450
 
451
+ #: wp_shopping_cart_settings.php:256
452
  msgid ""
453
  "To use a customized image as the button simply enter the URL of the image "
454
  "file."
455
  msgstr ""
456
 
457
+ #: wp_shopping_cart_settings.php:262
458
  msgid "Return URL"
459
  msgstr ""
460
 
461
+ #: wp_shopping_cart_settings.php:263
462
  msgid ""
463
  "This is the URL the customer will be redirected to after a successful payment"
464
  msgstr ""
465
 
466
+ #: wp_shopping_cart_settings.php:267
467
  msgid "Products Page URL"
468
  msgstr ""
469
 
470
+ #: wp_shopping_cart_settings.php:268
471
  msgid ""
472
  "This is the URL of your products page if you have any. If used, the shopping "
473
  "cart widget will display a link to this page when cart is empty"
474
  msgstr ""
475
 
476
+ #: wp_shopping_cart_settings.php:272
477
  msgid "Automatic redirection to checkout page"
478
  msgstr ""
479
 
480
+ #: wp_shopping_cart_settings.php:274
481
  msgid "Checkout Page URL"
482
  msgstr ""
483
 
484
+ #: wp_shopping_cart_settings.php:275
485
  msgid ""
486
  "If checked the visitor will be redirected to the Checkout page after a "
487
  "product is added to the cart. You must enter a URL in the Checkout Page URL "
488
  "field for this to work."
489
  msgstr ""
490
 
491
+ #: wp_shopping_cart_settings.php:279
492
+ msgid "Open PayPal Checkout Page in a New Tab"
493
+ msgstr ""
494
+
495
+ #: wp_shopping_cart_settings.php:281
496
+ msgid ""
497
+ "If checked the PayPal checkout page will be opened in a new tab/window when "
498
+ "the user clicks the checkout button."
499
+ msgstr ""
500
+
501
+ #: wp_shopping_cart_settings.php:285
502
  msgid "Reset Cart After Redirection to Return Page"
503
  msgstr ""
504
 
505
+ #: wp_shopping_cart_settings.php:287
506
  msgid ""
507
  "If checked the shopping cart will be reset when the customer lands on the "
508
  "return URL (Thank You) page."
509
  msgstr ""
510
 
511
+ #: wp_shopping_cart_settings.php:294
512
  msgid "Hide Shopping Cart Image"
513
  msgstr ""
514
 
515
+ #: wp_shopping_cart_settings.php:295
516
  msgid "If ticked the shopping cart image will not be shown."
517
  msgstr ""
518
 
519
+ #: wp_shopping_cart_settings.php:301
520
  msgid "Customize the Note to Seller Text"
521
  msgstr ""
522
 
523
+ #: wp_shopping_cart_settings.php:303
524
  msgid ""
525
  "Specify the text that you want to use for the note field on PayPal checkout "
526
  "page to collect special instruction (leave this field empty if you don't "
528
  "instructions to merchant\"."
529
  msgstr ""
530
 
531
+ #: wp_shopping_cart_settings.php:309
532
+ msgid "Custom Checkout Page Style Name"
533
+ msgstr ""
534
+
535
+ #: wp_shopping_cart_settings.php:311
536
+ msgid ""
537
+ "Specify the page style name here if you want to customize the paypal "
538
+ "checkout page with custom page style otherwise leave this field empty."
539
+ msgstr ""
540
+
541
+ #: wp_shopping_cart_settings.php:317
542
+ msgid "Use Strict PayPal Email Address Checking"
543
+ msgstr ""
544
+
545
+ #: wp_shopping_cart_settings.php:318
546
+ msgid ""
547
+ "If checked the script will check to make sure that the PayPal email address "
548
+ "specified is the same as the account where the payment was deposited (Usage "
549
+ "of PayPal Email Alias will fail too)."
550
+ msgstr ""
551
+
552
+ #: wp_shopping_cart_settings.php:324
553
  msgid "Use WP Affiliate Platform"
554
  msgstr ""
555
 
556
+ #: wp_shopping_cart_settings.php:326
557
  msgid "Check this if using with the"
558
  msgstr ""
559
 
560
+ #: wp_shopping_cart_settings.php:326
561
  msgid ""
562
  "This plugin lets you run your own affiliate campaign/program and allows you "
563
  "to reward (pay commission) your affiliates for referred sales"
564
  msgstr ""
565
 
566
+ #: wp_shopping_cart_settings.php:332
567
  msgid "Testing and Debugging Settings"
568
  msgstr ""
569
 
570
+ #: wp_shopping_cart_settings.php:338
571
  msgid "Enable Debug"
572
  msgstr ""
573
 
574
+ #: wp_shopping_cart_settings.php:340
575
  msgid ""
576
  "If checked, debug output will be written to the log file. This is useful for "
577
  "troubleshooting post payment failures"
578
  msgstr ""
579
 
580
+ #: wp_shopping_cart_settings.php:351
581
  msgid "Enable Sandbox Testing"
582
  msgstr ""
583
 
584
+ #: wp_shopping_cart_settings.php:353
585
  msgid ""
586
  "Check this option if you want to do PayPal sandbox testing. You will need to "
587
  "create a PayPal sandbox account from PayPal Developer site"
588
  msgstr ""
589
 
590
+ #: wp_shopping_cart_settings.php:362 wp_shopping_cart_settings.php:508
591
  msgid "Update Options &raquo;"
592
  msgstr ""
593
 
594
+ #: wp_shopping_cart_settings.php:366
595
  msgid "Like the Simple WordPress Shopping Cart Plugin?"
596
  msgstr ""
597
 
598
+ #: wp_shopping_cart_settings.php:366
599
  msgid "Give it a good rating"
600
  msgstr ""
601
 
602
+ #: wp_shopping_cart_settings.php:431
 
 
 
 
 
 
 
 
603
  msgid "Purchase Confirmation Email Settings"
604
  msgstr ""
605
 
606
+ #: wp_shopping_cart_settings.php:434
607
  msgid ""
608
  "The following options affect the emails that gets sent to your buyers after "
609
  "a purchase."
610
  msgstr ""
611
 
612
+ #: wp_shopping_cart_settings.php:439
613
  msgid "Send Emails to Buyer After Purchase"
614
  msgstr ""
615
 
616
+ #: wp_shopping_cart_settings.php:440
617
  msgid ""
618
  "If checked the plugin will send an email to the buyer with the sale details. "
619
  "If digital goods are purchased then the email will contain the download "
620
  "links for the purchased products."
621
  msgstr ""
622
 
623
+ #: wp_shopping_cart_settings.php:444
624
  msgid "From Email Address"
625
  msgstr ""
626
 
627
+ #: wp_shopping_cart_settings.php:446
628
  msgid ""
629
  "Example: Your Name &lt;sales@your-domain.com&gt; This is the email address "
630
  "that will be used to send the email to the buyer. This name and email "
631
  "address will appear in the from field of the email."
632
  msgstr ""
633
 
634
+ #: wp_shopping_cart_settings.php:450
635
  msgid "Buyer Email Subject"
636
  msgstr ""
637
 
638
+ #: wp_shopping_cart_settings.php:452
639
  msgid "This is the subject of the email that will be sent to the buyer."
640
  msgstr ""
641
 
642
+ #: wp_shopping_cart_settings.php:456
643
  msgid "Buyer Email Body"
644
  msgstr ""
645
 
646
+ #: wp_shopping_cart_settings.php:459
647
  msgid ""
648
  "This is the body of the email that will be sent to the buyer. Do not change "
649
  "the text within the braces {}. You can use the following email tags in this "
650
  "email body field:"
651
  msgstr ""
652
 
653
+ #: wp_shopping_cart_settings.php:460 wp_shopping_cart_settings.php:492
654
  msgid "First name of the buyer"
655
  msgstr ""
656
 
657
+ #: wp_shopping_cart_settings.php:461 wp_shopping_cart_settings.php:493
658
  msgid "Last name of the buyer"
659
  msgstr ""
660
 
661
+ #: wp_shopping_cart_settings.php:462 wp_shopping_cart_settings.php:495
662
  msgid ""
663
  "The item details of the purchased product (this will include the download "
664
  "link for digital items)."
665
  msgstr ""
666
 
667
+ #: wp_shopping_cart_settings.php:463 wp_shopping_cart_settings.php:496
668
+ msgid "The unique transaction ID of the purchase"
669
+ msgstr ""
670
+
671
+ #: wp_shopping_cart_settings.php:464 wp_shopping_cart_settings.php:497
672
+ msgid "The amount paid for the current transaction"
673
+ msgstr ""
674
+
675
+ #: wp_shopping_cart_settings.php:465 wp_shopping_cart_settings.php:498
676
+ msgid "The date of the purchase"
677
+ msgstr ""
678
+
679
+ #: wp_shopping_cart_settings.php:466 wp_shopping_cart_settings.php:499
680
+ msgid "Coupon code applied to the purchase"
681
+ msgstr ""
682
+
683
+ #: wp_shopping_cart_settings.php:471
684
+ msgid "Send Emails to Seller After Purchase"
685
+ msgstr ""
686
+
687
+ #: wp_shopping_cart_settings.php:472
688
+ msgid ""
689
+ "If checked the plugin will send an email to the seller with the sale details"
690
+ msgstr ""
691
+
692
+ #: wp_shopping_cart_settings.php:476
693
+ msgid "Notification Email Address*"
694
+ msgstr ""
695
+
696
+ #: wp_shopping_cart_settings.php:478
697
+ msgid ""
698
+ "This is the email address where the seller will be notified of product "
699
+ "sales. You can put multiple email addresses separated by comma (,) in the "
700
+ "above field to send the notification to multiple email addresses."
701
+ msgstr ""
702
+
703
+ #: wp_shopping_cart_settings.php:482
704
+ msgid "Seller Email Subject*"
705
+ msgstr ""
706
+
707
+ #: wp_shopping_cart_settings.php:484
708
+ msgid ""
709
+ "This is the subject of the email that will be sent to the seller for record."
710
+ msgstr ""
711
+
712
+ #: wp_shopping_cart_settings.php:488
713
+ msgid "Seller Email Body*"
714
+ msgstr ""
715
+
716
+ #: wp_shopping_cart_settings.php:491
717
+ msgid ""
718
+ "This is the body of the email that will be sent to the seller for record. Do "
719
+ "not change the text within the braces {}. You can use the following email "
720
+ "tags in this email body field:"
721
+ msgstr ""
722
+
723
+ #: wp_shopping_cart_settings.php:494
724
+ msgid "Email Address of the buyer"
725
+ msgstr ""
726
+
727
+ #: wp_shopping_cart_shortcodes.php:19 wp_shopping_cart_shortcodes.php:49
728
  msgid "Error! You must specify a product name in the shortcode."
729
  msgstr ""
730
 
731
+ #: wp_shopping_cart_shortcodes.php:22 wp_shopping_cart_shortcodes.php:52
732
  msgid "Error! You must specify a price for your product in the shortcode."
733
  msgstr ""
734
 
735
+ #: wp_shopping_cart_shortcodes.php:55
736
  msgid ""
737
  "Error! You must specify a thumbnail image for your product in the shortcode."
738
  msgstr ""
739
 
740
+ #: wp_shopping_cart_shortcodes.php:107
741
+ msgid "View Cart"
742
+ msgstr ""
743
+
744
+ #: wp_shopping_cart_shortcodes.php:112
745
+ msgid "Cart is empty"
746
+ msgstr ""
747
+
748
+ #: includes/wspsc-cart-functions.php:18
749
+ msgid "Visit The Shop"
750
+ msgstr ""
751
+
752
+ #: includes/wspsc-cart-functions.php:59
753
+ msgid "Cart"
754
+ msgstr ""
755
+
756
+ #: includes/wspsc-cart-functions.php:67
757
+ msgid "Hit enter to submit new Quantity."
758
+ msgstr ""
759
+
760
+ #: includes/wspsc-cart-functions.php:77
761
+ msgid "Item Name"
762
+ msgstr ""
763
+
764
+ #: includes/wspsc-cart-functions.php:77
765
+ msgid "Quantity"
766
+ msgstr ""
767
+
768
+ #: includes/wspsc-cart-functions.php:77
769
+ msgid "Price"
770
+ msgstr ""
771
+
772
+ #: includes/wspsc-cart-functions.php:116
773
+ msgid "Remove"
774
+ msgstr ""
775
+
776
+ #: includes/wspsc-cart-functions.php:141
777
+ msgid "Subtotal"
778
+ msgstr ""
779
+
780
+ #: includes/wspsc-cart-functions.php:154
781
+ msgid "Enter Coupon Code"
782
+ msgstr ""
783
+
784
+ #: includes/wspsc-cart-functions.php:157
785
+ msgid "Apply"
786
+ msgstr ""
787
+
788
+ #: includes/wspsc-cart-functions.php:177
789
+ msgid "paypal_checkout_EN.png"
790
+ msgstr ""
791
+
792
+ #: includes/wspsc-cart-functions.php:177
793
+ msgid "Make payments with PayPal - it\\'s fast, free and secure!"
794
+ msgstr ""
795
+
796
  #: lib/gallery-wp-cart.php:32
797
  msgid "[View with PicLens]"
798
  msgstr ""
paypal.php CHANGED
@@ -1,5 +1,7 @@
1
  <?php
2
 
 
 
3
  $debug_log = "ipn_handle_debug.log"; // Debug log file name
4
 
5
  class paypal_ipn_handler {
@@ -38,6 +40,7 @@ class paypal_ipn_handler {
38
  $state = $this->ipn_data['address_state'];
39
  $zip = $this->ipn_data['address_zip'];
40
  $country = $this->ipn_data['address_country'];
 
41
  $address = $street_address.", ".$city.", ".$state.", ".$zip.", ".$country;
42
  $custom_values = wp_cart_get_custom_var_array($custom_value_str);
43
  $this->debug_log('Payment Status: '.$payment_status,true);
@@ -97,12 +100,6 @@ class paypal_ipn_handler {
97
  array_push($cart_items, $current_item);
98
  }
99
 
100
- $product_id_array = Array();
101
- $product_name_array = Array();
102
- $product_price_array = Array();
103
- $attachments_array = Array();
104
- $download_link_array = Array();
105
-
106
  $payment_currency = get_option('cart_payment_currency');
107
 
108
  foreach ($cart_items as $current_cart_item)
@@ -125,10 +122,8 @@ class paypal_ipn_handler {
125
  $this->debug_log('Invalid Product Currency : '.$payment_currency,false);
126
  return false;
127
  }
128
- }
129
-
130
- /*** Send notification email ***/
131
- //TODO
132
  $post_id = $custom_values['wp_cart_id'];
133
  $ip_address = $custom_values['ip'];
134
  $applied_coupon_code = $custom_values['coupon_code'];
@@ -136,8 +131,40 @@ class paypal_ipn_handler {
136
  $this->debug_log('custom values',true);
137
  $this->debug_log_array($custom_values,true);
138
  //$this->debug_log('post id: '.$post_id,true);
139
- if($post_id){
 
 
 
 
 
 
 
140
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
141
  $updated_wpsc_order = array(
142
  'ID' => $post_id,
143
  'post_status' => 'publish',
@@ -153,6 +180,7 @@ class paypal_ipn_handler {
153
  update_post_meta( $post_id, 'wpsc_total_amount', $mc_gross);
154
  update_post_meta( $post_id, 'wpsc_ipaddress', $ip_address );
155
  update_post_meta( $post_id, 'wpsc_address', $address );
 
156
  $status = "Paid";
157
  update_post_meta( $post_id, 'wpsc_order_status', $status );
158
  update_post_meta( $post_id, 'wpsc_applied_coupon', $applied_coupon_code );
@@ -193,7 +221,12 @@ class paypal_ipn_handler {
193
  $subject = get_option('wpspc_buyer_email_subj');
194
  $body = get_option('wpspc_buyer_email_body');
195
  $args['email_body'] = $body;
 
196
  $body = wpspc_apply_dynamic_tags_on_email_body($this->ipn_data, $args);
 
 
 
 
197
  $headers = 'From: '.$from_email . "\r\n";
198
  if(!empty($buyer_email)){
199
  $args['payer_email'] = $buyer_email;
@@ -208,7 +241,13 @@ class paypal_ipn_handler {
208
  $seller_email_subject = get_option('wpspc_seller_email_subj');
209
  $seller_email_body = get_option('wpspc_seller_email_body');
210
  $args['email_body'] = $seller_email_body;
 
 
211
  $seller_email_body = wpspc_apply_dynamic_tags_on_email_body($this->ipn_data, $args);
 
 
 
 
212
  if(!empty($notify_email)){
213
  if(get_option('wpspc_send_seller_email'))
214
  {
@@ -287,6 +326,7 @@ class paypal_ipn_handler {
287
  // Post the data back to paypal
288
  fputs($fp, "POST $url_parsed[path] HTTP/1.1\r\n");
289
  fputs($fp, "Host: $url_parsed[host]\r\n");
 
290
  fputs($fp, "Content-type: application/x-www-form-urlencoded\r\n");
291
  fputs($fp, "Content-length: ".strlen($post_string)."\r\n");
292
  fputs($fp, "Connection: close\r\n\r\n");
1
  <?php
2
 
3
+ status_header(200);
4
+
5
  $debug_log = "ipn_handle_debug.log"; // Debug log file name
6
 
7
  class paypal_ipn_handler {
40
  $state = $this->ipn_data['address_state'];
41
  $zip = $this->ipn_data['address_zip'];
42
  $country = $this->ipn_data['address_country'];
43
+ $phone = $this->ipn_data['contact_phone'];
44
  $address = $street_address.", ".$city.", ".$state.", ".$zip.", ".$country;
45
  $custom_values = wp_cart_get_custom_var_array($custom_value_str);
46
  $this->debug_log('Payment Status: '.$payment_status,true);
100
  array_push($cart_items, $current_item);
101
  }
102
 
 
 
 
 
 
 
103
  $payment_currency = get_option('cart_payment_currency');
104
 
105
  foreach ($cart_items as $current_cart_item)
122
  $this->debug_log('Invalid Product Currency : '.$payment_currency,false);
123
  return false;
124
  }
125
+ }
126
+
 
 
127
  $post_id = $custom_values['wp_cart_id'];
128
  $ip_address = $custom_values['ip'];
129
  $applied_coupon_code = $custom_values['coupon_code'];
131
  $this->debug_log('custom values',true);
132
  $this->debug_log_array($custom_values,true);
133
  //$this->debug_log('post id: '.$post_id,true);
134
+ if($post_id)
135
+ {
136
+ //security check
137
+ if(!get_post_status($post_id))
138
+ {
139
+ $this->debug_log('Order ID '.$post_id.' does not exist in the database. This is not a Simple PayPal Shopping Cart order', false);
140
+ return;
141
+ }
142
 
143
+ if (get_option('wp_shopping_cart_strict_email_check') != '')
144
+ {
145
+ $seller_paypal_email = get_option('cart_paypal_email');
146
+ if ($seller_paypal_email != $this->ipn_data['receiver_email']){
147
+ $error_msg .= 'Invalid Seller Paypal Email Address : '.$this->ipn_data['receiver_email'];
148
+ $this->debug_log($error_msg, false);
149
+ return;
150
+ }
151
+ else{
152
+ $this->debug_log('Seller Paypal Email Address is Valid: '.$this->ipn_data['receiver_email'],true);
153
+ }
154
+ }
155
+
156
+ $transaction_id = get_post_meta( $post_id, 'wpsc_txn_id', true );
157
+ if(!empty($transaction_id))
158
+ {
159
+ if($transaction_id == $txn_id) //this transaction has been already processed once
160
+ {
161
+ $this->debug_log('This transaction has been already processed once. Transaction ID: '.$transaction_id, false);
162
+ return;
163
+ }
164
+ }
165
+
166
+ //End of security check
167
+
168
  $updated_wpsc_order = array(
169
  'ID' => $post_id,
170
  'post_status' => 'publish',
180
  update_post_meta( $post_id, 'wpsc_total_amount', $mc_gross);
181
  update_post_meta( $post_id, 'wpsc_ipaddress', $ip_address );
182
  update_post_meta( $post_id, 'wpsc_address', $address );
183
+ update_post_meta( $post_id, 'wpspsc_phone', $phone );
184
  $status = "Paid";
185
  update_post_meta( $post_id, 'wpsc_order_status', $status );
186
  update_post_meta( $post_id, 'wpsc_applied_coupon', $applied_coupon_code );
221
  $subject = get_option('wpspc_buyer_email_subj');
222
  $body = get_option('wpspc_buyer_email_body');
223
  $args['email_body'] = $body;
224
+ $args['coupon_code'] = $applied_coupon_code;
225
  $body = wpspc_apply_dynamic_tags_on_email_body($this->ipn_data, $args);
226
+
227
+ $this->debug_log('Applying filter - wspsc_buyer_notification_email_body', true);
228
+ $body = apply_filters('wspsc_buyer_notification_email_body', $body, $this->ipn_data, $cart_items);
229
+
230
  $headers = 'From: '.$from_email . "\r\n";
231
  if(!empty($buyer_email)){
232
  $args['payer_email'] = $buyer_email;
241
  $seller_email_subject = get_option('wpspc_seller_email_subj');
242
  $seller_email_body = get_option('wpspc_seller_email_body');
243
  $args['email_body'] = $seller_email_body;
244
+ $args['order_id'] = $post_id;
245
+ $args['coupon_code'] = $applied_coupon_code;
246
  $seller_email_body = wpspc_apply_dynamic_tags_on_email_body($this->ipn_data, $args);
247
+
248
+ $this->debug_log('Applying filter - wspsc_seller_notification_email_body', true);
249
+ $seller_email_body = apply_filters('wspsc_seller_notification_email_body', $seller_email_body, $this->ipn_data, $cart_items);
250
+
251
  if(!empty($notify_email)){
252
  if(get_option('wpspc_send_seller_email'))
253
  {
326
  // Post the data back to paypal
327
  fputs($fp, "POST $url_parsed[path] HTTP/1.1\r\n");
328
  fputs($fp, "Host: $url_parsed[host]\r\n");
329
+ fputs($fp, "User-Agent: Simple PayPal Shopping Cart Plugin\r\n" );
330
  fputs($fp, "Content-type: application/x-www-form-urlencoded\r\n");
331
  fputs($fp, "Content-length: ".strlen($post_string)."\r\n");
332
  fputs($fp, "Connection: close\r\n\r\n");
readme.txt CHANGED
@@ -1,267 +1,315 @@
1
- === WordPress Simple Paypal Shopping Cart ===
2
- Contributors: Tips and Tricks HQ, Ruhul Amin, wptipsntricks
3
- Donate link: https://www.tipsandtricks-hq.com
4
- Tags: cart, shopping cart, WordPress shopping cart, Paypal shopping cart, sell, selling, sell products, online shop, shop, e-commerce, wordpress ecommerce, wordpress store, store, PayPal cart widget, sell digital products, sell service, digital downloads, paypal, paypal cart, e-shop, compact cart, coupon, discount
5
- Requires at least: 3.0
6
- Tested up to: 4.0
7
- Stable tag: 4.0.1
8
- License: GPLv2 or later
9
-
10
- Very easy to use Simple WordPress Paypal Shopping Cart Plugin. Great for selling products online in one click from your WordPress site.
11
-
12
- == Description ==
13
-
14
- WordPress Simple Paypal Shopping Cart allows you to add an 'Add to Cart' button for your product on any posts or pages. This simple shopping cart plugin lets you sell products and services directly from your own wordpress site and turns your WP blog into an ecommerce site.
15
-
16
- It also allows you to add/display the shopping cart on any post or page or sidebar easily. The shopping cart shows the user what they currently have in the cart and allows them to change quantity or remove the items.
17
-
18
- http://www.youtube.com/watch?v=tEZWfTmZ2kk
19
-
20
- You will be able to create products by using shortcodes dynamically.
21
-
22
- The shopping cart output will be responsive if you are using it with a responsive theme.
23
-
24
- It can be easily integrated with the NextGen Photo Gallery plugin to accommodate the selling of photographs from your gallery.
25
-
26
- This plugin is a lightweight solution (with minimal number of lines of code and minimal options) so it doesn't slow down your site.
27
-
28
- WP simple Paypal Cart Plugin, interfaces with the Paypal sandbox to allow for testing.
29
-
30
- For video tutorial, screenshots, detailed documentation, support and updates, please visit:
31
- [WP Simple Cart Details Page](https://www.tipsandtricks-hq.com/wordpress-simple-paypal-shopping-cart-plugin-768)
32
- or
33
- [WP Simple Cart Documentation](http://www.tipsandtricks-hq.com/ecommerce/wp-shopping-cart)
34
-
35
- = Features =
36
-
37
- * Easily create "add to cart" button with options if needed (price, shipping, options variations). The cart's shortcode can be displayed on posts or pages.
38
- * Use a function to add dynamic "add to cart" button directly in your theme.
39
- * Minimal number of configuration items to keep the plugin lightweight.
40
- * Sell any kind of tangible products from your site.
41
- * Ability to sell services from your your site.
42
- * Sell any type of media file that you upload to your WordPress site. For example: you can sell ebooks (PDF), music files (MP3), audio files, videos, photos, images etc.
43
- * Your customers will automatically get an email with the media file that they paid for.
44
- * Show a nicely formatted product display box on the fly using a simple shortcode.
45
- * You can use Paypal sandbox to do testing if needed (before you go live).
46
- * Collect special instructions from your customers on the PayPal checkout page.
47
- * The orders menu will show you all the orders that you have received from your site.
48
- * Ability to configure an email that will get sent to your buyers after they purchase your product.
49
- * Ability to configure a sale notification email that gets sent to the site admin when a customer purchase your item(s).
50
- * Ability to configure discount coupons. Offer special discounts on your store/shop.
51
- * You can create coupons and give to your customers. When they use coupons during the checkout they will receive a discount.
52
- * Create discount coupons with an expiry date. The coupon code automatically expires after the date you set.
53
- * Compatible with WordPress Multi-site Installation.
54
- * Ability to specify SKU (item number) for each of your products in the shortcode.
55
- * Ability to customize the add to cart button image and use a custom image for your purchase buttons.
56
- * Track coupons with the order to see which customer used which coupon code.
57
- * Ability to add a compact shopping cart to your site using a shortcode.
58
- * Ability to show shopping cart with product image thumbnails.
59
- * Ability to use a custom checkout page style.
60
- * Ability to open checkout page in a new browser tab/window.
61
- * Works nicely with responsive WordPress themes.
62
- * Can be translated into any language.
63
- * and more...
64
-
65
- = Shopping Cart Setup Video Tutorials =
66
-
67
- There is a series of video tutorials to show you how to setup the shopping cart on your site.
68
-
69
- Check the video tutorials [here](https://www.tipsandtricks-hq.com/wordpress-simple-paypal-shopping-cart-plugin-768).
70
-
71
- = Language Translations =
72
-
73
- The following language translations are already available:
74
-
75
- * English
76
- * German
77
- * Spanish
78
- * French
79
- * Italian
80
- * Japanese
81
- * Polish
82
- * Czech
83
- * Hebrew
84
- * Swedish
85
-
86
- You can translate the plugin using [this documentation](http://www.tipsandtricks-hq.com/ecommerce/translating-the-wp-simple-shopping-cart-plugin-2627).
87
-
88
- = Note =
89
-
90
- There are a few exact duplicate copies of this plugin that other people made. We have a few users who are getting confused as to which one is the original simple shopping cart plugin. This is the original simple PayPal shopping cart and you can verify it with the following information:
91
-
92
- * Check the stats tab of the plugin and you will be able to see a history of when this plugin was first added to WordPress.
93
- * Check the number of downloads on the sidebar. The original plugin always gets more downloads than the copycats.
94
- * Check the number of ratings. The original plugin should have more votes.
95
- * Check the developer's site.
96
-
97
- == Usage ==
98
- 1. To add an 'Add to Cart' button for a product, simply add the shortcode [wp_cart_button name="PRODUCT-NAME" price="PRODUCT-PRICE"] to a post or page next to the product. Replace PRODUCT-NAME and PRODUCT-PRICE with the actual name and price.
99
-
100
- 2. To add the 'Add to Cart' button on the sidebar or from other template files use the following function:
101
- <?php echo print_wp_cart_button_for_product('PRODUCT-NAME', PRODUCT-PRICE); ?>
102
- Replace PRODUCT-NAME and PRODUCT-PRICE with the actual name and price.
103
-
104
- 3. To add the shopping cart to a post or page (eg. checkout page) simply add the shortcode [show_wp_shopping_cart] to a post or page or use the sidebar widget to add the shopping cart to the sidebar. The shopping cart will only be visible in a post or page when a customer adds a product.
105
-
106
- = Using Product Display Box =
107
-
108
- Here is an exmaple shortcode that shows you how to use a product display box.
109
-
110
- [wp_cart_display_product name="My Awesome Product" price="25.00" thumbnail="http://www.example.com/images/product-image.jpg" description="This is a short description of the product"]
111
-
112
- Simply replace the values with your product specific data
113
-
114
- = Using a compact shopping cart =
115
-
116
- Add the following shortcode where you want to show the compact shopping cart:
117
-
118
- [wp_compact_cart]
119
-
120
- = Using Shipping =
121
-
122
- 1. To use shipping cost for your product, use the "shipping" parameter. Here is an example shortcode usage:
123
- [wp_cart_button name="Test Product" price="19.95" shipping="4.99"]
124
-
125
- or use the following php function from your wordpress template files
126
- <?php echo print_wp_cart_button_for_product('product name',price,shipping cost); ?>
127
-
128
- = Using Variation Control =
129
-
130
- 1. To use variation control use the variation parameter in the shortcode:
131
- [wp_cart_button name="Test Product" price="25.95" var1="VARIATION-NAME|VARIATION1|VARIATION2|VARIATION3"]
132
-
133
- example usage: [wp_cart_button name="Test Product" price="29.95" var1="Size|small|medium|large"]
134
-
135
- 2. To use multiple variation for a product (2nd or 3rd variation), use the following:
136
-
137
- [wp_cart_button name="Test Product" price="29.95" var1="Size|small|medium|large" var2="Color|red|green|blue"]
138
-
139
- [wp_cart_button name="Test Product" price="29.95" var1="Size|small|medium|large" var2="Color|red|green|blue" var3="Sleeve|short|full"]
140
-
141
- == Installation ==
142
-
143
- 1. Unzip and Upload the folder 'wordpress-paypal-shopping-cart' to the '/wp-content/plugins/' directory
144
- 2. Activate the plugin through the 'Plugins' menu in WordPress
145
- 3. Go to Settings and configure the options (for example: your email, Shopping Cart name, Return URL etc.)
146
- 4. Use the trigger text to add a product to a post or page where you want it to appear.
147
-
148
- == Frequently Asked Questions ==
149
- 1. Can this plugin be used to accept paypal payment for a service or a product? Yes
150
- 2. Does this plugin have shopping cart? Yes.
151
- 3. Can the shopping cart be added to a checkout page? Yes.
152
- 4. Does this plugin has multiple currency support? Yes.
153
- 5. Is the 'Add to Cart' button customizable? Yes.
154
- 6. Does this plugin use a return URL to redirect customers to a specified page after Paypal has processed the payment? Yes.
155
- 7. How can I add a buy button on the sidebar widget of my site?
156
- Check the documentation on [how to add buy buttons to the sidebar](http://www.tipsandtricks-hq.com/ecommerce/wordpress-shopping-cart-additional-resources-322#add_button_in_sidebar)
157
- 8. Can I use this plugin to sell digital downloads?
158
- Yes. See the [digital download usage documnentation] (http://www.tipsandtricks-hq.com/ecommerce/wp-simple-cart-sell-digital-downloads-2468)
159
- 9. Can I configure discount coupon with this shopping cart plugin?
160
- Yes. you can setup discount coupons from the "Coupon/Discount" interface of the plugin.
161
- 10. Can I configure product sale notification so I get notified when a sale is made?
162
- Yes. You can configure sale notification from the "Email Settings" interface of the plugin.
163
-
164
- == Screenshots ==
165
- Visit the plugin site at https://www.tipsandtricks-hq.com/?p=768 for screenshots.
166
-
167
- == Upgrade Notice ==
168
-
169
- None
170
-
171
- == Changelog ==
172
-
173
- = 4.0.1 =
174
- - Added a new filter to format the price in the shopping cart. Example usage:
175
- https://www.tipsandtricks-hq.com/ecommerce/customizing-price-amount-display-currency-formatting-3247
176
- - WordPress 4.0 compatibility.
177
-
178
- = 4.0.0 =
179
- - Changed the permission on the orders menu so it is only available to admin users from the backend.
180
- - Made some enhancement around the PHP session_start function call.
181
- - Added an extra check to prevent direct access to the cart file.
182
- - Added expiry date field in the discount coupon. You can now create discount coupons with an expiry.
183
-
184
- = 3.9.9 =
185
- - Added a new feature that allows you to show the product thumbnail image in the shopping cart. Use "show_thumbnail" parameter in the shopping cart shortcode for this.
186
- - Added Swedish language translation to the plugin. The Swedish translation file was submitted by Felicia.
187
- - Fixed a minor bug with the checkout page style feature.
188
- - Added a new filter for the item name field in the shopping cart.
189
- - Made some minor CSS improvements for the cart output.
190
- - The {product_details} email shortcode will now show the full amount of the item (instead of the individual item amount).
191
-
192
- = 3.9.8 =
193
- - Added Hebrew Language translation to the plugin. The Hebrew translation file was submitted by Sagi Cooper.
194
- - Added extra condition to address the "Invalid argument supplied" error that a few users were getting.
195
-
196
- = 3.9.7 =
197
- - Added a new feature to open the checkout page in a new tab/window when user clicks the checkout button.
198
- - Updated the Cart Orders menu icon to use a slightly better looking dashicon.
199
- - Added a new filter to allow modification of the custom field value. Filter name is wpspc_cart_custom_field_value
200
- - Added a new action hook after the PayPal IPN is processed. This will allow you to do extra post payment processing task for your orders. Hook name wpspc_paypal_ipn_processed
201
- - Made some improvements to some of the shopping cart icons (cart and delete item icons have been updated).
202
- - Cart output will work with a responsive theme.
203
-
204
- = 3.9.6 =
205
- - Added Czech Language translation to the plugin. The Czech translation file was submitted by Tomas Sykora.
206
- - Added a new option/feature to specify a custom paypal checkout page style name. The plugin will use the custom checkout page style if you specify one.
207
- - Each order now also shows the shipping amount in the order managment interface.
208
-
209
- = 3.9.5 =
210
- - Added a new feature that lets you (the site admin) configure a sale notification email for the admin. When your customer purchase a product, you get a notification email. Activate this feature from the "Email Settings" interface of the plugin.
211
- - Added Polish language translation to the plugin. The Polish langage translation file was submitted by Gregor Konrad.
212
- - Fixed a minor issue with custom button images that uses HTTPS URL.
213
- - Added more CSS classes in the shopping cart so you can apply CSS tweaks easily.
214
-
215
- = 3.9.4 =
216
- - Fixed a minor bug in the new compact cart shortcode [wp_compact_cart]
217
-
218
- = 3.9.3 =
219
- - Added a new feature to show a compact shopping cart. You can show the compact shopping cart anywhere on your site (example: sidebar, header etc).
220
- - Language translation strings updated. Translation instruction here - http://www.tipsandtricks-hq.com/ecommerce/translating-the-wp-simple-shopping-cart-plugin-2627
221
- - Added a new function for getting the total cart item quantity (wpspc_get_total_cart_qty).
222
- - Added a new function to get the sub total amount of the cart (wpspc_get_total_cart_sub_total).
223
-
224
- = 3.9.2 =
225
- - Added an option to specify a custom button image for the add to cart buttons. You can use the "button_image" parameter in the shortcode to customize the add to cart button image.
226
- - Coupon code that is used in a transaciton will be saved with the order so you can see it in the back end.
227
-
228
- = 3.9.1 =
229
- - WP 3.8 compatibility
230
-
231
- = 3.9.0 and 3.8.9 =
232
- - WP Super Cache workaround - http://www.tipsandtricks-hq.com/ecommerce/wp-shopping-cart-and-wp-super-cache-workaround-334
233
- - Added a new shortcode argument to specify a SKU number for your product.
234
- - Fixed a few debug warnings/notices
235
- - Added Italian language file
236
-
237
- = 3.8.8 =
238
- - Added a discount coupon feature to the shopping cart. You can now configure discount coupon via the Simple cart settings -> Coupon/Discount menu
239
- - View link now shows the order details
240
- - fixed a bug where the shipping price wasn't properly showing for more than $1000
241
- - WordPress 3.7 compatibility
242
-
243
- = 3.8.7 =
244
- - Changed a few function names and made them unique to reduce the chance of a function name conflict with another plugin.
245
- - Added a new option in the plugin so the purchased items of a transaction will be shown under orders menu
246
- - Payment notification will only be processed when the status is completed.
247
-
248
- = 3.8.6 =
249
- - Updated the broken settings menu link
250
- - Updated the NextGen gallery integration to return $arg1 rather than $arg2
251
-
252
- = 3.8.5 =
253
- - Added an email settings menu where the site admin can customize the buyer email that gets sent after a transaction
254
- - Also, added the following dynamic email tags for the email body field:
255
-
256
- {first_name} First name of the buyer
257
- {last_name} Last name of the buyer
258
- {product_details} The item details of the purchased product (this will include the download link for digital items).
259
-
260
- = 3.8.4 =
261
- - Fixing an issue that resulted from doing a commit when wordpress.org plugin repository was undergoing maintenance
262
-
263
- = 3.8.3 =
264
- - Improved the settings menu interface with the new shortcode usage instruction.
265
-
266
- Full changelog for all versions can be found at the following URL:
267
- http://www.tipsandtricks-hq.com/ecommerce/?p=319
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ === WordPress Simple Paypal Shopping Cart ===
2
+ Contributors: Tips and Tricks HQ, Ruhul Amin, wptipsntricks, mbrsolution
3
+ Donate link: https://www.tipsandtricks-hq.com
4
+ Tags: cart, shopping cart, WordPress shopping cart, Paypal shopping cart, sell, selling, sell products, online shop, shop, e-commerce, wordpress ecommerce, wordpress store, store, PayPal cart widget, sell digital products, sell service, digital downloads, paypal, paypal cart, e-shop, compact cart, coupon, discount
5
+ Requires at least: 3.0
6
+ Tested up to: 4.2
7
+ Stable tag: 4.0.8
8
+ License: GPLv2 or later
9
+
10
+ Very easy to use Simple WordPress Paypal Shopping Cart Plugin. Great for selling products online in one click from your WordPress site.
11
+
12
+ == Description ==
13
+
14
+ WordPress Simple Paypal Shopping Cart allows you to add an 'Add to Cart' button for your product on any posts or pages. This simple shopping cart plugin lets you sell products and services directly from your own wordpress site and turns your WP blog into an ecommerce site.
15
+
16
+ It also allows you to add/display the shopping cart on any post or page or sidebar easily. The shopping cart shows the user what they currently have in the cart and allows them to change quantity or remove the items.
17
+
18
+ http://www.youtube.com/watch?v=tEZWfTmZ2kk
19
+
20
+ You will be able to create products by using shortcodes dynamically.
21
+
22
+ The shopping cart output will be responsive if you are using it with a responsive theme.
23
+
24
+ It can be easily integrated with the NextGen Photo Gallery plugin to accommodate the selling of photographs from your gallery.
25
+
26
+ This plugin is a lightweight solution (with minimal number of lines of code and minimal options) so it doesn't slow down your site.
27
+
28
+ WP simple Paypal Cart Plugin, interfaces with the Paypal sandbox to allow for testing.
29
+
30
+ For video tutorial, screenshots, detailed documentation, support and updates, please visit:
31
+ [WP Simple Cart Details Page](https://www.tipsandtricks-hq.com/wordpress-simple-paypal-shopping-cart-plugin-768)
32
+ or
33
+ [WP Simple Cart Documentation](https://www.tipsandtricks-hq.com/ecommerce/wp-shopping-cart)
34
+
35
+ = Features =
36
+
37
+ * Easily create "add to cart" button with options if needed (price, shipping, options variations). The cart's shortcode can be displayed on posts or pages.
38
+ * Use a function to add dynamic "add to cart" button directly in your theme.
39
+ * Minimal number of configuration items to keep the plugin lightweight.
40
+ * Sell any kind of tangible products from your site.
41
+ * Ability to sell services from your your site.
42
+ * Sell any type of media file that you upload to your WordPress site. For example: you can sell ebooks (PDF), music files (MP3), audio files, videos, photos, images etc.
43
+ * Your customers will automatically get an email with the media file that they paid for.
44
+ * Show a nicely formatted product display box on the fly using a simple shortcode.
45
+ * You can use Paypal sandbox to do testing if needed (before you go live).
46
+ * Collect special instructions from your customers on the PayPal checkout page.
47
+ * The orders menu will show you all the orders that you have received from your site.
48
+ * Ability to configure an email that will get sent to your buyers after they purchase your product.
49
+ * Ability to configure a sale notification email that gets sent to the site admin when a customer purchase your item(s).
50
+ * Ability to configure discount coupons. Offer special discounts on your store/shop.
51
+ * You can create coupons and give to your customers. When they use coupons during the checkout they will receive a discount.
52
+ * Create discount coupons with an expiry date. The coupon code automatically expires after the date you set.
53
+ * Compatible with WordPress Multi-site Installation.
54
+ * Ability to specify SKU (item number) for each of your products in the shortcode.
55
+ * Ability to customize the add to cart button image and use a custom image for your purchase buttons.
56
+ * Track coupons with the order to see which customer used which coupon code.
57
+ * Ability to add a compact shopping cart to your site using a shortcode.
58
+ * Ability to show shopping cart with product image thumbnails.
59
+ * Ability to use a custom checkout page style.
60
+ * Ability to open checkout page in a new browser tab/window.
61
+ * Works nicely with responsive WordPress themes.
62
+ * Can be translated into any language.
63
+ * and more...
64
+
65
+ = Shopping Cart Setup Video Tutorials =
66
+
67
+ There is a series of video tutorials to show you how to setup the shopping cart on your site.
68
+
69
+ Check the video tutorials [here](https://www.tipsandtricks-hq.com/wordpress-simple-paypal-shopping-cart-plugin-768).
70
+
71
+ = Language Translations =
72
+
73
+ The following language translations are already available:
74
+
75
+ * English
76
+ * German
77
+ * Spanish
78
+ * French
79
+ * Italian
80
+ * Japanese
81
+ * Polish
82
+ * Czech
83
+ * Hebrew
84
+ * Swedish
85
+ * Norwegian
86
+ * Danish
87
+ * Turkish
88
+
89
+ You can translate the plugin using [this documentation](http://www.tipsandtricks-hq.com/ecommerce/translating-the-wp-simple-shopping-cart-plugin-2627).
90
+
91
+ = Note =
92
+
93
+ There are a few exact duplicate copies of this plugin that other people made. We have a few users who are getting confused as to which one is the original simple shopping cart plugin. This is the original simple PayPal shopping cart and you can verify it with the following information:
94
+
95
+ * Check the stats tab of the plugin and you will be able to see a history of when this plugin was first added to WordPress.
96
+ * Check the number of downloads on the sidebar. The original plugin always gets more downloads than the copycats.
97
+ * Check the number of ratings. The original plugin should have more votes.
98
+ * Check the developer's site.
99
+
100
+ == Usage ==
101
+ 1. To add an 'Add to Cart' button for a product, simply add the shortcode [wp_cart_button name="PRODUCT-NAME" price="PRODUCT-PRICE"] to a post or page next to the product. Replace PRODUCT-NAME and PRODUCT-PRICE with the actual name and price.
102
+
103
+ 2. To add the 'Add to Cart' button on the sidebar or from other template files use the following function:
104
+ <?php echo print_wp_cart_button_for_product('PRODUCT-NAME', PRODUCT-PRICE); ?>
105
+ Replace PRODUCT-NAME and PRODUCT-PRICE with the actual name and price.
106
+
107
+ 3. To add the shopping cart to a post or page (eg. checkout page) simply add the shortcode [show_wp_shopping_cart] to a post or page or use the sidebar widget to add the shopping cart to the sidebar. The shopping cart will only be visible in a post or page when a customer adds a product.
108
+
109
+ = Using Product Display Box =
110
+
111
+ Here is an exmaple shortcode that shows you how to use a product display box.
112
+
113
+ [wp_cart_display_product name="My Awesome Product" price="25.00" thumbnail="http://www.example.com/images/product-image.jpg" description="This is a short description of the product"]
114
+
115
+ Simply replace the values with your product specific data
116
+
117
+ = Using a compact shopping cart =
118
+
119
+ Add the following shortcode where you want to show the compact shopping cart:
120
+
121
+ [wp_compact_cart]
122
+
123
+ = Using Shipping =
124
+
125
+ 1. To use shipping cost for your product, use the "shipping" parameter. Here is an example shortcode usage:
126
+ [wp_cart_button name="Test Product" price="19.95" shipping="4.99"]
127
+
128
+ or use the following php function from your wordpress template files
129
+ <?php echo print_wp_cart_button_for_product('product name',price,shipping cost); ?>
130
+
131
+ = Using Variation Control =
132
+
133
+ 1. To use variation control use the variation parameter in the shortcode:
134
+ [wp_cart_button name="Test Product" price="25.95" var1="VARIATION-NAME|VARIATION1|VARIATION2|VARIATION3"]
135
+
136
+ example usage: [wp_cart_button name="Test Product" price="29.95" var1="Size|small|medium|large"]
137
+
138
+ 2. To use multiple variation for a product (2nd or 3rd variation), use the following:
139
+
140
+ [wp_cart_button name="Test Product" price="29.95" var1="Size|small|medium|large" var2="Color|red|green|blue"]
141
+
142
+ [wp_cart_button name="Test Product" price="29.95" var1="Size|small|medium|large" var2="Color|red|green|blue" var3="Sleeve|short|full"]
143
+
144
+ == Installation ==
145
+
146
+ 1. Unzip and Upload the folder 'wordpress-paypal-shopping-cart' to the '/wp-content/plugins/' directory
147
+ 2. Activate the plugin through the 'Plugins' menu in WordPress
148
+ 3. Go to Settings and configure the options (for example: your email, Shopping Cart name, Return URL etc.)
149
+ 4. Use the trigger text to add a product to a post or page where you want it to appear.
150
+
151
+ == Frequently Asked Questions ==
152
+ 1. Can this plugin be used to accept paypal payment for a service or a product? Yes
153
+ 2. Does this plugin have shopping cart? Yes.
154
+ 3. Can the shopping cart be added to a checkout page? Yes.
155
+ 4. Does this plugin has multiple currency support? Yes.
156
+ 5. Is the 'Add to Cart' button customizable? Yes.
157
+ 6. Does this plugin use a return URL to redirect customers to a specified page after Paypal has processed the payment? Yes.
158
+ 7. How can I add a buy button on the sidebar widget of my site?
159
+ Check the documentation on [how to add buy buttons to the sidebar](http://www.tipsandtricks-hq.com/ecommerce/wordpress-shopping-cart-additional-resources-322#add_button_in_sidebar)
160
+ 8. Can I use this plugin to sell digital downloads?
161
+ Yes. See the [digital download usage documentation] (http://www.tipsandtricks-hq.com/ecommerce/wp-simple-cart-sell-digital-downloads-2468)
162
+ 9. Can I configure discount coupon with this shopping cart plugin?
163
+ Yes. you can setup discount coupons from the "Coupon/Discount" interface of the plugin.
164
+ 10. Can I configure product sale notification so I get notified when a sale is made?
165
+ Yes. You can configure sale notification from the "Email Settings" interface of the plugin.
166
+ 11. Can I modify the product box thumbnail image?
167
+ Yes.
168
+ 12. Can I customize the format of the price display?
169
+ Yes.
170
+
171
+ == Screenshots ==
172
+ Visit the plugin site at https://www.tipsandtricks-hq.com/wordpress-simple-paypal-shopping-cart-plugin-768 for screenshots.
173
+
174
+ == Upgrade Notice ==
175
+
176
+ None
177
+
178
+ == Changelog ==
179
+
180
+ = 4.0.8 =
181
+ - Added Turkish Language translation to the plugin. The Turkish translation file was submitted by Vural Pamir.
182
+ - WordPress 4.2 compatibility
183
+
184
+ = 4.0.7 =
185
+ - The cart stylesheet file now uses the 'wp_enqueue_scripts' hook
186
+ - Added a new shortcode parameter (thumb_target) which can be used to specify a target URL for the product thumbnail image
187
+ - Coupon codes are now case-insensitive.
188
+ - Updated the Italian language file.
189
+
190
+ = 4.0.6 =
191
+ - Added an email tag to include the coupon code used in the notification email.
192
+ - Added an extra check to prevent a debug notice message from showing when the cart is reset.
193
+ - WordPress 4.1 compatibility.
194
+
195
+ = 4.0.5 =
196
+ - Added two new filters to allow dynamic modification of the buyer and seller notification email body (just before the email is sent).
197
+ - Added a new filter so the orders menu viewing permission can be overridden by an addon.
198
+ - Added Danish Language translation to the plugin. The Danish translation file was submitted by Steve Jorgensen.
199
+ - Added a function to strip special characters from price parameter in the shortcode.
200
+
201
+ = 4.0.4 =
202
+ - Added some new email tags to show Transaction ID, Purchase Amount and Purchase Date (check your email settings field for details).
203
+ - Made some improvements to the PayPal IPN validation code.
204
+
205
+ = 4.0.3 =
206
+ - Fixed a few notices in the settings menu when run in debug mode.
207
+ - Fixed a warning notice on the front end when run in debug mode.
208
+
209
+ = 4.0.2 =
210
+ - Added a new option so you can store your custom language file for this plugin in a folder outside the plugin's directory.
211
+ - Added the following two new filters to allow customization of the add to cart button:
212
+ wspsc_add_cart_button_form_attr
213
+ wspsc_add_cart_submit_button_value
214
+ - Added Text Domain and Domain Path values to the plugin header.
215
+ - Added Norwegian language translation to the plugin. The Swedish translation file was submitted by Reidar F. Sivertsen.
216
+ - Added some security checks a) to make sure that the payment is deposited to the email specified in the settings b) to block multiple payment notifications for the same transaction ID
217
+ - Buyer's contact phone number is now also saved with each order (given you have enabled it).
218
+ - Added the following new filter to allow customization of the product box shortcode:
219
+ wspsc_product_box_thumbnail_code
220
+
221
+ = 4.0.1 =
222
+ - Added a new filter to format the price in the shopping cart. Example usage:
223
+ https://www.tipsandtricks-hq.com/ecommerce/customizing-price-amount-display-currency-formatting-3247
224
+ - WordPress 4.0 compatibility.
225
+
226
+ = 4.0.0 =
227
+ - Changed the permission on the orders menu so it is only available to admin users from the backend.
228
+ - Made some enhancement around the PHP session_start function call.
229
+ - Added an extra check to prevent direct access to the cart file.
230
+ - Added expiry date field in the discount coupon. You can now create discount coupons with an expiry.
231
+
232
+ = 3.9.9 =
233
+ - Added a new feature that allows you to show the product thumbnail image in the shopping cart. Use "show_thumbnail" parameter in the shopping cart shortcode for this.
234
+ - Added Swedish language translation to the plugin. The Swedish translation file was submitted by Felicia.
235
+ - Fixed a minor bug with the checkout page style feature.
236
+ - Added a new filter for the item name field in the shopping cart.
237
+ - Made some minor CSS improvements for the cart output.
238
+ - The {product_details} email shortcode will now show the full amount of the item (instead of the individual item amount).
239
+
240
+ = 3.9.8 =
241
+ - Added Hebrew Language translation to the plugin. The Hebrew translation file was submitted by Sagi Cooper.
242
+ - Added extra condition to address the "Invalid argument supplied" error that a few users were getting.
243
+
244
+ = 3.9.7 =
245
+ - Added a new feature to open the checkout page in a new tab/window when user clicks the checkout button.
246
+ - Updated the Cart Orders menu icon to use a slightly better looking dashicon.
247
+ - Added a new filter to allow modification of the custom field value. Filter name is wpspc_cart_custom_field_value
248
+ - Added a new action hook after the PayPal IPN is processed. This will allow you to do extra post payment processing task for your orders. Hook name wpspc_paypal_ipn_processed
249
+ - Made some improvements to some of the shopping cart icons (cart and delete item icons have been updated).
250
+ - Cart output will work with a responsive theme.
251
+
252
+ = 3.9.6 =
253
+ - Added Czech Language translation to the plugin. The Czech translation file was submitted by Tomas Sykora.
254
+ - Added a new option/feature to specify a custom paypal checkout page style name. The plugin will use the custom checkout page style if you specify one.
255
+ - Each order now also shows the shipping amount in the order managment interface.
256
+
257
+ = 3.9.5 =
258
+ - Added a new feature that lets you (the site admin) configure a sale notification email for the admin. When your customer purchase a product, you get a notification email. Activate this feature from the "Email Settings" interface of the plugin.
259
+ - Added Polish language translation to the plugin. The Polish langage translation file was submitted by Gregor Konrad.
260
+ - Fixed a minor issue with custom button images that uses HTTPS URL.
261
+ - Added more CSS classes in the shopping cart so you can apply CSS tweaks easily.
262
+
263
+ = 3.9.4 =
264
+ - Fixed a minor bug in the new compact cart shortcode [wp_compact_cart]
265
+
266
+ = 3.9.3 =
267
+ - Added a new feature to show a compact shopping cart. You can show the compact shopping cart anywhere on your site (example: sidebar, header etc).
268
+ - Language translation strings updated. Translation instruction here - http://www.tipsandtricks-hq.com/ecommerce/translating-the-wp-simple-shopping-cart-plugin-2627
269
+ - Added a new function for getting the total cart item quantity (wpspc_get_total_cart_qty).
270
+ - Added a new function to get the sub total amount of the cart (wpspc_get_total_cart_sub_total).
271
+
272
+ = 3.9.2 =
273
+ - Added an option to specify a custom button image for the add to cart buttons. You can use the "button_image" parameter in the shortcode to customize the add to cart button image.
274
+ - Coupon code that is used in a transaciton will be saved with the order so you can see it in the back end.
275
+
276
+ = 3.9.1 =
277
+ - WP 3.8 compatibility
278
+
279
+ = 3.9.0 and 3.8.9 =
280
+ - WP Super Cache workaround - http://www.tipsandtricks-hq.com/ecommerce/wp-shopping-cart-and-wp-super-cache-workaround-334
281
+ - Added a new shortcode argument to specify a SKU number for your product.
282
+ - Fixed a few debug warnings/notices
283
+ - Added Italian language file
284
+
285
+ = 3.8.8 =
286
+ - Added a discount coupon feature to the shopping cart. You can now configure discount coupon via the Simple cart settings -> Coupon/Discount menu
287
+ - View link now shows the order details
288
+ - fixed a bug where the shipping price wasn't properly showing for more than $1000
289
+ - WordPress 3.7 compatibility
290
+
291
+ = 3.8.7 =
292
+ - Changed a few function names and made them unique to reduce the chance of a function name conflict with another plugin.
293
+ - Added a new option in the plugin so the purchased items of a transaction will be shown under orders menu
294
+ - Payment notification will only be processed when the status is completed.
295
+
296
+ = 3.8.6 =
297
+ - Updated the broken settings menu link
298
+ - Updated the NextGen gallery integration to return $arg1 rather than $arg2
299
+
300
+ = 3.8.5 =
301
+ - Added an email settings menu where the site admin can customize the buyer email that gets sent after a transaction
302
+ - Also, added the following dynamic email tags for the email body field:
303
+
304
+ {first_name} First name of the buyer
305
+ {last_name} Last name of the buyer
306
+ {product_details} The item details of the purchased product (this will include the download link for digital items).
307
+
308
+ = 3.8.4 =
309
+ - Fixing an issue that resulted from doing a commit when wordpress.org plugin repository was undergoing maintenance
310
+
311
+ = 3.8.3 =
312
+ - Improved the settings menu interface with the new shortcode usage instruction.
313
+
314
+ Full changelog for all versions can be found at the following URL:
315
+ http://www.tipsandtricks-hq.com/ecommerce/?p=319
wp_shopping_cart.php CHANGED
@@ -1,13 +1,14 @@
1
  <?php
2
-
3
  /*
4
- Plugin Name: WP Simple Paypal Shopping cart
5
- Version: v4.0.1
6
- Plugin URI: https://www.tipsandtricks-hq.com/wordpress-simple-paypal-shopping-cart-plugin-768
7
- Author: Tips and Tricks HQ, Ruhul Amin
8
- Author URI: https://www.tipsandtricks-hq.com/
9
- Description: Simple WordPress Shopping Cart Plugin, very easy to use and great for selling products and services from your blog!
10
- */
 
 
11
 
12
  if (!defined('ABSPATH'))exit; //Exit if accessed directly
13
 
@@ -21,15 +22,23 @@ if (version_compare(PHP_VERSION, '5.4.0') >= 0) {
21
  }
22
  }
23
 
24
- define('WP_CART_VERSION', '4.0.1');
25
  define('WP_CART_FOLDER', dirname(plugin_basename(__FILE__)));
26
  define('WP_CART_PATH', plugin_dir_path(__FILE__));
27
  define('WP_CART_URL', plugins_url('', __FILE__));
28
  define('WP_CART_SITE_URL', site_url());
29
  define('WP_CART_LIVE_PAYPAL_URL', 'https://www.paypal.com/cgi-bin/webscr');
30
  define('WP_CART_SANDBOX_PAYPAL_URL', 'https://www.sandbox.paypal.com/cgi-bin/webscr');
 
 
 
 
 
31
 
32
  // loading language files
 
 
 
33
  load_plugin_textdomain('WSPSC', false, WP_CART_FOLDER . '/languages');
34
 
35
  include_once('wp_shopping_cart_utility_functions.php');
@@ -37,6 +46,7 @@ include_once('wp_shopping_cart_shortcodes.php');
37
  include_once('wp_shopping_cart_misc_functions.php');
38
  include_once('wp_shopping_cart_orders.php');
39
  include_once('class-coupon.php');
 
40
 
41
  function always_show_cart_handler($atts) {
42
  return print_wp_shopping_cart($atts);
@@ -76,6 +86,9 @@ if (get_option('wp_shopping_cart_reset_after_redirection_to_return_page')) {
76
  }
77
 
78
  function reset_wp_cart() {
 
 
 
79
  $products = $_SESSION['simpleCart'];
80
  if (!is_array($products)) {
81
  return;
@@ -105,20 +118,24 @@ function wpspc_cart_actions_handler() {
105
  $_POST['price'] = strip_tags($_POST['price']);
106
  isset($_POST['shipping']) ? $_POST['shipping'] = strip_tags($_POST['shipping']) : $_POST['shipping'] = '';
107
  isset($_POST['cartLink']) ? $_POST['cartLink'] = strip_tags($_POST['cartLink']) : $_POST['cartLink'] = '';
 
108
 
109
  $count = 1;
110
- $products = $_SESSION['simpleCart'];
111
- if (is_array($products)) {
112
- foreach ($products as $key => $item) {
113
- if ($item['name'] == stripslashes($_POST['product'])) {
114
- $count += $item['quantity'];
115
- $item['quantity']++;
116
- unset($products[$key]);
117
- array_push($products, $item);
 
 
 
118
  }
 
 
119
  }
120
- } else {
121
- $products = array();
122
  }
123
 
124
  if ($count == 1) {
@@ -143,6 +160,10 @@ function wpspc_cart_actions_handler() {
143
  $thumbnail = strip_tags($_POST['thumbnail']);
144
  $product['thumbnail'] = $thumbnail;
145
  }
 
 
 
 
146
  array_push($products, $product);
147
  }
148
 
@@ -214,206 +235,6 @@ function wpspc_cart_actions_handler() {
214
  }
215
  }
216
 
217
- function print_wp_shopping_cart($args = array()) {
218
- $output = "";
219
- if (!cart_not_empty()) {
220
- $empty_cart_text = get_option('wp_cart_empty_text');
221
- if (!empty($empty_cart_text)) {
222
- $output .= '<div class="wp_cart_empty_cart_section">';
223
- if (preg_match("/http/", $empty_cart_text)) {
224
- $output .= '<img src="' . $empty_cart_text . '" alt="' . $empty_cart_text . '" class="wp_cart_empty_cart_image" />';
225
- } else {
226
- $output .= $empty_cart_text;
227
- }
228
- $output .= '</div>';
229
- }
230
- $cart_products_page_url = get_option('cart_products_page_url');
231
- if (!empty($cart_products_page_url)) {
232
- $output .= '<div class="wp_cart_visit_shop_link"><a rel="nofollow" href="' . $cart_products_page_url . '">' . (__("Visit The Shop", "WSPSC")) . '</a></div>';
233
- }
234
- return $output;
235
- }
236
- $email = get_bloginfo('admin_email');
237
- $use_affiliate_platform = get_option('wp_use_aff_platform');
238
- $defaultCurrency = get_option('cart_payment_currency');
239
- $defaultSymbol = get_option('cart_currency_symbol');
240
- $defaultEmail = get_option('cart_paypal_email');
241
- if (!empty($defaultCurrency))
242
- $paypal_currency = $defaultCurrency;
243
- else
244
- $paypal_currency = __("USD", "WSPSC");
245
- if (!empty($defaultSymbol))
246
- $paypal_symbol = $defaultSymbol;
247
- else
248
- $paypal_symbol = __("$", "WSPSC");
249
-
250
- if (!empty($defaultEmail))
251
- $email = $defaultEmail;
252
-
253
- $decimal = '.';
254
- $urls = '';
255
-
256
- $return = get_option('cart_return_from_paypal_url');
257
- if (empty($return)) {
258
- $return = WP_CART_SITE_URL . '/';
259
- }
260
- $return_url = add_query_arg('reset_wp_cart', '1', $return);
261
-
262
- $urls .= '<input type="hidden" name="return" value="' . $return_url . '" />';
263
-
264
- $notify = WP_CART_SITE_URL . '/?simple_cart_ipn=1';
265
- $urls .= '<input type="hidden" name="notify_url" value="' . $notify . '" />';
266
-
267
- $title = get_option('wp_cart_title');
268
- //if (empty($title)) $title = __("Your Shopping Cart", "WSPSC");
269
-
270
- global $plugin_dir_name;
271
- $output .= '<div class="shopping_cart">';
272
- if (!get_option('wp_shopping_cart_image_hide')) {
273
- $output .= "<img src='" . WP_CART_URL . "/images/shopping_cart_icon.png' value='" . (__("Cart", "WSPSC")) . "' title='" . (__("Cart", "WSPSC")) . "' />";
274
- }
275
- if (!empty($title)) {
276
- $output .= '<h2>';
277
- $output .= $title;
278
- $output .= '</h2>';
279
- }
280
-
281
- $output .= '<br /><span id="pinfo" style="display: none; font-weight: bold; color: red;">' . (__("Hit enter to submit new Quantity.", "WSPSC")) . '</span>';
282
- $output .= '<table style="width: 100%;">';
283
-
284
- $count = 1;
285
- $total_items = 0;
286
- $total = 0;
287
- $form = '';
288
- if ($_SESSION['simpleCart'] && is_array($_SESSION['simpleCart'])) {
289
- $output .= '
290
- <tr>
291
- <th class="wspsc_cart_item_name_th">' . (__("Item Name", "WSPSC")) . '</th><th class="wspsc_cart_qty_th">' . (__("Quantity", "WSPSC")) . '</th><th class="wspsc_cart_price_th">' . (__("Price", "WSPSC")) . '</th><th></th>
292
- </tr>';
293
- $item_total_shipping = 0;
294
- $postage_cost = 0;
295
- foreach ($_SESSION['simpleCart'] as $item) {
296
- $total += $item['price'] * $item['quantity'];
297
- $item_total_shipping += $item['shipping'] * $item['quantity'];
298
- $total_items += $item['quantity'];
299
- }
300
- if (!empty($item_total_shipping)) {
301
- $baseShipping = get_option('cart_base_shipping_cost');
302
- $postage_cost = $item_total_shipping + $baseShipping;
303
- }
304
-
305
- $cart_free_shipping_threshold = get_option('cart_free_shipping_threshold');
306
- if (!empty($cart_free_shipping_threshold) && $total > $cart_free_shipping_threshold) {
307
- $postage_cost = 0;
308
- }
309
-
310
- foreach ($_SESSION['simpleCart'] as $item) {
311
-
312
- $output .= "<tr><td style='overflow: hidden;'>";
313
- $output .= '<div class="wp_cart_item_info">';
314
- if(isset($args['show_thumbnail'])){
315
- $output .= '<span class="wp_cart_item_thumbnail"><img src="'.$item['thumbnail'].'" class="wp_cart_thumb_image" ></span>';
316
- }
317
- $item_info = apply_filters('wspsc_cart_item_name', '<a href="'.$item['cartLink'].'">'.$item['name'].'</a>', $item);
318
- $output .= '<span class="wp_cart_item_name">'.$item_info.'</span>';
319
- $output .= '<span class="wp_cart_clear_float"></span>';
320
- $output .= '</div>';
321
- $output .= '</td>';
322
-
323
- $output .= "<td style='text-align: center'><form method=\"post\" action=\"\" name='pcquantity' style='display: inline'>
324
- <input type=\"hidden\" name=\"product\" value=\"" . htmlspecialchars($item['name']) . "\" />
325
- <input type='hidden' name='cquantity' value='1' /><input type='text' name='quantity' value='" . $item['quantity'] . "' size='1' onchange='document.pcquantity.submit();' onkeypress='document.getElementById(\"pinfo\").style.display = \"\";' /></form></td>
326
- <td style='text-align: center'>" . print_payment_currency(($item['price'] * $item['quantity']), $paypal_symbol, $decimal) . "</td>
327
- <td><form method=\"post\" action=\"\" class=\"wp_cart_remove_item_form\">
328
- <input type=\"hidden\" name=\"product\" value=\"" . $item['name'] . "\" />
329
- <input type='hidden' name='delcart' value='1' />
330
- <input type='image' src='" . WP_CART_URL . "/images/Shoppingcart_delete.png' value='" . (__("Remove", "WSPSC")) . "' title='" . (__("Remove", "WSPSC")) . "' /></form></td></tr>
331
- ";
332
-
333
- $form .= "
334
- <input type=\"hidden\" name=\"item_name_$count\" value=\"" . $item['name'] . "\" />
335
- <input type=\"hidden\" name=\"amount_$count\" value='" . wpspsc_number_format_price($item['price']) . "' />
336
- <input type=\"hidden\" name=\"quantity_$count\" value=\"" . $item['quantity'] . "\" />
337
- <input type='hidden' name='item_number_$count' value='" . $item['item_number'] . "' />
338
- ";
339
- $count++;
340
- }
341
- if (!get_option('wp_shopping_cart_use_profile_shipping')) {
342
- $postage_cost = wpspsc_number_format_price($postage_cost);
343
- $form .= "<input type=\"hidden\" name=\"shipping_1\" value='" . $postage_cost . "' />"; //You can also use "handling_cart" variable to use shipping and handling here
344
- }
345
- if (get_option('wp_shopping_cart_collect_address')) {//force address collection
346
- $form .= "<input type=\"hidden\" name=\"no_shipping\" value=\"2\" />";
347
- }
348
- }
349
-
350
- $count--;
351
-
352
- if ($count) {
353
- if ($postage_cost != 0) {
354
- $output .= "
355
- <tr><td colspan='2' style='font-weight: bold; text-align: right;'>" . (__("Subtotal", "WSPSC")) . ": </td><td style='text-align: center'>" . print_payment_currency($total, $paypal_symbol, $decimal) . "</td><td></td></tr>
356
- <tr><td colspan='2' style='font-weight: bold; text-align: right;'>" . (__("Shipping", "WSPSC")) . ": </td><td style='text-align: center'>" . print_payment_currency($postage_cost, $paypal_symbol, $decimal) . "</td><td></td></tr>";
357
- }
358
-
359
- $output .= "<tr><td colspan='2' style='font-weight: bold; text-align: right;'>" . (__("Total", "WSPSC")) . ": </td><td style='text-align: center'>" . print_payment_currency(($total + $postage_cost), $paypal_symbol, $decimal) . "</td><td></td></tr>";
360
-
361
- if (isset($_SESSION['wpspsc_cart_action_msg']) && !empty($_SESSION['wpspsc_cart_action_msg'])) {
362
- $output .= '<tr><td colspan="4"><span class="wpspsc_cart_action_msg">' . $_SESSION['wpspsc_cart_action_msg'] . '</span></td></tr>';
363
- }
364
-
365
- if (get_option('wpspsc_enable_coupon') == '1') {
366
- $output .= '<tr><td colspan="4">
367
- <div class="wpspsc_coupon_section">
368
- <span class="wpspsc_coupon_label">' . (__("Enter Coupon Code", "WSPSC")) . '</span>
369
- <form method="post" action="" >
370
- <input type="text" name="wpspsc_coupon_code" value="" size="10" />
371
- <span class="wpspsc_coupon_apply_button"><input type="submit" name="wpspsc_apply_coupon" class="wpspsc_apply_coupon" value="' . (__("Apply", "WSPSC")) . '" /></span>
372
- </form>
373
- </div>
374
- </td></tr>';
375
- }
376
-
377
- $paypal_checkout_url = WP_CART_LIVE_PAYPAL_URL;
378
- if (get_option('wp_shopping_cart_enable_sandbox')) {
379
- $paypal_checkout_url = WP_CART_SANDBOX_PAYPAL_URL;
380
- }
381
-
382
- $form_target_code = '';
383
- if (get_option('wspsc_open_pp_checkout_in_new_tab')) {
384
- $form_target_code = 'target="_blank"';
385
- }
386
-
387
- $output .= "<tr class='wpspsc_checkout_form'><td colspan='4'>";
388
- $output .= '<form action="' . $paypal_checkout_url . '" method="post" ' . $form_target_code . '>';
389
- $output .= $form;
390
- if ($count)
391
- $output .= '<input type="image" src="' . WP_CART_URL . '/images/' . (__("paypal_checkout_EN.png", "WSPSC")) . '" name="submit" class="wp_cart_checkout_button" alt="' . (__("Make payments with PayPal - it\'s fast, free and secure!", "WSPSC")) . '" />';
392
-
393
- $output .= $urls . '
394
- <input type="hidden" name="business" value="' . $email . '" />
395
- <input type="hidden" name="currency_code" value="' . $paypal_currency . '" />
396
- <input type="hidden" name="cmd" value="_cart" />
397
- <input type="hidden" name="upload" value="1" />
398
- <input type="hidden" name="rm" value="2" />
399
- <input type="hidden" name="charset" value="utf-8" />
400
- <input type="hidden" name="mrb" value="3FWGC6LFTMTUG" />';
401
- $wp_cart_note_to_seller_text = get_option('wp_cart_note_to_seller_text');
402
- if (!empty($wp_cart_note_to_seller_text)) {
403
- $output .= '<input type="hidden" name="no_note" value="0" /><input type="hidden" name="cn" value="' . $wp_cart_note_to_seller_text . '" />';
404
- }
405
- $page_style_name = get_option('wp_cart_paypal_co_page_style');
406
- if (!empty($page_style_name)) {
407
- $output .= '<input type="hidden" name="page_style" value="' . $page_style_name . '" />';
408
- }
409
- $output .= wp_cart_add_custom_field();
410
- $output .= '</form>';
411
- $output .= '</td></tr>';
412
- }
413
- $output .= "</table></div>";
414
- return $output;
415
- }
416
-
417
  function wp_cart_add_custom_field() {
418
  $_SESSION['wp_cart_custom_values'] = "";
419
  $custom_field_val = "";
@@ -524,7 +345,7 @@ function print_wp_cart_button_new($content) {
524
  $pieces = explode(':', $m);
525
 
526
  $replacement = '<div class="wp_cart_button_wrapper">';
527
- $replacement .= '<form method="post" class="wp-cart-button-form" action="" style="display:inline" onsubmit="return ReadForm(this, true);">';
528
  if (!empty($var_output)) {
529
  $replacement .= $var_output;
530
  }
@@ -550,6 +371,8 @@ function print_wp_cart_button_new($content) {
550
  }
551
 
552
  function wp_cart_add_read_form_javascript() {
 
 
553
  echo '
554
  <script type="text/javascript">
555
  <!--
@@ -582,16 +405,6 @@ function wp_cart_add_read_form_javascript() {
582
  </script>';
583
  }
584
 
585
- function wpspsc_admin_side_enqueue_scripts()
586
- {
587
- if ($_GET['page'] == 'wordpress-paypal-shopping-cart') //simple paypal shopping cart discount page
588
- {
589
- wp_enqueue_style('jquery-ui-style', '//code.jquery.com/ui/1.11.1/themes/smoothness/jquery-ui.css');
590
- wp_register_script('wpspsc-admin', WP_CART_URL.'/lib/wpspsc_admin_side.js', array('jquery', 'jquery-ui-datepicker'));
591
- wp_enqueue_script('wpspsc-admin');
592
- }
593
- }
594
-
595
  function print_wp_cart_button_for_product($name, $price, $shipping = 0, $var1 = '', $var2 = '', $var3 = '', $atts = array()) {
596
  $addcart = get_option('addToCartButtonName');
597
  if (!$addcart || ($addcart == ''))
@@ -630,7 +443,7 @@ function print_wp_cart_button_for_product($name, $price, $shipping = 0, $var1 =
630
  }
631
 
632
  $replacement = '<div class="wp_cart_button_wrapper">';
633
- $replacement .= '<form method="post" class="wp-cart-button-form" action="" style="display:inline" onsubmit="return ReadForm(this, true);">';
634
  if (!empty($var_output)) {//Show variation
635
  $replacement .= '<div class="wp_cart_variation_section">' . $var_output . '</div>';
636
  }
@@ -643,7 +456,7 @@ function print_wp_cart_button_for_product($name, $price, $shipping = 0, $var1 =
643
  if (preg_match("/http:/", $addcart) || preg_match("/https:/", $addcart)) { // Use the image as the 'add to cart' button
644
  $replacement .= '<input type="image" src="' . $addcart . '" class="wp_cart_button" alt="' . (__("Add to Cart", "WSPSC")) . '"/>';
645
  } else {
646
- $replacement .= '<input type="submit" value="' . $addcart . '" />';
647
  }
648
  }
649
 
@@ -660,6 +473,9 @@ function print_wp_cart_button_for_product($name, $price, $shipping = 0, $var1 =
660
  if (isset($atts['thumbnail'])) {
661
  $replacement .= '<input type="hidden" name="thumbnail" value="' . $atts['thumbnail'] . '" />';
662
  }
 
 
 
663
  $replacement .= '</form>';
664
  $replacement .= '</div>';
665
  return $replacement;
@@ -720,7 +536,14 @@ function simple_cart_total() {
720
  // Handle the options page display
721
  function wp_cart_options_page() {
722
  include_once('wp_shopping_cart_settings.php');
723
- add_options_page(__("WP Paypal Shopping Cart", "WSPSC"), __("WP Shopping Cart", "WSPSC"), 'manage_options', 'wordpress-paypal-shopping-cart', 'wp_cart_options');
 
 
 
 
 
 
 
724
  }
725
 
726
  function wp_paypal_shopping_cart_load_widgets() {
@@ -757,10 +580,18 @@ class WP_PayPal_Cart_Widget extends WP_Widget {
757
 
758
  }
759
 
760
- function wp_cart_css() {
761
- $debug_marker = "<!-- WP Simple Shopping Cart plugin v" . WP_CART_VERSION . " - https://www.tipsandtricks-hq.com/wordpress-simple-paypal-shopping-cart-plugin-768/ -->";
762
- echo "\n${debug_marker}\n";
763
- echo '<link type="text/css" rel="stylesheet" href="' . WP_CART_URL . '/wp_shopping_cart_style.css" />' . "\n";
 
 
 
 
 
 
 
 
764
  }
765
 
766
  function wpspc_plugin_install() {
@@ -801,6 +632,6 @@ add_shortcode('wp_cart_button', 'wp_cart_button_handler');
801
  add_shortcode('wp_cart_display_product', 'wp_cart_display_product_handler');
802
  add_shortcode('wp_compact_cart', 'wspsc_compact_cart_handler');
803
 
804
- add_action('wp_head', 'wp_cart_css');
805
  add_action('wp_head', 'wp_cart_add_read_form_javascript');
806
- add_action('admin_enqueue_scripts', 'wpspsc_admin_side_enqueue_scripts' );
 
1
  <?php
 
2
  /*
3
+ Plugin Name: WP Simple Paypal Shopping cart
4
+ Version: v4.0.8
5
+ Plugin URI: https://www.tipsandtricks-hq.com/wordpress-simple-paypal-shopping-cart-plugin-768
6
+ Author: Tips and Tricks HQ, Ruhul Amin
7
+ Author URI: https://www.tipsandtricks-hq.com/
8
+ Description: Simple WordPress Shopping Cart Plugin, very easy to use and great for selling products and services from your blog!
9
+ Text Domain: WSPSC
10
+ Domain Path: /languages/
11
+ */
12
 
13
  if (!defined('ABSPATH'))exit; //Exit if accessed directly
14
 
22
  }
23
  }
24
 
25
+ define('WP_CART_VERSION', '4.0.8');
26
  define('WP_CART_FOLDER', dirname(plugin_basename(__FILE__)));
27
  define('WP_CART_PATH', plugin_dir_path(__FILE__));
28
  define('WP_CART_URL', plugins_url('', __FILE__));
29
  define('WP_CART_SITE_URL', site_url());
30
  define('WP_CART_LIVE_PAYPAL_URL', 'https://www.paypal.com/cgi-bin/webscr');
31
  define('WP_CART_SANDBOX_PAYPAL_URL', 'https://www.sandbox.paypal.com/cgi-bin/webscr');
32
+ if (!defined('WP_CART_MANAGEMENT_PERMISSION')){//This will allow the user to define custom capability for this constant in wp-config file
33
+ define('WP_CART_MANAGEMENT_PERMISSION', 'manage_options');
34
+ }
35
+ define('WP_CART_MAIN_MENU_SLUG', 'wspsc-main');
36
+
37
 
38
  // loading language files
39
+ //Set up localisation. First loaded overrides strings present in later loaded file
40
+ $locale = apply_filters( 'plugin_locale', get_locale(), 'WSPSC' );
41
+ load_textdomain( 'WSPSC', WP_LANG_DIR . "/WSPSC-$locale.mo" );
42
  load_plugin_textdomain('WSPSC', false, WP_CART_FOLDER . '/languages');
43
 
44
  include_once('wp_shopping_cart_utility_functions.php');
46
  include_once('wp_shopping_cart_misc_functions.php');
47
  include_once('wp_shopping_cart_orders.php');
48
  include_once('class-coupon.php');
49
+ include_once('includes/wspsc-cart-functions.php');
50
 
51
  function always_show_cart_handler($atts) {
52
  return print_wp_shopping_cart($atts);
86
  }
87
 
88
  function reset_wp_cart() {
89
+ if (!isset($_SESSION['simpleCart'])){
90
+ return;
91
+ }
92
  $products = $_SESSION['simpleCart'];
93
  if (!is_array($products)) {
94
  return;
118
  $_POST['price'] = strip_tags($_POST['price']);
119
  isset($_POST['shipping']) ? $_POST['shipping'] = strip_tags($_POST['shipping']) : $_POST['shipping'] = '';
120
  isset($_POST['cartLink']) ? $_POST['cartLink'] = strip_tags($_POST['cartLink']) : $_POST['cartLink'] = '';
121
+ isset($_POST['stamp_pdf']) ? $_POST['stamp_pdf'] = strip_tags($_POST['stamp_pdf']) : $_POST['stamp_pdf'] = '';
122
 
123
  $count = 1;
124
+ $products = array();
125
+ if(isset($_SESSION['simpleCart'])){
126
+ $products = $_SESSION['simpleCart'];
127
+ if (is_array($products)) {
128
+ foreach ($products as $key => $item) {
129
+ if ($item['name'] == stripslashes($_POST['product'])) {
130
+ $count += $item['quantity'];
131
+ $item['quantity']++;
132
+ unset($products[$key]);
133
+ array_push($products, $item);
134
+ }
135
  }
136
+ }else {
137
+ $products = array();
138
  }
 
 
139
  }
140
 
141
  if ($count == 1) {
160
  $thumbnail = strip_tags($_POST['thumbnail']);
161
  $product['thumbnail'] = $thumbnail;
162
  }
163
+ if (isset($_POST['stamp_pdf']) && !empty($_POST['stamp_pdf'])) {
164
+ $stamp_pdf = strip_tags($_POST['stamp_pdf']);
165
+ $product['stamp_pdf'] = $stamp_pdf;
166
+ }
167
  array_push($products, $product);
168
  }
169
 
235
  }
236
  }
237
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
238
  function wp_cart_add_custom_field() {
239
  $_SESSION['wp_cart_custom_values'] = "";
240
  $custom_field_val = "";
345
  $pieces = explode(':', $m);
346
 
347
  $replacement = '<div class="wp_cart_button_wrapper">';
348
+ $replacement .= '<form method="post" class="wp-cart-button-form" action="" style="display:inline" onsubmit="return ReadForm(this, true);" ' . apply_filters("wspsc_add_cart_button_form_attr", "") . '>';
349
  if (!empty($var_output)) {
350
  $replacement .= $var_output;
351
  }
371
  }
372
 
373
  function wp_cart_add_read_form_javascript() {
374
+ $debug_marker = "<!-- WP Simple Shopping Cart plugin v" . WP_CART_VERSION . " - https://www.tipsandtricks-hq.com/wordpress-simple-paypal-shopping-cart-plugin-768/ -->";
375
+ echo "\n${debug_marker}\n";
376
  echo '
377
  <script type="text/javascript">
378
  <!--
405
  </script>';
406
  }
407
 
 
 
 
 
 
 
 
 
 
 
408
  function print_wp_cart_button_for_product($name, $price, $shipping = 0, $var1 = '', $var2 = '', $var3 = '', $atts = array()) {
409
  $addcart = get_option('addToCartButtonName');
410
  if (!$addcart || ($addcart == ''))
443
  }
444
 
445
  $replacement = '<div class="wp_cart_button_wrapper">';
446
+ $replacement .= '<form method="post" class="wp-cart-button-form" action="" style="display:inline" onsubmit="return ReadForm(this, true);" ' . apply_filters("wspsc_add_cart_button_form_attr", "") . '>';
447
  if (!empty($var_output)) {//Show variation
448
  $replacement .= '<div class="wp_cart_variation_section">' . $var_output . '</div>';
449
  }
456
  if (preg_match("/http:/", $addcart) || preg_match("/https:/", $addcart)) { // Use the image as the 'add to cart' button
457
  $replacement .= '<input type="image" src="' . $addcart . '" class="wp_cart_button" alt="' . (__("Add to Cart", "WSPSC")) . '"/>';
458
  } else {
459
+ $replacement .= '<input type="submit" value="' . apply_filters('wspsc_add_cart_submit_button_value', $addcart, $price) . '" />';
460
  }
461
  }
462
 
473
  if (isset($atts['thumbnail'])) {
474
  $replacement .= '<input type="hidden" name="thumbnail" value="' . $atts['thumbnail'] . '" />';
475
  }
476
+ if (isset($atts['stamp_pdf'])) {
477
+ $replacement .= '<input type="hidden" name="stamp_pdf" value="' . $atts['stamp_pdf'] . '" />';
478
+ }
479
  $replacement .= '</form>';
480
  $replacement .= '</div>';
481
  return $replacement;
536
  // Handle the options page display
537
  function wp_cart_options_page() {
538
  include_once('wp_shopping_cart_settings.php');
539
+ add_options_page(__("WP Paypal Shopping Cart", "WSPSC"), __("WP Shopping Cart", "WSPSC"), WP_CART_MANAGEMENT_PERMISSION, 'wordpress-paypal-shopping-cart', 'wp_cart_options');
540
+
541
+ //Main menu - Complete this when the dashboard menu is ready
542
+ //$menu_icon_url = '';//TODO - use
543
+ //add_menu_page(__('Simple Cart', 'WSPSC'), __('Simple Cart', 'WSPSC'), WP_CART_MANAGEMENT_PERMISSION, WP_CART_MAIN_MENU_SLUG , 'wp_cart_options', $menu_icon_url);
544
+ //add_submenu_page(WP_CART_MAIN_MENU_SLUG, __('Settings', 'WSPSC'), __('Settings', 'WSPSC') , WP_CART_MANAGEMENT_PERMISSION, WP_CART_MAIN_MENU_SLUG, 'wp_cart_options');
545
+ //add_submenu_page(WP_CART_MAIN_MENU_SLUG, __('Bla', 'WSPSC'), __('Bla', 'WSPSC') , WP_CART_MANAGEMENT_PERMISSION, 'wspsc-bla', 'wp_cart_options');
546
+
547
  }
548
 
549
  function wp_paypal_shopping_cart_load_widgets() {
580
 
581
  }
582
 
583
+ function wspsc_admin_side_enqueue_scripts()
584
+ {
585
+ if (isset($_GET['page']) && $_GET['page'] == 'wordpress-paypal-shopping-cart') //simple paypal shopping cart discount page
586
+ {
587
+ wp_enqueue_style('jquery-ui-style', '//code.jquery.com/ui/1.11.1/themes/smoothness/jquery-ui.css');
588
+ wp_register_script('wpspsc-admin', WP_CART_URL.'/lib/wpspsc_admin_side.js', array('jquery', 'jquery-ui-datepicker'));
589
+ wp_enqueue_script('wpspsc-admin');
590
+ }
591
+ }
592
+
593
+ function wspsc_front_side_enqueue_scripts() {
594
+ wp_enqueue_style('wspsc-style', WP_CART_URL . '/wp_shopping_cart_style.css', array(), WP_CART_VERSION);
595
  }
596
 
597
  function wpspc_plugin_install() {
632
  add_shortcode('wp_cart_display_product', 'wp_cart_display_product_handler');
633
  add_shortcode('wp_compact_cart', 'wspsc_compact_cart_handler');
634
 
 
635
  add_action('wp_head', 'wp_cart_add_read_form_javascript');
636
+ add_action('wp_enqueue_scripts', 'wspsc_front_side_enqueue_scripts');
637
+ add_action('admin_enqueue_scripts', 'wspsc_admin_side_enqueue_scripts' );
wp_shopping_cart_discounts_menu.php CHANGED
@@ -8,7 +8,7 @@ function show_wp_cart_coupon_discount_settings_page()
8
  if ( !wp_verify_nonce($nonce, 'wpspsc_coupon_settings')){
9
  wp_die('Error! Nonce Security Check Failed! Go back to Coupon/Discount menu and save the settings again.');
10
  }
11
- update_option('wpspsc_enable_coupon', ($_POST['wpspsc_enable_coupon']=='1') ? '1':'');
12
  echo '<div id="message" class="updated fade"><p><strong>';
13
  echo 'Coupon Settings Updated!';
14
  echo '</strong></p></div>';
@@ -148,6 +148,7 @@ function show_wp_cart_coupon_discount_settings_page()
148
  $number_of_coupons = count($coupons);
149
  if($number_of_coupons > 0)
150
  {
 
151
  foreach ($coupons as $coupon)
152
  {
153
  $output .= '<tr>';
8
  if ( !wp_verify_nonce($nonce, 'wpspsc_coupon_settings')){
9
  wp_die('Error! Nonce Security Check Failed! Go back to Coupon/Discount menu and save the settings again.');
10
  }
11
+ update_option('wpspsc_enable_coupon', (isset($_POST['wpspsc_enable_coupon']) && $_POST['wpspsc_enable_coupon']=='1') ? '1':'');
12
  echo '<div id="message" class="updated fade"><p><strong>';
13
  echo 'Coupon Settings Updated!';
14
  echo '</strong></p></div>';
148
  $number_of_coupons = count($coupons);
149
  if($number_of_coupons > 0)
150
  {
151
+ $row_count = 0;
152
  foreach ($coupons as $coupon)
153
  {
154
  $output .= '<tr>';
wp_shopping_cart_misc_functions.php CHANGED
@@ -1,18 +1,20 @@
1
  <?php
2
 
3
  /* TODO
 
4
  - Add a reset cart button
5
  - A stats addon or interface. Show graph using the orders data.
6
  - After processing an IPN, call a function to clear all trash orders that are older than 6 hours.
7
  - A new fancy cart shortcode (new icons and nice CSS styles)
8
- - Add more filters and hooks and document them.
9
  */
10
 
11
  /* this function gets called when init is fired */
12
  function wp_cart_init_handler()
13
  {
 
14
  //Add any common init hook handing code
15
- if( is_admin() && current_user_can('manage_options')) //Init hook handing code for wp-admin
16
  {
17
  wpspc_create_orders_page();
18
  }
@@ -40,6 +42,14 @@ function wpspsc_number_format_price($price)
40
  return $formatted_num;
41
  }
42
 
 
 
 
 
 
 
 
 
43
  function wpc_append_values_to_custom_field($name,$value)
44
  {
45
  $custom_field_val = $_SESSION['wp_cart_custom_values'];
@@ -143,8 +153,11 @@ function wpspc_update_cart_items_record()
143
 
144
  function wpspc_apply_dynamic_tags_on_email_body($ipn_data, $args)
145
  {
146
- $tags = array("{first_name}","{last_name}","{product_details}","{payer_email}");
147
- $vals = array($ipn_data['first_name'], $ipn_data['last_name'], $args['product_details'], $args['payer_email']);
 
 
 
148
 
149
  $body = stripslashes(str_replace($tags, $vals, $args['email_body']));
150
  return $body;
1
  <?php
2
 
3
  /* TODO
4
+ - Create a dashbaord menu then complete the new menu system
5
  - Add a reset cart button
6
  - A stats addon or interface. Show graph using the orders data.
7
  - After processing an IPN, call a function to clear all trash orders that are older than 6 hours.
8
  - A new fancy cart shortcode (new icons and nice CSS styles)
9
+ - Create github repository.
10
  */
11
 
12
  /* this function gets called when init is fired */
13
  function wp_cart_init_handler()
14
  {
15
+ $orders_menu_permission = apply_filters('wspsc_orders_menu_permission', 'manage_options');
16
  //Add any common init hook handing code
17
+ if( is_admin() && current_user_can($orders_menu_permission)) //Init hook handing code for wp-admin
18
  {
19
  wpspc_create_orders_page();
20
  }
42
  return $formatted_num;
43
  }
44
 
45
+ function wspsc_strip_char_from_price_amount($price_amount)
46
+ {
47
+ if(!is_numeric($price_amount)){
48
+ $price_amount = preg_replace("/[^0-9\.]/", "",$price_amount);
49
+ }
50
+ return $price_amount;
51
+ }
52
+
53
  function wpc_append_values_to_custom_field($name,$value)
54
  {
55
  $custom_field_val = $_SESSION['wp_cart_custom_values'];
153
 
154
  function wpspc_apply_dynamic_tags_on_email_body($ipn_data, $args)
155
  {
156
+ $order_id = $args['order_id'];
157
+ $purchase_amount = get_post_meta( $order_id, 'wpsc_total_amount', true );
158
+ $purchase_date = date("Y-m-d");
159
+ $tags = array("{first_name}","{last_name}","{product_details}","{payer_email}","{transaction_id}","{purchase_amt}","{purchase_date}","{coupon_code}");
160
+ $vals = array($ipn_data['first_name'], $ipn_data['last_name'], $args['product_details'], $args['payer_email'], $ipn_data['txn_id'], $purchase_amount, $purchase_date, $args['coupon_code']);
161
 
162
  $body = stripslashes(str_replace($tags, $vals, $args['email_body']));
163
  return $body;
wp_shopping_cart_orders.php CHANGED
@@ -55,6 +55,7 @@ function wpspc_order_review_meta_box($wpsc_cart_orders)
55
  $total_amount = get_post_meta( $wpsc_cart_orders->ID, 'wpsc_total_amount', true );
56
  $shipping_amount = get_post_meta( $wpsc_cart_orders->ID, 'wpsc_shipping_amount', true );
57
  $address = get_post_meta( $wpsc_cart_orders->ID, 'wpsc_address', true );
 
58
  $email_sent_value = get_post_meta( $wpsc_cart_orders->ID, 'wpsc_buyer_email_sent', true );
59
 
60
  $email_sent_field_msg = "No";
@@ -98,6 +99,10 @@ function wpspc_order_review_meta_box($wpsc_cart_orders)
98
  <td><?php _e("Address", "WSPSC");?></td>
99
  <td><textarea name="wpsc_address" cols="83" rows="2"><?php echo $address;?></textarea></td>
100
  </tr>
 
 
 
 
101
  <tr>
102
  <td><?php _e("Buyer Email Sent?", "WSPSC");?></td>
103
  <td><input type="text" size="80" name="wpsc_buyer_email_sent" value="<?php echo $email_sent_field_msg; ?>" readonly /></td>
@@ -140,6 +145,9 @@ function wpspc_cart_save_orders( $order_id, $wpsc_cart_orders ) {
140
  if ( isset( $_POST['wpsc_address'] ) && $_POST['wpsc_address'] != '' ) {
141
  update_post_meta( $order_id, 'wpsc_address', $_POST['wpsc_address'] );
142
  }
 
 
 
143
  if ( isset( $_POST['wpspsc_items_ordered'] ) && $_POST['wpspsc_items_ordered'] != '' ) {
144
  update_post_meta( $order_id, 'wpspsc_items_ordered', $_POST['wpspsc_items_ordered'] );
145
  }
55
  $total_amount = get_post_meta( $wpsc_cart_orders->ID, 'wpsc_total_amount', true );
56
  $shipping_amount = get_post_meta( $wpsc_cart_orders->ID, 'wpsc_shipping_amount', true );
57
  $address = get_post_meta( $wpsc_cart_orders->ID, 'wpsc_address', true );
58
+ $phone = get_post_meta( $wpsc_cart_orders->ID, 'wpspsc_phone', true );
59
  $email_sent_value = get_post_meta( $wpsc_cart_orders->ID, 'wpsc_buyer_email_sent', true );
60
 
61
  $email_sent_field_msg = "No";
99
  <td><?php _e("Address", "WSPSC");?></td>
100
  <td><textarea name="wpsc_address" cols="83" rows="2"><?php echo $address;?></textarea></td>
101
  </tr>
102
+ <tr>
103
+ <td><?php _e("Phone", "WSPSC");?></td>
104
+ <td><input type="text" size="40" name="wpspsc_phone" value="<?php echo $phone; ?>" /></td>
105
+ </tr>
106
  <tr>
107
  <td><?php _e("Buyer Email Sent?", "WSPSC");?></td>
108
  <td><input type="text" size="80" name="wpsc_buyer_email_sent" value="<?php echo $email_sent_field_msg; ?>" readonly /></td>
145
  if ( isset( $_POST['wpsc_address'] ) && $_POST['wpsc_address'] != '' ) {
146
  update_post_meta( $order_id, 'wpsc_address', $_POST['wpsc_address'] );
147
  }
148
+ if ( isset( $_POST['wpspsc_phone'] ) && $_POST['wpspsc_phone'] != '' ) {
149
+ update_post_meta( $order_id, 'wpspsc_phone', $_POST['wpspsc_phone'] );
150
+ }
151
  if ( isset( $_POST['wpspsc_items_ordered'] ) && $_POST['wpspsc_items_ordered'] != '' ) {
152
  update_post_meta( $order_id, 'wpspsc_items_ordered', $_POST['wpspsc_items_ordered'] );
153
  }
wp_shopping_cart_settings.php CHANGED
@@ -72,8 +72,8 @@ function show_wp_cart_options_page ()
72
  update_option('cart_currency_symbol', (string)$_POST["cart_currency_symbol"]);
73
  update_option('cart_base_shipping_cost', (string)$_POST["cart_base_shipping_cost"]);
74
  update_option('cart_free_shipping_threshold', (string)$_POST["cart_free_shipping_threshold"]);
75
- update_option('wp_shopping_cart_collect_address', ($_POST['wp_shopping_cart_collect_address']!='') ? 'checked="checked"':'' );
76
- update_option('wp_shopping_cart_use_profile_shipping', ($_POST['wp_shopping_cart_use_profile_shipping']!='') ? 'checked="checked"':'' );
77
 
78
  update_option('cart_paypal_email', (string)$_POST["cart_paypal_email"]);
79
  update_option('addToCartButtonName', (string)$_POST["addToCartButtonName"]);
@@ -82,18 +82,19 @@ function show_wp_cart_options_page ()
82
  update_option('cart_return_from_paypal_url', (string)$_POST["cart_return_from_paypal_url"]);
83
  update_option('cart_products_page_url', (string)$_POST["cart_products_page_url"]);
84
 
85
- update_option('wp_shopping_cart_auto_redirect_to_checkout_page', ($_POST['wp_shopping_cart_auto_redirect_to_checkout_page']!='') ? 'checked="checked"':'' );
86
  update_option('cart_checkout_page_url', (string)$_POST["cart_checkout_page_url"]);
87
- update_option('wspsc_open_pp_checkout_in_new_tab', ($_POST['wspsc_open_pp_checkout_in_new_tab']!='') ? 'checked="checked"':'' );
88
- update_option('wp_shopping_cart_reset_after_redirection_to_return_page', ($_POST['wp_shopping_cart_reset_after_redirection_to_return_page']!='') ? 'checked="checked"':'' );
89
 
90
- update_option('wp_shopping_cart_image_hide', ($_POST['wp_shopping_cart_image_hide']!='') ? 'checked="checked"':'' );
91
  update_option('wp_cart_note_to_seller_text', (string)$_POST["wp_cart_note_to_seller_text"]);
92
  update_option('wp_cart_paypal_co_page_style', (string)$_POST["wp_cart_paypal_co_page_style"]);
93
- update_option('wp_use_aff_platform', ($_POST['wp_use_aff_platform']!='') ? 'checked="checked"':'' );
 
94
 
95
- update_option('wp_shopping_cart_enable_sandbox', ($_POST['wp_shopping_cart_enable_sandbox']!='') ? 'checked="checked"':'' );
96
- update_option('wp_shopping_cart_enable_debug', ($_POST['wp_shopping_cart_enable_debug']!='') ? 'checked="checked"':'' );
97
 
98
  echo '<div id="message" class="updated fade">';
99
  echo '<p><strong>'.(__("Options Updated!", "WSPSC")).'</strong></p></div>';
@@ -157,7 +158,12 @@ function show_wp_cart_options_page ()
157
 
158
  $wp_cart_note_to_seller_text = get_option('wp_cart_note_to_seller_text');
159
  $wp_cart_paypal_co_page_style = get_option('wp_cart_paypal_co_page_style');
160
-
 
 
 
 
 
161
  if (get_option('wp_use_aff_platform'))
162
  $wp_use_aff_platform = 'checked="checked"';
163
  else
@@ -306,6 +312,13 @@ echo '
306
  </tr>
307
  </table>
308
 
 
 
 
 
 
 
 
309
  <table class="form-table">
310
  <tr valign="top">
311
  <th scope="row">'.(__("Use WP Affiliate Platform", "WSPSC")).'</th>
@@ -362,12 +375,12 @@ function show_wp_cart_email_settings_page()
362
  if ( !wp_verify_nonce($nonce, 'wpspc_email_settings_update')){
363
  wp_die('Error! Nonce Security Check Failed! Go back to email settings menu and save the settings again.');
364
  }
365
- update_option('wpspc_send_buyer_email', ($_POST['wpspc_send_buyer_email']!='') ? 'checked="checked"':'' );
366
  update_option('wpspc_buyer_from_email', stripslashes((string)$_POST["wpspc_buyer_from_email"]));
367
  update_option('wpspc_buyer_email_subj', stripslashes((string)$_POST["wpspc_buyer_email_subj"]));
368
  update_option('wpspc_buyer_email_body', stripslashes((string)$_POST["wpspc_buyer_email_body"]));;
369
 
370
- update_option('wpspc_send_seller_email', ($_POST['wpspc_send_seller_email']!='') ? 'checked="checked"':'' );
371
  update_option('wpspc_notify_email_address', stripslashes((string)$_POST["wpspc_notify_email_address"]));
372
  update_option('wpspc_seller_email_subj', stripslashes((string)$_POST["wpspc_seller_email_subj"]));
373
  update_option('wpspc_seller_email_body', stripslashes((string)$_POST["wpspc_seller_email_body"]));;
@@ -446,7 +459,11 @@ function show_wp_cart_email_settings_page()
446
  <br /><p class="description"><?php _e("This is the body of the email that will be sent to the buyer. Do not change the text within the braces {}. You can use the following email tags in this email body field:", "WSPSC");?>
447
  <br />{first_name} – <?php _e("First name of the buyer", "WSPSC");?>
448
  <br />{last_name} – <?php _e("Last name of the buyer", "WSPSC");?>
449
- <br />{product_details} – <?php _e("The item details of the purchased product (this will include the download link for digital items).", "WSPSC");?>
 
 
 
 
450
  </p></td>
451
  </tr>
452
 
@@ -475,7 +492,11 @@ function show_wp_cart_email_settings_page()
475
  <br />{first_name} – <?php _e("First name of the buyer", "WSPSC");?>
476
  <br />{last_name} – <?php _e("Last name of the buyer", "WSPSC");?>
477
  <br />{payer_email} – <?php _e("Email Address of the buyer", "WSPSC");?>
478
- <br />{product_details} – <?php _e("The item details of the purchased product (this will include the download link for digital items).", "WSPSC");?>
 
 
 
 
479
  </p></td>
480
  </tr>
481
 
72
  update_option('cart_currency_symbol', (string)$_POST["cart_currency_symbol"]);
73
  update_option('cart_base_shipping_cost', (string)$_POST["cart_base_shipping_cost"]);
74
  update_option('cart_free_shipping_threshold', (string)$_POST["cart_free_shipping_threshold"]);
75
+ update_option('wp_shopping_cart_collect_address', (isset($_POST['wp_shopping_cart_collect_address']) && $_POST['wp_shopping_cart_collect_address']!='') ? 'checked="checked"':'' );
76
+ update_option('wp_shopping_cart_use_profile_shipping', (isset($_POST['wp_shopping_cart_use_profile_shipping']) && $_POST['wp_shopping_cart_use_profile_shipping']!='') ? 'checked="checked"':'' );
77
 
78
  update_option('cart_paypal_email', (string)$_POST["cart_paypal_email"]);
79
  update_option('addToCartButtonName', (string)$_POST["addToCartButtonName"]);
82
  update_option('cart_return_from_paypal_url', (string)$_POST["cart_return_from_paypal_url"]);
83
  update_option('cart_products_page_url', (string)$_POST["cart_products_page_url"]);
84
 
85
+ update_option('wp_shopping_cart_auto_redirect_to_checkout_page', (isset($_POST['wp_shopping_cart_auto_redirect_to_checkout_page']) && $_POST['wp_shopping_cart_auto_redirect_to_checkout_page']!='') ? 'checked="checked"':'' );
86
  update_option('cart_checkout_page_url', (string)$_POST["cart_checkout_page_url"]);
87
+ update_option('wspsc_open_pp_checkout_in_new_tab', (isset($_POST['wspsc_open_pp_checkout_in_new_tab']) && $_POST['wspsc_open_pp_checkout_in_new_tab']!='') ? 'checked="checked"':'' );
88
+ update_option('wp_shopping_cart_reset_after_redirection_to_return_page', (isset($_POST['wp_shopping_cart_reset_after_redirection_to_return_page']) && $_POST['wp_shopping_cart_reset_after_redirection_to_return_page']!='') ? 'checked="checked"':'' );
89
 
90
+ update_option('wp_shopping_cart_image_hide', (isset($_POST['wp_shopping_cart_image_hide']) && $_POST['wp_shopping_cart_image_hide']!='') ? 'checked="checked"':'' );
91
  update_option('wp_cart_note_to_seller_text', (string)$_POST["wp_cart_note_to_seller_text"]);
92
  update_option('wp_cart_paypal_co_page_style', (string)$_POST["wp_cart_paypal_co_page_style"]);
93
+ update_option('wp_shopping_cart_strict_email_check', (isset($_POST['wp_shopping_cart_strict_email_check']) && $_POST['wp_shopping_cart_strict_email_check']!='') ? 'checked="checked"':'' );
94
+ update_option('wp_use_aff_platform', (isset($_POST['wp_use_aff_platform']) && $_POST['wp_use_aff_platform']!='') ? 'checked="checked"':'' );
95
 
96
+ update_option('wp_shopping_cart_enable_sandbox', (isset($_POST['wp_shopping_cart_enable_sandbox']) && $_POST['wp_shopping_cart_enable_sandbox']!='') ? 'checked="checked"':'' );
97
+ update_option('wp_shopping_cart_enable_debug', (isset($_POST['wp_shopping_cart_enable_debug']) && $_POST['wp_shopping_cart_enable_debug']!='') ? 'checked="checked"':'' );
98
 
99
  echo '<div id="message" class="updated fade">';
100
  echo '<p><strong>'.(__("Options Updated!", "WSPSC")).'</strong></p></div>';
158
 
159
  $wp_cart_note_to_seller_text = get_option('wp_cart_note_to_seller_text');
160
  $wp_cart_paypal_co_page_style = get_option('wp_cart_paypal_co_page_style');
161
+
162
+ $wp_shopping_cart_strict_email_check = '';
163
+ if (get_option('wp_shopping_cart_strict_email_check')){
164
+ $wp_shopping_cart_strict_email_check = 'checked="checked"';
165
+ }
166
+
167
  if (get_option('wp_use_aff_platform'))
168
  $wp_use_aff_platform = 'checked="checked"';
169
  else
312
  </tr>
313
  </table>
314
 
315
+ <table class="form-table">
316
+ <tr valign="top">
317
+ <th scope="row">'.(__("Use Strict PayPal Email Address Checking", "WSPSC")).'</th>
318
+ <td><input type="checkbox" name="wp_shopping_cart_strict_email_check" value="1" '.$wp_shopping_cart_strict_email_check.' /><br />'.(__("If checked the script will check to make sure that the PayPal email address specified is the same as the account where the payment was deposited (Usage of PayPal Email Alias will fail too).", "WSPSC")).'</td>
319
+ </tr>
320
+ </table>
321
+
322
  <table class="form-table">
323
  <tr valign="top">
324
  <th scope="row">'.(__("Use WP Affiliate Platform", "WSPSC")).'</th>
375
  if ( !wp_verify_nonce($nonce, 'wpspc_email_settings_update')){
376
  wp_die('Error! Nonce Security Check Failed! Go back to email settings menu and save the settings again.');
377
  }
378
+ update_option('wpspc_send_buyer_email', (isset($_POST['wpspc_send_buyer_email']) && $_POST['wpspc_send_buyer_email']!='') ? 'checked="checked"':'' );
379
  update_option('wpspc_buyer_from_email', stripslashes((string)$_POST["wpspc_buyer_from_email"]));
380
  update_option('wpspc_buyer_email_subj', stripslashes((string)$_POST["wpspc_buyer_email_subj"]));
381
  update_option('wpspc_buyer_email_body', stripslashes((string)$_POST["wpspc_buyer_email_body"]));;
382
 
383
+ update_option('wpspc_send_seller_email', (isset($_POST['wpspc_send_seller_email']) && $_POST['wpspc_send_seller_email']!='') ? 'checked="checked"':'' );
384
  update_option('wpspc_notify_email_address', stripslashes((string)$_POST["wpspc_notify_email_address"]));
385
  update_option('wpspc_seller_email_subj', stripslashes((string)$_POST["wpspc_seller_email_subj"]));
386
  update_option('wpspc_seller_email_body', stripslashes((string)$_POST["wpspc_seller_email_body"]));;
459
  <br /><p class="description"><?php _e("This is the body of the email that will be sent to the buyer. Do not change the text within the braces {}. You can use the following email tags in this email body field:", "WSPSC");?>
460
  <br />{first_name} – <?php _e("First name of the buyer", "WSPSC");?>
461
  <br />{last_name} – <?php _e("Last name of the buyer", "WSPSC");?>
462
+ <br />{product_details} – <?php _e("The item details of the purchased product (this will include the download link for digital items).", "WSPSC");?>
463
+ <br />{transaction_id} – <?php _e("The unique transaction ID of the purchase", "WSPSC");?>
464
+ <br />{purchase_amt} – <?php _e("The amount paid for the current transaction", "WSPSC");?>
465
+ <br />{purchase_date} – <?php _e("The date of the purchase", "WSPSC");?>
466
+ <br />{coupon_code} – <?php _e("Coupon code applied to the purchase", "WSPSC");?>
467
  </p></td>
468
  </tr>
469
 
492
  <br />{first_name} – <?php _e("First name of the buyer", "WSPSC");?>
493
  <br />{last_name} – <?php _e("Last name of the buyer", "WSPSC");?>
494
  <br />{payer_email} – <?php _e("Email Address of the buyer", "WSPSC");?>
495
+ <br />{product_details} – <?php _e("The item details of the purchased product (this will include the download link for digital items).", "WSPSC");?>
496
+ <br />{transaction_id} – <?php _e("The unique transaction ID of the purchase", "WSPSC");?>
497
+ <br />{purchase_amt} – <?php _e("The amount paid for the current transaction", "WSPSC");?>
498
+ <br />{purchase_date} – <?php _e("The date of the purchase", "WSPSC");?>
499
+ <br />{coupon_code} – <?php _e("Coupon code applied to the purchase", "WSPSC");?>
500
  </p></td>
501
  </tr>
502
 
wp_shopping_cart_shortcodes.php CHANGED
@@ -11,14 +11,19 @@ function wp_cart_button_handler($atts){
11
  'var3' => '',
12
  'thumbnail' => '',
13
  'button_image' => '',
 
 
14
  ), $atts));
15
 
16
  if(empty($name)){
17
- return '<div style="color:red;">'.(__("Error! You must specify a product name in the shortcode.", "WSPSC")).'</div>';
18
  }
19
  if(empty($price)){
20
- return '<div style="color:red;">'.(__("Error! You must specify a price for your product in the shortcode.", "WSPSC")).'</div>';
21
  }
 
 
 
22
  return print_wp_cart_button_for_product($name, $price, $shipping, $var1, $var2, $var3, $atts);
23
  }
24
 
@@ -33,26 +38,37 @@ function wp_cart_display_product_handler($atts)
33
  'var2' => '',
34
  'var3' => '',
35
  'thumbnail' => '',
 
36
  'description' => '',
37
  'button_image' => '',
 
 
38
  ), $atts));
39
 
40
  if(empty($name)){
41
- return '<div style="color:red;">'.(__("Error! You must specify a product name in the shortcode.", "WSPSC")).'</div>';
42
  }
43
  if(empty($price)){
44
- return '<div style="color:red;">'.(__("Error! You must specify a price for your product in the shortcode.", "WSPSC")).'</div>';
45
  }
46
  if(empty($thumbnail)){
47
- return '<div style="color:red;">'.(__("Error! You must specify a thumbnail image for your product in the shortcode.", "WSPSC")).'</div>';
 
 
 
 
 
 
48
  }
 
49
  $currency_symbol = get_option('cart_currency_symbol');
50
  $formatted_price = print_payment_currency($price, $currency_symbol);
51
  $button_code = print_wp_cart_button_for_product($name, $price, $shipping, $var1, $var2, $var3, $atts);
 
52
  $display_code = <<<EOT
53
  <div class="wp_cart_product_display_box">
54
  <div class="wp_cart_product_thumbnail">
55
- <img src="$thumbnail" />
56
  </div>
57
  <div class="wp_cart_product_display_bottom">
58
  <div class="wp_cart_product_name">
11
  'var3' => '',
12
  'thumbnail' => '',
13
  'button_image' => '',
14
+ 'file_url' => '',
15
+ 'stamp_pdf' => '',
16
  ), $atts));
17
 
18
  if(empty($name)){
19
+ return '<div style="color:red;">'.(__("Error! You must specify a product name in the shortcode.", "WSPSC")).'</div>';
20
  }
21
  if(empty($price)){
22
+ return '<div style="color:red;">'.(__("Error! You must specify a price for your product in the shortcode.", "WSPSC")).'</div>';
23
  }
24
+ $price = wspsc_strip_char_from_price_amount($price);
25
+ $shipping = wspsc_strip_char_from_price_amount($shipping);
26
+
27
  return print_wp_cart_button_for_product($name, $price, $shipping, $var1, $var2, $var3, $atts);
28
  }
29
 
38
  'var2' => '',
39
  'var3' => '',
40
  'thumbnail' => '',
41
+ 'thumb_target' => '',
42
  'description' => '',
43
  'button_image' => '',
44
+ 'file_url' => '',
45
+ 'stamp_pdf' => '',
46
  ), $atts));
47
 
48
  if(empty($name)){
49
+ return '<div style="color:red;">'.(__("Error! You must specify a product name in the shortcode.", "WSPSC")).'</div>';
50
  }
51
  if(empty($price)){
52
+ return '<div style="color:red;">'.(__("Error! You must specify a price for your product in the shortcode.", "WSPSC")).'</div>';
53
  }
54
  if(empty($thumbnail)){
55
+ return '<div style="color:red;">'.(__("Error! You must specify a thumbnail image for your product in the shortcode.", "WSPSC")).'</div>';
56
+ }
57
+ $price = wspsc_strip_char_from_price_amount($price);
58
+ $shipping = wspsc_strip_char_from_price_amount($shipping);
59
+ $thumbnail_code = '<img src="'.$thumbnail.'">';
60
+ if(!empty($thumb_target) && preg_match("/http/", $thumb_target)){
61
+ $thumbnail_code = '<a href="'.$thumb_target.'"><img src="'.$thumbnail.'"></a>';
62
  }
63
+ $thumbnail_code = apply_filters('wspsc_product_box_thumbnail_code', $thumbnail_code, $atts);
64
  $currency_symbol = get_option('cart_currency_symbol');
65
  $formatted_price = print_payment_currency($price, $currency_symbol);
66
  $button_code = print_wp_cart_button_for_product($name, $price, $shipping, $var1, $var2, $var3, $atts);
67
+
68
  $display_code = <<<EOT
69
  <div class="wp_cart_product_display_box">
70
  <div class="wp_cart_product_thumbnail">
71
+ $thumbnail_code
72
  </div>
73
  <div class="wp_cart_product_display_bottom">
74
  <div class="wp_cart_product_name">