From 4c56369cb3fcee97289eeba3dbed7e1a6c6b96d2 Mon Sep 17 00:00:00 2001 From: Jeff Parsons Date: Wed, 10 Aug 2011 19:49:11 -0300 Subject: [PATCH 01/15] added display of product SKU on Admin, orders, emails, user accounts --- admin/write-panels/order-data-save.php | 111 ++++++------- admin/write-panels/order-data.php | 129 ++++++++-------- classes/jigoshop_product.class.php | 206 ++++++++++++------------- jigoshop_emails.php | 108 ++++++------- shortcodes/my_account.php | 21 ++- shortcodes/order_tracking.php | 56 +++---- 6 files changed, 321 insertions(+), 310 deletions(-) diff --git a/admin/write-panels/order-data-save.php b/admin/write-panels/order-data-save.php index c05db2fb..034a9934 100644 --- a/admin/write-panels/order-data-save.php +++ b/admin/write-panels/order-data-save.php @@ -1,26 +1,26 @@ update_status( $_POST['order_status'] ); - + // Order items $order_items = array(); - + if (isset($_POST['item_id'])) : + $item_id = $_POST['item_id']; $item_name = $_POST['item_name']; $item_quantity = $_POST['item_quantity']; $item_cost = $_POST['item_cost']; $item_tax_rate = $_POST['item_tax_rate']; - + for ($i=0; $i htmlspecialchars(stripslashes($item_id[$i])), 'name' => htmlspecialchars(stripslashes($item_name[$i])), @@ -84,94 +85,94 @@ function jigoshop_process_shop_order_meta( $post_id, $post ) { 'taxrate' => number_format(jigowatt_clean($item_tax_rate[$i]), 4) ); - endfor; - endif; - + endfor; + endif; + // Save update_post_meta( $post_id, 'order_data', $data ); update_post_meta( $post_id, 'order_items', $order_items ); - - + + // Handle button actions - + if (isset($_POST['reduce_stock']) && $_POST['reduce_stock'] && sizeof($order_items)>0) : - + $order->add_order_note( __('Manually reducing stock.', 'jigoshop') ); - + foreach ($order_items as $order_item) : - + $_product = &new jigoshop_product( $order_item['id'] ); - + if ($_product->exists) : - + if ($_product->managing_stock()) : - + $old_stock = $_product->stock; - + $new_quantity = $_product->reduce_stock( $order_item['qty'] ); - + $order->add_order_note( sprintf( __('Item #%s stock reduced from %s to %s.', 'jigoshop'), $order_item['id'], $old_stock, $new_quantity) ); - + if ($new_quantity<0) : do_action('jigoshop_product_on_backorder_notification', $order_item['id'], $values['quantity']); endif; - + // stock status notifications if (get_option('jigoshop_notify_no_stock_amount') && get_option('jigoshop_notify_no_stock_amount')>=$new_quantity) : do_action('jigoshop_no_stock_notification', $order_item['id']); elseif (get_option('jigoshop_notify_low_stock_amount') && get_option('jigoshop_notify_low_stock_amount')>=$new_quantity) : do_action('jigoshop_low_stock_notification', $order_item['id']); endif; - + endif; - + else : - + $order->add_order_note( sprintf( __('Item %s %s not found, skipping.', 'jigoshop'), $order_item['id'], $order_item['name'] ) ); - + endif; - + endforeach; - + $order->add_order_note( __('Manual stock reduction complete.', 'jigoshop') ); - + elseif (isset($_POST['restore_stock']) && $_POST['restore_stock'] && sizeof($order_items)>0) : - + $order->add_order_note( __('Manually restoring stock.', 'jigoshop') ); - + foreach ($order_items as $order_item) : - + $_product = &new jigoshop_product( $order_item['id'] ); - + if ($_product->exists) : - + if ($_product->managing_stock()) : - + $old_stock = $_product->stock; - + $new_quantity = $_product->increase_stock( $order_item['qty'] ); - + $order->add_order_note( sprintf( __('Item #%s stock increased from %s to %s.', 'jigoshop'), $order_item['id'], $old_stock, $new_quantity) ); - + endif; - + else : - + $order->add_order_note( sprintf( __('Item %s %s not found, skipping.', 'jigoshop'), $order_item['id'], $order_item['name'] ) ); - + endif; - + endforeach; - + $order->add_order_note( __('Manual stock restore complete.', 'jigoshop') ); - + elseif (isset($_POST['invoice']) && $_POST['invoice']) : - + // Mail link to customer jigoshop_pay_for_order_customer_notification( $order->id ); - + endif; - + // Error Handling if (sizeof($jigoshop_errors)>0) update_option('jigoshop_errors', $jigoshop_errors); } \ No newline at end of file diff --git a/admin/write-panels/order-data.php b/admin/write-panels/order-data.php index 81976e55..35341fc0 100644 --- a/admin/write-panels/order-data.php +++ b/admin/write-panels/order-data.php @@ -1,7 +1,7 @@ ID, 'order_data', true) ); - + if (!isset($data['billing_first_name'])) $data['billing_first_name'] = ''; if (!isset($data['billing_last_name'])) $data['billing_last_name'] = ''; if (!isset($data['billing_company'])) $data['billing_company'] = ''; @@ -45,9 +45,9 @@ function jigoshop_order_data_meta_box($post) { if (!isset($data['shipping_postcode'])) $data['shipping_postcode'] = ''; if (!isset($data['shipping_country'])) $data['shipping_country'] = ''; if (!isset($data['shipping_state'])) $data['shipping_state'] = ''; - + $data['customer_user'] = (int) get_post_meta($post->ID, 'customer_user', true); - + $order_status = wp_get_post_terms($post->ID, 'shop_order_status'); if ($order_status) : $order_status = current($order_status); @@ -55,7 +55,7 @@ function jigoshop_order_data_meta_box($post) { else : $data['order_status'] = 'pending'; endif; - + if (!isset($post->post_title) || empty($post->post_title)) : $order_title = 'Order'; else : @@ -69,19 +69,19 @@ function jigoshop_order_data_meta_box($post) {
- + - +
- +

- +

- +
'billing_first_name', 'label' => 'First Name:' ); echo '

'; - + // Last Name $field = array( 'id' => 'billing_last_name', 'label' => 'Last Name:' ); echo '

'; - + // Company $field = array( 'id' => 'billing_company', 'label' => 'Company:' ); echo '

'; - + // Address 1 $field = array( 'id' => 'billing_address_1', 'label' => 'Address 1:' ); echo '

'; - + // Address 2 $field = array( 'id' => 'billing_address_2', 'label' => 'Address 2:' ); echo '

'; - + // City $field = array( 'id' => 'billing_city', 'label' => 'City:' ); echo '

'; - + // Postcode $field = array( 'id' => 'billing_postcode', 'label' => 'Postcode:' ); echo '

'; - + // Country $field = array( 'id' => 'billing_country', 'label' => 'Country:' ); echo '

'; - + // State $field = array( 'id' => 'billing_state', 'label' => 'State/County:' ); echo '

'; - + // Email $field = array( 'id' => 'billing_email', 'label' => 'Email Address:' ); echo '

'; - + // Tel $field = array( 'id' => 'billing_phone', 'label' => 'Tel:' ); echo '

'; - + ?>
- +
- +

'shipping_first_name', 'label' => 'First Name:' ); echo '

'; - + // Last Name $field = array( 'id' => 'shipping_last_name', 'label' => 'Last Name:' ); echo '

'; - + // Company $field = array( 'id' => 'shipping_company', 'label' => 'Company:' ); echo '

'; - + // Address 1 $field = array( 'id' => 'shipping_address_1', 'label' => 'Address 1:' ); echo '

'; - + // Address 2 $field = array( 'id' => 'shipping_address_2', 'label' => 'Address 2:' ); echo '

'; - + // City $field = array( 'id' => 'shipping_city', 'label' => 'City:' ); echo '

'; - + // Postcode $field = array( 'id' => 'shipping_postcode', 'label' => 'Postcode:' ); echo '

'; - + // Country $field = array( 'id' => 'shipping_country', 'label' => 'Country:' ); echo '

'; - + // State $field = array( 'id' => 'shipping_state', 'label' => 'State/County:' ); echo '

'; - + ?>
ID, 'order_data', true) ); $order_items = (array) maybe_unserialize( get_post_meta($post->ID, 'order_items', true) ); @@ -257,7 +257,7 @@ function jigoshop_order_items_meta_box($post) { - + @@ -265,11 +265,16 @@ function jigoshop_order_items_meta_box($post) { - - + + 0 && isset($order_items[0]['id'])) foreach ($order_items as $item) : ?> - + + @@ -277,7 +282,7 @@ function jigoshop_order_items_meta_box($post) { - +
@@ -288,32 +293,32 @@ function jigoshop_order_items_meta_box($post) {
- +
- +
- +
- +
- +
- +
- +
  • - +
  • - +
  • ID ) ) { diff --git a/classes/jigoshop_product.class.php b/classes/jigoshop_product.class.php index 74269bb8..089f5a0d 100644 --- a/classes/jigoshop_product.class.php +++ b/classes/jigoshop_product.class.php @@ -2,7 +2,7 @@ /** * Product Class * @class jigoshop_product - * + * * The JigoShop product class handles individual product data. * * @author Jigowatt @@ -10,7 +10,7 @@ * @package JigoShop */ class jigoshop_product { - + var $id; var $exists; var $data; @@ -24,58 +24,58 @@ class jigoshop_product { var $price; var $sale_price_dates_to; var $sale_price_dates_from; - + /** * Loads all product data from custom fields * * @param int $id ID of the product to load */ function jigoshop_product( $id ) { - + $product_custom_fields = get_post_custom( $id ); - + $this->id = $id; - + if (isset($product_custom_fields['SKU'][0]) && !empty($product_custom_fields['SKU'][0])) $this->sku = $product_custom_fields['SKU'][0]; else $this->sku = $this->id; - + if (isset($product_custom_fields['product_data'][0])) $this->data = maybe_unserialize( $product_custom_fields['product_data'][0] ); else $this->data = ''; - - if (isset($product_custom_fields['product_attributes'][0])) $this->attributes = maybe_unserialize( $product_custom_fields['product_attributes'][0] ); else $this->attributes = array(); - + + if (isset($product_custom_fields['product_attributes'][0])) $this->attributes = maybe_unserialize( $product_custom_fields['product_attributes'][0] ); else $this->attributes = array(); + if (isset($product_custom_fields['price'][0])) $this->price = $product_custom_fields['price'][0]; else $this->price = 0; if (isset($product_custom_fields['visibility'][0])) $this->visibility = $product_custom_fields['visibility'][0]; else $this->visibility = 'hidden'; - + if (isset($product_custom_fields['stock'][0])) $this->stock = $product_custom_fields['stock'][0]; else $this->stock = 0; - + // Again just in case, to fix WP bug $this->data = maybe_unserialize( $this->data ); $this->attributes = maybe_unserialize( $this->attributes ); - + $terms = wp_get_object_terms( $id, 'product_type' ); if (!is_wp_error($terms) && $terms) : $term = current($terms); - $this->product_type = $term->slug; + $this->product_type = $term->slug; else : $this->product_type = 'simple'; endif; - + $this->children = array(); - + if ( $children_products =& get_children( 'post_parent='.$id.'&post_type=product&orderby=menu_order&order=ASC' ) ) : if ($children_products) foreach ($children_products as $child) : $child->product = &new jigoshop_product( $child->ID ); endforeach; $this->children = (array) $children_products; endif; - + if ($this->data) : - $this->exists = true; + $this->exists = true; else : - $this->exists = false; + $this->exists = false; endif; } - + /** * Reduce stock level of the product * @@ -88,7 +88,7 @@ function reduce_stock( $by = 1 ) { return $reduce_to; endif; } - + /** * Increase stock level of the product * @@ -101,7 +101,7 @@ function increase_stock( $by = 1 ) { return $increase_to; endif; } - + /** * Checks the product type * @@ -112,45 +112,45 @@ function is_type( $type ) { elseif ($this->product_type==$type) return true; return false; } - + /** Returns whether or not the product has any child product */ function has_child () { return sizeof($this->children) ? true : false; } - + /** Returns whether or not the product post exists */ function exists() { if ($this->exists) return true; return false; } - + /** Returns whether or not the product is taxable */ function is_taxable() { if (isset($this->data['tax_status']) && $this->data['tax_status']=='taxable') return true; return false; } - + /** Returns whether or not the product shipping is taxable */ function is_shipping_taxable() { if (isset($this->data['tax_status']) && ($this->data['tax_status']=='taxable' || $this->data['tax_status']=='shipping')) return true; return false; } - + /** Get the product's post data */ function get_post_data() { if (empty($this->post)) : $this->post = get_post( $this->id ); endif; - + return $this->post; } - + /** Get the title of the post */ function get_title () { $this->get_post_data(); return apply_filters('jigoshop_product_title', $this->post->post_title, $this); } - + /** Get the add to url */ function add_to_cart_url() { if ( $this->has_child() ) : @@ -159,11 +159,11 @@ function add_to_cart_url() { else : $url = add_query_arg('add-to-cart', $this->id); endif; - + $url = jigoshop::nonce_url( 'add_to_cart', $url ); return $url; } - + /** Returns whether or not the product is stock managed */ function managing_stock() { if (get_option('jigoshop_manage_stock')=='yes') : @@ -171,7 +171,7 @@ function managing_stock() { endif; return false; } - + /** Returns whether or not the product is in stock */ function is_in_stock() { if ($this->managing_stock()) : @@ -189,38 +189,38 @@ function is_in_stock() { endif; return true; } - + /** Returns whether or not the product can be backordered */ function backorders_allowed() { if ($this->data['backorders']=='yes' || $this->data['backorders']=='notify') return true; return false; } - + /** Returns whether or not the product needs to notify the customer on backorder */ function backorders_require_notification() { if ($this->data['backorders']=='notify') return true; return false; } - + /** Returns whether or not the product has enough stock for the order */ function has_enough_stock( $quantity ) { - + if ($this->backorders_allowed()) return true; - + if ($this->stock >= $quantity) : return true; endif; - + return false; - + } - + /** Returns the availability of the product */ function get_availability() { - + $availability = ""; $class = ""; - + if (!$this->managing_stock()) : if ($this->is_in_stock()) : //$availability = __('In stock', 'jigoshop'); /* Lets not bother showing stock if its not managed and is available */ @@ -232,7 +232,7 @@ function get_availability() { if ($this->is_in_stock()) : if ($this->stock > 0) : $availability = __('In stock', 'jigoshop'); - + if ($this->backorders_allowed()) : if ($this->backorders_require_notification()) : $availability .= ' – '.$this->stock.' '; @@ -243,9 +243,9 @@ function get_availability() { $availability .= ' – '.$this->stock.' '; $availability .= __('available', 'jigoshop'); endif; - + else : - + if ($this->backorders_allowed()) : if ($this->backorders_require_notification()) : $availability = __('Available on backorder', 'jigoshop'); @@ -256,7 +256,7 @@ function get_availability() { $availability = __('Out of stock', 'jigoshop'); $class = 'out-of-stock'; endif; - + endif; else : if ($this->backorders_allowed()) : @@ -267,16 +267,16 @@ function get_availability() { endif; endif; endif; - + return array( 'availability' => $availability, 'class' => $class); } - + /** Returns whether or not the product is featured */ function is_featured() { if (get_post_meta($this->id, 'featured', true)=='yes') return true; return false; } - + /** Returns whether or not the product is visible */ function is_visible() { if ($this->visibility=='hidden') return false; @@ -286,7 +286,7 @@ function is_visible() { if ($this->visibility=='catalog' && is_search()) return false; if ($this->visibility=='catalog' && !is_search()) return true; } - + /** Returns whether or not the product is on sale */ function is_on_sale() { if ( isset($this->data['sale_price']) && $this->data['sale_price']==$this->price ) : @@ -294,89 +294,89 @@ function is_on_sale() { endif; return false; } - + /** Returns the product's weight */ function get_weight() { if ($this->data['weight']) return $this->data['weight']; } - + /** Returns the product's price */ function get_price() { - + return $this->price; - + /*if (!$price) $price = $this->price; - + if (get_option('jigoshop_prices_include_tax')=='yes' && $this->is_taxable() && jigoshop_customer::is_customer_outside_base()) : - + $_tax = &new jigoshop_tax(); - + $price = $price * 100; - + $base_rate = $_tax->get_shop_base_rate( $this->data['tax_class'] ); $rate = $_tax->get_rate( $this->data['tax_class'] ); - + $base_tax_amount = round($_tax->calc_tax( $price, $base_rate, true )); $tax_amount = round($_tax->calc_tax( ($price-$base_tax_amount), $rate, false )); - - return ($price - $base_tax_amount + $tax_amount) / 100; + + return ($price - $base_tax_amount + $tax_amount) / 100; endif; - + return $price;*/ } - + /** Returns the price (excluding tax) */ function get_price_excluding_tax() { - + $price = $this->price; - + if (get_option('jigoshop_prices_include_tax')=='yes') : - + if ( $this->is_taxable() && get_option('jigoshop_calc_taxes')=='yes') : - + $_tax = &new jigoshop_tax(); - + // Get rate for base country $rate = $_tax->get_shop_base_rate( $this->data['tax_class'] ); - + //echo '-> Product Rate: ' . $rate . '
    '; - + if ( $rate>0 ) : - + $tax_amount = $_tax->calc_tax( $price, $rate, true ); - + //echo '-> Product Tax Rate: ' . $tax_amount . '
    '; - + $price = $price - $tax_amount; - + //echo '-> Price: ' . $price . '
    '; - + endif; - + endif; - + endif; - + return $price; } - + /** Returns the price in html format */ function get_price_html() { $price = ''; if ( $this->has_child() ) : - + $min_price = ''; $max_price = ''; - + foreach ($this->children as $child) : $child_price = $child->product->get_price(); if ($child_price<$min_price || $min_price == '') $min_price = $child_price; if ($child_price>$max_price || $max_price == '') $max_price = $child_price; endforeach; - - $price .= '' . __('From: ', 'jigoshop') . '' . jigoshop_price($min_price); - + + $price .= '' . __('From: ', 'jigoshop') . '' . jigoshop_price($min_price); + else : if ($this->price) : if ($this->is_on_sale() && isset($this->data['regular_price'])) : @@ -388,27 +388,27 @@ function get_price_html() { endif; return $price; } - + /** Returns the upsell product ids */ function get_upsells() { return (array) $this->data['upsell_ids']; } - + /** Returns the crosssell product ids */ function get_cross_sells() { return (array) $this->data['crosssell_ids']; } - + /** Returns the product categories */ function get_categories( $sep = ', ', $before = '', $after = '' ) { return get_the_term_list($this->id, 'product_cat', $before, $sep, $after); } - + /** Returns the product tags */ function get_tags( $sep = ', ', $before = '', $after = '' ) { return get_the_term_list($this->id, 'product_tag', $before, $sep, $after); } - + /** Get and return related products */ function get_related( $limit = 5 ) { global $wpdb, $all_post_ids; @@ -417,14 +417,14 @@ function get_related( $limit = 5 ) { $cats_array = array(0); $tags = ''; $cats = ''; - + // Get tags $terms = wp_get_post_terms($this->id, 'product_tag'); foreach ($terms as $term) { $tags_array[] = $term->term_id; } $tags = implode(',', $tags_array); - + $terms = wp_get_post_terms($this->id, 'product_cat'); foreach ($terms as $term) { $cats_array[] = $term->term_id; @@ -434,7 +434,7 @@ function get_related( $limit = 5 ) { $q = " SELECT p.ID FROM $wpdb->term_taxonomy AS tt, $wpdb->term_relationships AS tr, $wpdb->posts AS p, $wpdb->postmeta AS pm - WHERE + WHERE p.ID != $this->id AND p.post_status = 'publish' AND p.post_date_gmt < NOW() @@ -450,7 +450,7 @@ function get_related( $limit = 5 ) { AND tr.object_id = p.ID AND tt.term_id IN ($cats) ) - OR + OR ( tt.taxonomy ='product_tag' AND tt.term_taxonomy_id = tr.term_taxonomy_id @@ -461,17 +461,17 @@ function get_related( $limit = 5 ) { GROUP BY tr.object_id ORDER BY RAND() LIMIT $limit;"; - + $related = $wpdb->get_col($q); - + return $related; } - + /** Returns product attributes */ function get_attributes() { return $this->attributes; } - + /** Returns whether or not the product has any attributes set */ function has_attributes() { if (isset($this->attributes) && sizeof($this->attributes)>0) : @@ -481,12 +481,12 @@ function has_attributes() { endif; return false; } - + /** Lists a table of attributes for the product page */ function list_attributes() { $attributes = $this->get_attributes(); if ($attributes && sizeof($attributes)>0) : - + echo ''; $alt = 1; foreach ($attributes as $attribute) : @@ -495,11 +495,11 @@ function list_attributes() { echo ''; endforeach; echo '
    '.wptexturize($attribute['name']).''; - + if (is_array($attribute['value'])) $attribute['value'] = implode(', ', $attribute['value']); - + echo wpautop(wptexturize($attribute['value'])); - + echo '
    '; diff --git a/jigoshop_emails.php b/jigoshop_emails.php index 7fdc0cf6..85ccacc4 100644 --- a/jigoshop_emails.php +++ b/jigoshop_emails.php @@ -6,8 +6,8 @@ add_action('jigoshop_low_stock_notification', 'jigoshop_low_stock_notification'); add_action('jigoshop_no_stock_notification', 'jigoshop_no_stock_notification'); add_action('jigoshop_product_on_backorder_notification', 'jigoshop_product_on_backorder_notification', 1, 2); - - + + /** * New order notification email template **/ @@ -16,19 +16,19 @@ add_action('order_status_pending_to_on-hold', 'jigoshop_new_order_notification'); function jigoshop_new_order_notification( $order_id ) { - + $order = &new jigoshop_order( $order_id ); $subject = sprintf(__('[%s] New Customer Order (# %s)','jigoshop'), get_bloginfo('name'), $order->id); - + $message = __("You have received an order from ",'jigoshop') . $order->billing_first_name . ' ' . $order->billing_last_name . __(". Their order is as follows:",'jigoshop') . PHP_EOL . PHP_EOL; - + $message .= '=====================================================================' . PHP_EOL; $message .= __('ORDER #: ','jigoshop') . $order->id . '' . PHP_EOL; $message .= '=====================================================================' . PHP_EOL; - - $message .= $order->email_order_items_list( false, true ); - + + $message .= $order->email_order_items_list( false, true ); // no download links, show SKU + if ($order->customer_note) : $message .= PHP_EOL . __('Note:','jigoshop') .$order->customer_note . PHP_EOL; endif; @@ -38,34 +38,34 @@ function jigoshop_new_order_notification( $order_id ) { if ($order->order_discount > 0) $message .= __('Discount:','jigoshop') . "\t\t\t" . jigoshop_price($order->order_discount) . PHP_EOL; if ($order->get_total_tax() > 0) $message .= __('Tax:','jigoshop') . "\t\t\t\t\t" . jigoshop_price($order->get_total_tax()) . PHP_EOL; $message .= __('Total:','jigoshop') . "\t\t\t\t" . jigoshop_price($order->order_total) . ' - via ' . ucwords($order->payment_method) . PHP_EOL . PHP_EOL; - + $message .= '=====================================================================' . PHP_EOL; $message .= __('CUSTOMER DETAILS','jigoshop') . PHP_EOL; $message .= '=====================================================================' . PHP_EOL; - + if ($order->billing_email) $message .= __('Email:','jigoshop') . "\t\t\t\t" . $order->billing_email . PHP_EOL; if ($order->billing_phone) $message .= __('Tel:','jigoshop') . "\t\t\t\t\t" . $order->billing_phone . PHP_EOL; - + $message .= PHP_EOL; - + $message .= '=====================================================================' . PHP_EOL; $message .= __('BILLING ADDRESS','jigoshop') . PHP_EOL; $message .= '=====================================================================' . PHP_EOL; - + $message .= $order->billing_first_name . ' ' . $order->billing_last_name . PHP_EOL; if ($order->billing_company) $message .= $order->billing_company . PHP_EOL; $message .= $order->formatted_billing_address . PHP_EOL . PHP_EOL; - + $message .= '=====================================================================' . PHP_EOL; $message .= __('SHIPPING ADDRESS','jigoshop') . PHP_EOL; $message .= '=====================================================================' . PHP_EOL; - + $message .= $order->shipping_first_name . ' ' . $order->shipping_last_name . PHP_EOL; if ($order->shipping_company) $message .= $order->shipping_company . PHP_EOL; $message .= $order->formatted_shipping_address . PHP_EOL . PHP_EOL; - + $message = html_entity_decode( strip_tags( $message ) ); - + wp_mail( get_option('admin_email'), $subject, $message ); } @@ -75,21 +75,21 @@ function jigoshop_new_order_notification( $order_id ) { **/ add_action('order_status_pending_to_processing', 'jigoshop_processing_order_customer_notification'); add_action('order_status_pending_to_on-hold', 'jigoshop_processing_order_customer_notification'); - + function jigoshop_processing_order_customer_notification( $order_id ) { - + $order = &new jigoshop_order( $order_id ); $subject = '[' . get_bloginfo('name') . '] ' . __('Order Received','jigoshop'); - + $message = __("Thank you, we are now processing your order. Your order's details are below:",'jigoshop') . PHP_EOL . PHP_EOL; - + $message .= '=====================================================================' . PHP_EOL; $message .= __('ORDER #: ','jigoshop') . $order->id . '' . PHP_EOL; $message .= '=====================================================================' . PHP_EOL; - - $message .= $order->email_order_items_list(); - + + $message .= $order->email_order_items_list(false, true); // no download links, show SKU + if ($order->customer_note) : $message .= PHP_EOL . __('Note:','jigoshop') .$order->customer_note . PHP_EOL; endif; @@ -99,32 +99,32 @@ function jigoshop_processing_order_customer_notification( $order_id ) { if ($order->order_discount > 0) $message .= __('Discount:','jigoshop') . "\t\t\t" . jigoshop_price($order->order_discount) . PHP_EOL; if ($order->get_total_tax() > 0) $message .= __('Tax:','jigoshop') . "\t\t\t\t\t" . jigoshop_price($order->get_total_tax()) . PHP_EOL; $message .= __('Total:','jigoshop') . "\t\t\t\t" . jigoshop_price($order->order_total) . ' - via ' . ucwords($order->payment_method) . PHP_EOL . PHP_EOL; - + $message .= '=====================================================================' . PHP_EOL; $message .= __('CUSTOMER DETAILS','jigoshop') . PHP_EOL; $message .= '=====================================================================' . PHP_EOL; - + if ($order->billing_email) $message .= __('Email:','jigoshop') . "\t\t\t\t" . $order->billing_email . PHP_EOL; if ($order->billing_phone) $message .= __('Tel:','jigoshop') . "\t\t\t\t\t" . $order->billing_phone . PHP_EOL; - + $message .= PHP_EOL; - + $message .= '=====================================================================' . PHP_EOL; $message .= __('BILLING ADDRESS','jigoshop') . PHP_EOL; $message .= '=====================================================================' . PHP_EOL; - + $message .= $order->billing_first_name . ' ' . $order->billing_last_name . PHP_EOL; if ($order->billing_company) $message .= $order->billing_company . PHP_EOL; $message .= $order->formatted_billing_address . PHP_EOL . PHP_EOL; - + $message .= '=====================================================================' . PHP_EOL; $message .= __('SHIPPING ADDRESS','jigoshop') . PHP_EOL; $message .= '=====================================================================' . PHP_EOL; - + $message .= $order->shipping_first_name . ' ' . $order->shipping_last_name . PHP_EOL; if ($order->shipping_company) $message .= $order->shipping_company . PHP_EOL; $message .= $order->formatted_shipping_address . PHP_EOL . PHP_EOL; - + $message = html_entity_decode( strip_tags( $message ) ); wp_mail( $order->billing_email, $subject, $message ); @@ -135,21 +135,21 @@ function jigoshop_processing_order_customer_notification( $order_id ) { * Completed order notification email template - this one includes download links for downloadable products **/ add_action('order_status_completed', 'jigoshop_completed_order_customer_notification'); - + function jigoshop_completed_order_customer_notification( $order_id ) { - + $order = &new jigoshop_order( $order_id ); $subject = '[' . get_bloginfo('name') . '] ' . __('Order Complete','jigoshop'); - + $message = __("Your order is complete. Your order's details are below:",'jigoshop') . PHP_EOL . PHP_EOL; - + $message .= '=====================================================================' . PHP_EOL; $message .= __('ORDER #: ','jigoshop') . $order->id . '' . PHP_EOL; $message .= '=====================================================================' . PHP_EOL; - - $message .= $order->email_order_items_list( true ); - + + $message .= $order->email_order_items_list( true, true ); // show download links and SKU + if ($order->customer_note) : $message .= PHP_EOL . __('Note:','jigoshop') .$order->customer_note . PHP_EOL; endif; @@ -159,32 +159,32 @@ function jigoshop_completed_order_customer_notification( $order_id ) { if ($order->order_discount > 0) $message .= __('Discount:','jigoshop') . "\t\t\t" . jigoshop_price($order->order_discount) . PHP_EOL; if ($order->get_total_tax() > 0) $message .= __('Tax:','jigoshop') . "\t\t\t\t\t" . jigoshop_price($order->get_total_tax()) . PHP_EOL; $message .= __('Total:','jigoshop') . "\t\t\t\t" . jigoshop_price($order->order_total) . ' - via ' . ucwords($order->payment_method) . PHP_EOL . PHP_EOL; - + $message .= '=====================================================================' . PHP_EOL; $message .= __('CUSTOMER DETAILS','jigoshop') . PHP_EOL; $message .= '=====================================================================' . PHP_EOL; - + if ($order->billing_email) $message .= __('Email:','jigoshop') . "\t\t\t\t" . $order->billing_email . PHP_EOL; if ($order->billing_phone) $message .= __('Tel:','jigoshop') . "\t\t\t\t\t" . $order->billing_phone . PHP_EOL; - + $message .= PHP_EOL; - + $message .= '=====================================================================' . PHP_EOL; $message .= __('BILLING ADDRESS','jigoshop') . PHP_EOL; $message .= '=====================================================================' . PHP_EOL; - + $message .= $order->billing_first_name . ' ' . $order->billing_last_name . PHP_EOL; if ($order->billing_company) $message .= $order->billing_company . PHP_EOL; $message .= $order->formatted_billing_address . PHP_EOL . PHP_EOL; - + $message .= '=====================================================================' . PHP_EOL; $message .= __('SHIPPING ADDRESS','jigoshop') . PHP_EOL; $message .= '=====================================================================' . PHP_EOL; - + $message .= $order->shipping_first_name . ' ' . $order->shipping_last_name . PHP_EOL; if ($order->shipping_company) $message .= $order->shipping_company . PHP_EOL; $message .= $order->formatted_shipping_address . PHP_EOL . PHP_EOL; - + $message = html_entity_decode( strip_tags( $message ) ); wp_mail( $order->billing_email, $subject, $message ); @@ -195,19 +195,19 @@ function jigoshop_completed_order_customer_notification( $order_id ) { * Pay for order notification email template - this one includes a payment link **/ function jigoshop_pay_for_order_customer_notification( $order_id ) { - + $order = &new jigoshop_order( $order_id ); $subject = '[' . get_bloginfo('name') . '] ' . __('Pay for Order','jigoshop'); - + $customer_message = sprintf( __("An order has been created for you on “%s”. To pay for this order please use the following link: %s",'jigoshop') . PHP_EOL . PHP_EOL, get_bloginfo('name'), $order->get_checkout_payment_url() ); - + $message = '=====================================================================' . PHP_EOL; $message .= __('ORDER #: ','jigoshop') . $order->id . '' . PHP_EOL; $message .= '=====================================================================' . PHP_EOL; - - $message .= $order->email_order_items_list(); - + + $message .= $order->email_order_items_list( false, true ); // no download links, show SKU + if ($order->customer_note) : $message .= PHP_EOL . __('Note:','jigoshop') .$order->customer_note . PHP_EOL; endif; @@ -217,7 +217,7 @@ function jigoshop_pay_for_order_customer_notification( $order_id ) { if ($order->order_discount > 0) $message .= __('Discount:','jigoshop') . "\t\t\t" . jigoshop_price($order->order_discount) . PHP_EOL; if ($order->get_total_tax() > 0) $message .= __('Tax:','jigoshop') . "\t\t\t\t\t" . jigoshop_price($order->get_total_tax()) . PHP_EOL; $message .= __('Total:','jigoshop') . "\t\t\t\t" . jigoshop_price($order->order_total) . ' - via ' . ucwords($order->payment_method) . PHP_EOL . PHP_EOL; - + $customer_message = html_entity_decode( strip_tags( $customer_message.$message ) ); wp_mail( $order->billing_email, $subject, $customer_message ); diff --git a/shortcodes/my_account.php b/shortcodes/my_account.php index 6585707d..44540851 100644 --- a/shortcodes/my_account.php +++ b/shortcodes/my_account.php @@ -397,6 +397,7 @@ function jigoshop_view_order() { + @@ -404,29 +405,29 @@ function jigoshop_view_order() { - - + + order_shipping>0) : ?> - + get_total_tax()>0) : ?> - + order_discount>0) : ?> - + - + customer_note) : ?> - - + + @@ -434,8 +435,12 @@ function jigoshop_view_order() { items)>0) : foreach($order->items as $item) : + // only display either the SKU if available or product ID + // there may more elegant ways to get this ... looking + $this_product = new jigoshop_product( $item['id'] ); echo ' + diff --git a/shortcodes/order_tracking.php b/shortcodes/order_tracking.php index b29021a1..4e6b45f3 100644 --- a/shortcodes/order_tracking.php +++ b/shortcodes/order_tracking.php @@ -1,35 +1,35 @@ 0) $order->id = (int) $_POST['orderid']; else $order->id = 0; if (isset($_POST['order_email']) && $_POST['order_email']) $order_email = trim($_POST['order_email']); else $order_email = ''; - + if ( !jigoshop::verify_nonce('order_tracking') ): - + echo '

    '.__('You have taken too long. Please refresh the page and retry.', 'jigoshop').'

    '; - + elseif ($order->id && $order_email && $order->get_order( $order->id )) : if ($order->billing_email == $order_email) : - + echo '

    '.sprintf( __('Order #%s which was made %s has the status “%s”', 'jigoshop'), $order->id, human_time_diff(strtotime($order->order_date), current_time('timestamp')).__(' ago', 'jigoshop'), $order->status ); - + if ($order->status == 'completed') echo __(' and was completed ', 'jigoshop').human_time_diff(strtotime($order->completed_date), current_time('timestamp')).__(' ago', 'jigoshop'); - + echo '.

    '; ?> @@ -37,8 +37,8 @@ function jigoshop_order_tracking( $atts ) {
    get_subtotal_to_display(); ?>get_subtotal_to_display(); ?>
    get_shipping_to_display(); ?>
    get_total_tax()); ?>
    -order_discount); ?>
    order_total); ?>
    customer_note)); ?>customer_note)); ?>
    '.$this_product->sku.' '.$item['name'].' '.$item['qty'].' '.jigoshop_price( $item['cost']*$item['qty'], array('ex_tax_label' => 1) ).'
    + - @@ -67,22 +67,22 @@ function jigoshop_order_tracking( $atts ) { items as $order_item) : - + foreach($order->items as $order_item) : + $_product = &new jigoshop_product( $order_item['id'] ); echo ''; - echo ''; echo ''; + echo ''; echo ''; echo ''; - + echo ''; - + endforeach; ?>
    '.$_product->get_title().''.$_product->sku.''.$_product->get_title().''.jigoshop_price($_product->get_price()).''.$order_item['qty'].'
    - +

    '.__('Sorry, we could not find that order id in our database. Want to retry?', 'jigoshop').'

    '; endif; else : echo '

    '.__('Sorry, we could not find that order id in our database. Want to retry?', 'jigoshop').'

    '; - endif; - + endif; + else : - + ?>
    - +

    - +

    @@ -125,7 +125,7 @@ function jigoshop_order_tracking( $atts ) {
    Date: Fri, 12 Aug 2011 09:46:25 -0300 Subject: [PATCH 02/15] fixed html double quote output in order notification email template --- jigoshop_emails.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jigoshop_emails.php b/jigoshop_emails.php index 35019c39..1fbaeee6 100644 --- a/jigoshop_emails.php +++ b/jigoshop_emails.php @@ -215,7 +215,7 @@ function jigoshop_pay_for_order_customer_notification( $order_id ) { $subject = '[' . get_bloginfo('name') . '] ' . __('Pay for Order','jigoshop'); - $customer_message = sprintf( __("An order has been created for you on “%s”. To pay for this order please use the following link: %s",'jigoshop') . PHP_EOL . PHP_EOL, get_bloginfo('name'), $order->get_checkout_payment_url() ); + $customer_message = sprintf( __("An order has been created for you on \"%s\". To pay for this order please use the following link: %s",'jigoshop') . PHP_EOL . PHP_EOL, get_bloginfo('name'), $order->get_checkout_payment_url() ); $message = '=====================================================================' . PHP_EOL; $message .= __('ORDER #: ','jigoshop') . $order->id . '' . PHP_EOL; From c82e0a87f4f1c097ef4a3049abee57b49523556a Mon Sep 17 00:00:00 2001 From: Jeff Parsons Date: Mon, 15 Aug 2011 18:14:56 -0300 Subject: [PATCH 03/15] merge dev branch, add WP date internationalization in several areas --- admin/jigoshop-admin-settings-options.php | 86 + admin/jigoshop-admin-settings.php | 54 +- admin/jigoshop-admin.php | 2 +- assets/css/admin.css | 17 + assets/js/write-panels.js | 2 +- classes/jigoshop.class.php | 4 +- gateways/bank_transfer.php | 188 + jigoshop.php | 16 +- jigoshop_taxonomy.php | 2 +- jigoshop_template_functions.php | 4 +- languages/jigoshop-nl_NL.mo | Bin 0 -> 75239 bytes languages/jigoshop-nl_NL.po | 4992 +++++++++++++++++++++ readme.txt | 7 +- shortcodes/cart.php | 2 +- shortcodes/my_account.php | 2 +- version.txt | 2 +- widgets/cart.php | 2 +- widgets/featured_products.php | 2 +- widgets/recent_products.php | 2 +- 19 files changed, 5361 insertions(+), 25 deletions(-) create mode 100644 gateways/bank_transfer.php create mode 100644 languages/jigoshop-nl_NL.mo create mode 100644 languages/jigoshop-nl_NL.po diff --git a/admin/jigoshop-admin-settings-options.php b/admin/jigoshop-admin-settings-options.php index da3572fe..0cecacbe 100644 --- a/admin/jigoshop-admin-settings-options.php +++ b/admin/jigoshop-admin-settings-options.php @@ -258,6 +258,92 @@ 'std' => '' ), + array( 'type' => 'tabend'), + + array( 'type' => 'tab', 'tabname' => __('Images', 'jigoshop') ), + + array( 'name' => __('Image Options', 'jigoshop'), 'type' => 'title','desc' => '', 'id' => '' ), + + array( + 'name' => __('Tiny Image Width','jigoshop'), + 'desc' => '', + 'tip' => '', + 'id' => 'jigoshop_shop_tiny_w', + 'css' => 'min-width:200px;', + 'type' => 'text', + 'std' => 36 + ), + + array( + 'name' => __('Tiny Image Height','jigoshop'), + 'desc' => '', + 'tip' => '', + 'id' => 'jigoshop_shop_tiny_h', + 'css' => 'min-width:200px;', + 'type' => 'text', + 'std' => 36 + ), + + array( + 'name' => __('Thumbnail Image Width','jigoshop'), + 'desc' => '', + 'tip' => '', + 'id' => 'jigoshop_shop_thumbnail_w', + 'css' => 'min-width:200px;', + 'type' => 'text', + 'std' => 90 + ), + + array( + 'name' => __('Thumbnail Image Height','jigoshop'), + 'desc' => '', + 'tip' => '', + 'id' => 'jigoshop_shop_thumbnail_h', + 'css' => 'min-width:200px;', + 'type' => 'text', + 'std' => 90 + ), + + array( + 'name' => __('Small Image Width','jigoshop'), + 'desc' => '', + 'tip' => '', + 'id' => 'jigoshop_shop_small_w', + 'css' => 'min-width:200px;', + 'type' => 'text', + 'std' => 150 + ), + + array( + 'name' => __('Small Image Height','jigoshop'), + 'desc' => '', + 'tip' => '', + 'id' => 'jigoshop_shop_small_h', + 'css' => 'min-width:200px;', + 'type' => 'text', + 'std' => 150 + ), + + array( + 'name' => __('Large Image Width','jigoshop'), + 'desc' => '', + 'tip' => '', + 'id' => 'jigoshop_shop_large_w', + 'css' => 'min-width:200px;', + 'type' => 'text', + 'std' => 300 + ), + + array( + 'name' => __('Thumbnail Image Height','jigoshop'), + 'desc' => '', + 'tip' => '', + 'id' => 'jigoshop_shop_large_h', + 'css' => 'min-width:200px;', + 'type' => 'text', + 'std' => 300 + ), + array( 'type' => 'tabend'), array( 'type' => 'tab', 'tabname' => __('Catalog', 'jigoshop') ), diff --git a/admin/jigoshop-admin-settings.php b/admin/jigoshop-admin-settings.php index e3c10dd8..09d42fb5 100644 --- a/admin/jigoshop-admin-settings.php +++ b/admin/jigoshop-admin-settings.php @@ -30,6 +30,9 @@ */ function jigoshop_update_options($options) { if(isset($_POST['submitted']) && $_POST['submitted'] == 'yes') { + + $update_image_meta = false; + foreach ($options as $value) { if (isset($value['id']) && $value['id']=='jigoshop_tax_rates') : @@ -133,8 +136,26 @@ function jigoshop_update_options($options) { } else { @delete_option($value['id']); } - - else : + + /* image values can not be empty, if empty fallback to default values */ + elseif ( isset($value['id']) && preg_match('/^jigoshop_shop_(tiny|thumbnail|small|large)_(h|w)$/', $value['id']) ): + + $old_val = get_option($value['id'], false); + $size = intval( jigowatt_clean($_POST[$value['id']]) ); + + if (!$size && $old_val !== false || $size == $old_val){ + continue; + } else if (!$size) { + $var_name = str_replace('jigoshop_', '', $value['id']); + $size = jigoshop::get_var($var_name); + $update_image_meta = true; + } else { + $update_image_meta = true; + } + + update_option($value['id'], $size); + + else: if(isset($value['id']) && isset($_POST[$value['id']])) { update_option($value['id'], jigowatt_clean($_POST[$value['id']])); @@ -145,7 +166,31 @@ function jigoshop_update_options($options) { endif; } - + + if ($update_image_meta){ + + // reset the image sizes to generate the new metadata + jigoshop_set_image_sizes(); + + $posts = get_posts('post_type=product&post_status=publish&posts_per_page=-1'); + + foreach ( (array) $posts as $post) { + $images =& get_children("post_parent={$post->ID}&post_type=attachment&post_mime_type=image"); + + foreach ( (array) $images as $image) { + $fullsizepath = get_attached_file($image->ID); + + if (false !== $fullsizepath || file_exists($fullsizepath)) { + $metadata = wp_generate_attachment_metadata($image->ID, $fullsizepath); + + if (!is_wp_error($metadata) && !empty($metadata)) { + wp_update_attachment_metadata($image->ID, $metadata); + } + } + } + } + } + do_action('jigoshop_update_options'); echo '

    '.__('Your settings have been saved.','jigoshop').'

    '; @@ -197,7 +242,8 @@ function jigoshop_admin_fields($options) { case 'text': ?> : -
    +
    '); + jQuery('table.jigoshop_attributes tbody').append(' '); } else { diff --git a/classes/jigoshop.class.php b/classes/jigoshop.class.php index 93f38b54..ef057e75 100644 --- a/classes/jigoshop.class.php +++ b/classes/jigoshop.class.php @@ -34,7 +34,7 @@ class jigoshop { const SHOP_THUMBNAIL_H = '90'; const SHOP_LARGE_W = '300'; const SHOP_LARGE_H = '300'; - + /** constructor */ function __construct () { global $wpdb; @@ -103,7 +103,7 @@ public static function get_var($var) { endswitch; return apply_filters( 'jigoshop_get_var_'.$var, $return ); } - + /** * Add an error * diff --git a/gateways/bank_transfer.php b/gateways/bank_transfer.php new file mode 100644 index 00000000..9a069c29 --- /dev/null +++ b/gateways/bank_transfer.php @@ -0,0 +1,188 @@ +id = 'bank_transfer'; + $this->icon = ''; + $this->has_fields = false; + + $this->enabled = get_option('jigoshop_bank_transfer_enabled'); + $this->title = get_option('jigoshop_bank_transfer_title'); + $this->description = get_option('jigoshop_bank_transfer_description'); + $this->bank_name = get_option('jigoshop_bank_transfer_bank_name'); + $this->acc_number = get_option('jigoshop_bank_transfer_acc_number'); + $this->sort_code = get_option('jigoshop_bank_transfer_sort_code'); + $this->iban = get_option('jigoshop_bank_transfer_iban'); + $this->bic = get_option('jigoshop_bank_transfer_bic'); + $this->additional = get_option('jigoshop_bank_transfer_additional'); + + add_action('jigoshop_update_options', array(&$this, 'process_admin_options')); + add_option('jigoshop_bank_transfer_enabled', 'yes'); + add_option('jigoshop_bank_transfer_title', __('Bank Transfer', 'jigoshop') ); + add_option('jigoshop_bank_transfer_description', __('Please use the details below to transfer the payment for your order, once payment is received your order will be processed.', 'jigoshop')); + + add_action('thankyou_bank_transfer', array(&$this, 'thankyou_page')); + } + + /** + * Admin Panel Options - Area to set your bank account details and additional information if necessary. + **/ + public function admin_options() { + ?> + + + : + + + + + + : + + + + + + : + + + + + + : + + + + + + : + + + + + + : + + + + + + : + + + + + + : + + + + + + : + + + + + bank_name) $bank_info .= '' . wptexturize($this->bank_name) . '
    '; + if ($this->acc_number) $bank_info .= wptexturize($this->acc_number) . '
    '; + if ($this->sort_code) $bank_info .= wptexturize($this->sort_code) . '
    '; + if ($this->iban) $bank_info .= wptexturize($this->iban) . '
    '; + if ($this->bic) $bank_info .= wptexturize($this->bic) . '
    '; + + if ($this->description) echo wpautop(wptexturize($this->description . __(' These details are also be shown on the confirmation page.'))); + if ($bank_info) echo wpautop($bank_info); + if ($this->additional) echo wpautop(wptexturize($this->additional)); + } + + function thankyou_page() { + $bank_info; + if ($this->bank_name) $bank_info .= '' . wptexturize($this->bank_name) . '
    '; + if ($this->acc_number) $bank_info .= wptexturize($this->acc_number) . '
    '; + if ($this->sort_code) $bank_info .= wptexturize($this->sort_code) . '
    '; + if ($this->iban) $bank_info .= wptexturize($this->iban) . '
    '; + if ($this->bic) $bank_info .= wptexturize($this->bic) . '
    '; + + if ($this->description) echo wpautop(wptexturize($this->description)); + if ($bank_info) echo wpautop($bank_info); + if ($this->additional) echo wpautop(wptexturize($this->additional)); + } + + /** + * Admin Panel Options Processing - save options to the database. + **/ + public function process_admin_options() { + + (isset($_POST['jigoshop_bank_transfer_enabled'])) ? update_option('jigoshop_bank_transfer_enabled', jigowatt_clean($_POST['jigoshop_bank_transfer_enabled'])) : @delete_option('jigoshop_bank_transfer_enabled'); + + (isset($_POST['jigoshop_bank_transfer_title'])) ? update_option('jigoshop_bank_transfer_title', jigowatt_clean($_POST['jigoshop_bank_transfer_title'])) : @delete_option('jigoshop_bank_transfer_title'); + + (isset($_POST['jigoshop_bank_transfer_description'])) ? update_option('jigoshop_bank_transfer_description', jigowatt_clean($_POST['jigoshop_bank_transfer_description'])) : @delete_option('jigoshop_bank_transfer_description'); + + (isset($_POST['jigoshop_bank_transfer_bank_name'])) ? update_option('jigoshop_bank_transfer_bank_name', jigowatt_clean($_POST['jigoshop_bank_transfer_bank_name'])) : @delete_option('jigoshop_bank_transfer_bank_name'); + + (isset($_POST['jigoshop_bank_transfer_acc_number'])) ? update_option('jigoshop_bank_transfer_acc_number', jigowatt_clean($_POST['jigoshop_bank_transfer_acc_number'])) : @delete_option('jigoshop_bank_transfer_acc_number'); + + (isset($_POST['jigoshop_bank_transfer_sort_code'])) ? update_option('jigoshop_bank_transfer_sort_code', jigowatt_clean($_POST['jigoshop_bank_transfer_sort_code'])) : @delete_option('jigoshop_bank_transfer_sort_code'); + + (isset($_POST['jigoshop_bank_transfer_iban'])) ? update_option('jigoshop_bank_transfer_iban', jigowatt_clean($_POST['jigoshop_bank_transfer_iban'])) : @delete_option('jigoshop_bank_transfer_iban'); + + (isset($_POST['jigoshop_bank_transfer_bic'])) ? update_option('jigoshop_bank_transfer_bic', jigowatt_clean($_POST['jigoshop_bank_transfer_bic'])) : @delete_option('jigoshop_bank_transfer_bic'); + + (isset($_POST['jigoshop_bank_transfer_additional'])) ? update_option('jigoshop_bank_transfer_additional', jigowatt_clean($_POST['jigoshop_bank_transfer_additional'])) : @delete_option('jigoshop_bank_transfer_additional'); + + } + + /** + * Process the payment and return the result + **/ + function process_payment( $order_id ) { + + $order = &new jigoshop_order( $order_id ); + $order->update_status('on-hold', __('Awaiting Bank Transfer', 'jigoshop')); + jigoshop_cart::empty_cart(); + + return array( + 'result' => 'success', + 'redirect' => add_query_arg('key', $order->order_key, add_query_arg('order', $order_id, get_permalink(get_option('jigoshop_thanks_page_id')))) + ); + + } + +} + +/** + * Add the gateway to Jigoshop + **/ +function add_bank_transfer_gateway( $methods ) { + $methods[] = 'jigoshop_bank_transfer'; return $methods; +} + +add_filter('jigoshop_payment_gateways', 'add_bank_transfer_gateway' ); \ No newline at end of file diff --git a/jigoshop.php b/jigoshop.php index 19ff6158..b5f82151 100644 --- a/jigoshop.php +++ b/jigoshop.php @@ -3,7 +3,7 @@ Plugin Name: Jigoshop - WordPress eCommerce Plugin URI: http://jigoshop.com Description: An eCommerce plugin for WordPress. -Version: 0.9.8.1 +Version: 0.9.9 Author: Jigowatt Author URI: http://jigowatt.co.uk Requires at least: 3.1 @@ -28,7 +28,7 @@ @session_start(); -if (!defined("JIGOSHOP_VERSION")) define("JIGOSHOP_VERSION", "0.9.8.1"); +if (!defined("JIGOSHOP_VERSION")) define("JIGOSHOP_VERSION", "0.9.9"); if (!defined("PHP_EOL")) define("PHP_EOL", "\r\n"); load_plugin_textdomain('jigoshop', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/'); @@ -221,15 +221,19 @@ function jigoshop_import_start() { ### Functions ######################################################### +function jigoshop_set_image_sizes(){ + add_image_size( 'shop_tiny', get_option('jigoshop_shop_tiny_w'), get_option('jigoshop_shop_tiny_h'), 'true' ); + add_image_size( 'shop_thumbnail', get_option('jigoshop_shop_thumbnail_w'), get_option('jigoshop_shop_thumbnail_h'), 'true' ); + add_image_size( 'shop_small', get_option('jigoshop_shop_small_w'), get_option('jigoshop_shop_small_h'), 'true' ); + add_image_size( 'shop_large', get_option('jigoshop_shop_large_w'), get_option('jigoshop_shop_large_h'), 'true' ); +} + function jigoshop_init() { jigoshop_post_type(); // Image sizes - add_image_size( 'shop_tiny', jigoshop::get_var('shop_tiny_w'), jigoshop::get_var('shop_tiny_h'), 'true' ); - add_image_size( 'shop_thumbnail', jigoshop::get_var('shop_thumbnail_w'), jigoshop::get_var('shop_thumbnail_h'), 'true' ); - add_image_size( 'shop_small', jigoshop::get_var('shop_small_w'), jigoshop::get_var('shop_small_h'), 'true' ); - add_image_size( 'shop_large', jigoshop::get_var('shop_large_w'), jigoshop::get_var('shop_large_h'), 'true' ); + jigoshop_set_image_sizes(); // Include template functions here so they are pluggable by themes include_once( 'jigoshop_template_functions.php' ); diff --git a/jigoshop_taxonomy.php b/jigoshop_taxonomy.php index fd410934..73818840 100644 --- a/jigoshop_taxonomy.php +++ b/jigoshop_taxonomy.php @@ -19,7 +19,7 @@ * Custom Post Types **/ function jigoshop_post_type() { -do_action('lox'); + global $wpdb; $shop_page_id = get_option('jigoshop_shop_page_id'); diff --git a/jigoshop_template_functions.php b/jigoshop_template_functions.php index c49f3ef2..32268af5 100644 --- a/jigoshop_template_functions.php +++ b/jigoshop_template_functions.php @@ -404,8 +404,8 @@ function jigoshop_get_product_thumbnail( $size = 'shop_small', $placeholder_widt global $post; - if (!$placeholder_width) $placeholder_width = jigoshop::get_var('shop_small_w'); - if (!$placeholder_height) $placeholder_height = jigoshop::get_var('shop_small_h'); + if (!$placeholder_width) $placeholder_width = get_option('jigoshop_shop_small_w'); + if (!$placeholder_height) $placeholder_height = get_option('jigoshop_shop_small_h'); if ( has_post_thumbnail() ) return get_the_post_thumbnail($post->ID, $size); else return 'Placeholder'; diff --git a/languages/jigoshop-nl_NL.mo b/languages/jigoshop-nl_NL.mo new file mode 100644 index 0000000000000000000000000000000000000000..2efaa1fe8011289d1cec4ef1f2627700c7b9a228 GIT binary patch literal 75239 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

    kgWJJJ6U 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

    (2@Zw80hA=qyUNJ5TTY^cdnJ#Td$W4w=!$h45h> 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 DxI=f9 literal 0 HcmV?d00001 diff --git a/languages/jigoshop-nl_NL.po b/languages/jigoshop-nl_NL.po new file mode 100644 index 00000000..be093e55 --- /dev/null +++ b/languages/jigoshop-nl_NL.po @@ -0,0 +1,4992 @@ +msgid "" +msgstr "" +"Project-Id-Version: Jigoshop\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-07-01 12:21+1100\n" +"PO-Revision-Date: \n" +"Last-Translator: Arno Melotte \n" +"Language-Team: Arno Melotte \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Poedit-SourceCharset: utf-8\n" +"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n" +"X-Poedit-Basepath: ..\n" +"X-Textdomain-Support: yes\n" +"X-Poedit-Language: Netherlands\n" +"X-Poedit-Country: NETHERLANDS\n" +"X-Poedit-SearchPath-0: .\n" + +# @ jigoshop +#: jigoshop_taxonomy.php:25 +msgid "Product Categories" +msgstr "Productcategorieën" + +# @ jigoshop +#: jigoshop_taxonomy.php:26 +msgid "Product Category" +msgstr "Productcategorie" + +# @ jigoshop +#: jigoshop_taxonomy.php:27 +msgid "Search Product Categories" +msgstr "Zoek productcategorieën" + +# @ jigoshop +#: jigoshop_taxonomy.php:28 +msgid "All Product Categories" +msgstr "Alle productcategorieën" + +# @ jigoshop +#: jigoshop_taxonomy.php:29 +msgid "Parent Product Category" +msgstr "Bovenliggende productcategorie" + +# @ jigoshop +#: jigoshop_taxonomy.php:30 +msgid "Parent Product Category:" +msgstr "Bovenliggende productcategorie:" + +# @ jigoshop +#: jigoshop_taxonomy.php:31 +msgid "Edit Product Category" +msgstr "Wijzig productcategorie" + +# @ jigoshop +#: jigoshop_taxonomy.php:32 +msgid "Update Product Category" +msgstr "Update productcategorie" + +# @ jigoshop +#: jigoshop_taxonomy.php:33 +msgid "Add New Product Category" +msgstr "Voeg nieuwe productcategorie toe" + +# @ jigoshop +#: jigoshop_taxonomy.php:34 +msgid "New Product Category Name" +msgstr "Nieuwe productcategorie naam" + +#: jigoshop_taxonomy.php:38 +msgctxt "slug" +msgid "product-category" +msgstr "productcategorie" + +# @ jigoshop +# @ default +#: jigoshop_taxonomy.php:47 +msgid "Product Tags" +msgstr "Productlabels" + +# @ jigoshop +#: jigoshop_taxonomy.php:48 +msgid "Product Tag" +msgstr "Productlabel" + +# @ jigoshop +#: jigoshop_taxonomy.php:49 +msgid "Search Product Tags" +msgstr "Zoek productlabels" + +# @ jigoshop +#: jigoshop_taxonomy.php:50 +msgid "All Product Tags" +msgstr "Alle productlabels" + +# @ jigoshop +#: jigoshop_taxonomy.php:51 +msgid "Parent Product Tag" +msgstr "Bovenliggend productlabel" + +# @ jigoshop +#: jigoshop_taxonomy.php:52 +msgid "Parent Product Tag:" +msgstr "Bovenliggend productlabel:" + +# @ jigoshop +#: jigoshop_taxonomy.php:53 +msgid "Edit Product Tag" +msgstr "Wijzig productlabel" + +# @ jigoshop +#: jigoshop_taxonomy.php:54 +msgid "Update Product Tag" +msgstr "Update productlabel" + +# @ jigoshop +#: jigoshop_taxonomy.php:55 +msgid "Add New Product Tag" +msgstr "Voeg nieuw productlabel toe" + +# @ jigoshop +#: jigoshop_taxonomy.php:56 +msgid "New Product Tag Name" +msgstr "Nieuw product labelnaam" + +#: jigoshop_taxonomy.php:60 +msgctxt "slug" +msgid "product-tag" +msgstr "productlabel" + +# @ jigoshop +#: jigoshop_taxonomy.php:79 +#: jigoshop.php:173 +msgid "Search " +msgstr "Zoek" + +# @ jigoshop +#: jigoshop_taxonomy.php:80 +#: jigoshop.php:174 +msgid "All " +msgstr "Alle" + +# @ jigoshop +#: jigoshop_taxonomy.php:81 +#: jigoshop_taxonomy.php:82 +#: jigoshop.php:175 +#: jigoshop.php:176 +msgid "Parent " +msgstr "Bovenliggend" + +# @ jigoshop +#: jigoshop_taxonomy.php:83 +#: jigoshop.php:177 +msgid "Edit " +msgstr "Wijzig" + +# @ jigoshop +#: jigoshop_taxonomy.php:84 +#: jigoshop.php:178 +msgid "Update " +msgstr "Update" + +# @ jigoshop +#: jigoshop_taxonomy.php:85 +#: jigoshop.php:179 +msgid "Add New " +msgstr "Nieuw toevoegen" + +# @ jigoshop +#: jigoshop_taxonomy.php:86 +#: jigoshop.php:180 +msgid "New " +msgstr "Nieuw" + +# @ jigoshop +#: jigoshop_taxonomy.php:102 +msgid "Products" +msgstr "Producten" + +# @ jigoshop +#: jigoshop_taxonomy.php:103 +msgid "Product" +msgstr "Product" + +# @ jigoshop +#: jigoshop_taxonomy.php:104 +msgid "Add Product" +msgstr "Product toevoegen" + +# @ jigoshop +#: jigoshop_taxonomy.php:105 +msgid "Add New Product" +msgstr "Nieuw product toevoegen" + +# @ jigoshop +#: jigoshop_taxonomy.php:106 +#: jigoshop_taxonomy.php:149 +msgid "Edit" +msgstr "Wijzig" + +# @ jigoshop +#: jigoshop_taxonomy.php:107 +msgid "Edit Product" +msgstr "Wijzig product" + +# @ jigoshop +#: jigoshop_taxonomy.php:108 +msgid "New Product" +msgstr "Nieuw product" + +# @ jigoshop +#: jigoshop_taxonomy.php:109 +#: jigoshop_taxonomy.php:110 +msgid "View Product" +msgstr "Bekijk product" + +# @ jigoshop +#: jigoshop_taxonomy.php:111 +msgid "Search Products" +msgstr "Zoek producten" + +# @ jigoshop +#: jigoshop_taxonomy.php:112 +msgid "No Products found" +msgstr "Geen producten gevonden" + +# @ jigoshop +#: jigoshop_taxonomy.php:113 +msgid "No Products found in trash" +msgstr "Geen producten gevonden in de prullenmand" + +# @ jigoshop +#: jigoshop_taxonomy.php:114 +msgid "Parent Product" +msgstr "Bovenliggend product" + +# @ jigoshop +#: jigoshop_taxonomy.php:116 +msgid "This is where you can add new products to your store." +msgstr "Hier kan je nieuwe producten aan je winkel toevoegen." + +# @ jigoshop +#: jigoshop_taxonomy.php:145 +msgid "Orders" +msgstr "Bestellingen" + +# @ jigoshop +#: jigoshop_taxonomy.php:146 +msgid "Order" +msgstr "Bestelling" + +# @ jigoshop +#: jigoshop_taxonomy.php:147 +msgid "Add Order" +msgstr "Bestelling toevoegen" + +# @ jigoshop +#: jigoshop_taxonomy.php:148 +msgid "Add New Order" +msgstr "Nieuwe bestelling toevoegen" + +# @ jigoshop +#: jigoshop_taxonomy.php:150 +msgid "Edit Order" +msgstr "Wijzig bestelling" + +# @ jigoshop +#: jigoshop_taxonomy.php:151 +msgid "New Order" +msgstr "Nieuwe bestelling" + +# @ jigoshop +#: jigoshop_taxonomy.php:152 +#: jigoshop_taxonomy.php:153 +msgid "View Order" +msgstr "Bekijk bestelling" + +# @ jigoshop +#: jigoshop_taxonomy.php:154 +msgid "Search Orders" +msgstr "Zoek bestellingen" + +# @ jigoshop +#: jigoshop_taxonomy.php:155 +msgid "No Orders found" +msgstr "Geen bestellingen gevonden" + +# @ jigoshop +#: jigoshop_taxonomy.php:156 +msgid "No Orders found in trash" +msgstr "Geen bestellingen gevonden in de prullenmand" + +# @ jigoshop +#: jigoshop_taxonomy.php:157 +msgid "Parent Orders" +msgstr "Bovenliggende bestellingen" + +# @ jigoshop +#: jigoshop_taxonomy.php:159 +msgid "This is where store orders are stored." +msgstr "Hier worden bestellingen opgeslagen." + +# @ jigoshop +#: jigoshop_taxonomy.php:181 +msgid "Order statuses" +msgstr "Bestelstatussen" + +# @ jigoshop +#: jigoshop_taxonomy.php:182 +msgid "Order status" +msgstr "Bestelstatus" + +# @ jigoshop +#: jigoshop_taxonomy.php:183 +msgid "Search Order statuses" +msgstr "Zoek bestelstatussen" + +# @ jigoshop +#: jigoshop_taxonomy.php:184 +msgid "All Order statuses" +msgstr "Alle bestelstatussen" + +# @ jigoshop +#: jigoshop_taxonomy.php:185 +msgid "Parent Order status" +msgstr "Bovenliggende bestelstatus" + +# @ jigoshop +#: jigoshop_taxonomy.php:186 +msgid "Parent Order status:" +msgstr "Bovenliggende bestelstatus:" + +# @ jigoshop +#: jigoshop_taxonomy.php:187 +msgid "Edit Order status" +msgstr "Wijzig bestelstatus" + +# @ jigoshop +#: jigoshop_taxonomy.php:188 +msgid "Update Order status" +msgstr "Update bestelstatus" + +# @ jigoshop +#: jigoshop_taxonomy.php:189 +msgid "Add New Order status" +msgstr "Voeg nieuwe bestelstatus toe" + +# @ jigoshop +#: jigoshop_taxonomy.php:190 +msgid "New Order status Name" +msgstr "Nieuwe bestelstatus naam" + +#: jigoshop_template_functions.php:25 +msgid "Sale!" +msgstr "Koop!" + +# @ jigoshop +#: jigoshop_template_functions.php:43 +#: jigoshop_template_functions.php:213 +#: jigoshop_template_functions.php:228 +#: jigoshop_template_functions.php:256 +msgid "Add to cart" +msgstr "Toevoegen aan winkelwagen" + +# @ jigoshop +#: jigoshop_template_functions.php:284 +msgid "Next " +msgstr "Volgende " + +# @ jigoshop +#: jigoshop_template_functions.php:285 +msgid " Previous" +msgstr " Vorige" + +# @ jigoshop +#: jigoshop_template_functions.php:299 +msgid "Description" +msgstr "Omschrijving" + +# @ jigoshop +#: jigoshop_template_functions.php:308 +#: jigoshop_template_functions.php:335 +msgid "Additional Information" +msgstr "Extra informatie" + +# @ jigoshop +#: jigoshop_template_functions.php:315 +msgid "Reviews" +msgstr "Beoordelingen" + +# @ jigoshop +#: jigoshop_template_functions.php:326 +msgid "Product Description" +msgstr "Productomschrijving" + +# @ jigoshop +#: jigoshop_template_functions.php:387 +msgid "Related Products" +msgstr "Verwante producten" + +# @ jigoshop +#: jigoshop_template_functions.php:413 +msgid "Calculate Shipping" +msgstr "Bereken verzendkosten" + +# @ jigoshop +#: jigoshop_template_functions.php:417 +msgid "Select a country…" +msgstr "Selecteer een land…" + +# @ jigoshop +#: jigoshop_template_functions.php:438 +#: assets/js/script.js.php:108 +msgid "Select a state…" +msgstr "Selecteer een staat…" + +# @ jigoshop +#: jigoshop_template_functions.php:450 +#: assets/js/script.js.php:114 +msgid "state" +msgstr "Staat" + +# @ jigoshop +#: jigoshop_template_functions.php:456 +msgid "Postcode/Zip" +msgstr "Postcode / Zip" + +# @ jigoshop +#: jigoshop_template_functions.php:456 +msgid "Postcode" +msgstr "Postcode" + +# @ jigoshop +#: jigoshop_template_functions.php:459 +msgid "Update Totals" +msgstr "Update totaal" + +# @ jigoshop +#: jigoshop_template_functions.php:479 +msgid "Username" +msgstr "Gebruikersnaam" + +# @ jigoshop +#: jigoshop_template_functions.php:483 +msgid "Password" +msgstr "Wachtwoord" + +# @ jigoshop +#: jigoshop_template_functions.php:490 +msgid "Login" +msgstr "Aanmelden" + +#: jigoshop_template_functions.php:491 +msgid "Lost Password?" +msgstr "Wachtwoord vergeten?" + +# @ jigoshop +#: jigoshop_template_functions.php:506 +msgid "Already registered?" +msgstr "Reeds geregistreerd?" + +# @ jigoshop +#: jigoshop_template_functions.php:506 +msgid "Click here to login" +msgstr "Klik hier om je aan te melden" + +#: jigoshop_template_functions.php:520 +msgctxt "breadcrumb" +msgid "Home" +msgstr "Home" + +# @ jigoshop +#: jigoshop_template_functions.php:573 +msgid "Products tagged “" +msgstr "Producten gelabeld “" + +# @ jigoshop +#: jigoshop_template_functions.php:596 +#: jigoshop_template_functions.php:681 +msgid "Search results for “" +msgstr "Zoekresultaten voor “" + +# @ jigoshop +#: jigoshop_template_functions.php:645 +msgid "Error 404" +msgstr "Error 404" + +# @ jigoshop +#: jigoshop_template_functions.php:685 +msgid "Posts tagged “" +msgstr "Berichten met label “" + +# @ jigoshop +#: jigoshop_template_functions.php:690 +msgid "Author: " +msgstr "Auteur:" + +# @ jigoshop +#: jigoshop_template_functions.php:696 +msgid "Page" +msgstr "Pagina" + +# @ jigoshop +#: jigoshop_actions.php:33 +#: jigoshop_actions.php:45 +#, php-format +msgid "View Cart → Product successfully added to your basket." +msgstr "Bekijk winkelwagen → Het product is succesvol toegevoegd aan uw winkelwagen." + +#: jigoshop_actions.php:51 +msgid "Please choose a quantity…" +msgstr "Gelieve een aantal te kiezen…" + +# @ jigoshop +#: jigoshop_actions.php:57 +msgid "Please choose a product…" +msgstr "Gelieve een product te kiezen…" + +# @ jigoshop +#: jigoshop_actions.php:145 +msgid "Username is required." +msgstr "Gebruikersnaam is vereist." + +# @ jigoshop +#: jigoshop_actions.php:146 +msgid "Password is required." +msgstr "Wachtwoord is vereist." + +# @ jigoshop +#: jigoshop_actions.php:190 +msgid "Order cancelled by customer." +msgstr "Bestelling geannuleerd door de klant." + +# @ jigoshop +#: jigoshop_actions.php:193 +msgid "Your order was cancelled." +msgstr "Uw bestelling is geannuleerd." + +# @ jigoshop +#: jigoshop_actions.php:197 +msgid "Your order is no longer pending and could not be cancelled. Please contact us if you need assistance." +msgstr "Je bestelling is niet langer in behandeling en kon niet worden geannuleerd. Gelieve ons te contacteren als u hulp nodig heeft." + +# @ jigoshop +#: jigoshop_actions.php:201 +msgid "Invalid order." +msgstr "Ongeldige bestelling." + +# @ jigoshop +#: jigoshop_actions.php:238 +#, php-format +msgid "Sorry, you have reached your download limit for this file. Go to homepage →" +msgstr "Helaas, je hebt je download limiet voor dit bestand bereikt. Ga naar de startpagina →" + +# @ jigoshop +#: jigoshop_actions.php:271 +#: jigoshop_actions.php:299 +#, php-format +msgid "File not found. Go to homepage →" +msgstr "Bestand niet gevonden. Ga naar de startpagina →" + +# @ jigoshop +#: jigoshop_emails.php:22 +#, php-format +msgid "[%s] New Customer Order (# %s)" +msgstr "[%s] Nieuwe klant bestelling (# %s)" + +# @ jigoshop +#: jigoshop_emails.php:24 +msgid "You have received an order from " +msgstr "Je hebt een bestelling ontvangen van" + +# @ jigoshop +#: jigoshop_emails.php:24 +msgid ". Their order is as follows:" +msgstr ". Hun bestelling is:" + +# @ jigoshop +#: jigoshop_emails.php:27 +#: jigoshop_emails.php:88 +#: jigoshop_emails.php:148 +#: jigoshop_emails.php:206 +msgid "ORDER #: " +msgstr "BESTELLING#:" + +# @ jigoshop +#: jigoshop_emails.php:33 +#: jigoshop_emails.php:94 +#: jigoshop_emails.php:154 +#: jigoshop_emails.php:212 +msgid "Note:" +msgstr "Opmerking:" + +# @ jigoshop +#: jigoshop_emails.php:36 +#: jigoshop_emails.php:97 +#: jigoshop_emails.php:157 +#: jigoshop_emails.php:215 +msgid "Subtotal:" +msgstr "Subtotaal:" + +# @ jigoshop +#: jigoshop_emails.php:37 +#: jigoshop_emails.php:98 +#: jigoshop_emails.php:158 +#: jigoshop_emails.php:216 +msgid "Shipping:" +msgstr "Verzendkosten:" + +# @ jigoshop +#: jigoshop_emails.php:38 +#: jigoshop_emails.php:99 +#: jigoshop_emails.php:159 +#: jigoshop_emails.php:217 +msgid "Discount:" +msgstr "Korting:" + +# @ jigoshop +#: jigoshop_emails.php:39 +#: jigoshop_emails.php:100 +#: jigoshop_emails.php:160 +#: jigoshop_emails.php:218 +msgid "Tax:" +msgstr "BTW:" + +# @ jigoshop +#: jigoshop_emails.php:40 +#: jigoshop_emails.php:101 +#: jigoshop_emails.php:161 +#: jigoshop_emails.php:219 +msgid "Total:" +msgstr "Totaal:" + +# @ jigoshop +#: jigoshop_emails.php:43 +#: jigoshop_emails.php:104 +#: jigoshop_emails.php:164 +msgid "CUSTOMER DETAILS" +msgstr "KLANTGEGEVENS" + +# @ jigoshop +#: jigoshop_emails.php:46 +#: jigoshop_emails.php:107 +#: jigoshop_emails.php:167 +msgid "Email:" +msgstr "E-mail:" + +# @ jigoshop +#: jigoshop_emails.php:47 +#: jigoshop_emails.php:108 +#: jigoshop_emails.php:168 +msgid "Tel:" +msgstr "Tel:" + +# @ jigoshop +#: jigoshop_emails.php:52 +#: jigoshop_emails.php:113 +#: jigoshop_emails.php:173 +msgid "BILLING ADDRESS" +msgstr "FACTUURADRES" + +# @ jigoshop +#: jigoshop_emails.php:60 +#: jigoshop_emails.php:121 +#: jigoshop_emails.php:181 +msgid "SHIPPING ADDRESS" +msgstr "AFLEVERADRES" + +# @ jigoshop +#: jigoshop_emails.php:83 +msgid "Order Received" +msgstr "Bestelling ontvangen" + +# @ jigoshop +#: jigoshop_emails.php:85 +msgid "Thank you, we are now processing your order. Your order's details are below:" +msgstr "Dank u, we verwerken nu je bestelling. De gegevens van je bestelling staan hieronder:" + +# @ jigoshop +#: jigoshop_emails.php:143 +msgid "Order Complete" +msgstr "Bestelling is voltooid" + +# @ jigoshop +#: jigoshop_emails.php:145 +msgid "Your order is complete. Your order's details are below:" +msgstr "Je bestelling is voltooid. De gegevens van je bestelling staan hieronder:" + +# @ jigoshop +#: jigoshop_emails.php:201 +msgid "Pay for Order" +msgstr "Betaal voor bestelling" + +# @ jigoshop +#: jigoshop_emails.php:203 +#, php-format +msgid "An order has been created for you on “%s”. To pay for this order please use the following link: %s" +msgstr "Een bestelling is geplaatst voor u op \"% s\". Om te betalen voor deze bestelling gebruikt u de volgende link:% s" + +# @ jigoshop +#: jigoshop_emails.php:232 +msgid "Product low in stock" +msgstr "Weinig voorraad van dit product" + +# @ jigoshop +#: jigoshop_emails.php:233 +msgid "is low in stock." +msgstr "is laag in voorraad." + +# @ jigoshop +#: jigoshop_emails.php:244 +msgid "Product out of stock" +msgstr "Product niet in voorraad" + +# @ jigoshop +#: jigoshop_emails.php:245 +msgid "is out of stock." +msgstr "is niet in voorraad." + +# @ jigoshop +#: jigoshop_emails.php:256 +msgid "Product Backorder" +msgstr "Productnabestelling" + +# @ jigoshop +#: jigoshop_emails.php:257 +msgid " units of #" +msgstr "stuks van #" + +# @ jigoshop +#: jigoshop_emails.php:257 +msgid "have been backordered." +msgstr "is nabesteld." + +#: jigoshop.php:293 +msgid "This is a demo store for testing purposes — no orders shall be fulfilled." +msgstr "Dit is een demo voor testdoeleinden — bestellingen worden niet vervuld." + +# @ jigoshop +#: jigoshop.php:413 +msgid " (ex. tax)" +msgstr " (ex. btw)" + +#: jigoshop.php:497 +msgid "You have taken too long. Please go back and refresh the page." +msgstr "U heeft er te lang over gedaan. Gelieve terug te gaan en de pagina te vernieuwen." + +# @ jigowatt +#: jigoshop.php:500 +msgid "Please rate the product." +msgstr "Gelieve het product te beoordelen." + +# @ jigoshop +#: jigoshop.php:519 +msgid "out of 5" +msgstr "van 5" + +# @ jigoshop +#: jigoshop.php:522 +msgid "Your comment is awaiting approval" +msgstr "Je opmerking wacht op goedkeuring" + +# @ jigoshop +#: jigoshop.php:525 +msgid "Rating by" +msgstr "Beoordeling door" + +# @ jigoshop +#: jigoshop.php:525 +msgid "on" +msgstr "op" + +# @ jigoshop +#: shipping/free_shipping.php:27 +msgid "Free Shipping" +msgstr "Gratis verzending" + +# @ jigoshop +#: shipping/free_shipping.php:29 +msgid "Enable Free Shipping" +msgstr "Activeer gratis verzending" + +# @ jigoshop +#: shipping/free_shipping.php:32 +#: shipping/flat_rate.php:77 +msgid "Yes" +msgstr "Ja" + +# @ jigoshop +#: shipping/free_shipping.php:33 +#: shipping/flat_rate.php:78 +msgid "No" +msgstr "Nee" + +# @ jigoshop +#: shipping/free_shipping.php:38 +#: shipping/flat_rate.php:83 +msgid "This controls the title which the user sees during checkout." +msgstr "Dit regelt de titel die de gebruiker ziet bij het afrekenen." + +# @ jigoshop +#: shipping/free_shipping.php:38 +#: shipping/flat_rate.php:83 +msgid "Method Title" +msgstr "Wijze titel" + +# @ jigoshop +#: shipping/free_shipping.php:44 +msgid "Users will need to spend this amount to get free shipping. Leave blank to disable." +msgstr "Gebruikers moeten dit bedrag besteden om gratis verzending te krijgen. Laat dit veld leeg om het uit te schakelen." + +# @ jigoshop +#: shipping/free_shipping.php:44 +msgid "Minimum Order Amount" +msgstr "Minimum bestelbedrag" + +# @ jigoshop +#: shipping/free_shipping.php:50 +#: shipping/flat_rate.php:120 +msgid "Method available for" +msgstr "Beschikbare methode voor" + +# @ jigoshop +#: shipping/free_shipping.php:53 +#: shipping/flat_rate.php:123 +msgid "All allowed countries" +msgstr "Alle landen toegestaan" + +# @ jigoshop +#: shipping/free_shipping.php:54 +#: shipping/free_shipping.php:62 +#: shipping/flat_rate.php:124 +#: shipping/flat_rate.php:133 +msgid "Specific Countries" +msgstr "Specifieke landen" + +# @ jigoshop +#: shipping/flat_rate.php:72 +msgid "Flat Rates" +msgstr "Vaste tarieven" + +# @ jigoshop +#: shipping/flat_rate.php:72 +msgid "Flat rates let you define a standard rate per item, or per order." +msgstr "Vaste tarieven laat u een standaard tarief bepalen per item of per bestelling." + +# @ jigoshop +#: shipping/flat_rate.php:74 +msgid "Enable Flat Rate" +msgstr "Vast tarief uitschakelen" + +# @ jigoshop +#: shipping/flat_rate.php:89 +msgid "Type" +msgstr "Type" + +# @ jigoshop +#: shipping/flat_rate.php:92 +msgid "Per Order" +msgstr "Per bestelling" + +# @ jigoshop +#: shipping/flat_rate.php:93 +msgid "Per Item" +msgstr "Per item" + +# @ jigoshop +#: shipping/flat_rate.php:99 +msgid "Tax Status" +msgstr "Belastingstatus" + +#: shipping/flat_rate.php:102 +msgid "Taxable" +msgstr "Belastbaar" + +#: shipping/flat_rate.php:103 +msgid "None" +msgstr "Geen" + +# @ jigoshop +#: shipping/flat_rate.php:108 +msgid "Cost excluding tax. Enter an amount, e.g. 2.50." +msgstr "Kosten exclusief belastingen. Voer een bedrag in, bijvoorbeeld 2,50." + +# @ jigoshop +#: shipping/flat_rate.php:108 +msgid "Cost" +msgstr "Kosten" + +# @ jigoshop +#: shipping/flat_rate.php:114 +msgid "Fee excluding tax. Enter an amount, e.g. 2.50, or a percentage, e.g. 5%. Leave blank to disable." +msgstr "Kosten exclusief belastingen. Voer een bedrag in, bijvoorbeeld 2,50, of een percentage, bijvoorbeeld 5%. Laat dit veld leeg om het uit te schakelen." + +# @ jigoshop +#: shipping/flat_rate.php:114 +msgid "Handling Fee" +msgstr "Verwerkingskosten" + +# @ jigoshop +#: admin/jigoshop-admin-dashboard.php:25 +msgid "Jigoshop Dashboard" +msgstr "Jigoshop Dashboard" + +# @ jigoshop +#: admin/jigoshop-admin-dashboard.php:33 +msgid "Right Now" +msgstr "Op dit moment" + +# @ jigoshop +#: admin/jigoshop-admin-dashboard.php:37 +msgid "Shop Content" +msgstr "Winkelinhoud" + +# @ jigoshop +#: admin/jigoshop-admin-dashboard.php:64 +msgid "Attribute taxonomies" +msgstr "Kenmerk taxonomieën" + +# @ jigoshop +#: admin/jigoshop-admin-dashboard.php:76 +msgid "Pending" +msgstr "Lopend" + +# @ jigoshop +#: admin/jigoshop-admin-dashboard.php:80 +msgid "On-Hold" +msgstr "In wacht" + +# @ jigoshop +#: admin/jigoshop-admin-dashboard.php:84 +msgid "Processing" +msgstr "Verwerking" + +# @ jigoshop +#: admin/jigoshop-admin-dashboard.php:88 +msgid "Completed" +msgstr "Voltooid" + +# @ jigoshop +#: admin/jigoshop-admin-dashboard.php:94 +msgid "You are using" +msgstr "Je gebruikt" + +# @ jigoshop +#: admin/jigoshop-admin-dashboard.php:102 +msgid "Recent Orders" +msgstr "Recente bestellingen" + +# @ jigoshop +#: admin/jigoshop-admin-dashboard.php:122 +msgid "item" +msgid_plural "items" +msgstr[0] "item" +msgstr[1] "items" + +# @ jigoshop +#: admin/jigoshop-admin-dashboard.php:122 +msgid "Total: " +msgstr "Totaal:" + +# @ jigoshop +#: admin/jigoshop-admin-dashboard.php:134 +msgid "Stock Report" +msgstr "Voorraad overzicht" + +# @ jigoshop +#: admin/jigoshop-admin-dashboard.php:175 +msgid "No products are low in stock." +msgstr "Alle producten hebben voldoende voorraad." + +# @ jigoshop +#: admin/jigoshop-admin-dashboard.php:178 +msgid "No products are out of stock." +msgstr "Alle producten zijn in voorraad." + +# @ jigoshop +#: admin/jigoshop-admin-dashboard.php:183 +msgid "Low Stock" +msgstr "Lage voorraad" + +# @ jigoshop +#: admin/jigoshop-admin-dashboard.php:191 +msgid "Out of Stock/Backorders" +msgstr "Niet op voorraad / Nabestellingen" + +# @ jigoshop +#: admin/jigoshop-admin-dashboard.php:219 +msgid "Monthly Sales" +msgstr "Maandelijkse verkoopcijfers" + +# @ jigoshop +#: admin/jigoshop-admin-dashboard.php:426 +msgid "Recent Product Reviews" +msgstr "Recente productbeoordelingen" + +# @ jigoshop +#: admin/jigoshop-admin-dashboard.php:459 +msgid "There are no product reviews yet." +msgstr "Er zijn nog geen producten beoordeeld." + +# @ jigoshop +#: admin/jigoshop-admin-dashboard.php:466 +msgid "Latest News" +msgstr "Laatste nieuws" + +# @ jigoshop +#: admin/jigoshop-admin-dashboard.php:493 +#, php-format +msgid "%s ago" +msgstr "%s geleden" + +# @ jigoshop +#: admin/jigoshop-admin-dashboard.php:495 +msgid "F jS Y" +msgstr "F jS Y" + +# @ jigoshop +#: admin/jigoshop-admin-dashboard.php:505 +#: admin/jigoshop-admin-dashboard.php:509 +msgid "No items found." +msgstr "Geen items gevonden." + +# @ jigoshop +#: admin/jigoshop-admin-dashboard.php:518 +msgid "Useful Links" +msgstr "Handige links" + +# @ jigoshop +# @ default +#: admin/jigoshop-admin-dashboard.php:521 +#: admin/jigoshop-admin.php:40 +msgid "Jigoshop" +msgstr "Jigoshop" + +# @ default +#: admin/jigoshop-admin-dashboard.php:521 +msgid "Learn more about the Jigoshop plugin" +msgstr "Leer meer over de Jigoshop plugin" + +#: admin/jigoshop-admin-dashboard.php:522 +msgid "Tour" +msgstr "Rondleiding" + +#: admin/jigoshop-admin-dashboard.php:522 +msgid "Take a tour of the plugin" +msgstr "Neem een rondleiding van de plugin" + +#: admin/jigoshop-admin-dashboard.php:523 +msgid "Documentation" +msgstr "Documentatie" + +#: admin/jigoshop-admin-dashboard.php:523 +msgid "Stuck? Read the plugin's documentation." +msgstr "Zit je vast? Lees documentatie van de plugin." + +#: admin/jigoshop-admin-dashboard.php:524 +msgid "Forums" +msgstr "Forums" + +#: admin/jigoshop-admin-dashboard.php:524 +msgid "Help from the community or our dedicated support team." +msgstr "Hulp van de community of ons gespecialiseerde support team." + +#: admin/jigoshop-admin-dashboard.php:525 +msgid "Jigoshop Extensions" +msgstr "Jigoshop Extensions" + +#: admin/jigoshop-admin-dashboard.php:525 +msgid "Extend Jigoshop with extra plugins and modules." +msgstr "Breid Jigoshop uit met extra plugins en modules." + +#: admin/jigoshop-admin-dashboard.php:526 +msgid "Jigoshop Themes" +msgstr "Jigoshop Thema's" + +#: admin/jigoshop-admin-dashboard.php:526 +msgid "Extend Jigoshop with themes." +msgstr "Breid Jigoshop uit met thema's." + +# @ jigoshop +#: admin/jigoshop-admin-dashboard.php:527 +msgid "@Jigoshop" +msgstr "@Jigoshop" + +# @ default +#: admin/jigoshop-admin-dashboard.php:527 +msgid "Follow us on Twitter." +msgstr "Volg ons op Twitter." + +#: admin/jigoshop-admin-dashboard.php:528 +msgid "Jigoshop on Github" +msgstr "Jigoshop op Github" + +#: admin/jigoshop-admin-dashboard.php:528 +msgid "Help extend Jigoshop." +msgstr "Help Jigoshop uitbreiden." + +#: admin/jigoshop-admin-dashboard.php:529 +msgid "Jigoshop on WordPress.org" +msgstr "Jigoshop op WordPress.org" + +#: admin/jigoshop-admin-dashboard.php:529 +msgid "Leave us a rating!" +msgstr "Laat een beoordeling achter!" + +#: admin/jigoshop-admin-dashboard.php:533 +msgid "Show your support & Help promote Jigoshop!" +msgstr "Toon uw steun & Help Jigoshop te promoten!" + +# @ jigoshop +#: admin/jigoshop-admin-dashboard.php:548 +msgid "Jigoshop is bought to you by…" +msgstr "Jigoshop wordt u aangeboden door…" + +#: admin/jigoshop-install.php:70 +msgctxt "page_slug" +msgid "shop" +msgstr "winkel" + +#: admin/jigoshop-install.php:80 +msgid "Shop" +msgstr "Winkel" + +#: admin/jigoshop-install.php:92 +msgctxt "page_slug" +msgid "cart" +msgstr "winkelwagen" + +# @ default +#: admin/jigoshop-install.php:102 +msgid "Cart" +msgstr "Winkelwagen" + +#: admin/jigoshop-install.php:114 +msgctxt "page_slug" +msgid "checkout" +msgstr "kassa" + +#: admin/jigoshop-install.php:124 +msgid "Checkout" +msgstr "Kassa" + +#: admin/jigoshop-install.php:136 +msgctxt "page_slug" +msgid "order-tracking" +msgstr "bestelling volgen" + +#: admin/jigoshop-install.php:146 +msgid "Track your order" +msgstr "Volg je bestelling" + +#: admin/jigoshop-install.php:153 +msgctxt "page_slug" +msgid "my-account" +msgstr "mijn account" + +#: admin/jigoshop-install.php:163 +msgid "My Account" +msgstr "Mijn account" + +#: admin/jigoshop-install.php:175 +msgctxt "page_slug" +msgid "edit-address" +msgstr "wijzig adres" + +#: admin/jigoshop-install.php:186 +msgid "Edit My Address" +msgstr "Wijzig mijn adres" + +#: admin/jigoshop-install.php:198 +msgctxt "page_slug" +msgid "view-order" +msgstr "bekijk bestelling" + +#: admin/jigoshop-install.php:221 +msgctxt "page_slug" +msgid "change-password" +msgstr "verander wachtwoord" + +#: admin/jigoshop-install.php:232 +msgid "Change Password" +msgstr "Verander wachtwoord" + +#: admin/jigoshop-install.php:244 +msgctxt "page_slug" +msgid "pay" +msgstr "betalen" + +#: admin/jigoshop-install.php:255 +msgid "Checkout → Pay" +msgstr "Kassa → Betalen" + +#: admin/jigoshop-install.php:268 +msgctxt "page_slug" +msgid "thanks" +msgstr "bedankt" + +#: admin/jigoshop-install.php:279 +msgid "Thank you" +msgstr "Bedankt" + +# @ jigoshop +#: admin/jigoshop-admin-settings.php:143 +msgid "Your settings have been saved." +msgstr "Je instellingen zijn opgeslagen." + +# @ jigoshop +#: admin/jigoshop-admin-settings.php:160 +#: admin/jigoshop-admin-settings.php:454 +msgid "Save changes" +msgstr "Wijzigingen opslaan" + +# @ jigoshop +#: admin/jigoshop-admin-settings.php:288 +#: admin/jigoshop-admin-settings.php:300 +#: admin/jigoshop-admin-settings.php:337 +msgid "Coupon Code" +msgstr "Kortingscode" + +# @ jigoshop +#: admin/jigoshop-admin-settings.php:289 +msgid "Coupon Type" +msgstr "Type kortingscode" + +# @ jigoshop +#: admin/jigoshop-admin-settings.php:290 +#: admin/jigoshop-admin-settings.php:313 +#: admin/jigoshop-admin-settings.php:343 +msgid "Coupon Amount" +msgstr "Bedrag kortingscode" + +# @ jigoshop +#: admin/jigoshop-admin-settings.php:291 +msgid "Product ids" +msgstr "Product ids" + +# @ jigoshop +#: admin/jigoshop-admin-settings.php:292 +msgid "Individual use" +msgstr "Afzonderlijk gebruik" + +# @ jigoshop +#: admin/jigoshop-admin-settings.php:293 +#: admin/jigoshop-admin-attributes.php:177 +msgid "Delete" +msgstr "Verwijder" + +# @ jigoshop +#: admin/jigoshop-admin-settings.php:303 +#: admin/jigoshop-admin-settings.php:341 +msgid "Cart Discount" +msgstr "Winkelwagen korting" + +#: admin/jigoshop-admin-settings.php:304 +msgid "Cart % Discount" +msgstr "Winkelwagen % korting" + +# @ jigoshop +#: admin/jigoshop-admin-settings.php:305 +#: admin/jigoshop-admin-settings.php:340 +msgid "Product Discount" +msgstr "Product korting" + +# @ jigoshop +#: admin/jigoshop-admin-settings.php:313 +#: admin/jigoshop-admin-settings.php:344 +msgid "1, 2, 3" +msgstr "1, 2, 3" + +# @ jigoshop +#: admin/jigoshop-admin-settings.php:317 +#: admin/jigoshop-admin-settings.php:345 +msgid "Individual use only" +msgstr "Enkel afzonderlijk gebruiken" + +# @ jigoshop +#: admin/jigoshop-admin-settings.php:322 +msgid "+ Add Coupon" +msgstr "+ Kortingscode toevoegen" + +# @ jigoshop +#: admin/jigoshop-admin-settings.php:339 +msgid "% Discount" +msgstr "% Korting" + +# @ jigoshop +#: admin/jigoshop-admin-settings.php:350 +msgid "Delete this coupon?" +msgstr "Verwijder deze kortingscode?" + +# @ jigoshop +#: admin/jigoshop-admin-settings.php:373 +#: admin/jigoshop-admin-settings.php:407 +msgid "Standard Rate" +msgstr "Standaardtarief" + +# @ jigoshop +#: admin/jigoshop-admin-settings.php:387 +#: admin/jigoshop-admin-settings.php:414 +msgid "Rate" +msgstr "Tarief" + +# @ jigoshop +#: admin/jigoshop-admin-settings.php:391 +#: admin/jigoshop-admin-settings.php:415 +msgid "Apply to shipping" +msgstr "Toepassen op verzending" + +# @ jigoshop +#: admin/jigoshop-admin-settings.php:395 +msgid "+ Add Tax Rule" +msgstr "+ Voeg BTW regel toe" + +# @ jigoshop +#: admin/jigoshop-admin-settings.php:421 +msgid "Delete this rule?" +msgstr "Deze regel verwijderen?" + +# @ jigoshop +#: admin/jigoshop-admin-settings.php:509 +#: admin/jigoshop-admin.php:42 +msgid "General Settings" +msgstr "Algemene instellingen" + +# @ jigoshop +#: admin/jigoshop-admin-attributes.php:113 +#: admin/jigoshop-admin-attributes.php:155 +#: admin/jigoshop-admin.php:44 +#: admin/write-panels/product-data.php:42 +msgid "Attributes" +msgstr "Kenmerken" + +# @ jigoshop +#: admin/jigoshop-admin-attributes.php:119 +msgid "Edit Attribute" +msgstr "Wijzig kenmerk" + +# @ jigoshop +#: admin/jigoshop-admin-attributes.php:120 +msgid "Attribute taxonomy names cannot be changed; you may only change an attributes type." +msgstr "Kenmerk taxonomie namen kunnen niet worden veranderd, je mag alleen het type van het kenmerk veranderen." + +# @ jigoshop +#: admin/jigoshop-admin-attributes.php:124 +#: admin/jigoshop-admin-attributes.php:220 +msgid "Attribute type" +msgstr "Kenmerk type" + +# @ jigoshop +#: admin/jigoshop-admin-attributes.php:126 +#: admin/jigoshop-admin-attributes.php:222 +msgid "Select" +msgstr "Kiezen" + +# @ jigoshop +#: admin/jigoshop-admin-attributes.php:127 +#: admin/jigoshop-admin-attributes.php:223 +msgid "Multiselect" +msgstr "Kies meerdere" + +# @ jigoshop +#: admin/jigoshop-admin-attributes.php:128 +#: admin/jigoshop-admin-attributes.php:224 +msgid "Text" +msgstr "Tekst" + +# @ jigoshop +#: admin/jigoshop-admin-attributes.php:132 +msgid "Save Attribute" +msgstr "Bewaar kenmerk" + +# @ jigoshop +# @ default +#: admin/jigoshop-admin-attributes.php:163 +#: admin/jigoshop-admin-post-types.php:21 +#: admin/write-panels/product-data.php:199 +#: admin/write-panels/order-data.php:261 +msgid "Name" +msgstr "Naam" + +# @ jigoshop +#: admin/jigoshop-admin-attributes.php:165 +msgid "Terms" +msgstr "Voorwaarden" + +# @ jigoshop +#: admin/jigoshop-admin-attributes.php:199 +msgid "No attributes currently exist." +msgstr "Momenteel bestaan er geen kenmerken." + +# @ jigoshop +#: admin/jigoshop-admin-attributes.php:209 +msgid "Add New Attribute" +msgstr "Nieuw kenmerk toevoegen" + +# @ jigoshop +#: admin/jigoshop-admin-attributes.php:210 +msgid "Attributes let you define extra product data, such as size or colour. You can use these attributes in the shop sidebar using the \"layered nav\" widgets. Please note: you cannot rename an attribute later on." +msgstr "Kenmerken laten u extra product gegevens bepalen, zoals grootte of kleur. U kunt deze kenmerken in de winkel zijbalk gebruiken met de \"gelaagde nav\" widgets. Let op: je kunt kenmerken later niet hernoemen." + +# @ jigoshop +#: admin/jigoshop-admin-attributes.php:214 +msgid "Attribute Name" +msgstr "Kenmerk naam" + +# @ jigoshop +#: admin/jigoshop-admin-attributes.php:230 +msgid "Add Attribute" +msgstr "Kenmerk toevoegen" + +# @ jigoshop +#: admin/jigoshop-admin-attributes.php:240 +msgid "Are you sure you want to delete this?" +msgstr "Ben je zeker dat je dit wil verwijderen?" + +# @ jigoshop +#: admin/jigoshop-admin-post-types.php:20 +msgid "Thumb" +msgstr "Afbeelding" + +# @ jigoshop +#: admin/jigoshop-admin-post-types.php:23 +msgid "ID/SKU" +msgstr "ID / Art.nr." + +# @ jigoshop +#: admin/jigoshop-admin-post-types.php:24 +msgid "Category" +msgstr "Categorie" + +# @ jigoshop +#: admin/jigoshop-admin-post-types.php:25 +msgid "Tags" +msgstr "Labels" + +# @ jigoshop +#: admin/jigoshop-admin-post-types.php:26 +#: admin/write-panels/product-data.php:85 +msgid "Visibility" +msgstr "Zichtbaarheid" + +# @ jigoshop +#: admin/jigoshop-admin-post-types.php:27 +msgid "Featured" +msgstr "Aanbevolen" + +# @ jigoshop +#: admin/jigoshop-admin-post-types.php:30 +msgid "In Stock?" +msgstr "In voorraad?" + +# @ jigoshop +#: admin/jigoshop-admin-post-types.php:31 +#: admin/jigoshop-admin-settings-options.php:391 +#: admin/write-panels/product-data.php:41 +msgid "Inventory" +msgstr "Inventaris" + +# @ jigoshop +#: admin/jigoshop-admin-post-types.php:34 +msgid "Price" +msgstr "Prijs" + +#: admin/jigoshop-admin-post-types.php:71 +msgid "Change" +msgstr "Wijzigen" + +# @ jigoshop +#: admin/jigoshop-admin-post-types.php:110 +msgid "Status" +msgstr "Status" + +# @ jigoshop +#: admin/jigoshop-admin-post-types.php:114 +msgid "Customer" +msgstr "Klant" + +# @ jigoshop +#: admin/jigoshop-admin-post-types.php:115 +msgid "Billing Address" +msgstr "Factuuradres" + +# @ jigoshop +#: admin/jigoshop-admin-post-types.php:116 +msgid "Shipping Address" +msgstr "Afleveradres" + +# @ jigoshop +#: admin/jigoshop-admin-post-types.php:118 +msgid "Billing & Shipping" +msgstr "Facturatie & Verzending" + +# @ jigoshop +#: admin/jigoshop-admin-post-types.php:120 +msgid "Order Cost" +msgstr "Bestelkosten" + +# @ jigoshop +#: admin/jigoshop-admin-post-types.php:133 +#, php-format +msgid "%s" +msgstr "%s" + +# @ jigoshop +#: admin/jigoshop-admin-post-types.php:138 +#, php-format +msgid "Order #%s" +msgstr "Bestelling #%s" + +# @ jigoshop +#: admin/jigoshop-admin-post-types.php:149 +msgid "User:" +msgstr "Gebruiker:" + +# @ jigoshop +#: admin/jigoshop-admin-post-types.php:161 +#: admin/write-panels/order-data.php:99 +msgid "Guest" +msgstr "Gast" + +# @ jigoshop +#: admin/jigoshop-admin-post-types.php:164 +msgid "Billing Email:" +msgstr "Factuur e-mail:" + +# @ jigoshop +#: admin/jigoshop-admin-post-types.php:166 +msgid "Billing Tel:" +msgstr "Factuur tel:" + +# @ jigoshop +#: admin/jigoshop-admin-post-types.php:190 +msgid "Payment:" +msgstr "Betaling:" + +# @ jigoshop +#: admin/jigoshop-admin-post-types.php:201 +msgid "Subtotal" +msgstr "Subtotaal" + +# @ jigoshop +#: admin/jigoshop-admin-post-types.php:205 +#: admin/jigoshop-admin-settings-options.php:459 +msgid "Shipping" +msgstr "Verzending" + +# @ jigoshop +#: admin/jigoshop-admin-post-types.php:209 +#: admin/jigoshop-admin-settings-options.php:509 +msgid "Tax" +msgstr "Btw" + +# @ jigoshop +#: admin/jigoshop-admin-post-types.php:213 +msgid "Discount" +msgstr "Korting" + +# @ jigoshop +#: admin/jigoshop-admin-post-types.php:217 +msgid "Total" +msgstr "Totaal" + +# @ jigoshop +#: admin/jigoshop-admin-post-types.php:295 +#: admin/jigoshop-admin-post-types.php:296 +msgid "Order updated." +msgstr "Bestelling bijgewerkt." + +# @ jigoshop +#: admin/jigoshop-admin-post-types.php:297 +msgid "Order published." +msgstr "Bestelling gepubliceerd." + +# @ jigoshop +#: admin/jigoshop-admin-post-types.php:299 +msgid "Order submitted." +msgstr "Bestelling ingediend." + +# @ jigoshop +#: admin/jigoshop-admin-post-types.php:300 +msgid "Order draft updated." +msgstr "Bestelling ontwerp bijgewerkt." + +#: admin/jigoshop-admin.php:41 +msgid "Dashboard" +msgstr "Dashboard" + +# @ jigoshop +#: admin/jigoshop-admin.php:42 +msgid "Settings" +msgstr "Instellingen" + +# @ jigoshop +#: admin/jigoshop-admin.php:43 +msgid "System Info" +msgstr "Systeeminfo" + +# @ jigoshop +#: admin/jigoshop-admin.php:116 +msgid "System Information" +msgstr "Systeeminformatie" + +# @ jigoshop +#: admin/jigoshop-admin.php:119 +msgid "Environment" +msgstr "Omgeving" + +# @ jigoshop +#: admin/jigoshop-admin.php:120 +msgid "Debugging" +msgstr "Debugging" + +# @ jigoshop +#: admin/jigoshop-admin.php:126 +msgid "Versions" +msgstr "Versies" + +# @ jigoshop +#: admin/jigoshop-admin.php:132 +msgid "Jigoshop Version" +msgstr "Jigoshop Versie" + +# @ jigoshop +#: admin/jigoshop-admin.php:136 +msgid "WordPress Version" +msgstr "WordPress Versie" + +# @ jigoshop +#: admin/jigoshop-admin.php:142 +msgid "Server" +msgstr "Server" + +# @ jigoshop +#: admin/jigoshop-admin.php:148 +msgid "PHP Version" +msgstr "PHP Versie" + +# @ jigoshop +#: admin/jigoshop-admin.php:152 +msgid "Server Software" +msgstr "Server Software" + +# @ jigoshop +#: admin/jigoshop-admin.php:162 +msgid "Debug Information" +msgstr "Debug Informatie" + +# @ jigoshop +#: admin/jigoshop-admin.php:166 +msgid "UPLOAD_MAX_FILESIZE" +msgstr "UPLOAD_MAX_FILESIZE" + +# @ jigoshop +#: admin/jigoshop-admin.php:172 +msgid "POST_MAX_SIZE" +msgstr "POST_MAX_SIZE" + +# @ jigoshop +#: admin/jigoshop-admin.php:178 +msgid "WordPress Memory Limit" +msgstr "WordPress Geheugen Limiet" + +# @ jigoshop +#: admin/jigoshop-admin.php:184 +msgid "WP_DEBUG" +msgstr "WP_DEBUG" + +# @ jigoshop +#: admin/jigoshop-admin.php:185 +msgid "On" +msgstr "Aan" + +# @ jigoshop +#: admin/jigoshop-admin.php:185 +msgid "Off" +msgstr "Uit" + +# @ jigoshop +#: admin/jigoshop-admin.php:188 +msgid "DISPLAY_ERRORS" +msgstr "DISPLAY_ERRORS" + +# @ jigoshop +#: admin/jigoshop-admin.php:192 +msgid "FSOCKOPEN" +msgstr "FSOCKOPEN" + +# @ jigoshop +#: admin/jigoshop-admin.php:193 +msgid "Your server supports fsockopen." +msgstr "Je server ondersteunt fsockopen." + +# @ jigoshop +#: admin/jigoshop-admin.php:193 +msgid "Your server does not support fsockopen." +msgstr "Uw server ondersteunt geen fsockopen." + +#: admin/jigoshop-admin.php:222 +msgid "You do not have sufficient permissions to access this page." +msgstr "Je hebt niet voldoende rechten om deze pagina te bekijken." + +#: admin/jigoshop-admin.php:224 +msgid "You have taken too long. Please go back and retry." +msgstr "U heeft er te lang over gedaan. Ga terug en probeer het opnieuw." + +# @ jigoshop +#: admin/jigoshop-write-panels.php:29 +msgid "Product Data" +msgstr "Productgegevens" + +# @ jigoshop +#: admin/jigoshop-write-panels.php:30 +msgid "Product Type Options" +msgstr "Producttype opties" + +# @ jigoshop +#: admin/jigoshop-write-panels.php:32 +msgid "Order Data" +msgstr "Bestel gegevens" + +# @ jigoshop +#: admin/jigoshop-write-panels.php:33 +msgid "Order Items – Note: if you edit quantities or remove items from the order you will need to manually change the item's stock levels." +msgstr "Bestelling items – Let op: Als je hoeveelheden bewerkt of items verwijderd uit de bestelling, moet u handmatig de voorraad van het item wijzigen. " + +# @ jigoshop +#: admin/jigoshop-write-panels.php:35 +msgid "Order Actions" +msgstr "Bestel acties" + +# @ jigoshop +#: admin/jigoshop-write-panels.php:154 +msgid "Remove this item? If you have previously reduced this item's stock, or this order was submitted by a customer, will need to manually restore the item's stock." +msgstr "Dit product verwijderen? Als u eerder de voorraad van dit artikel verlaagde, of deze opdracht werd ingediend door een klant, moet handmatig de voorraad van het artikel herstellen." + +# @ jigoshop +#: admin/jigoshop-write-panels.php:155 +msgid "Calc totals based on order items, discount amount, and shipping?" +msgstr "Totaal berekenen gebaseerd op artikels, korting en verzending?" + +# @ jigoshop +#: admin/jigoshop-write-panels.php:156 +msgid "Copy billing information to shipping information? This will remove any currently entered shipping information." +msgstr "Kopieer factuurgegevens tot verzendgegevens? Dit verwijdert alle momenteel ingevoerde verzendgegevens." + +# @ jigoshop +#: admin/jigoshop-write-panels.php:158 +#: admin/write-panels/order-data.php:272 +msgid "ID" +msgstr "ID" + +# @ jigoshop +#: admin/jigoshop-write-panels.php:159 +#: admin/write-panels/order-data.php:273 +msgid "Item Name" +msgstr "Artikel naam" + +# @ jigoshop +#: admin/jigoshop-write-panels.php:160 +#: admin/write-panels/order-data.php:274 +msgid "Quantity e.g. 2" +msgstr "Hoeveelheid bijv. 2" + +# @ jigoshop +#: admin/jigoshop-write-panels.php:161 +msgid "Cost per unit e.g. 2.99" +msgstr "Eenheidsprijs bijv. 2.99" + +# @ jigoshop +#: admin/jigoshop-write-panels.php:162 +#: admin/write-panels/order-data.php:276 +msgid "Tax Rate e.g. 20.0000" +msgstr "Belastingtarief bijv. 20,0000" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:15 +#: admin/write-panels/product-data.php:39 +msgid "General" +msgstr "Algemeen" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:17 +msgid "General Options" +msgstr "Algemene opties" + +#: admin/jigoshop-admin-settings-options.php:20 +msgid "Demo store" +msgstr "Demo winkel" + +#: admin/jigoshop-admin-settings-options.php:22 +msgid "Enable this option to show a banner at the top of the page stating its a demo store." +msgstr "Activeer deze optie om een banner weer te geven aan de bovenkant van de pagina met de vermelding van een demo winkel." + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:34 +msgid "Enable SKU field" +msgstr "Schakelen Art.nr. veld in" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:36 +msgid "Turning off the SKU field will give products an SKU of their post id." +msgstr "Het uitschakelen van het Art.nr. veld geeft producten een Art.nr. van hun post id." + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:48 +msgid "Enable weight field" +msgstr "Schakelen gewicht veld in" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:62 +msgid "Weight Unit" +msgstr "Gewichtseenheid" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:63 +msgid "This controls what unit you will define weights in." +msgstr "Dit bepaalt welke eenheid je zult gebruiken om gewichten te bepalen." + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:70 +msgid "kg" +msgstr "kg" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:71 +msgid "lbs" +msgstr "lbs" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:76 +msgid "Base Country/Region" +msgstr "Basis Land / Regio" + +#: admin/jigoshop-admin-settings-options.php:78 +msgid "This is the base country for your business. Tax rates will be based on this country." +msgstr "Dit is de thuisbasis voor uw bedrijf. Belastingtarieven zullen gebaseerd worden op dit land." + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:86 +msgid "Allowed Countries" +msgstr "Toegelaten landen" + +#: admin/jigoshop-admin-settings-options.php:88 +msgid "These are countries that you are willing to ship to." +msgstr "Dit zijn de landen waarnaar u wil verzenden." + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:94 +msgid "All Countries" +msgstr "Alle landen" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:110 +msgid "Enable guest checkout?" +msgstr "Activeer gast afrekeningen?" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:112 +msgid "Without guest checkout, all users will require an account in order to checkout." +msgstr "Zonder gast afrekeningen, zullen alle gebruikers een account moeten hebben om af te rekenen." + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:124 +msgid "Force SSL on checkout?" +msgstr "Forceer SSL voor de afrekening?" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:126 +msgid "Forcing SSL is recommended" +msgstr "SSL forceren is aangeraden" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:138 +msgid "ShareThis Publisher ID" +msgstr "ShareThis Uitgever ID" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:139 +msgid "Enter your ShareThis publisher ID to show ShareThis on product pages." +msgstr "Geef uw ShareThis uitgevers-id om ShareThis op productpagina's laten zien." + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:140 +msgid "ShareThis is a small social sharing widget for posting links on popular sites such as Twitter and Facebook." +msgstr "ShareThis is een klein social sharing widget voor het posten van links op populaire sites zoals Twitter en Facebook." + +#: admin/jigoshop-admin-settings-options.php:148 +msgid "Disable Jigoshop frontend.css" +msgstr "Jigoshop frontend.css uitschakelen" + +#: admin/jigoshop-admin-settings-options.php:150 +msgid "Useful if you want to disable Jigoshop styles and theme it yourself via your theme." +msgstr "Handig als je Jigoshop stijlen wil uitschakelen en zelf stijlen via je thema." + +#: admin/jigoshop-admin-settings-options.php:163 +msgid "Pages" +msgstr "Pagina's" + +#: admin/jigoshop-admin-settings-options.php:165 +msgid "Shop page configuration" +msgstr "Winkelpagina configuratie" + +#: admin/jigoshop-admin-settings-options.php:168 +msgid "Cart Page" +msgstr "Winkelwagen pagina" + +#: admin/jigoshop-admin-settings-options.php:169 +msgid "Your page should contain [jigoshop_cart]" +msgstr "Uw pagina moet [jigoshop_cart] bevatten" + +#: admin/jigoshop-admin-settings-options.php:178 +msgid "Checkout Page" +msgstr "Kassa pagina" + +#: admin/jigoshop-admin-settings-options.php:179 +msgid "Your page should contain [jigoshop_checkout]" +msgstr "Uw pagina moet [jigoshop_checkput] bevatten" + +#: admin/jigoshop-admin-settings-options.php:188 +msgid "Pay Page" +msgstr "Betaal pagina" + +#: admin/jigoshop-admin-settings-options.php:189 +msgid "Your page should contain [jigoshop_pay] and usually have \"Checkout\" as the parent." +msgstr "Uw pagina moet [jigoshop_pay] bevatten en meestal \"Kassa\" als moederpagina hebben." + +#: admin/jigoshop-admin-settings-options.php:198 +msgid "Thanks Page" +msgstr "Bedank pagina" + +#: admin/jigoshop-admin-settings-options.php:199 +msgid "Your page should contain [jigoshop_thankyou] and usually have \"Checkout\" as the parent." +msgstr "Uw pagina moet [jigoshop_thankyou] bevatten en meestal \"Kassa\" als moederpagina hebben." + +#: admin/jigoshop-admin-settings-options.php:208 +msgid "My Account Page" +msgstr "Mijn account pagina" + +#: admin/jigoshop-admin-settings-options.php:209 +msgid "Your page should contain [jigoshop_my_account]" +msgstr "Uw pagina moet [jigoshop_my_account] bevatten" + +#: admin/jigoshop-admin-settings-options.php:218 +msgid "Edit Address Page" +msgstr "Adres wijzigen pagina" + +#: admin/jigoshop-admin-settings-options.php:219 +msgid "Your page should contain [jigoshop_edit_address] and usually have \"My Account\" as the parent." +msgstr "Uw pagina moet [jigoshop_edit_address] bevatten en meestal \"Mijn account\" als moederpagina hebben." + +#: admin/jigoshop-admin-settings-options.php:228 +msgid "View Order Page" +msgstr "Bestelling bekijken pagina" + +#: admin/jigoshop-admin-settings-options.php:229 +msgid "Your page should contain [jigoshop_view_order] and usually have \"My Account\" as the parent." +msgstr "Uw pagina moet [jigoshop_view_order] bevatten en meestal \"Mijn account\" als moederpagina hebben." + +#: admin/jigoshop-admin-settings-options.php:238 +msgid "Change Password Page" +msgstr "Wachtwoord wijzigen pagina" + +#: admin/jigoshop-admin-settings-options.php:239 +msgid "Your page should contain [jigoshop_change_password] and usually have \"My Account\" as the parent." +msgstr "Uw pagina moet [jigoshop_change_password] bevatten en meestal \"Mijn account\" als moederpagina hebben." + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:249 +#: admin/write-panels/product-data.php:88 +msgid "Catalog" +msgstr "Catalogus" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:251 +msgid "Catalog Options" +msgstr "Catalogus opties" + +#: admin/jigoshop-admin-settings-options.php:255 +msgid "Products Base Page" +msgstr "Producten basispagina" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:256 +#: admin/jigoshop-admin-settings-options.php:266 +#, php-format +msgid "IMPORTANT: You must re-save your permalinks for this change to take effect." +msgstr "BELANGRIJK: U moet uw permalinks opnieuw opslaan voor deze wijziging door te voeren." + +#: admin/jigoshop-admin-settings-options.php:257 +msgid "This sets the base page of your shop. You should not change this value once you have launched your site otherwise you risk breaking urls of other sites pointing to yours, etc." +msgstr "Dit stelt de basispagina van uw winkel in. Je mag deze waarde niet wijzigen eenmaal begonnen bent met je site anders riskeert u gebroken url's van andere sites die naar jou verwijzen, etc." + +#: admin/jigoshop-admin-settings-options.php:265 +msgid "Prepend shop categories/tags with base page?" +msgstr "Wilt u categorieën/labels voorafgaan met de basispagina?" + +#: admin/jigoshop-admin-settings-options.php:267 +msgid "If set to yes, categories will show up as your_base_page/shop_category instead of just shop_category." +msgstr "Indien JA is ingesteld, zal categorieën verschijnen als your_base_page / shop_category in plaats van alleen shop_category." + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:279 +msgid "Terms page ID" +msgstr "Voorwaarden pagina ID" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:280 +msgid "If you define a \"Terms\" page the customer will be asked if they accept them when checking out." +msgstr "Als je een \"Voorwaarden\"-pagina gebruikt zal de klant bij het afrekenen gevraagd worden of hij hiermee akkoord gaat." + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:289 +msgid "Pricing Options" +msgstr "Prijsstelling opties" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:292 +msgid "Currency" +msgstr "Munteenheid" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:293 +#, php-format +msgid "This controls what currency prices are listed at in the catalog, and which currency PayPal, and other gateways, will take payments in. See the list of supported PayPal currencies." +msgstr "Dit bepaalt met welke munteenheid prijzen worden vermeld in de catalogus, en welke munteenheid PayPal en andere netwerken, betalingen zullen ontvangen. Zie de lijst met ondersteunde PayPal munteenheden." + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:300 +msgid "US Dollars ($)" +msgstr "Amerikaanse Dollar ($)" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:301 +msgid "Euros (€)" +msgstr "Euro (€)" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:302 +msgid "Pounds Sterling (£)" +msgstr "Britse Pond (£)" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:303 +msgid "Australian Dollars ($)" +msgstr "Australische Dollar $)" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:304 +msgid "Brazilian Real ($)" +msgstr "Braziliaanse Real ($)" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:305 +msgid "Canadian Dollars ($)" +msgstr "Canadese Dollar ($)" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:306 +msgid "Czech Koruna" +msgstr "Tsjechische Kroon" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:307 +msgid "Danish Krone" +msgstr "Deense Kroon" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:308 +msgid "Hong Kong Dollar ($)" +msgstr "Hongkongse Dollar ($)" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:309 +msgid "Hungarian Forint" +msgstr "Hongaarse Forint" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:310 +msgid "Israeli Shekel" +msgstr "Israëlische Shekel" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:311 +msgid "Japanese Yen (¥)" +msgstr "Japanse Yen (¥)" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:312 +msgid "Malaysian Ringgits" +msgstr "Maleisische Ringgits" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:313 +msgid "Mexican Peso ($)" +msgstr "Mexicaanse Peso ($)" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:314 +msgid "New Zealand Dollar ($)" +msgstr "Nieuw-Zeelandse Dollar ($)" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:315 +msgid "Norwegian Krone" +msgstr "Noorse Kroon" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:316 +msgid "Philippine Pesos" +msgstr "Filippijnse Peso's" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:317 +msgid "Polish Zloty" +msgstr "Poolse Zloty" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:318 +msgid "Singapore Dollar ($)" +msgstr "Singaporese Dollar ($)" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:319 +msgid "Swedish Krona" +msgstr "Zweedse Kroon" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:320 +msgid "Swiss Franc" +msgstr "Zwitserse Frank" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:321 +msgid "Taiwan New Dollars" +msgstr "Taiwanese nieuwe Dollars" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:322 +msgid "Thai Baht" +msgstr "Thaise Baht" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:328 +msgid "Currency Position" +msgstr "Munteenheidpositie" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:329 +msgid "This controls the position of the currency symbol." +msgstr "Dit regelt de positie van het symbool van de munteenheid." + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:336 +msgid "Left" +msgstr "Links" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:337 +msgid "Right" +msgstr "Rechts" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:338 +msgid "Left (with space)" +msgstr "Links (met spatie)" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:339 +msgid "Right (with space)" +msgstr "Rechts (met spatie)" + +#: admin/jigoshop-admin-settings-options.php:344 +msgid "Thousand separator" +msgstr "Scheidingsteken voor duizendtallen" + +#: admin/jigoshop-admin-settings-options.php:345 +msgid "This sets the thousand separator of displayed prices." +msgstr "Hiermee stelt u het scheidingsteken voor duizendtallen van de weergegeven prijzen in." + +#: admin/jigoshop-admin-settings-options.php:354 +msgid "Decimal separator" +msgstr "Scheidingsteken voor decimalen" + +#: admin/jigoshop-admin-settings-options.php:355 +msgid "This sets the decimal separator of displayed prices." +msgstr "Hiermee stelt u het scheidingsteken voor decimalen van de weergegeven prijzen in." + +#: admin/jigoshop-admin-settings-options.php:364 +msgid "Number of decimals" +msgstr "Aantal decimalen" + +#: admin/jigoshop-admin-settings-options.php:365 +msgid "This sets the number of decimal points shown in displayed prices." +msgstr "Dit bepaalt het aantal decimalen getoond in de weergegeven prijzen." + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:375 +#: admin/jigoshop-admin-settings-options.php:380 +msgid "Coupons" +msgstr "Kortingsbonnen" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:377 +msgid "Coupon Codes" +msgstr "Kortingscodes" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:393 +msgid "Inventory Options" +msgstr "Inventaris opties" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:396 +#: admin/write-panels/product-data.php:152 +msgid "Manage stock?" +msgstr "Voorraad beheren?" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:397 +msgid "If you are not managing stock, turn it off here to disable it in admin and on the front-end." +msgstr "Als u kiest de voorraad niet het beheren, schakel het hier uit om deze uit te schakelen in de admin en op de front-end." + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:398 +msgid "You can manage stock on a per-item basis if you leave this option on." +msgstr "U kunt voorraad beheren op een per-artikel basis als u deze optie aangeschakeld laat." + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:410 +msgid "Low stock notification" +msgstr "Lage voorraad melding" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:412 +#: admin/jigoshop-admin-settings-options.php:436 +msgid "Set the minimum threshold for this below." +msgstr "Stel de minimum drempel hiervoor hieronder in." + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:424 +msgid "Low stock threshold" +msgstr "Lage drempel voorraad" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:434 +msgid "Out-of-stock notification" +msgstr "Buiten voorraad melding" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:448 +msgid "Out of stock threshold" +msgstr "Buiten voorraad drempel" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:461 +msgid "Shipping Options" +msgstr "Verzendopties" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:465 +msgid "Only set this to no if you are not shipping items, or items have shipping costs included." +msgstr "Zet dit alleen op Nee als u geen artikels verzend, of artikels verzendingskosten hebben inbegrepen." + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:466 +msgid "If you are not calculating shipping then you can ignore all other tax options." +msgstr "Als u geen verzendkosten berekent kan u alle andere fiscale mogelijkheden negeren." + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:478 +msgid "Enable shipping calculator on cart" +msgstr "Verzendkosten calculator inschakelen op winkelwagen" + +#: admin/jigoshop-admin-settings-options.php:492 +msgid "Only ship to billing address?" +msgstr "Alleen verzenden naar factuuradres?" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:511 +msgid "Tax Options" +msgstr "BTW opties" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:514 +msgid "Calculate Taxes" +msgstr "BTW berekenen" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:515 +msgid "Only set this to no if you are exclusively selling non-taxable items." +msgstr "Zet dit alleen op Nee als u uitsluitend niet-belastbare artikels verkoopt." + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:516 +msgid "If you are not calculating taxes then you can ignore all other tax options." +msgstr "Als u geen belastingen berekent kan u alle andere fiscale mogelijkheden negeren." + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:528 +msgid "Catalog Prices include tax?" +msgstr "Catalogus prijzen zijn inclusief BTW?" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:530 +msgid "If prices include tax then tax calculations will work backwards." +msgstr "Als prijzen inclusief btw zijn werken de BTW-berekeningen omgekeerd." + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:542 +msgid "Cart totals display..." +msgstr "Winkelwagen totaal weergeven..." + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:544 +msgid "Should the subtotal be shown including or excluding tax on the frontend?" +msgstr "Moet het subtotaal worden getoond inclusief of exclusief de belasting op de frontend?" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:550 +msgid "price including tax" +msgstr "prijzen, inclusief btw" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:551 +msgid "price excluding tax" +msgstr "prijzen, exclusief btw" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:556 +msgid "Additional Tax classes" +msgstr "Aanvullende belastingtarieven" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:557 +msgid "List 1 per line. This is in addition to the default Standard Rate." +msgstr "1 per regel. Dit is in aanvulling op de standaard Standaard Tarief." + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:558 +msgid "List product and shipping tax classes here, e.g. Zero Tax, Reduced Rate." +msgstr "Maak hier een lijst van product en verzend btw tarieven, bijvoorbeeld Geen BTW, gereduceerd tarief." + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:566 +msgid "Tax rates" +msgstr "Belastingpercentages" + +# @ jigoshop +#: admin/jigoshop-admin-settings-options.php:577 +msgid "Payment Gateways" +msgstr "Betalingsnetwerken" + +# @ jigoshop +#: admin/write-panels/order-data-save.php:99 +msgid "Manually reducing stock." +msgstr "Handmatig verminderen van voorraad." + +# @ jigoshop +#: admin/write-panels/order-data-save.php:113 +#, php-format +msgid "Item #%s stock reduced from %s to %s." +msgstr "Artikel #%s voorraad verminderd van %s naar %s." + +# @ jigoshop +#: admin/write-panels/order-data-save.php:130 +#: admin/write-panels/order-data-save.php:160 +#, php-format +msgid "Item %s %s not found, skipping." +msgstr "Artikel %s %s niet gevonden, overslaan." + +# @ jigoshop +#: admin/write-panels/order-data-save.php:136 +msgid "Manual stock reduction complete." +msgstr "Handmatige voorraad vermindering voltooid." + +# @ jigoshop +#: admin/write-panels/order-data-save.php:140 +msgid "Manually restoring stock." +msgstr "Handmatig herstellen van voorraad." + +# @ jigoshop +#: admin/write-panels/order-data-save.php:154 +#, php-format +msgid "Item #%s stock increased from %s to %s." +msgstr "Artikel #%s voorraad toegenomen van %s naar %s." + +# @ jigoshop +#: admin/write-panels/order-data-save.php:166 +msgid "Manual stock restore complete." +msgstr "Handmatige voorraad herstelling voltooid." + +# @ jigoshop +#: admin/write-panels/product-data.php:40 +msgid "Pricing" +msgstr "Prijsstelling" + +#: admin/write-panels/product-data.php:51 +msgid "Product Type" +msgstr "Producttype" + +#: admin/write-panels/product-data.php:52 +#: admin/write-panels/product-data.php:153 +#: admin/write-panels/product-data.php:159 +#: admin/write-panels/product-data.php:169 +#: admin/write-panels/product-data.php:181 +msgid "Required" +msgstr "Verplicht" + +# @ jigoshop +#: admin/write-panels/product-data.php:54 +msgid "Simple" +msgstr "Eenvoudig" + +#: admin/write-panels/product-data.php:61 +msgid "Summary" +msgstr "Samenvatting" + +#: admin/write-panels/product-data.php:62 +msgid "Add a summary for your product – this is a quick description to encourage users to view the product." +msgstr "Voeg een samenvatting voor uw product toe - dit is een korte beschrijving om gebruikers aan te moedigen het product te bekijken." + +# @ jigoshop +#: admin/write-panels/product-data.php:65 +msgid "SKU" +msgstr "Art. nr." + +#: admin/write-panels/product-data.php:69 +msgid "Leave blank to use product ID" +msgstr "Leeg laten om product ID te gebruiken" + +#: admin/write-panels/product-data.php:72 +#: admin/write-panels/product-types/configurable.php:104 +msgid "Weight" +msgstr "Gewicht" + +#: admin/write-panels/product-data.php:78 +msgid "Featured?" +msgstr "Aanbevolen?" + +#: admin/write-panels/product-data.php:87 +msgid "Catalog & Search" +msgstr "Catalogus & Zoeken" + +# @ jigoshop +#: admin/write-panels/product-data.php:89 +msgid "Search" +msgstr "Zoeken" + +#: admin/write-panels/product-data.php:90 +msgid "Hidden" +msgstr "Verborgen" + +#: admin/write-panels/product-data.php:98 +msgid "Regular Price" +msgstr "Normale prijs" + +#: admin/write-panels/product-data.php:104 +msgid "Sale Price" +msgstr "Kortingsprijs" + +#: admin/write-panels/product-data.php:110 +msgid "Sale Price Dates" +msgstr "Kortingsprijs periode" + +#: admin/write-panels/product-data.php:119 +msgid "From…" +msgstr "Van…" + +#: admin/write-panels/product-data.php:122 +msgid "To…" +msgstr "Naar…" + +#: admin/write-panels/product-data.php:123 +msgid "Date format" +msgstr "Datum weergave" + +#: admin/write-panels/product-data.php:132 +msgid "Shipping only" +msgstr "Verzending alleen" + +#: admin/write-panels/product-data.php:136 +msgid "Tax Class" +msgstr "BTW klasse" + +# @ jigoshop +#: admin/write-panels/product-data.php:138 +msgid "Standard" +msgstr "Standaard" + +#: admin/write-panels/product-data.php:167 +msgid "Stock Qty" +msgstr "Voorraad aantal" + +#: admin/write-panels/product-data.php:180 +msgid "Allow Backorders?" +msgstr "Nabestellingen toestaan?" + +#: admin/write-panels/product-data.php:182 +msgid "Do not allow" +msgstr "Niet toestaan" + +#: admin/write-panels/product-data.php:183 +msgid "Allow, but notify customer" +msgstr "Toestaan maar informeer de klant" + +#: admin/write-panels/product-data.php:184 +msgid "Allow" +msgstr "Toestaan" + +# @ jigoshop +#: admin/write-panels/product-data.php:200 +msgid "Value" +msgstr "Waarde" + +# @ jigoshop +#: admin/write-panels/product-data.php:201 +msgid "Visible?" +msgstr "Zichtbaar?" + +#: admin/write-panels/product-data.php:202 +msgid "Variation?" +msgstr "Variatie?" + +# @ jigoshop +#: admin/write-panels/product-data.php:203 +#: admin/write-panels/order-data.php:265 +#: admin/write-panels/product-types/configurable.php:18 +#: admin/write-panels/product-types/configurable.php:85 +msgid "Remove" +msgstr "Verwijderen" + +# @ jigoshop +#: admin/write-panels/product-data.php:243 +msgid "Choose an option…" +msgstr "Kies een optie…" + +# @ jigoshop +#: admin/write-panels/product-data.php:258 +msgid "Comma separate terms" +msgstr "Scheid termen met een komma" + +# @ jigoshop +#: admin/write-panels/product-data.php:296 +msgid "Add" +msgstr "Toevoegen" + +# @ jigoshop +#: admin/write-panels/product-data.php:298 +msgid "Custom product attribute" +msgstr "Aangepast productkenmerk" + +#: admin/write-panels/medialibrary-uploader.php:19 +msgid "Options Framework Internal Container" +msgstr "Options Framework Internal Container" + +#: admin/write-panels/medialibrary-uploader.php:105 +msgid "Upload" +msgstr "Uploaden" + +#: admin/write-panels/medialibrary-uploader.php:128 +msgid "View File" +msgstr "Bestand bekijken" + +#: admin/write-panels/medialibrary-uploader.php:265 +msgid "Gallery" +msgstr "Galerij" + +#: admin/write-panels/medialibrary-uploader.php:265 +msgid "Previously Uploaded" +msgstr "Eerder geüpload" + +# @ jigoshop +#: admin/write-panels/order-data.php:77 +msgid "Customer Billing Address" +msgstr "Klant factuuradres" + +# @ jigoshop +#: admin/write-panels/order-data.php:79 +msgid "Customer Shipping Address" +msgstr "Klant afleveradres" + +# @ jigoshop +#: admin/write-panels/order-data.php:85 +msgid "Order status:" +msgstr "Bestelstatus:" + +# @ jigoshop +#: admin/write-panels/order-data.php:97 +msgid "Customer:" +msgstr "Klant:" + +# @ jigoshop +#: admin/write-panels/order-data.php:114 +msgid "Customer Note:" +msgstr "Klant Opmerking:" + +# @ jigoshop +#: admin/write-panels/order-data.php:115 +msgid "Customer's notes about the order" +msgstr "Klant opmerkingen over de bestelling" + +# @ jigoshop +#: admin/write-panels/order-data.php:180 +msgid "Copy billing address to shipping address" +msgstr "Kopieer factuuradres naar afleveradres" + +# @ jigoshop +#: admin/write-panels/order-data.php:260 +msgid "Product ID" +msgstr "Product ID" + +# @ jigoshop +#: admin/write-panels/order-data.php:262 +msgid "Quantity" +msgstr "Aantal" + +# @ jigoshop +#: admin/write-panels/order-data.php:264 +msgid "Tax Rate" +msgstr "Belastingpercentage" + +#: admin/write-panels/order-data.php:275 +msgid "Cost per unit ex. tax e.g. 2.99" +msgstr "Kosten per eenheid ex. btw bijv. 2.99" + +# @ jigoshop +#: admin/write-panels/order-data.php:285 +msgid "Add item" +msgstr "Artikel toevoegen" + +# @ jigoshop +#: admin/write-panels/order-data.php:286 +msgid "Calculate totals" +msgstr "Bereken totalen" + +# @ jigoshop +#: admin/write-panels/order-data.php:290 +#: admin/write-panels/order-data.php:293 +msgid "(ex. tax)" +msgstr "(ex. btw)" + +# @ jigoshop +#: admin/write-panels/order-data.php:292 +msgid "Shipping & Handling:" +msgstr "Verzending & Verwerking:" + +# @ jigoshop +#: admin/write-panels/order-data.php:293 +msgid "Shipping method..." +msgstr "Verzendmethode..." + +# @ jigoshop +#: admin/write-panels/order-data.php:295 +msgid "Order shipping tax:" +msgstr "Bestelling verzendkosten btw:" + +# @ jigoshop +#: admin/write-panels/order-data.php:305 +msgid "Payment method..." +msgstr "Betaalmethode..." + +# @ jigoshop +#: admin/write-panels/order-data.php:324 +msgid "Save Order" +msgstr "Bewaar bestelling" + +# @ jigoshop +#: admin/write-panels/order-data.php:324 +msgid "- Save/update the order." +msgstr "- Bewaar/update de bestelling." + +# @ jigoshop +#: admin/write-panels/order-data.php:326 +msgid "Reduce stock" +msgstr "Verminder voorraad" + +# @ jigoshop +#: admin/write-panels/order-data.php:326 +msgid "- Reduces stock for each item in the order; useful after manually creating an order or manually marking an order as complete/processing after payment." +msgstr "- Vermindert voorraad voor elk item in de bestelling, handig na het handmatig maken van een bestelling of handmatig markeren van een bestelling als voltooid/verwerking na betaling." + +# @ jigoshop +#: admin/write-panels/order-data.php:327 +msgid "Restore stock" +msgstr "Herstel voorraad" + +# @ jigoshop +#: admin/write-panels/order-data.php:327 +msgid "- Restores stock for each item in the order; useful after refunding or canceling the entire order." +msgstr "- Herstelt voorraad voor elk item in de volgorde, nuttig na terugbetaling of annuleren van de gehele bestelling." + +# @ jigoshop +#: admin/write-panels/order-data.php:329 +msgid "Email invoice" +msgstr "E-mail factuur" + +# @ jigoshop +#: admin/write-panels/order-data.php:329 +msgid "- Emails the customer order details and a payment link." +msgstr "- stuurt een e-mail naar de klant met de bestelling details en een betaallink." + +# @ default +#: admin/write-panels/order-data.php:335 +msgid "Delete Permanently" +msgstr "Permanent verwijderen" + +# @ default +#: admin/write-panels/order-data.php:337 +msgid "Move to Trash" +msgstr "Verplaats naar prullenmand" + +#: admin/write-panels/product-type.php:31 +msgid "Parent post" +msgstr "Bovenliggend bericht" + +# @ jigoshop +#: admin/write-panels/product-type.php:32 +msgid "Choose a grouped product…" +msgstr "Kies een gegroepeerd product…" + +#: admin/write-panels/product-type.php:61 +msgctxt "ordering" +msgid "Order" +msgstr "Bestelling" + +# @ jigoshop +#: admin/write-panels/product-data-save.php:129 +msgid "Product SKU must be unique." +msgstr "Product Art. nr. moet uniek zijn." + +#: admin/write-panels/product-types/downloadable.php:27 +msgid "File path" +msgstr "Bestandspad" + +# @ jigoshop +#: admin/write-panels/product-types/downloadable.php:30 +msgid "path to file on your server" +msgstr "pad naar het bestand op uw server" + +#: admin/write-panels/product-types/downloadable.php:34 +msgid "Download Limit" +msgstr "Download limiet" + +#: admin/write-panels/product-types/downloadable.php:37 +msgid "Leave blank for unlimited re-downloads." +msgstr "Laat leeg voor onbeperkt aantal downloads." + +# @ jigoshop +#: admin/write-panels/product-types/downloadable.php:56 +msgid "Downloadable" +msgstr "Downloadbaar" + +#: admin/write-panels/product-types/configurable.php:13 +msgid "Add pricing/inventory for product variations. All fields are optional; leave blank to use attributes from the main product data. Note: Please save your product attributes in the \"Product Data\" panel first." +msgstr "Voeg prijsstelling/inventaris voor product variaties toe. Alle velden zijn optioneel, laat leeg om kenmerken van het belangrijkste product gegevens te gebruiken. Opmerking: Graag uw product kenmerken eerst op te slaan in het \"Product gegevens \" paneel." + +#: admin/write-panels/product-types/configurable.php:19 +#: admin/write-panels/product-types/configurable.php:86 +msgid "Configuration:" +msgstr "Configuratie:" + +#: admin/write-panels/product-types/configurable.php:38 +#: admin/write-panels/product-types/configurable.php:103 +msgid "SKU:" +msgstr "Art. nr.:" + +#: admin/write-panels/product-types/configurable.php:39 +msgid "Weight variation" +msgstr "Gewichtsvariatie" + +#: admin/write-panels/product-types/configurable.php:39 +msgid "Weight (e.g. 10, -5)" +msgstr "Gewicht (bv. 10, -5)" + +#: admin/write-panels/product-types/configurable.php:40 +msgid "Price variation:" +msgstr "Prijsvariatie:" + +#: admin/write-panels/product-types/configurable.php:40 +msgid "Price (e.g. 5.99, -2.99)" +msgstr "Prijs (bijv. 5,99, -2,99)" + +#: admin/write-panels/product-types/configurable.php:41 +#: admin/write-panels/product-types/configurable.php:107 +msgid "Stock Qty:" +msgstr "Voorraad aantal:" + +#: admin/write-panels/product-types/configurable.php:42 +msgid "Image:" +msgstr "Afbeelding:" + +#: admin/write-panels/product-types/configurable.php:49 +msgid "Add Configuration" +msgstr "Configuratie toevoegen" + +#: admin/write-panels/product-types/configurable.php:64 +msgid "Configurable" +msgstr "Configureerbaar" + +#: admin/write-panels/product-types/configurable.php:105 +msgid "Price:" +msgstr "Prijs:" + +#: admin/write-panels/product-types/configurable.php:106 +msgid "Sale price:" +msgstr "Verkoopprijs:" + +#: admin/write-panels/product-types/configurable.php:118 +msgid "Are you sure you want to remove this configuration?" +msgstr "Weet je zeker dat je deze configuratie wil verwijderen?" + +# @ default +#: admin/write-panels/product-types/virtual.php:23 +msgid "Virtual products have no specific options." +msgstr "Virtuele producten hebben geen specifieke opties." + +# @ jigoshop +#: admin/write-panels/product-types/virtual.php:41 +msgid "Virtual" +msgstr "Virtueel" + +# @ default +#: admin/write-panels/product-types/grouped.php:23 +msgid "Grouped products have no specific options — you can add simple products to this grouped product by editing them and setting their parent product option." +msgstr "Gegroepeerde producten hebben geen specifieke opties — u kunt eenvoudig producten toevoegen aan deze gegroepeerde producten door hen te bewerken en het bepalen van hun bovenliggend product optie." + +# @ jigoshop +#: admin/write-panels/product-types/grouped.php:41 +msgid "Grouped" +msgstr "Gegroepeerd" + +#: classes/jigoshop.class.php:189 +msgid "Action failed. Please refresh the page and retry." +msgstr "Actie mislukt. Vernieuw de pagina en probeer het opnieuw." + +# @ jigoshop +#: classes/jigoshop_checkout.class.php:31 +#: classes/jigoshop_checkout.class.php:45 +msgid "First Name" +msgstr "Voornaam" + +# @ jigoshop +#: classes/jigoshop_checkout.class.php:32 +#: classes/jigoshop_checkout.class.php:46 +msgid "Last Name" +msgstr "Achternaam" + +# @ jigoshop +#: classes/jigoshop_checkout.class.php:33 +#: classes/jigoshop_checkout.class.php:47 +msgid "Company" +msgstr "Bedrijf" + +# @ jigoshop +#: classes/jigoshop_checkout.class.php:34 +#: classes/jigoshop_checkout.class.php:48 +msgid "Address" +msgstr "Adres" + +# @ jigoshop +#: classes/jigoshop_checkout.class.php:34 +#: classes/jigoshop_checkout.class.php:48 +msgid "Address 1" +msgstr "Adres 1" + +# @ jigoshop +#: classes/jigoshop_checkout.class.php:35 +#: classes/jigoshop_checkout.class.php:49 +msgid "Address 2" +msgstr "Adres 2" + +# @ jigoshop +#: classes/jigoshop_checkout.class.php:36 +#: classes/jigoshop_checkout.class.php:50 +msgid "City" +msgstr "Stad" + +# @ jigoshop +#: classes/jigoshop_checkout.class.php:38 +#: classes/jigoshop_checkout.class.php:52 +msgid "Country" +msgstr "Land" + +# @ jigoshop +#: classes/jigoshop_checkout.class.php:39 +#: classes/jigoshop_checkout.class.php:53 +#: classes/jigoshop_checkout.class.php:197 +msgid "State/County" +msgstr "Staat/Regio" + +# @ jigoshop +#: classes/jigoshop_checkout.class.php:40 +msgid "Email Address" +msgstr "E-mailadres" + +# @ jigoshop +#: classes/jigoshop_checkout.class.php:40 +msgid "you@yourdomain.com" +msgstr "jij@joudomein.com" + +# @ jigoshop +#: classes/jigoshop_checkout.class.php:41 +msgid "Phone" +msgstr "Telefoon" + +# @ jigoshop +#: classes/jigoshop_checkout.class.php:41 +msgid "Phone number" +msgstr "Telefoonnummer" + +#: classes/jigoshop_checkout.class.php:62 +msgid "Billing & Shipping" +msgstr "Facturatie & Verzending" + +# @ jigoshop +#: classes/jigoshop_checkout.class.php:82 +msgid "Create an account?" +msgstr "Account aanmaken?" + +# @ jigoshop +#: classes/jigoshop_checkout.class.php:88 +msgid "Account username" +msgstr "Account gebruikersnaam" + +# @ jigoshop +#: classes/jigoshop_checkout.class.php:89 +#: classes/jigoshop_checkout.class.php:90 +msgid "Account password" +msgstr "Account wachtwoord" + +# @ jigoshop +#: classes/jigoshop_checkout.class.php:92 +msgid "Save time in the future and check the status of your order by creating an account." +msgstr "Bespaar tijd in de toekomst en controleer de status van uw bestelling door het creëren van een account." + +# @ jigoshop +#: classes/jigoshop_checkout.class.php:106 +msgid "Ship to same address?" +msgstr "Verzenden naar hetzelfde adres?" + +#: classes/jigoshop_checkout.class.php:120 +msgid "Notes/Comments" +msgstr "Notities / Opmerkingen" + +# @ jigoshop +#: classes/jigoshop_checkout.class.php:124 +msgid "Order Notes" +msgstr "Bestelling opmerkingen" + +# @ jigoshop +#: classes/jigoshop_checkout.class.php:124 +msgid "Notes about your order, e.g. special notes for delivery." +msgstr "Opmerkingen over uw bestelling, bijvoorbeeld Speciale opmerkingen voor levering." + +# @ jigoshop +#: classes/jigoshop_checkout.class.php:236 +#, php-format +msgid "Sorry, your session has expired. Return to homepage →" +msgstr "Sorry, je sessie is vervallen. Ga terug naar de startpagina →" + +# @ jigoshop +#: classes/jigoshop_checkout.class.php:263 +msgid " (billing) is a required field." +msgstr "(facturatie) is een verplicht veld." + +# @ jigoshop +#: classes/jigoshop_checkout.class.php:268 +msgid " (billing) is not a valid number." +msgstr "(facturatie) is geen geldig nummer." + +# @ jigoshop +#: classes/jigoshop_checkout.class.php:271 +msgid " (billing) is not a valid email address." +msgstr "(facturatie) is geen geldig e-mailadres." + +# @ jigoshop +#: classes/jigoshop_checkout.class.php:274 +msgid " (billing) is not a valid postcode/ZIP." +msgstr "(facturatie) is geen geldige postcode." + +# @ jigoshop +#: classes/jigoshop_checkout.class.php:295 +msgid " (shipping) is a required field." +msgstr "(verzending) is een verplicht veld." + +# @ jigoshop +#: classes/jigoshop_checkout.class.php:300 +msgid " (shipping) is not a valid postcode/ZIP." +msgstr "(verzending) is geen geldige postcode." + +# @ jigoshop +#: classes/jigoshop_checkout.class.php:323 +msgid "Please enter an account username." +msgstr "Gelieve een gebruikersnaam op te geven voor het account." + +# @ jigoshop +#: classes/jigoshop_checkout.class.php:324 +msgid "Please enter an account password." +msgstr "Gelieve een wachtwoord op te geven voor het account." + +# @ jigoshop +#: classes/jigoshop_checkout.class.php:325 +msgid "Passwords do not match." +msgstr "Wachtwoorden komen niet overeen." + +# @ jigoshop +#: classes/jigoshop_checkout.class.php:329 +msgid "Invalid email/username." +msgstr "Ongeldige e-mail/gebruikersnaam." + +# @ jigoshop +#: classes/jigoshop_checkout.class.php:331 +msgid "An account is already registered with that username. Please choose another." +msgstr "Er is al een account geregistreerd met die gebruikersnaam. Gelieve een andere te kiezen." + +# @ jigoshop +#: classes/jigoshop_checkout.class.php:336 +msgid "An account is already registered with your email address. Please login." +msgstr "Er is al een account geregistreerd met dit e-mailadres. Gelieve in te loggen." + +# @ jigoshop +#: classes/jigoshop_checkout.class.php:341 +msgid "You must accept our Terms & Conditions." +msgstr "U moet akkoord gaan met onze Algemene Voorwaarden." + +# @ jigoshop +#: classes/jigoshop_checkout.class.php:348 +msgid "Invalid shipping method." +msgstr "Ongeldige verzendwijze." + +# @ jigoshop +#: classes/jigoshop_checkout.class.php:357 +msgid "Invalid payment method." +msgstr "Ongeldige betaalwijze." + +# @ jigoshop +#: classes/jigoshop_checkout.class.php:383 +#, php-format +msgid "ERROR: Couldn’t register you... please contact the webmaster !" +msgstr "ERROR: Registratie mislukt... neem contact op met webmaster !" + +# @ jigoshop +#: classes/jigoshop_checkout.class.php:537 +#: classes/jigoshop_checkout.class.php:545 +#: classes/jigoshop_cart.class.php:209 +#: classes/jigoshop_cart.class.php:214 +#, php-format +msgid "Sorry, we do not have enough \"%s\" in stock to fulfill your order. Please edit your cart and try again. We apologise for any inconvenience caused." +msgstr "Sorry, hebben we niet genoeg \"%s\" in voorraad om uw bestelling af te handelen. Bewerk uw winkelwagen en probeer het opnieuw. Onze excuses voor het ongemak." + +# @ jigoshop +#: classes/jigoshop_countries.class.php:528 +msgid "to the" +msgstr "naar de" + +# @ jigoshop +#: classes/jigoshop_countries.class.php:529 +msgid "to" +msgstr "naar" + +#: classes/jigoshop_countries.class.php:536 +msgid "the " +msgstr "de" + +# @ jigoshop +#: classes/jigoshop_countries.class.php:557 +msgid "All states" +msgstr "Alle staten" + +# @ jigoshop +#: classes/jigoshop_cart.class.php:389 +#: classes/jigoshop_cart.class.php:421 +msgid " (inc. tax)" +msgstr " (inc. btw)" + +# @ jigoshop +#: classes/jigoshop_cart.class.php:428 +#: classes/jigoshop_order.class.php:199 +msgid "Free!" +msgstr "Gratis!" + +# @ jigoshop +#: classes/jigoshop_cart.class.php:436 +msgid "via " +msgstr "via" + +# @ jigoshop +#: classes/jigoshop_cart.class.php:453 +msgid "Discount code already applied!" +msgstr "Deze kortingscode werd al gebruikt!" + +#: classes/jigoshop_cart.class.php:459 +msgid "Invalid coupon." +msgstr "Ongeldige kortingscode." + +# @ jigoshop +#: classes/jigoshop_cart.class.php:477 +msgid "Discount code applied successfully." +msgstr "Kortingscode met succes toegepast." + +# @ jigoshop +#: classes/jigoshop_cart.class.php:481 +msgid "Coupon does not exist!" +msgstr "Kortingscode bestaat niet!" + +# @ jigoshop +#: classes/jigoshop_order.class.php:186 +#, php-format +msgid " (ex. tax) via %s" +msgstr " (ex. btw) via %s" + +# @ jigoshop +#: classes/jigoshop_order.class.php:324 +#, php-format +msgid "Order status changed from %s to %s." +msgstr "Bestelstatus gewijzigd van %s naar %s." + +# @ jigoshop +#: classes/jigoshop_order.class.php:418 +msgid "Order item stock reduced successfully." +msgstr "Bestelling artikel voorraad met succes verminderd." + +# @ jigoshop +#: classes/jigoshop_product.class.php:223 +#: classes/jigoshop_product.class.php:251 +#: classes/jigoshop_product.class.php:260 +msgid "Out of stock" +msgstr "Niet in voorraad" + +# @ jigoshop +#: classes/jigoshop_product.class.php:229 +#: classes/jigoshop_product.class.php:248 +msgid "In stock" +msgstr "In voorraad" + +# @ jigoshop +#: classes/jigoshop_product.class.php:234 +#: classes/jigoshop_product.class.php:239 +msgid "available" +msgstr "beschikbaar" + +# @ jigoshop +#: classes/jigoshop_product.class.php:235 +msgid " (backorders allowed)" +msgstr "(nabestellingen toegestaan)" + +# @ jigoshop +#: classes/jigoshop_product.class.php:246 +#: classes/jigoshop_product.class.php:258 +msgid "Available on backorder" +msgstr "Beschikbaar op nabestelling" + +# @ jigoshop +#: classes/jigoshop_product.class.php:373 +msgid "From: " +msgstr "Van:" + +# @ jigoshop +#: gateways/skrill.php:38 +msgid "Skrill (Moneybookers)" +msgstr "Skrill (Moneybookers)" + +# @ jigoshop +#: gateways/skrill.php:38 +msgid "Skrill works by using an iFrame to submit payment information securely to Moneybookers." +msgstr "Skrill werkt met behulp van een iFrame om de betaling informatie veilig te verzenden naar Moneybookers." + +# @ jigoshop +#: gateways/skrill.php:40 +msgid "Enable Skrill" +msgstr "Schakel Skrill in" + +# @ jigoshop +#: gateways/skrill.php:55 +msgid "Please enter your skrill email address; this is needed in order to take payment!" +msgstr "Vul je skrill e-mailadres in, dit is nodig om de betaling te ontvangen!" + +# @ jigoshop +#: gateways/skrill.php:55 +msgid "Skrill merchant e-mail" +msgstr "Skrill handelaar e-mail" + +# @ jigoshop +#: gateways/skrill.php:61 +msgid "Please enter your skrill secretword; this is needed in order to take payment!" +msgstr "Geef uw skrill wachtwoord, dit is nodig om de betaling te ontvangen!" + +# @ jigoshop +#: gateways/skrill.php:61 +msgid "Skrill Secret Word" +msgstr "Skrill wachtwoord" + +# @ jigoshop +#: gateways/skrill.php:67 +msgid "Please enter your skrill Customer ID; this is needed in order to take payment!" +msgstr "Vul uw skrill klant-ID in, dit is nodig om de betaling te ontvangen!" + +# @ jigoshop +#: gateways/skrill.php:67 +msgid "Skrill Customer ID" +msgstr "Skrill klant-ID" + +# @ jigoshop +#: gateways/skrill.php:160 +msgid "Shipping cost" +msgstr "Verzenkosten" + +# @ jigoshop +#: gateways/skrill.php:209 +msgid "Thank you for your order, please complete the secure (SSL) form below to pay with Skrill." +msgstr "Hartelijk dank voor uw bestelling, vul het beveiligde (SSL) formulier hieronder in om te betalen met Skrill." + +# @ jigoshop +#: gateways/skrill.php:270 +msgid "Skrill payment completed" +msgstr "Skrill betaling voltooid" + +# @ jigoshop +#: gateways/skrill.php:275 +#, php-format +msgid "Skrill payment failed (%s)" +msgstr "Skrill betaling is mislukt (%s)" + +# @ jigoshop +#: gateways/skrill.php:278 +msgid "Skrill payment cancelled" +msgstr "Skrill betaling geannuleerd" + +# @ jigoshop +#: gateways/skrill.php:281 +msgid "Skrill exception" +msgstr "Skrill uitzondering" + +# @ jigoshop +#: gateways/cheque.php:19 +#: gateways/cheque.php:31 +msgid "Cheque Payment" +msgstr "Cheque betaling" + +#: gateways/cheque.php:20 +msgid "Please send your cheque to Store Name, Store Street, Store Town, Store State / County, Store Postcode." +msgstr "Stuur dan uw cheque naar Winkel Naam, Winkel Straat, Winkel Stad, Winkel Provincie / Land, Winkel Postcode." + +# @ jigoshop +#: gateways/cheque.php:31 +msgid "Allows cheque payments. Why would you take cheques in this day and age? Well you probably wouldn't but it does allow you to make test purchases without having to use the sandbox area of a payment gateway which is useful for demonstrating to clients and for testing order emails and the 'success' pages etc." +msgstr "Aanvaard betalingen via cheque. Waarom zou je geen betalingen per cheque aanvaarden? Je zou dit waarschijnlijk niet doen, maar het geeft je de kans om test-aankopen te doen zonder gebruik te maken van een sandbox of betaling gateway. Dit is handig om aan klanten de bestelling e-mails en 'succes' pagina's, etc. te tonen." + +# @ jigoshop +#: gateways/cheque.php:33 +msgid "Enable Cheque Payment" +msgstr "Betaling via cheque inschakelen" + +# @ jigoshop +#: gateways/cheque.php:48 +msgid "Let the customer know the payee and where they should be sending the cheque too and that their order won't be shipping until you receive it." +msgstr "Laat de klant de begunstigde weten waar hij de cheque naar toe moet sturen en dat de bestelling niet zal verzonden worden voor u het ontvangen hebt." + +# @ jigoshop +#: gateways/cheque.php:48 +msgid "Customer Message" +msgstr "Klant bericht" + +# @ jigoshop +#: gateways/cheque.php:86 +msgid "Awaiting cheque payment" +msgstr "In afwachting van betaling via cheque" + +#: gateways/paypal.php:29 +msgid "PayPal" +msgstr "PayPal" + +# @ jigoshop +#: gateways/paypal.php:30 +msgid "Pay via PayPal; you can pay with your credit card if you don't have a PayPal account" +msgstr "Betalen via PayPal, u kunt betalen met uw creditcard als u niet beschikt over een PayPal-rekening" + +# @ jigoshop +#: gateways/paypal.php:43 +msgid "PayPal standard" +msgstr "PayPal standaard" + +# @ jigoshop +#: gateways/paypal.php:43 +msgid "PayPal standard works by sending the user to PayPal to enter their payment information." +msgstr "PayPal werkt standaard door het sturen van de gebruiker naar PayPal om de betaling informatie in te voeren." + +# @ jigoshop +#: gateways/paypal.php:45 +msgid "Enable PayPal standard" +msgstr "PayPal standaard inschakelen" + +# @ jigoshop +#: gateways/paypal.php:60 +msgid "This controls the description which the user sees during checkout." +msgstr "Dit regelt de beschrijving die de gebruiker ziet bij het afrekenen." + +# @ jigoshop +#: gateways/paypal.php:66 +msgid "Please enter your PayPal email address; this is needed in order to take payment!" +msgstr "Vul uw PayPal e-mailadres in, dit is nodig om de betaling te ontvangen!" + +# @ jigoshop +#: gateways/paypal.php:66 +msgid "PayPal email address" +msgstr "PayPal e-mailadres" + +#: gateways/paypal.php:72 +msgid "If your checkout page does not ask for shipping details, or if you do not want to send shipping information to PayPal, set this option to no. If you enable this option PayPal may restrict where things can be sent, and will prevent some orders going through for your protection." +msgstr "Als uw kassa pagina niet vraagt naar de verzending details, of als u niet wilt dat de details naar PayPal verzonden worden, moet u deze optie op nee zetten. Als u deze optie inschakelt kan PayPal beperken naar waar bestellingen kunnen verzonden worden, en wordt voorkomen dat bestellingen verder gaan voor w bescherming." + +#: gateways/paypal.php:72 +msgid "Send shipping details to PayPal" +msgstr "Stuur verzending details naar PayPal" + +# @ jigoshop +#: gateways/paypal.php:81 +msgid "Enable PayPal sandbox" +msgstr "Schakel PayPal sandbox in" + +# @ jigoshop +#: gateways/paypal.php:220 +msgid "Pay via PayPal" +msgstr "Betaal via PayPal" + +# @ jigoshop +#: gateways/paypal.php:220 +msgid "Cancel order & restore cart" +msgstr "Bestelling annuleren & winkelwagen herstellen" + +# @ jigoshop +#: gateways/paypal.php:225 +msgid "Thank you for your order. We are now redirecting you to PayPal to make payment." +msgstr "Hartelijk dank voor uw bestelling. U wordt nu naar PayPal gebracht." + +# @ jigoshop +#: gateways/paypal.php:266 +msgid "Thank you for your order, please click the button below to pay with PayPal." +msgstr "Hartelijk dank voor uw bestelling, klik op de onderstaande knop om te betalen met PayPal." + +# @ jigoshop +#: gateways/paypal.php:348 +msgid "IPN payment completed" +msgstr "IPN betaling is voltooid" + +# @ jigoshop +#: gateways/paypal.php:356 +#, php-format +msgid "Payment %s via IPN." +msgstr "Betaling %s via IPN." + +# @ jigoshop +#: shortcodes/checkout.php:21 +msgid "The order totals have been updated. Please confirm your order by pressing the Place Order button at the bottom of the page." +msgstr "Het totaal van de bestelling is bijgewerkt. Bevestig uw bestelling door op de knop Plaats bestelling aan de onderkant van de pagina te klikken." + +# @ jigoshop +#: shortcodes/my_account.php:21 +#, php-format +msgid "Hello, %s. From your account dashboard you can view your recent orders, manage your shipping and billing addresses and change your password." +msgstr "Hallo, %s. Op uw account dashboard kunt u uw recente bestellingen bekijken, uw verzend-en factuur adressen beheren en je wachtwoord wijzigen." + +# @ jigoshop +#: shortcodes/my_account.php:25 +msgid "Available downloads" +msgstr "Beschikbare downloads" + +# @ jigoshop +#: shortcodes/my_account.php:28 +msgid " download Remaining" +msgid_plural " downloads Remaining" +msgstr[0] " resterende downloaden" +msgstr[1] " resterende downloaden" + +# @ jigoshop +#: shortcodes/my_account.php:39 +msgid "#" +msgstr "#" + +# @ jigoshop +#: shortcodes/my_account.php:40 +msgid "Date" +msgstr "Datum" + +# @ jigoshop +#: shortcodes/my_account.php:41 +msgid "Ship to" +msgstr "Verzend naar" + +# @ jigoshop +#: shortcodes/my_account.php:59 +msgid "Pay" +msgstr "Betaal" + +# @ jigoshop +#: shortcodes/my_account.php:60 +msgid "Cancel" +msgstr "Annuleer" + +# @ jigoshop +#: shortcodes/my_account.php:62 +msgid "View" +msgstr "Bekijk" + +# @ jigoshop +#: shortcodes/my_account.php:70 +msgid "My Addresses" +msgstr "Mijn adressen" + +# @ jigoshop +#: shortcodes/my_account.php:71 +msgid "The following addresses will be used on the checkout page by default." +msgstr "De volgende adressen worden standaard op de kassa pagina gebruikt." + +# @ jigoshop +#: shortcodes/my_account.php:97 +msgid "You have not set up a billing address yet." +msgstr "Je hebt nog geen factuuradres ingesteld." + +# @ jigoshop +#: shortcodes/my_account.php:126 +msgid "You have not set up a shipping address yet." +msgstr "Je hebt nog geen afleveradres ingesteld." + +# @ jigoshop +#: shortcodes/my_account.php:212 +msgid "1 Infinite Loop" +msgstr "1 Oneindige lus" + +# @ jigoshop +#: shortcodes/my_account.php:216 +msgid "Cupertino" +msgstr "Cupertino" + +# @ jigoshop +#: shortcodes/my_account.php:285 +msgid "Fax" +msgstr "Fax" + +# @ jigoshop +#: shortcodes/my_account.php:291 +msgid "Save Address" +msgstr "Adres opslaan" + +# @ jigoshop +#: shortcodes/my_account.php:332 +msgid "Please enter your password." +msgstr "Vul je wachtwoord in." + +# @ jigoshop +#: shortcodes/my_account.php:346 +msgid "New password" +msgstr "Nieuw wachtwoord" + +# @ jigoshop +#: shortcodes/my_account.php:350 +msgid "Re-enter new password" +msgstr "Voer het nieuwe wachtwoord opnieuw in" + +# @ jigoshop +#: shortcodes/my_account.php:355 +msgid "Save" +msgstr "Opslaan" + +# @ jigoshop +#: shortcodes/my_account.php:382 +#, php-format +msgid "Order #%s made on %s" +msgstr "Bestelling #%s gemaakt op %s" + +# @ jigoshop +#: shortcodes/my_account.php:384 +#, php-format +msgid ". Order status: %s" +msgstr ". Bestelstatus: %s" + +# @ jigoshop +#: shortcodes/my_account.php:393 +msgid "Qty" +msgstr "Aantal" + +# @ jigoshop +#: shortcodes/my_account.php:394 +msgid "Totals" +msgstr "Totalen" + +# @ jigoshop +#: shortcodes/my_account.php:415 +#: shortcodes/order_tracking.php:61 +msgid "Grand Total" +msgstr "Algemeen totaal" + +# @ jigoshop +#: shortcodes/my_account.php:442 +msgid "Customer details" +msgstr "Klantgegevens" + +#: shortcodes/my_account.php:447 +msgid "Telephone:" +msgstr "Telefoon:" + +# @ jigoshop +#: shortcodes/my_account.php:460 +#: shortcodes/my_account.php:473 +msgid "N/A" +msgstr "N/A" + +# @ jigoshop +#: shortcodes/cart.php:17 +#: shortcodes/cart.php:32 +msgid "Cart updated." +msgstr "Winkelwagen bijgewerkt." + +# @ jigoshop +#: shortcodes/cart.php:44 +msgid "Please enter a valid postcode/ZIP." +msgstr "Vul een geldige postcode in." + +# @ jigoshop +#: shortcodes/cart.php:59 +#: shortcodes/cart.php:65 +msgid "Shipping costs updated." +msgstr "Verzendkosten bijgewerkt." + +#: shortcodes/cart.php:79 +msgid "Your cart is empty." +msgstr "Je winkelwagen is leeg." + +# @ jigoshop +#: shortcodes/cart.php:90 +msgid "Product Name" +msgstr "Productnaam" + +# @ jigoshop +#: shortcodes/cart.php:91 +msgid "Unit Price" +msgstr "Eenheidsprijs" + +# @ jigoshop +#: shortcodes/cart.php:125 +msgid "Coupon" +msgstr "Kortingscode" + +# @ jigoshop +#: shortcodes/cart.php:125 +msgid "Apply Coupon" +msgstr "Pas kortingscode toe" + +# @ jigoshop +#: shortcodes/cart.php:128 +msgid "Update Shopping Cart" +msgstr "Update winkelwagen" + +# @ jigoshop +#: shortcodes/cart.php:128 +msgid "Proceed to Checkout →" +msgstr "Ga naar de kassa →" + +# @ jigoshop +#: shortcodes/cart.php:144 +msgid "Cart Totals" +msgstr "Winkelwagen totaal" + +#: shortcodes/cart.php:157 +#, php-format +msgid "estimated for %s" +msgstr "geschat voor %s" + +# @ jigoshop +#: shortcodes/cart.php:176 +msgid "Sorry, it seems that there are no available shipping methods to your location. Please contact us if you require assistance or wish to make alternate arrangements." +msgstr "Sorry, het lijkt erop dat er geen beschikbare verzendmethoden zijn op uw locatie. Neem contact met ons op als u hulp nodig hebt of alternatieve afspraken wilt maken." + +#: shortcodes/order_tracking.php:20 +msgid "You have taken too long. Please refresh the page and retry." +msgstr "Je deed er te lang over. Vernieuw de pagina en probeer het opnieuw." + +# @ jigoshop +#: shortcodes/order_tracking.php:26 +#, php-format +msgid "Order #%s which was made %s has the status “%s”" +msgstr "Bestelling #%s die werd gemaakt %s heeft de status “%s”" + +# @ jigoshop +#: shortcodes/order_tracking.php:26 +#: shortcodes/order_tracking.php:28 +msgid " ago" +msgstr "geleden" + +# @ jigoshop +#: shortcodes/order_tracking.php:28 +msgid " and was completed " +msgstr "en werd voltooid" + +# @ jigoshop +#: shortcodes/order_tracking.php:33 +msgid "Order Details" +msgstr "Details van de bestelling" + +# @ jigoshop +#: shortcodes/order_tracking.php:37 +msgid "Title" +msgstr "Titel" + +# @ jigoshop +#: shortcodes/order_tracking.php:105 +#: shortcodes/order_tracking.php:108 +msgid "Sorry, we could not find that order id in our database. Thank you. Your order has been processed successfully.

    " +msgstr "

    Dank je wel. Uw bestelling is succesvol verwerkt.

    " + +# @ jigoshop +#: widgets/product_categories.php:16 +msgid "A list or dropdown of product categories" +msgstr "Een keuzelijst van product categorieën" + +# @ jigoshop +#: widgets/product_categories.php:39 +msgid "Select Category" +msgstr "Kies een categorie" + +# @ default +#: widgets/product_categories.php:99 +#: widgets/product_tag_cloud.php:56 +#: widgets/product_search.php:55 +#: widgets/price_filter.php:105 +#: widgets/recent_products.php:114 +#: widgets/featured_products.php:96 +#: widgets/layered_nav.php:149 +#: widgets/cart.php:78 +msgid "Title:" +msgstr "Titel:" + +# @ default +#: widgets/product_categories.php:103 +msgid "Show as dropdown" +msgstr "Toon als keuzelijst" + +# @ default +#: widgets/product_categories.php:106 +msgid "Show post counts" +msgstr "Toon berichten aantal" + +# @ default +#: widgets/product_categories.php:109 +msgid "Show hierarchy" +msgstr "Toon hiërarchie" + +# @ default +#: widgets/product_tag_cloud.php:16 +msgid "Your most used product tags in cloud format" +msgstr "Uw meest gebruikte productlabels in cloud-formaat" + +# @ default +#: widgets/product_tag_cloud.php:17 +msgid "Product Tag Cloud" +msgstr "Product Tag Cloud" + +# @ default +#: widgets/product_search.php:16 +msgid "Search box for products only." +msgstr "Zoekvak enkel voor producten." + +# @ default +#: widgets/product_search.php:17 +msgid "Product Search" +msgstr "Product zoeken" + +# @ jigoshop +#: widgets/product_search.php:34 +msgid "Search for:" +msgstr "Zoeken naar:" + +# @ jigoshop +#: widgets/product_search.php:35 +msgid "Search for products" +msgstr "Zoek naar producten" + +# @ default +#: widgets/price_filter.php:37 +msgid "Shows a price filter slider in a widget which lets you narrow down the list of shown products in categories." +msgstr "Toont een prijs filter slider in een widget waarmee je de lijst van de getoonde producten in categorieën beperken." + +# @ default +#: widgets/price_filter.php:38 +msgid "Price Filter" +msgstr "Prijs filter" + +# @ jigoshop +#: widgets/price_filter.php:83 +msgid "Price: " +msgstr "Prijs:" + +# @ jigoshop +#: widgets/price_filter.php:96 +msgid "Filter by price" +msgstr "Filter op prijs" + +# @ jigoshop +#: widgets/recent_products.php:16 +msgid "The most recent products on your site" +msgstr "Meest recente producten op jou site" + +# @ jigoshop +#: widgets/recent_products.php:17 +#: widgets/recent_products.php:39 +msgid "New Products" +msgstr "Nieuwe producten" + +# @ default +#: widgets/recent_products.php:117 +#: widgets/featured_products.php:99 +msgid "Number of products to show:" +msgstr "Aantal producten om te tonen:" + +#: widgets/recent_products.php:121 +msgid "Show hidden product variations" +msgstr "Toon verborgen product variaties" + +# @ jigoshop +#: widgets/featured_products.php:18 +msgid "Featured products on your site" +msgstr "Aanbevolen producten op jou site" + +# @ jigoshop +#: widgets/featured_products.php:19 +#: widgets/featured_products.php:41 +msgid "Featured Products" +msgstr "Aanbevolen producten" + +# @ default +#: widgets/layered_nav.php:16 +msgid "Shows a custom attribute in a widget which lets you narrow down the list of shown products in categories." +msgstr "Toont een aangepast kenmerk in een widget waarmee je de lijst van de getoonde producten in categorieën kan beperken." + +# @ default +#: widgets/layered_nav.php:17 +msgid "Layered Nav" +msgstr "Gelaagde Nav" + +# @ default +#: widgets/layered_nav.php:152 +msgid "Attribute:" +msgstr "Kenmerk:" + +# @ default +#: widgets/cart.php:18 +msgid "Shopping Cart for the sidebar." +msgstr "Winkelwagen voor de zijbalk." + +# @ default +#: widgets/cart.php:19 +msgid "Shopping Cart" +msgstr "Winkelwagen" + +# @ jigoshop +#: widgets/cart.php:46 +msgid "No products in the cart." +msgstr "Geen producten in winkelwagen." + +# @ jigoshop +#: widgets/cart.php:64 +msgid "View Cart →" +msgstr "Bekijk winkelwagen →" + +# @ jigoshop +#: widgets/cart.php:64 +msgid "Checkout →" +msgstr "Kassa →" + +# @ jigoshop +#: templates/loop-shop.php:43 +msgid "No products found which match your selection." +msgstr "Geen producten gevonden die voldoen aan uw selectie." + +# @ jigoshop +#: templates/archive-product.php:6 +msgid "Search Results:" +msgstr "Zoekresultaten:" + +# @ jigoshop +#: templates/archive-product.php:8 +msgid "All Products" +msgstr "Alle producten" + +# @ jigoshop +#: templates/single-product-reviews.php:28 +#, php-format +msgid "Rated %s out of 5" +msgstr "Beoordeeld %s op 5" + +# @ jigoshop +#: templates/single-product-reviews.php:30 +#, php-format +msgid "%s review for %s" +msgid_plural "%s reviews for %s" +msgstr[0] "%s beoordeling voor %s" +msgstr[1] "%s beoordelingen voor %s" + +# @ jigoshop +#: templates/single-product-reviews.php:55 +msgid "Add Review" +msgstr "Voeg beoordeling toe" + +# @ jigoshop +#: templates/single-product-reviews.php:57 +msgid "Add a review" +msgstr "Voeg een beoordeling toe" + +# @ jigoshop +#: templates/single-product-reviews.php:61 +msgid "Be the first to review " +msgstr "Schrijf als eerste een beoordeling" + +# @ jigoshop +#: templates/single-product-reviews.php:63 +msgid "There are no reviews yet, would you like to
    submit yours?" +msgstr "Er zijn nog geen beoordelingen, wilt u die van jou indienen?" + +# @ default +#: templates/single-product-reviews.php:78 +msgid "Email" +msgstr "E-mail" + +# @ jigoshop +#: templates/single-product-reviews.php:81 +msgid "Submit Review" +msgstr "Beoordeling verzenden" + +# @ jigoshop +#: templates/single-product-reviews.php:84 +msgid "Rating" +msgstr "Beoordeling" + +# @ jigoshop +#: templates/single-product-reviews.php:85 +msgid "Rate..." +msgstr "Beoordeel..." + +# @ jigoshop +#: templates/single-product-reviews.php:86 +msgid "Perfect" +msgstr "Perfect" + +# @ jigoshop +#: templates/single-product-reviews.php:87 +msgid "Good" +msgstr "Goed" + +# @ jigoshop +#: templates/single-product-reviews.php:88 +msgid "Average" +msgstr "Gemiddeld" + +# @ jigoshop +#: templates/single-product-reviews.php:89 +msgid "Not that bad" +msgstr "Niet zo slecht" + +# @ jigoshop +#: templates/single-product-reviews.php:90 +msgid "Very Poor" +msgstr "Zeer slecht" + +# @ default +#: templates/single-product-reviews.php:92 +msgctxt "noun" +msgid "Your Review" +msgstr "Uw beoordeling" + +#: templates/checkout/pay_for_order.php:75 +msgid "Sorry, it seems that there are no available payment methods for your location. Please contact us if you require assistance or wish to make alternate arrangements." +msgstr "Sorry, het lijkt erop dat er geen beschikbare betaalmethoden voor uw locatie. Neem contact met ons op als u hulp nodig hebt of alternatieve afspraken wilt maken." + +# @ jigoshop +#: templates/checkout/pay_for_order.php:84 +msgid "Pay for order" +msgstr "Betaal voor bestelling" + +# @ jigoshop +#: templates/checkout/review_order.php:11 +msgid "Sorry, your session has expired." +msgstr "Helaas, je sessie is vervallen." + +# @ jigoshop +#: templates/checkout/review_order.php:11 +msgid "Return to homepage →" +msgstr "Ga terug startpagina →" + +#: templates/checkout/review_order.php:64 +msgid " (ex. tax)" +msgstr " (ex. btw)" + +# @ jigoshop +#: templates/checkout/review_order.php:66 +msgid "Free" +msgstr "Gratis" + +# @ jigoshop +#: templates/checkout/review_order.php:78 +msgid "Please fill in your details above to see available shipping methods." +msgstr "Vul uw gegevens hierboven in om beschikbare verzendmethoden te zien." + +# @ jigoshop +#: templates/checkout/review_order.php:80 +msgid "Sorry, it seems that there are no available shipping methods for your state. Please contact us if you require assistance or wish to make alternate arrangements." +msgstr "Sorry, het lijkt erop dat er geen beschikbare verzendmethoden voor uw staat aanwezig zijn. Neem contact met ons op als u hulp nodig hebt of alternatieve afspraken wilt maken." + +# @ jigoshop +#: templates/checkout/review_order.php:148 +msgid "Please fill in your details above to see available payment methods." +msgstr "Vul uw gegevens hierboven in om beschikbare betaalmethoden te zien." + +# @ jigoshop +#: templates/checkout/review_order.php:150 +msgid "Sorry, it seems that there are no available payment methods for your state. Please contact us if you require assistance or wish to make alternate arrangements." +msgstr "Sorry, het lijkt erop dat er geen beschikbare betaalmethoden voor uw staat aanwezig zijn. Neem contact met ons op als u hulp nodig hebt of alternatieve afspraken wilt maken." + +# @ jigoshop +#: templates/checkout/review_order.php:160 +msgid "Since your browser does not support JavaScript, or it is disabled, please ensure you click the Update Totals button before placing your order. You may be charged more than the amount stated above if you fail to do so." +msgstr "Omdat uw browser geen JavaScript ondersteunt, of het is uitgeschakeld, klik dan op de Update totaal knop voordat u uw bestelling plaatst. U kan meer aangerekend worden dan bovenstaand bedrag wanneer u dit niet doet." + +# @ jigoshop +#: templates/checkout/review_order.php:160 +msgid "Update totals" +msgstr "Update totaal" + +# @ jigoshop +#: templates/checkout/review_order.php:163 +msgid "Place order" +msgstr "Plaats bestelling" + +# @ jigoshop +#: templates/checkout/review_order.php:167 +msgid "I accept the" +msgstr "Ik ga akkoord met de" + +# @ jigoshop +#: templates/checkout/review_order.php:167 +msgid "terms & conditions" +msgstr "Algemene voorwaarden" + +# @ jigoshop +#: templates/checkout/form.php:18 +msgid "Your order" +msgstr "Je bestelling" + +#: languages/countries.php:10 +msgid "Andorra" +msgstr "Andorra" + +#: languages/countries.php:11 +msgid "United Arab Emirates" +msgstr "Verenigde Arabische Emiraten" + +#: languages/countries.php:12 +msgid "Afghanistan" +msgstr "Afghanistan" + +#: languages/countries.php:13 +msgid "Antigua and Barbuda" +msgstr "Antigua en Barbuda" + +#: languages/countries.php:14 +msgid "Anguilla" +msgstr "Anguilla" + +#: languages/countries.php:15 +msgid "Albania" +msgstr "Albanië" + +#: languages/countries.php:16 +msgid "Armenia" +msgstr "Armenië" + +#: languages/countries.php:17 +msgid "Netherlands Antilles" +msgstr "Nederlandse Antillen" + +#: languages/countries.php:18 +msgid "Angola" +msgstr "Angola" + +#: languages/countries.php:19 +msgid "Antarctica" +msgstr "Antarctica" + +#: languages/countries.php:20 +msgid "Argentina" +msgstr "Argentinië" + +#: languages/countries.php:21 +msgid "American Samoa" +msgstr "Amerikaans Samoa" + +#: languages/countries.php:22 +msgid "Austria" +msgstr "Oostenrijk" + +#: languages/countries.php:23 +msgid "Australia" +msgstr "Australië" + +#: languages/countries.php:24 +msgid "Aruba" +msgstr "Aruba" + +#: languages/countries.php:25 +msgid "Aland Islands" +msgstr "Aland-eilanden" + +#: languages/countries.php:26 +msgid "Azerbaijan" +msgstr "Azerbeidzjan" + +#: languages/countries.php:27 +msgid "Bosnia and Herzegovina" +msgstr "Bosnië en Herzegovina" + +#: languages/countries.php:28 +msgid "Barbados" +msgstr "Barbados" + +#: languages/countries.php:29 +msgid "Bangladesh" +msgstr "Bangladesh" + +#: languages/countries.php:30 +msgid "Belgium" +msgstr "België" + +#: languages/countries.php:31 +msgid "Burkina Faso" +msgstr "Burkina Faso" + +#: languages/countries.php:32 +msgid "Bulgaria" +msgstr "Bulgarije" + +#: languages/countries.php:33 +msgid "Bahrain" +msgstr "Bahrein" + +#: languages/countries.php:34 +msgid "Burundi" +msgstr "Boeroendi" + +#: languages/countries.php:35 +msgid "Benin" +msgstr "Benin" + +#: languages/countries.php:36 +msgid "Saint Barthélemy" +msgstr "Saint Barthelemy" + +#: languages/countries.php:37 +msgid "Bermuda" +msgstr "Bermuda" + +#: languages/countries.php:38 +msgid "Brunei" +msgstr "Brunei" + +#: languages/countries.php:39 +msgid "Bolivia" +msgstr "Bolivia" + +#: languages/countries.php:40 +msgid "Brazil" +msgstr "Brazilië" + +#: languages/countries.php:41 +msgid "Bahamas" +msgstr "Bahamas" + +#: languages/countries.php:42 +msgid "Bhutan" +msgstr "Bhutan" + +#: languages/countries.php:43 +msgid "Bouvet Island" +msgstr "Bouvet eiland" + +#: languages/countries.php:44 +msgid "Botswana" +msgstr "Botswana" + +#: languages/countries.php:45 +msgid "Belarus" +msgstr "Belarus" + +#: languages/countries.php:46 +msgid "Belize" +msgstr "Belize" + +#: languages/countries.php:47 +msgid "Canada" +msgstr "Canada" + +#: languages/countries.php:48 +msgid "Cocos (Keeling) Islands" +msgstr "Cocos (Keelingeilanden) Islands" + +#: languages/countries.php:49 +msgid "Congo (Kinshasa)" +msgstr "Congo (Kinshasa)" + +#: languages/countries.php:50 +msgid "Central African Republic" +msgstr "Centraal-Afrikaanse Republiek" + +#: languages/countries.php:51 +msgid "Congo (Brazzaville)" +msgstr "Congo (Brazzaville)" + +#: languages/countries.php:52 +msgid "Switzerland" +msgstr "Zwitserland" + +#: languages/countries.php:53 +msgid "Ivory Coast" +msgstr "Ivoorkust" + +#: languages/countries.php:54 +msgid "Cook Islands" +msgstr "Cook Eilanden" + +#: languages/countries.php:55 +msgid "Chile" +msgstr "Chili" + +#: languages/countries.php:56 +msgid "Cameroon" +msgstr "Kameroen" + +#: languages/countries.php:57 +msgid "China" +msgstr "China" + +#: languages/countries.php:58 +msgid "Colombia" +msgstr "Colombia" + +#: languages/countries.php:59 +msgid "Costa Rica" +msgstr "Costa Rica" + +#: languages/countries.php:60 +msgid "Cuba" +msgstr "Cuba" + +#: languages/countries.php:61 +msgid "Cape Verde" +msgstr "Kaapverdië" + +#: languages/countries.php:62 +msgid "Christmas Island" +msgstr "Kersteiland" + +#: languages/countries.php:63 +msgid "Cyprus" +msgstr "Cyprus" + +#: languages/countries.php:64 +msgid "Czech Republic" +msgstr "Tsjechië" + +#: languages/countries.php:65 +msgid "Germany" +msgstr "Duitsland" + +#: languages/countries.php:66 +msgid "Djibouti" +msgstr "Djibouti" + +#: languages/countries.php:67 +msgid "Denmark" +msgstr "Denemarken" + +#: languages/countries.php:68 +msgid "Dominica" +msgstr "Dominica" + +#: languages/countries.php:69 +msgid "Dominican Republic" +msgstr "Dominicaanse Republiek" + +#: languages/countries.php:70 +msgid "Algeria" +msgstr "Algerije" + +#: languages/countries.php:71 +msgid "Ecuador" +msgstr "Ecuador" + +#: languages/countries.php:72 +msgid "Estonia" +msgstr "Estland" + +#: languages/countries.php:73 +msgid "Egypt" +msgstr "Egypte" + +#: languages/countries.php:74 +msgid "Western Sahara" +msgstr "West-Sahara" + +#: languages/countries.php:75 +msgid "Eritrea" +msgstr "Eritrea" + +#: languages/countries.php:76 +msgid "Spain" +msgstr "Spanje" + +#: languages/countries.php:77 +msgid "Ethiopia" +msgstr "Ethiopië" + +#: languages/countries.php:78 +msgid "Finland" +msgstr "Finland" + +#: languages/countries.php:79 +msgid "Fiji" +msgstr "Fiji" + +#: languages/countries.php:80 +msgid "Falkland Islands" +msgstr "Falklandeilanden" + +#: languages/countries.php:81 +msgid "Micronesia" +msgstr "Micronesië" + +#: languages/countries.php:82 +msgid "Faroe Islands" +msgstr "Faröer Eilanden" + +#: languages/countries.php:83 +msgid "France" +msgstr "Frankrijk" + +#: languages/countries.php:84 +msgid "Gabon" +msgstr "Gabon" + +#: languages/countries.php:85 +msgid "United Kingdom" +msgstr "Verenigd Koninkrijk" + +#: languages/countries.php:86 +msgid "Grenada" +msgstr "Grenada" + +#: languages/countries.php:87 +msgid "Georgia" +msgstr "Georgië" + +#: languages/countries.php:88 +msgid "French Guiana" +msgstr "Frans-Guyana" + +#: languages/countries.php:89 +msgid "Guernsey" +msgstr "Guernsey" + +#: languages/countries.php:90 +msgid "Ghana" +msgstr "Ghana" + +#: languages/countries.php:91 +msgid "Gibraltar" +msgstr "Gibraltar" + +#: languages/countries.php:92 +msgid "Greenland" +msgstr "Groenland" + +#: languages/countries.php:93 +msgid "Gambia" +msgstr "Gambia" + +#: languages/countries.php:94 +msgid "Guinea" +msgstr "Guinea" + +#: languages/countries.php:95 +msgid "Guadeloupe" +msgstr "Guadeloupe" + +#: languages/countries.php:96 +msgid "Equatorial Guinea" +msgstr "Equatoriaal-Guinea" + +#: languages/countries.php:97 +msgid "Greece" +msgstr "Griekenland" + +#: languages/countries.php:98 +msgid "South Georgia and the South Sandwich Islands" +msgstr "Zuid-Georgië en de Zuidelijke Sandwicheilanden" + +#: languages/countries.php:99 +msgid "Guatemala" +msgstr "Guatemala" + +#: languages/countries.php:100 +msgid "Guam" +msgstr "Guam" + +#: languages/countries.php:101 +msgid "Guinea-Bissau" +msgstr "Guinea-Bissau" + +#: languages/countries.php:102 +msgid "Guyana" +msgstr "Guyana" + +#: languages/countries.php:103 +msgid "Hong Kong S.A.R., China" +msgstr "Hong Kong S.A.R., China" + +#: languages/countries.php:104 +msgid "Heard Island and McDonald Islands" +msgstr "Heard Eiland en McDonald -eilanden" + +#: languages/countries.php:105 +msgid "Honduras" +msgstr "Honduras" + +#: languages/countries.php:106 +msgid "Croatia" +msgstr "Kroatië" + +#: languages/countries.php:107 +msgid "Haiti" +msgstr "Haïti" + +#: languages/countries.php:108 +msgid "Hungary" +msgstr "Hongarije" + +#: languages/countries.php:109 +msgid "Indonesia" +msgstr "Indonesië" + +#: languages/countries.php:110 +msgid "Ireland" +msgstr "Ierland" + +#: languages/countries.php:111 +msgid "Israel" +msgstr "Israël" + +#: languages/countries.php:112 +msgid "Isle of Man" +msgstr "Het eiland Man" + +#: languages/countries.php:113 +msgid "India" +msgstr "India" + +#: languages/countries.php:114 +msgid "British Indian Ocean Territory" +msgstr "Brits Indische Oceaan Territorium" + +#: languages/countries.php:115 +msgid "Iraq" +msgstr "Irak" + +#: languages/countries.php:116 +msgid "Iran" +msgstr "Iran" + +#: languages/countries.php:117 +msgid "Iceland" +msgstr "Ijsland" + +#: languages/countries.php:118 +msgid "Italy" +msgstr "Italië" + +#: languages/countries.php:119 +msgid "Jersey" +msgstr "Jersey" + +#: languages/countries.php:120 +msgid "Jamaica" +msgstr "Jamaica" + +#: languages/countries.php:121 +msgid "Jordan" +msgstr "Jordanië" + +#: languages/countries.php:122 +msgid "Japan" +msgstr "Japan" + +#: languages/countries.php:123 +msgid "Kenya" +msgstr "Kenia" + +#: languages/countries.php:124 +msgid "Kyrgyzstan" +msgstr "Kirgizië" + +#: languages/countries.php:125 +msgid "Cambodia" +msgstr "Cambodja" + +#: languages/countries.php:126 +msgid "Kiribati" +msgstr "Kiribati" + +#: languages/countries.php:127 +msgid "Comoros" +msgstr "Comoren" + +#: languages/countries.php:128 +msgid "Saint Kitts and Nevis" +msgstr "Saint Kitts en Nevis" + +#: languages/countries.php:129 +msgid "North Korea" +msgstr "Noord-Korea" + +#: languages/countries.php:130 +msgid "South Korea" +msgstr "Zuid-Korea" + +#: languages/countries.php:131 +msgid "Kuwait" +msgstr "Koeweit" + +#: languages/countries.php:132 +msgid "Cayman Islands" +msgstr "Kaaimaneilanden" + +#: languages/countries.php:133 +msgid "Kazakhstan" +msgstr "Kazachstan" + +#: languages/countries.php:134 +msgid "Laos" +msgstr "Laos" + +#: languages/countries.php:135 +msgid "Lebanon" +msgstr "Libanon" + +#: languages/countries.php:136 +msgid "Saint Lucia" +msgstr "Saint Lucia" + +#: languages/countries.php:137 +msgid "Liechtenstein" +msgstr "Liechtenstein" + +#: languages/countries.php:138 +msgid "Sri Lanka" +msgstr "Sri Lanka" + +#: languages/countries.php:139 +msgid "Liberia" +msgstr "Liberia" + +#: languages/countries.php:140 +msgid "Lesotho" +msgstr "Lesotho" + +#: languages/countries.php:141 +msgid "Lithuania" +msgstr "Litouwen" + +#: languages/countries.php:142 +msgid "Luxembourg" +msgstr "Luxemburg" + +#: languages/countries.php:143 +msgid "Latvia" +msgstr "Letland" + +#: languages/countries.php:144 +msgid "Libya" +msgstr "Libië" + +#: languages/countries.php:145 +msgid "Morocco" +msgstr "Marokko" + +#: languages/countries.php:146 +msgid "Monaco" +msgstr "Monaco" + +#: languages/countries.php:147 +msgid "Moldova" +msgstr "Moldavië" + +#: languages/countries.php:148 +msgid "Montenegro" +msgstr "Montenegro" + +#: languages/countries.php:149 +msgid "Saint Martin (French part)" +msgstr "Saint Martin (Frans deel)" + +#: languages/countries.php:150 +msgid "Madagascar" +msgstr "Madagascar" + +#: languages/countries.php:151 +msgid "Marshall Islands" +msgstr "Marshall Eilanden" + +#: languages/countries.php:152 +msgid "Macedonia" +msgstr "Macedonië" + +#: languages/countries.php:153 +msgid "Mali" +msgstr "Mali" + +#: languages/countries.php:154 +msgid "Myanmar" +msgstr "Myanmar" + +#: languages/countries.php:155 +msgid "Mongolia" +msgstr "Mongolië" + +#: languages/countries.php:156 +msgid "Macao S.A.R., China" +msgstr "Macao S.A.R., China" + +#: languages/countries.php:157 +msgid "Northern Mariana Islands" +msgstr "Noordelijke Marianen" + +#: languages/countries.php:158 +msgid "Martinique" +msgstr "Martinique" + +#: languages/countries.php:159 +msgid "Mauritania" +msgstr "Mauritanië" + +#: languages/countries.php:160 +msgid "Montserrat" +msgstr "Montserrat" + +#: languages/countries.php:161 +msgid "Malta" +msgstr "Malta" + +#: languages/countries.php:162 +msgid "Mauritius" +msgstr "Mauritius" + +#: languages/countries.php:163 +msgid "Maldives" +msgstr "Maldiven" + +#: languages/countries.php:164 +msgid "Malawi" +msgstr "Malawi" + +#: languages/countries.php:165 +msgid "Mexico" +msgstr "Mexico" + +#: languages/countries.php:166 +msgid "Malaysia" +msgstr "Maleisië" + +#: languages/countries.php:167 +msgid "Mozambique" +msgstr "Mozambique" + +#: languages/countries.php:168 +msgid "Namibia" +msgstr "Namibië" + +#: languages/countries.php:169 +msgid "New Caledonia" +msgstr "Nieuw-Caledonië" + +#: languages/countries.php:170 +msgid "Niger" +msgstr "Niger" + +#: languages/countries.php:171 +msgid "Norfolk Island" +msgstr "Norfolkeiland" + +#: languages/countries.php:172 +msgid "Nigeria" +msgstr "Nigeria" + +#: languages/countries.php:173 +msgid "Nicaragua" +msgstr "Nicaragua" + +#: languages/countries.php:174 +msgid "Netherlands" +msgstr "Nederland" + +#: languages/countries.php:175 +msgid "Norway" +msgstr "Noorwegen" + +#: languages/countries.php:176 +msgid "Nepal" +msgstr "Nepal" + +#: languages/countries.php:177 +msgid "Nauru" +msgstr "Nauru" + +#: languages/countries.php:178 +msgid "Niue" +msgstr "Niue" + +#: languages/countries.php:179 +msgid "New Zealand" +msgstr "Nieuw-Zeeland" + +#: languages/countries.php:180 +msgid "Oman" +msgstr "Oman" + +#: languages/countries.php:181 +msgid "Panama" +msgstr "Panama" + +#: languages/countries.php:182 +msgid "Peru" +msgstr "Peru" + +#: languages/countries.php:183 +msgid "French Polynesia" +msgstr "Frans-Polynesië" + +#: languages/countries.php:184 +msgid "Papua New Guinea" +msgstr "Papoea-Nieuw-Guinea" + +#: languages/countries.php:185 +msgid "Philippines" +msgstr "Filippijnen" + +#: languages/countries.php:186 +msgid "Pakistan" +msgstr "Pakistan" + +#: languages/countries.php:187 +msgid "Poland" +msgstr "Polen" + +#: languages/countries.php:188 +msgid "Saint Pierre and Miquelon" +msgstr "Saint-Pierre en Miquelon" + +#: languages/countries.php:189 +msgid "Pitcairn" +msgstr "Pitcairn" + +#: languages/countries.php:190 +msgid "Puerto Rico" +msgstr "Puerto Rico" + +#: languages/countries.php:191 +msgid "Palestinian Territory" +msgstr "Palestijns grondgebied" + +#: languages/countries.php:192 +msgid "Portugal" +msgstr "Portugal" + +#: languages/countries.php:193 +msgid "Palau" +msgstr "Palau" + +#: languages/countries.php:194 +msgid "Paraguay" +msgstr "Paraguay" + +#: languages/countries.php:195 +msgid "Qatar" +msgstr "Katar" + +#: languages/countries.php:196 +msgid "Reunion" +msgstr "Reunion" + +#: languages/countries.php:197 +msgid "Romania" +msgstr "Roemenië" + +#: languages/countries.php:198 +msgid "Serbia" +msgstr "Servië" + +#: languages/countries.php:199 +msgid "Russia" +msgstr "Rusland" + +#: languages/countries.php:200 +msgid "Rwanda" +msgstr "Rwanda" + +#: languages/countries.php:201 +msgid "Saudi Arabia" +msgstr "Saudi-Arabië" + +#: languages/countries.php:202 +msgid "Solomon Islands" +msgstr "Salomonseilanden" + +#: languages/countries.php:203 +msgid "Seychelles" +msgstr "Seychellen" + +#: languages/countries.php:204 +msgid "Sudan" +msgstr "Soedan" + +#: languages/countries.php:205 +msgid "Sweden" +msgstr "Zweden" + +#: languages/countries.php:206 +msgid "Singapore" +msgstr "Singapore" + +#: languages/countries.php:207 +msgid "Saint Helena" +msgstr "Saint Helena" + +#: languages/countries.php:208 +msgid "Slovenia" +msgstr "Slovenië" + +#: languages/countries.php:209 +msgid "Svalbard and Jan Mayen" +msgstr "Svalbard en Jan Mayen" + +#: languages/countries.php:210 +msgid "Slovakia" +msgstr "Slovakije" + +#: languages/countries.php:211 +msgid "Sierra Leone" +msgstr "Sierra Leone" + +#: languages/countries.php:212 +msgid "San Marino" +msgstr "San Marino" + +#: languages/countries.php:213 +msgid "Senegal" +msgstr "Senegal" + +#: languages/countries.php:214 +msgid "Somalia" +msgstr "Somalië" + +#: languages/countries.php:215 +msgid "Suriname" +msgstr "Suriname" + +#: languages/countries.php:216 +msgid "Sao Tome and Principe" +msgstr "Sao Tome en Principe" + +#: languages/countries.php:217 +msgid "El Salvador" +msgstr "El Salvador" + +#: languages/countries.php:218 +msgid "Syria" +msgstr "Syrië" + +#: languages/countries.php:219 +msgid "Swaziland" +msgstr "Swaziland" + +#: languages/countries.php:220 +msgid "Turks and Caicos Islands" +msgstr "Turks-en Caicoseilanden" + +#: languages/countries.php:221 +msgid "Chad" +msgstr "Tsjaad" + +#: languages/countries.php:222 +msgid "French Southern Territories" +msgstr "Franse Zuidelijke Gebieden" + +#: languages/countries.php:223 +msgid "Togo" +msgstr "Togo" + +#: languages/countries.php:224 +msgid "Thailand" +msgstr "Thailand" + +#: languages/countries.php:225 +msgid "Tajikistan" +msgstr "Tadzjikistan" + +#: languages/countries.php:226 +msgid "Tokelau" +msgstr "Tokelau" + +#: languages/countries.php:227 +msgid "Timor-Leste" +msgstr "Oost-Timor" + +#: languages/countries.php:228 +msgid "Turkmenistan" +msgstr "Turkmenistan" + +#: languages/countries.php:229 +msgid "Tunisia" +msgstr "Tunesië" + +#: languages/countries.php:230 +msgid "Tonga" +msgstr "Tonga" + +#: languages/countries.php:231 +msgid "Turkey" +msgstr "Turkije" + +#: languages/countries.php:232 +msgid "Trinidad and Tobago" +msgstr "Trinidad en Tobago" + +#: languages/countries.php:233 +msgid "Tuvalu" +msgstr "Tuvalu" + +#: languages/countries.php:234 +msgid "Taiwan" +msgstr "Taiwan" + +#: languages/countries.php:235 +msgid "Tanzania" +msgstr "Tanzania" + +#: languages/countries.php:236 +msgid "Ukraine" +msgstr "Oekraïne" + +#: languages/countries.php:237 +msgid "Uganda" +msgstr "Oeganda" + +#: languages/countries.php:238 +msgid "United States Minor Outlying Islands" +msgstr "Amerikaanse kleinere afgelegen eilanden" + +#: languages/countries.php:239 +msgid "United States" +msgstr "Verenigde Staten" + +#: languages/countries.php:240 +msgid "Uruguay" +msgstr "Uruguay" + +#: languages/countries.php:241 +msgid "Uzbekistan" +msgstr "Oezbekistan" + +#: languages/countries.php:242 +msgid "Vatican" +msgstr "Vaticaanstad" + +#: languages/countries.php:243 +msgid "Saint Vincent and the Grenadines" +msgstr "Saint Vincent en de Grenadines" + +#: languages/countries.php:244 +msgid "Venezuela" +msgstr "Venezuela" + +#: languages/countries.php:245 +msgid "British Virgin Islands" +msgstr "Britse Maagdeneilanden" + +#: languages/countries.php:246 +msgid "U.S. Virgin Islands" +msgstr "Amerikaanse Maagdeneilanden" + +#: languages/countries.php:247 +msgid "Vietnam" +msgstr "Vietnam" + +#: languages/countries.php:248 +msgid "Vanuatu" +msgstr "Vanuatu" + +#: languages/countries.php:249 +msgid "Wallis and Futuna" +msgstr "Wallis en Futuna" + +#: languages/countries.php:250 +msgid "Samoa" +msgstr "Samoa" + +#: languages/countries.php:251 +msgid "Yemen" +msgstr "Jemen" + +#: languages/countries.php:252 +msgid "Mayotte" +msgstr "Mayotte" + +#: languages/countries.php:253 +msgid "South Africa" +msgstr "Zuid-Afrika" + +#: languages/countries.php:254 +msgid "Zambia" +msgstr "Zambia" + +#: languages/countries.php:255 +msgid "Zimbabwe" +msgstr "Zimbabwe" + diff --git a/readme.txt b/readme.txt index 333ad493..096728a5 100644 --- a/readme.txt +++ b/readme.txt @@ -2,8 +2,8 @@ Contributors: Jigoshop Tags: ecommerce, wordpress ecommerce, store, shop, shopping, cart, checkout, widgets, reports, shipping, tax, paypal Requires at least: 3.1 -Tested up to: 3.2 -Stable tag: 0.9.8.1 +Tested up to: 3.2.1 +Stable tag: 0.9.9 A feature packed eCommerce plugin built upon WordPress core functionality ensuring excellent performance and customisability. @@ -136,6 +136,9 @@ We have a com 9. Checkout == Changelog == += 0.9.9 = +* Added Dutch translation +* Various bug fixes = 0.9.8.1 = * Changes to allow new product types to be added by plugins diff --git a/shortcodes/cart.php b/shortcodes/cart.php index 59f1121f..61912ccd 100644 --- a/shortcodes/cart.php +++ b/shortcodes/cart.php @@ -125,7 +125,7 @@ function jigoshop_cart( $atts ) { '; if (has_post_thumbnail($item_id)) echo get_the_post_thumbnail($item_id, 'shop_tiny'); - else echo 'Placeholder'; + else echo 'Placeholder'; echo ' ' . apply_filters('jigoshop_cart_product_title', $_product->get_title(), $_product) . ' diff --git a/shortcodes/my_account.php b/shortcodes/my_account.php index 9d6f66ed..b93b13e9 100644 --- a/shortcodes/my_account.php +++ b/shortcodes/my_account.php @@ -14,7 +14,7 @@ * @copyright Copyright (c) 2011 Jigowatt Ltd. * @license http://jigoshop.com/license/commercial-edition */ - + function get_jigoshop_my_account ( $atts ) { return jigoshop::shortcode_wrapper('jigoshop_my_account', $atts); } diff --git a/version.txt b/version.txt index e3e18070..6f060dcb 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -0.9.8 +0.9.9 \ No newline at end of file diff --git a/widgets/cart.php b/widgets/cart.php index dcdb96d0..ddf63669 100644 --- a/widgets/cart.php +++ b/widgets/cart.php @@ -45,7 +45,7 @@ function widget( $args, $instance ) { echo '
  • '; if (has_post_thumbnail($item_id)) echo get_the_post_thumbnail($item_id, 'shop_tiny'); - else echo 'Placeholder'; + else echo 'Placeholder'; echo apply_filters('jigoshop_cart_widget_product_title', $_product->get_title(), $_product).' '.$values['quantity'].' × '.jigoshop_price($_product->get_price()).'
  • '; endif; diff --git a/widgets/featured_products.php b/widgets/featured_products.php index 5e204119..b005d5ad 100644 --- a/widgets/featured_products.php +++ b/widgets/featured_products.php @@ -62,7 +62,7 @@ function widget($args, $instance) { ID ); ?>
  • - ID )) echo get_the_post_thumbnail($r->ID, 'shop_tiny'); else echo 'Placeholder'; ?> + ID )) echo get_the_post_thumbnail($r->ID, 'shop_tiny'); else echo 'Placeholder'; ?> post_title ) echo $r->post_title; else echo $r->ID; ?> get_price_html(); ?>
  • diff --git a/widgets/recent_products.php b/widgets/recent_products.php index e1d5a5b7..889e77c9 100644 --- a/widgets/recent_products.php +++ b/widgets/recent_products.php @@ -75,7 +75,7 @@ function widget($args, $instance) {
      have_posts()) : $r->the_post(); $_product = &new jigoshop_product(get_the_ID()); ?>
    • - '; ?> + '; ?> get_price_html(); ?>
    • From 44c8628f818465f0236da4a8e4a69da4786322f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Esbjo=CC=88rn=20Eriksson?= Date: Wed, 17 Aug 2011 13:34:32 +0200 Subject: [PATCH 04/15] Low in stock changes. --- languages/jigoshop-sv_SE.mo | Bin 71474 -> 71509 bytes languages/jigoshop-sv_SE.po | 8 +++++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/languages/jigoshop-sv_SE.mo b/languages/jigoshop-sv_SE.mo index a3912b4d02ff246d8bd8a970b296187350e7ef53..4b2fefe43dec57878aaf0967b64296b5263b20e4 100644 GIT binary patch delta 8227 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 delta 8201 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 N!oY$v*=Zxw{s#?gLS6s> diff --git a/languages/jigoshop-sv_SE.po b/languages/jigoshop-sv_SE.po index 38c1acbf..3d40c55d 100644 --- a/languages/jigoshop-sv_SE.po +++ b/languages/jigoshop-sv_SE.po @@ -15,6 +15,8 @@ msgstr "" "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n" "X-Poedit-Basepath: ..\n" "X-Textdomain-Support: yes\n" +"X-Poedit-Language: Swedish\n" +"X-Poedit-Country: SWEDEN\n" "X-Poedit-SearchPath-0: .\n" # @ jigoshop @@ -550,17 +552,17 @@ msgstr "En beställning har skapats för dig pÃ¥ \"% s\". För att betala för d # @ jigoshop #: jigoshop_emails.php:232 msgid "Product low in stock" -msgstr "FÃ¥ exemplar av produkten i lager" +msgstr "Produkten är nästan slut" # @ jigoshop #: jigoshop_emails.php:233 msgid "is low in stock." -msgstr "finns i fÃ¥ exemplar i lager." +msgstr "är nästan slut." # @ jigoshop #: jigoshop_emails.php:244 msgid "Product out of stock" -msgstr "Produkten slut i lager" +msgstr "Produkten har sÃ¥lt slut" # @ jigoshop #: jigoshop_emails.php:245 From 7fb75b98bf8e82e87db1611b042de86380e3aed6 Mon Sep 17 00:00:00 2001 From: iDesignerGr Date: Sat, 20 Aug 2011 00:40:43 +0300 Subject: [PATCH 05/15] Changed the get_title() method in order to work with qTranslate. --- classes/jigoshop_product.class.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/classes/jigoshop_product.class.php b/classes/jigoshop_product.class.php index d7b33a7e..ea52e19a 100644 --- a/classes/jigoshop_product.class.php +++ b/classes/jigoshop_product.class.php @@ -152,10 +152,10 @@ function get_post_data() { return $this->post; } - /** Get the title of the post */ - function get_title () { + /** Get the title of the post */ + function get_title () { $this->get_post_data(); - return apply_filters('jigoshop_product_title', $this->post->post_title, $this); + return apply_filters('jigoshop_product_title', get_the_title($this->post->ID), $this); } /** Get the add to url */ From ca4d308a5f8dc3c465421ccdd185c5087bd3297e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Esbjo=CC=88rn=20Eriksson?= Date: Sat, 20 Aug 2011 13:12:52 +0200 Subject: [PATCH 06/15] Translation changes by Arslan Golic. --- languages/jigoshop-sv_SE.po | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/languages/jigoshop-sv_SE.po b/languages/jigoshop-sv_SE.po index 3d40c55d..a4efebd7 100644 --- a/languages/jigoshop-sv_SE.po +++ b/languages/jigoshop-sv_SE.po @@ -775,12 +775,12 @@ msgstr "Hanteringsavgift" # @ jigoshop #: assets/js/script.js.php:108 msgid "Select a state…" -msgstr "Markera ett läge…" +msgstr "Markera en stad…" # @ jigoshop #: assets/js/script.js.php:115 msgid "state" -msgstr "läge" +msgstr "stad" # @ jigoshop #: admin/jigoshop-admin-dashboard.php:25 @@ -2486,7 +2486,7 @@ msgstr "Lägg till artikel" # @ jigoshop #: admin/write-panels/order-data.php:286 msgid "Calculate totals" -msgstr "Beräkna summor" +msgstr "Beräkna totalbelopp" # @ jigoshop #: admin/write-panels/order-data.php:290 @@ -2688,7 +2688,7 @@ msgstr "Land" #: classes/jigoshop_checkout.class.php:53 #: classes/jigoshop_checkout.class.php:198 msgid "State/County" -msgstr "Stat/Län" +msgstr "Stad" # @ jigoshop #: classes/jigoshop_checkout.class.php:40 @@ -3289,7 +3289,7 @@ msgstr "Nytt lösenord" # @ jigoshop #: shortcodes/my_account.php:353 msgid "Re-enter new password" -msgstr "Ange det nya lösenordet" +msgstr "Ange det nya lösenordet igen" # @ jigoshop #: shortcodes/my_account.php:358 @@ -3316,7 +3316,7 @@ msgstr "Antal" # @ jigoshop #: shortcodes/my_account.php:397 msgid "Totals" -msgstr "Summor" +msgstr "Totalbelopp" # @ jigoshop #: shortcodes/my_account.php:418 @@ -3393,7 +3393,7 @@ msgstr "GÃ¥ till kassan →" # @ jigoshop #: shortcodes/cart.php:142 msgid "Cart Totals" -msgstr "Kundvagn summor" +msgstr "Kundvagn totalbelopp" #: shortcodes/cart.php:155 #, php-format @@ -3759,7 +3759,7 @@ msgstr "Eftersom din webbläsare inte stöder JavaScript, eller det är inaktive # @ jigoshop #: templates/checkout/review_order.php:164 msgid "Update totals" -msgstr "Uppdatera summor" +msgstr "Uppdatera totalbelopp" # @ jigoshop #: templates/checkout/review_order.php:167 @@ -3799,7 +3799,7 @@ msgstr "Postnummer" # @ jigoshop #: templates/cart/shipping_calculator.php:52 msgid "Update Totals" -msgstr "Uppdatera summor" +msgstr "Uppdatera totalbelopp" # @ jigoshop #: templates/product/description.php:1 From a4e548ea6417672142bb3cae8d4a18c9572b0ac8 Mon Sep 17 00:00:00 2001 From: iDesignerGr Date: Sat, 20 Aug 2011 22:42:12 +0300 Subject: [PATCH 07/15] Changed the way it displays the title, in order to be compatible with qTranslate and be able to create an multilingual eshop. --- widgets/featured_products.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/widgets/featured_products.php b/widgets/featured_products.php index 5e204119..8da678ee 100644 --- a/widgets/featured_products.php +++ b/widgets/featured_products.php @@ -61,9 +61,9 @@ function widget($args, $instance) {
        ID ); ?> -
      • - ID )) echo get_the_post_thumbnail($r->ID, 'shop_tiny'); else echo 'Placeholder'; ?> - post_title ) echo $r->post_title; else echo $r->ID; ?> +
      • + ID )) echo get_the_post_thumbnail($r->ID, 'shop_tiny'); else echo 'Placeholder'; ?> + post_title ) echo esc_attr(__($r->post_title)); else echo $r->ID; ?> get_price_html(); ?>
      • From 67debde1f93edf9ea6a34e6b35e7044d9dbc1f9f Mon Sep 17 00:00:00 2001 From: Robert Rhoades Date: Wed, 24 Aug 2011 00:25:12 +0100 Subject: [PATCH 08/15] Fixed Configurable Products Commit --- admin/jigoshop-admin-attributes.php | 16 +- admin/jigoshop-admin-dashboard.php | 31 ++- admin/jigoshop-admin-post-types.php | 15 +- admin/jigoshop-admin-settings-options.php | 16 ++ admin/jigoshop-admin-settings.php | 16 +- admin/jigoshop-admin.php | 29 +-- admin/jigoshop-install.php | 19 +- admin/jigoshop-write-panels.php | 17 +- admin/write-panels/order-data-save.php | 14 +- admin/write-panels/order-data.php | 14 +- admin/write-panels/product-data-save.php | 14 +- admin/write-panels/product-data.php | 14 +- admin/write-panels/product-type.php | 16 +- .../product-types/downloadable.php | 14 +- admin/write-panels/product-types/virtual.php | 14 +- classes/jigoshop.class.php | 16 +- classes/jigoshop_cart.class.php | 17 +- classes/jigoshop_checkout.class.php | 17 +- classes/jigoshop_countries.class.php | 17 +- classes/jigoshop_coupons.class.php | 17 +- classes/jigoshop_customer.class.php | 17 +- classes/jigoshop_order.class.php | 17 +- classes/jigoshop_orders.class.php | 17 +- classes/jigoshop_product.class.php | 15 +- classes/jigoshop_product_variation.class.php | 15 +- classes/jigoshop_tax.class.php | 19 +- classes/jigoshop_validation.class.php | 18 +- gateways/bank_transfer.php | 188 ++++++++++++++++++ gateways/cheque.php | 19 +- gateways/gateway.class.php | 15 +- gateways/gateways.class.php | 15 +- gateways/paypal.php | 15 +- gateways/skrill.php | 18 +- jigoshop.php | 35 +++- jigoshop_actions.php | 16 +- jigoshop_cron.php | 22 +- jigoshop_emails.php | 17 +- jigoshop_query.php | 15 ++ jigoshop_shortcodes.php | 16 ++ jigoshop_taxonomy.php | 16 ++ jigoshop_template_actions.php | 15 +- jigoshop_template_functions.php | 16 +- jigoshop_templates.php | 22 +- jigoshop_widgets.php | 16 ++ languages/countries.php | 17 +- readme.txt | 10 +- shipping/flat_rate.php | 15 ++ shipping/free_shipping.php | 15 ++ shipping/shipping.class.php | 17 +- shipping/shipping_method.class.php | 15 ++ shortcodes/cart.php | 16 +- shortcodes/checkout.php | 15 ++ shortcodes/my_account.php | 15 ++ shortcodes/order_tracking.php | 15 ++ shortcodes/pay.php | 15 ++ shortcodes/thankyou.php | 15 ++ templates/archive-product.php | 20 +- templates/checkout/form.php | 18 ++ templates/checkout/pay_for_order.php | 18 ++ templates/checkout/review_order.php | 18 ++ templates/loop-shop.php | 17 ++ templates/product_taxonomy.php | 18 ++ templates/single-product-reviews.php | 18 ++ templates/single-product.php | 18 ++ widgets/cart.php | 17 +- widgets/featured_products.php | 19 +- widgets/layered_nav.php | 19 +- widgets/price_filter.php | 33 +-- widgets/product_categories.php | 19 +- widgets/product_search.php | 19 +- widgets/product_tag_cloud.php | 19 +- widgets/recent_products.php | 19 +- 72 files changed, 1190 insertions(+), 236 deletions(-) create mode 100644 gateways/bank_transfer.php diff --git a/admin/jigoshop-admin-attributes.php b/admin/jigoshop-admin-attributes.php index b5ad3c63..69d05e14 100644 --- a/admin/jigoshop-admin-attributes.php +++ b/admin/jigoshop-admin-attributes.php @@ -4,14 +4,20 @@ * * The attributes section lets users add custom attributes to assign to products - they can also be used in the layered nav widgets. * - * @author Jigowatt - * @category Admin - * @package JigoShop + * DISCLAIMER + * + * Do not edit or add directly to this file if you wish to upgrade Jigoshop to newer + * versions in the future. If you wish to customise Jigoshop core for your needs, + * please use our GitHub repository to publish essential changes for consideration. + * + * @package Jigoshop + * @category Admin + * @author Jigowatt + * @copyright Copyright (c) 2011 Jigowatt Ltd. + * @license http://jigoshop.com/license/commercial-edition */ /** - * Attributes admin panel - * * Shows the created attributes and lets you add new ones. * The added attributes are stored in the database and can be used for layered navigation. * diff --git a/admin/jigoshop-admin-dashboard.php b/admin/jigoshop-admin-dashboard.php index c2b5bcb4..20ee2e72 100644 --- a/admin/jigoshop-admin-dashboard.php +++ b/admin/jigoshop-admin-dashboard.php @@ -2,9 +2,17 @@ /** * Functions used for displaying the jigoshop dashboard * - * @author Jigowatt - * @category Admin - * @package JigoShop + * DISCLAIMER + * + * Do not edit or add directly to this file if you wish to upgrade Jigoshop to newer + * versions in the future. If you wish to customise Jigoshop core for your needs, + * please use our GitHub repository to publish essential changes for consideration. + * + * @package Jigoshop + * @category Admin + * @author Jigowatt + * @copyright Copyright (c) 2011 Jigowatt Ltd. + * @license http://jigoshop.com/license/commercial-edition */ /** @@ -525,19 +533,20 @@ function showTooltip(x, y, contents) {
      • -
      • +